📁
SKYSHELL MANAGER
PHP v8.2.30
Create
Create
Path:
root
/
home
/
acsport
/
tenjokure-n.com
/
public_html
/
Name
Size
Perm
Actions
📁
wp-admin
-
0755
🗑️
🏷️
🔒
📁
wp-content
-
0755
🗑️
🏷️
🔒
📁
wp-includes
-
0755
🗑️
🏷️
🔒
📄
.htaccess
0.96 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
.user.ini
3.89 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
ai.txt
0.94 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
default_page.png
37.91 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
index.html2
2.97 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
index.php
0.4 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
license.txt
19.44 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
llms.txt
0.96 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
readme.html
7.25 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
saito-kouatsu_tenjokure_n.20250411.sql
517.01 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
saito-kouatsu_tenjokure_n.20250411.sql2
517 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-activate.php
7.18 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-blog-header.php
0.34 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-comments-post.php
2.27 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-config-sample.php
3.26 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-config.php
3.25 KB
0600
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-cron.php
5.49 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-links-opml.php
2.43 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-load.php
3.84 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-login.php
50.23 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-mail.php
8.52 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-settings.php
30.33 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-signup.php
33.71 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-trackback.php
5.09 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
xmlrpc.php
3.13 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
Edit: saito-kouatsu_tenjokure_n.20250411.sql2
-- MySQL dump 10.13 Distrib 8.0.35, for FreeBSD13.0 (amd64) -- -- Host: mysql80.tenjokure-n.com Database: saito-kouatsu_tenjokure_n -- ------------------------------------------------------ -- Server version 8.0.39 /*!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 */; /*!50503 SET NAMES utf8mb4 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `wp_actionscheduler_actions` -- DROP TABLE IF EXISTS `wp_actionscheduler_actions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `wp_actionscheduler_actions` ( `action_id` bigint unsigned NOT NULL AUTO_INCREMENT, `hook` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL, `status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL, `scheduled_date_gmt` datetime DEFAULT '0000-00-00 00:00:00', `scheduled_date_local` datetime DEFAULT '0000-00-00 00:00:00', `priority` tinyint unsigned NOT NULL DEFAULT '10', `args` varchar(191) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `schedule` longtext COLLATE utf8mb4_unicode_520_ci, `group_id` bigint unsigned NOT NULL DEFAULT '0', `attempts` int NOT NULL DEFAULT '0', `last_attempt_gmt` datetime DEFAULT '0000-00-00 00:00:00', `last_attempt_local` datetime DEFAULT '0000-00-00 00:00:00', `claim_id` bigint unsigned NOT NULL DEFAULT '0', `extended_args` varchar(8000) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, PRIMARY KEY (`action_id`), KEY `hook` (`hook`), KEY `status` (`status`), KEY `scheduled_date_gmt` (`scheduled_date_gmt`), KEY `args` (`args`), KEY `group_id` (`group_id`), KEY `last_attempt_gmt` (`last_attempt_gmt`), KEY `claim_id_status_scheduled_date_gmt` (`claim_id`,`status`,`scheduled_date_gmt`) ) ENGINE=InnoDB AUTO_INCREMENT=2554 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_actionscheduler_actions` -- LOCK TABLES `wp_actionscheduler_actions` WRITE; /*!40000 ALTER TABLE `wp_actionscheduler_actions` DISABLE KEYS */; INSERT INTO `wp_actionscheduler_actions` VALUES (719,'wp_mail_smtp_summary_report_email','complete','2025-03-17 05:00:00','2025-03-17 14:00:00',10,'[null]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1742187600;s:18:\"\0*\0first_timestamp\";i:1742187600;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1742187600;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',3,1,'2025-03-17 06:06:07','2025-03-17 15:06:07',0,NULL),(720,'wp_mail_smtp_admin_notifications_update','complete','2025-03-14 04:38:47','2025-03-14 13:38:47',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1741927127;s:18:\"\0*\0first_timestamp\";i:1741927127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1741927127;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',3,1,'2025-03-14 04:39:01','2025-03-14 13:39:01',0,NULL),(721,'wp_mail_smtp_admin_notifications_update','complete','2025-03-15 04:39:01','2025-03-15 13:39:01',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1742013541;s:18:\"\0*\0first_timestamp\";i:1741927127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1742013541;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',3,1,'2025-03-15 05:49:20','2025-03-15 14:49:20',0,NULL),(811,'wp_mail_smtp_admin_notifications_update','complete','2025-03-16 05:49:20','2025-03-16 14:49:20',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1742104160;s:18:\"\0*\0first_timestamp\";i:1741927127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1742104160;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',3,1,'2025-03-16 05:49:59','2025-03-16 14:49:59',0,NULL),(873,'wp_mail_smtp_admin_notifications_update','complete','2025-03-17 05:49:59','2025-03-17 14:49:59',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1742190599;s:18:\"\0*\0first_timestamp\";i:1741927127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1742190599;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',3,1,'2025-03-17 06:06:07','2025-03-17 15:06:07',0,NULL),(917,'wp_mail_smtp_summary_report_email','complete','2025-03-24 06:06:07','2025-03-24 15:06:07',10,'[null]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1742796367;s:18:\"\0*\0first_timestamp\";i:1742187600;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1742796367;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',3,1,'2025-03-24 06:33:10','2025-03-24 15:33:10',0,NULL),(920,'wp_mail_smtp_admin_notifications_update','complete','2025-03-18 06:06:07','2025-03-18 15:06:07',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1742277967;s:18:\"\0*\0first_timestamp\";i:1741927127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1742277967;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',3,1,'2025-03-18 06:43:00','2025-03-18 15:43:00',0,NULL),(978,'wp_mail_smtp_admin_notifications_update','complete','2025-03-19 06:43:00','2025-03-19 15:43:00',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1742366580;s:18:\"\0*\0first_timestamp\";i:1741927127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1742366580;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',3,1,'2025-03-19 07:42:01','2025-03-19 16:42:01',0,NULL),(1031,'wp_mail_smtp_admin_notifications_update','complete','2025-03-20 07:42:01','2025-03-20 16:42:01',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1742456521;s:18:\"\0*\0first_timestamp\";i:1741927127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1742456521;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',3,1,'2025-03-20 08:11:20','2025-03-20 17:11:20',0,NULL),(1081,'wp_mail_smtp_admin_notifications_update','complete','2025-03-21 08:11:20','2025-03-21 17:11:20',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1742544680;s:18:\"\0*\0first_timestamp\";i:1741927127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1742544680;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',3,1,'2025-03-21 08:13:30','2025-03-21 17:13:30',0,NULL),(1137,'wp_mail_smtp_admin_notifications_update','complete','2025-03-22 08:13:30','2025-03-22 17:13:30',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1742631210;s:18:\"\0*\0first_timestamp\";i:1741927127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1742631210;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',3,1,'2025-03-22 08:45:50','2025-03-22 17:45:50',0,NULL),(1203,'wp_mail_smtp_admin_notifications_update','complete','2025-03-23 08:45:50','2025-03-23 17:45:50',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1742719550;s:18:\"\0*\0first_timestamp\";i:1741927127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1742719550;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',3,1,'2025-03-23 08:51:53','2025-03-23 17:51:53',0,NULL),(1263,'wp_mail_smtp_admin_notifications_update','complete','2025-03-24 08:51:53','2025-03-24 17:51:53',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1742806313;s:18:\"\0*\0first_timestamp\";i:1741927127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1742806313;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',3,1,'2025-03-24 09:16:32','2025-03-24 18:16:32',0,NULL),(1307,'wp_mail_smtp_summary_report_email','complete','2025-03-31 06:33:10','2025-03-31 15:33:10',10,'[null]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1743402790;s:18:\"\0*\0first_timestamp\";i:1742187600;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1743402790;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',3,1,'2025-03-31 08:37:18','2025-03-31 17:37:18',0,NULL),(1312,'wp_mail_smtp_admin_notifications_update','complete','2025-03-25 09:16:32','2025-03-25 18:16:32',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1742894192;s:18:\"\0*\0first_timestamp\";i:1741927127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1742894192;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',3,1,'2025-03-25 09:35:35','2025-03-25 18:35:35',0,NULL),(1360,'wp_mail_smtp_admin_notifications_update','complete','2025-03-26 09:35:36','2025-03-26 18:35:36',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1742981736;s:18:\"\0*\0first_timestamp\";i:1741927127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1742981736;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',3,1,'2025-03-26 10:30:08','2025-03-26 19:30:08',0,NULL),(1425,'wp_mail_smtp_admin_notifications_update','complete','2025-03-27 10:30:08','2025-03-27 19:30:08',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1743071408;s:18:\"\0*\0first_timestamp\";i:1741927127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1743071408;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',3,1,'2025-03-27 11:08:12','2025-03-27 20:08:12',0,NULL),(1477,'wp_mail_smtp_admin_notifications_update','complete','2025-03-28 11:08:12','2025-03-28 20:08:12',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1743160092;s:18:\"\0*\0first_timestamp\";i:1741927127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1743160092;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',3,1,'2025-03-28 11:08:55','2025-03-28 20:08:55',0,NULL),(1543,'wp_mail_smtp_admin_notifications_update','complete','2025-03-29 11:08:55','2025-03-29 20:08:55',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1743246535;s:18:\"\0*\0first_timestamp\";i:1741927127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1743246535;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',3,1,'2025-03-29 11:52:31','2025-03-29 20:52:31',0,NULL),(1609,'wp_mail_smtp_admin_notifications_update','complete','2025-03-30 11:52:31','2025-03-30 20:52:31',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1743335551;s:18:\"\0*\0first_timestamp\";i:1741927127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1743335551;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',3,1,'2025-03-30 11:54:52','2025-03-30 20:54:52',0,NULL),(1657,'wp_mail_smtp_admin_notifications_update','complete','2025-03-31 11:54:52','2025-03-31 20:54:52',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1743422092;s:18:\"\0*\0first_timestamp\";i:1741927127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1743422092;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',3,1,'2025-03-31 12:07:38','2025-03-31 21:07:38',0,NULL),(1693,'wp_mail_smtp_summary_report_email','complete','2025-04-07 08:37:18','2025-04-07 17:37:18',10,'[null]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1744015038;s:18:\"\0*\0first_timestamp\";i:1742187600;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1744015038;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',3,1,'2025-04-07 09:32:23','2025-04-07 18:32:23',0,NULL),(1702,'wp_mail_smtp_admin_notifications_update','complete','2025-04-01 12:07:38','2025-04-01 21:07:38',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1743509258;s:18:\"\0*\0first_timestamp\";i:1741927127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1743509258;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',3,1,'2025-04-01 14:23:12','2025-04-01 23:23:12',0,NULL),(1766,'wp_mail_smtp_admin_notifications_update','complete','2025-04-02 14:23:12','2025-04-02 23:23:12',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1743603792;s:18:\"\0*\0first_timestamp\";i:1741927127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1743603792;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',3,1,'2025-04-02 15:08:14','2025-04-03 00:08:14',0,NULL),(1835,'wp_mail_smtp_admin_notifications_update','complete','2025-04-03 15:08:14','2025-04-04 00:08:14',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1743692894;s:18:\"\0*\0first_timestamp\";i:1741927127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1743692894;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',3,1,'2025-04-03 15:18:59','2025-04-04 00:18:59',0,NULL),(1925,'wp_mail_smtp_admin_notifications_update','complete','2025-04-04 15:18:59','2025-04-05 00:18:59',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1743779939;s:18:\"\0*\0first_timestamp\";i:1741927127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1743779939;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',3,1,'2025-04-04 15:50:27','2025-04-05 00:50:27',0,NULL),(1939,'aioseo_report_summary','pending','2025-05-03 22:22:41','2025-05-04 07:22:41',10,'{\"frequency\":\"monthly\"}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1746310961;s:18:\"\0*\0first_timestamp\";i:1741122540;s:13:\"\0*\0recurrence\";i:2592000;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1746310961;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:2592000;}',1,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL),(2008,'wp_mail_smtp_admin_notifications_update','complete','2025-04-05 15:50:27','2025-04-06 00:50:27',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1743868227;s:18:\"\0*\0first_timestamp\";i:1741927127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1743868227;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',3,1,'2025-04-05 17:07:20','2025-04-06 02:07:20',0,NULL),(2080,'wp_mail_smtp_admin_notifications_update','complete','2025-04-06 17:07:20','2025-04-07 02:07:20',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1743959240;s:18:\"\0*\0first_timestamp\";i:1741927127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1743959240;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',3,1,'2025-04-06 17:42:25','2025-04-07 02:42:25',0,NULL),(2136,'wp_mail_smtp_admin_notifications_update','complete','2025-04-07 17:42:25','2025-04-08 02:42:25',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1744047745;s:18:\"\0*\0first_timestamp\";i:1741927127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1744047745;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',3,1,'2025-04-07 17:53:11','2025-04-08 02:53:11',0,NULL),(2184,'wp_mail_smtp_summary_report_email','pending','2025-04-14 09:32:23','2025-04-14 18:32:23',10,'[null]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1744623143;s:18:\"\0*\0first_timestamp\";i:1742187600;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1744623143;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',3,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL),(2207,'wp_mail_smtp_admin_notifications_update','complete','2025-04-08 17:53:11','2025-04-09 02:53:11',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1744134791;s:18:\"\0*\0first_timestamp\";i:1741927127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1744134791;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',3,1,'2025-04-08 18:08:52','2025-04-09 03:08:52',0,NULL),(2283,'wp_mail_smtp_admin_notifications_update','complete','2025-04-09 18:08:52','2025-04-10 03:08:52',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1744222132;s:18:\"\0*\0first_timestamp\";i:1741927127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1744222132;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',3,1,'2025-04-09 18:19:30','2025-04-10 03:19:30',0,NULL),(2303,'aioseo_report_summary','pending','2025-04-16 00:13:08','2025-04-16 09:13:08',10,'{\"frequency\":\"weekly\"}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1744762388;s:18:\"\0*\0first_timestamp\";i:1741122540;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1744762388;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',1,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL),(2372,'wp_mail_smtp_admin_notifications_update','complete','2025-04-10 18:19:30','2025-04-11 03:19:30',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1744309170;s:18:\"\0*\0first_timestamp\";i:1741927127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1744309170;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',3,1,'2025-04-10 18:34:30','2025-04-11 03:34:30',0,NULL),(2454,'wp_mail_smtp_admin_notifications_update','complete','2025-04-11 18:34:30','2025-04-12 03:34:30',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1744396470;s:18:\"\0*\0first_timestamp\";i:1741927127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1744396470;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',3,1,'2025-04-11 18:37:41','2025-04-12 03:37:41',0,NULL),(2459,'aioseo_cache_prune','complete','2025-04-11 22:22:19','2025-04-12 07:22:19',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1744410139;s:18:\"\0*\0first_timestamp\";i:1740546820;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1744410139;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',1,1,'2025-04-11 22:37:35','2025-04-12 07:37:35',0,NULL),(2473,'aioseo_image_sitemap_scan','complete','2025-04-11 03:16:23','2025-04-11 12:16:23',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1744341383;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1744341383;}',1,1,'2025-04-11 03:34:10','2025-04-11 12:34:10',0,NULL),(2475,'aioseo_image_sitemap_scan','complete','2025-04-11 03:49:09','2025-04-11 12:49:09',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1744343349;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1744343349;}',1,1,'2025-04-11 03:51:44','2025-04-11 12:51:44',0,NULL),(2477,'aioseo_image_sitemap_scan','complete','2025-04-11 04:06:44','2025-04-11 13:06:44',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1744344404;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1744344404;}',1,1,'2025-04-11 04:59:20','2025-04-11 13:59:20',0,NULL),(2479,'aioseo_image_sitemap_scan','complete','2025-04-11 05:14:20','2025-04-11 14:14:20',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1744348460;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1744348460;}',1,1,'2025-04-11 05:18:14','2025-04-11 14:18:14',0,NULL),(2481,'aioseo_image_sitemap_scan','complete','2025-04-11 05:33:14','2025-04-11 14:33:14',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1744349594;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1744349594;}',1,1,'2025-04-11 06:34:48','2025-04-11 15:34:48',0,NULL),(2483,'aioseo_image_sitemap_scan','complete','2025-04-11 06:49:48','2025-04-11 15:49:48',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1744354188;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1744354188;}',1,1,'2025-04-11 07:01:47','2025-04-11 16:01:47',0,NULL),(2485,'aioseo_image_sitemap_scan','complete','2025-04-11 07:16:47','2025-04-11 16:16:47',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1744355807;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1744355807;}',1,1,'2025-04-11 07:21:37','2025-04-11 16:21:37',0,NULL),(2487,'aioseo_image_sitemap_scan','complete','2025-04-11 07:36:37','2025-04-11 16:36:37',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1744356997;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1744356997;}',1,1,'2025-04-11 08:00:18','2025-04-11 17:00:18',0,NULL),(2489,'aioseo_image_sitemap_scan','complete','2025-04-11 08:15:18','2025-04-11 17:15:18',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1744359318;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1744359318;}',1,1,'2025-04-11 08:22:22','2025-04-11 17:22:22',0,NULL),(2491,'aioseo_image_sitemap_scan','complete','2025-04-11 08:37:22','2025-04-11 17:37:22',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1744360642;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1744360642;}',1,1,'2025-04-11 10:55:57','2025-04-11 19:55:57',0,NULL),(2493,'aioseo_image_sitemap_scan','complete','2025-04-11 11:10:57','2025-04-11 20:10:57',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1744369857;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1744369857;}',1,1,'2025-04-11 11:48:51','2025-04-11 20:48:51',0,NULL),(2495,'aioseo_image_sitemap_scan','complete','2025-04-11 12:03:51','2025-04-11 21:03:51',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1744373031;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1744373031;}',1,1,'2025-04-11 12:30:04','2025-04-11 21:30:04',0,NULL),(2497,'aioseo_image_sitemap_scan','complete','2025-04-11 12:45:04','2025-04-11 21:45:04',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1744375504;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1744375504;}',1,1,'2025-04-11 13:00:25','2025-04-11 22:00:25',0,NULL),(2499,'aioseo_image_sitemap_scan','complete','2025-04-11 13:15:25','2025-04-11 22:15:25',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1744377325;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1744377325;}',1,1,'2025-04-11 13:50:28','2025-04-11 22:50:28',0,NULL),(2500,'aioseo_admin_notifications_update','complete','2025-04-11 13:00:42','2025-04-11 13:00:42',10,'[]','O:28:\"ActionScheduler_NullSchedule\":0:{}',1,1,'2025-04-11 13:50:28','2025-04-11 22:50:28',0,NULL),(2503,'aioseo_image_sitemap_scan','complete','2025-04-11 14:05:28','2025-04-11 23:05:28',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1744380328;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1744380328;}',1,1,'2025-04-11 14:22:43','2025-04-11 23:22:43',0,NULL),(2505,'aioseo_image_sitemap_scan','complete','2025-04-11 14:37:43','2025-04-11 23:37:43',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1744382263;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1744382263;}',1,1,'2025-04-11 14:54:39','2025-04-11 23:54:39',0,NULL),(2507,'aioseo_image_sitemap_scan','complete','2025-04-11 15:09:39','2025-04-12 00:09:39',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1744384179;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1744384179;}',1,1,'2025-04-11 16:00:39','2025-04-12 01:00:39',0,NULL),(2509,'aioseo_image_sitemap_scan','complete','2025-04-11 16:15:39','2025-04-12 01:15:39',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1744388139;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1744388139;}',1,1,'2025-04-11 16:59:11','2025-04-12 01:59:11',0,NULL),(2511,'aioseo_image_sitemap_scan','complete','2025-04-11 17:14:11','2025-04-12 02:14:11',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1744391651;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1744391651;}',1,1,'2025-04-11 17:18:18','2025-04-12 02:18:18',0,NULL),(2513,'aioseo_image_sitemap_scan','complete','2025-04-11 17:33:18','2025-04-12 02:33:18',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1744392798;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1744392798;}',1,1,'2025-04-11 17:44:33','2025-04-12 02:44:33',0,NULL),(2515,'aioseo_image_sitemap_scan','complete','2025-04-11 17:59:33','2025-04-12 02:59:33',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1744394373;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1744394373;}',1,1,'2025-04-11 18:08:10','2025-04-12 03:08:10',0,NULL),(2517,'aioseo_image_sitemap_scan','complete','2025-04-11 18:23:10','2025-04-12 03:23:10',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1744395790;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1744395790;}',1,1,'2025-04-11 18:37:41','2025-04-12 03:37:41',0,NULL),(2519,'aioseo_image_sitemap_scan','complete','2025-04-11 18:52:41','2025-04-12 03:52:41',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1744397561;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1744397561;}',1,1,'2025-04-11 19:08:56','2025-04-12 04:08:56',0,NULL),(2520,'wp_mail_smtp_admin_notifications_update','pending','2025-04-12 18:37:41','2025-04-13 03:37:41',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1744483061;s:18:\"\0*\0first_timestamp\";i:1741927127;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1744483061;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',3,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL),(2522,'aioseo_image_sitemap_scan','complete','2025-04-11 19:23:56','2025-04-12 04:23:56',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1744399436;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1744399436;}',1,1,'2025-04-11 19:26:40','2025-04-12 04:26:40',0,NULL),(2524,'aioseo_image_sitemap_scan','complete','2025-04-11 19:41:40','2025-04-12 04:41:40',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1744400500;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1744400500;}',1,1,'2025-04-11 19:45:26','2025-04-12 04:45:26',0,NULL),(2526,'aioseo_image_sitemap_scan','complete','2025-04-11 20:00:26','2025-04-12 05:00:26',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1744401626;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1744401626;}',1,1,'2025-04-11 20:03:48','2025-04-12 05:03:48',0,NULL),(2528,'aioseo_image_sitemap_scan','complete','2025-04-11 20:18:48','2025-04-12 05:18:48',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1744402728;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1744402728;}',1,1,'2025-04-11 20:48:21','2025-04-12 05:48:21',0,NULL),(2530,'aioseo_image_sitemap_scan','complete','2025-04-11 21:03:21','2025-04-12 06:03:21',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1744405401;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1744405401;}',1,1,'2025-04-11 21:17:59','2025-04-12 06:17:59',0,NULL),(2532,'aioseo_image_sitemap_scan','complete','2025-04-11 21:32:59','2025-04-12 06:32:59',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1744407179;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1744407179;}',1,1,'2025-04-11 21:58:16','2025-04-12 06:58:16',0,NULL),(2534,'aioseo_image_sitemap_scan','complete','2025-04-11 22:13:16','2025-04-12 07:13:16',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1744409596;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1744409596;}',1,1,'2025-04-11 22:37:35','2025-04-12 07:37:35',0,NULL),(2536,'aioseo_image_sitemap_scan','complete','2025-04-11 22:52:35','2025-04-12 07:52:35',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1744411955;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1744411955;}',1,1,'2025-04-11 23:35:25','2025-04-12 08:35:25',0,NULL),(2537,'aioseo_cache_prune','pending','2025-04-12 22:37:35','2025-04-13 07:37:35',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1744497455;s:18:\"\0*\0first_timestamp\";i:1740546820;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1744497455;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',1,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL),(2539,'aioseo_image_sitemap_scan','complete','2025-04-11 23:50:25','2025-04-12 08:50:25',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1744415425;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1744415425;}',1,1,'2025-04-12 00:05:01','2025-04-12 09:05:01',0,NULL),(2541,'aioseo_image_sitemap_scan','complete','2025-04-12 00:20:01','2025-04-12 09:20:01',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1744417201;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1744417201;}',1,1,'2025-04-12 00:48:42','2025-04-12 09:48:42',0,NULL),(2543,'aioseo_image_sitemap_scan','complete','2025-04-12 01:03:42','2025-04-12 10:03:42',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1744419822;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1744419822;}',1,1,'2025-04-12 01:31:03','2025-04-12 10:31:03',0,NULL),(2545,'aioseo_image_sitemap_scan','complete','2025-04-12 01:46:03','2025-04-12 10:46:03',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1744422363;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1744422363;}',1,1,'2025-04-12 02:06:37','2025-04-12 11:06:37',0,NULL),(2547,'aioseo_image_sitemap_scan','complete','2025-04-12 02:21:37','2025-04-12 11:21:37',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1744424497;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1744424497;}',1,1,'2025-04-12 02:50:30','2025-04-12 11:50:30',0,NULL),(2549,'aioseo_image_sitemap_scan','complete','2025-04-12 03:05:30','2025-04-12 12:05:30',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1744427130;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1744427130;}',1,1,'2025-04-12 03:11:17','2025-04-12 12:11:17',0,NULL),(2550,'aioseo_blc_links_scan','complete','2025-04-12 03:26:17','2025-04-12 12:26:17',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1744428377;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1744428377;}',4,1,'2025-04-12 03:33:47','2025-04-12 12:33:47',0,NULL),(2551,'aioseo_image_sitemap_scan','complete','2025-04-12 03:26:17','2025-04-12 12:26:17',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1744428377;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1744428377;}',1,1,'2025-04-12 03:33:47','2025-04-12 12:33:47',0,NULL),(2552,'aioseo_blc_links_scan','pending','2025-04-12 03:48:47','2025-04-12 12:48:47',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1744429727;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1744429727;}',4,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL),(2553,'aioseo_image_sitemap_scan','pending','2025-04-12 03:48:47','2025-04-12 12:48:47',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1744429727;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1744429727;}',1,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL); /*!40000 ALTER TABLE `wp_actionscheduler_actions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_actionscheduler_claims` -- DROP TABLE IF EXISTS `wp_actionscheduler_claims`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `wp_actionscheduler_claims` ( `claim_id` bigint unsigned NOT NULL AUTO_INCREMENT, `date_created_gmt` datetime DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`claim_id`), KEY `date_created_gmt` (`date_created_gmt`) ) ENGINE=InnoDB AUTO_INCREMENT=5562 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_actionscheduler_claims` -- LOCK TABLES `wp_actionscheduler_claims` WRITE; /*!40000 ALTER TABLE `wp_actionscheduler_claims` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_actionscheduler_claims` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_actionscheduler_groups` -- DROP TABLE IF EXISTS `wp_actionscheduler_groups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `wp_actionscheduler_groups` ( `group_id` bigint unsigned NOT NULL AUTO_INCREMENT, `slug` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL, PRIMARY KEY (`group_id`), KEY `slug` (`slug`(191)) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_actionscheduler_groups` -- LOCK TABLES `wp_actionscheduler_groups` WRITE; /*!40000 ALTER TABLE `wp_actionscheduler_groups` DISABLE KEYS */; INSERT INTO `wp_actionscheduler_groups` VALUES (1,'aioseo'),(2,'action-scheduler-migration'),(3,'wp_mail_smtp'),(4,'aioseo_blc'); /*!40000 ALTER TABLE `wp_actionscheduler_groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_actionscheduler_logs` -- DROP TABLE IF EXISTS `wp_actionscheduler_logs`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `wp_actionscheduler_logs` ( `log_id` bigint unsigned NOT NULL AUTO_INCREMENT, `action_id` bigint unsigned NOT NULL, `message` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `log_date_gmt` datetime DEFAULT '0000-00-00 00:00:00', `log_date_local` datetime DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`log_id`), KEY `action_id` (`action_id`), KEY `log_date_gmt` (`log_date_gmt`) ) ENGINE=InnoDB AUTO_INCREMENT=7626 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_actionscheduler_logs` -- LOCK TABLES `wp_actionscheduler_logs` WRITE; /*!40000 ALTER TABLE `wp_actionscheduler_logs` DISABLE KEYS */; INSERT INTO `wp_actionscheduler_logs` VALUES (2127,719,'action created','2025-03-14 04:37:46','2025-03-14 13:37:46'),(2128,720,'action created','2025-03-14 04:37:47','2025-03-14 13:37:47'),(2129,720,'action started via Async Request','2025-03-14 04:39:01','2025-03-14 13:39:01'),(2130,720,'action complete via Async Request','2025-03-14 04:39:01','2025-03-14 13:39:01'),(2131,721,'action created','2025-03-14 04:39:01','2025-03-14 13:39:01'),(2397,721,'action started via WP Cron','2025-03-15 05:49:19','2025-03-15 14:49:19'),(2398,721,'action complete via WP Cron','2025-03-15 05:49:20','2025-03-15 14:49:20'),(2399,811,'action created','2025-03-15 05:49:20','2025-03-15 14:49:20'),(2583,811,'action started via WP Cron','2025-03-16 05:49:59','2025-03-16 14:49:59'),(2584,811,'action complete via WP Cron','2025-03-16 05:49:59','2025-03-16 14:49:59'),(2585,873,'action created','2025-03-16 05:49:59','2025-03-16 14:49:59'),(2715,719,'action started via WP Cron','2025-03-17 06:06:06','2025-03-17 15:06:06'),(2716,719,'action complete via WP Cron','2025-03-17 06:06:07','2025-03-17 15:06:07'),(2717,917,'action created','2025-03-17 06:06:07','2025-03-17 15:06:07'),(2724,873,'action started via WP Cron','2025-03-17 06:06:07','2025-03-17 15:06:07'),(2725,873,'action complete via WP Cron','2025-03-17 06:06:07','2025-03-17 15:06:07'),(2726,920,'action created','2025-03-17 06:06:07','2025-03-17 15:06:07'),(2898,920,'action started via WP Cron','2025-03-18 06:43:00','2025-03-18 15:43:00'),(2899,920,'action complete via WP Cron','2025-03-18 06:43:00','2025-03-18 15:43:00'),(2900,978,'action created','2025-03-18 06:43:00','2025-03-18 15:43:00'),(3057,978,'action started via WP Cron','2025-03-19 07:42:01','2025-03-19 16:42:01'),(3058,978,'action complete via WP Cron','2025-03-19 07:42:01','2025-03-19 16:42:01'),(3059,1031,'action created','2025-03-19 07:42:01','2025-03-19 16:42:01'),(3207,1031,'action started via WP Cron','2025-03-20 08:11:20','2025-03-20 17:11:20'),(3208,1031,'action complete via WP Cron','2025-03-20 08:11:20','2025-03-20 17:11:20'),(3209,1081,'action created','2025-03-20 08:11:20','2025-03-20 17:11:20'),(3375,1081,'action started via WP Cron','2025-03-21 08:13:30','2025-03-21 17:13:30'),(3376,1081,'action complete via WP Cron','2025-03-21 08:13:30','2025-03-21 17:13:30'),(3377,1137,'action created','2025-03-21 08:13:30','2025-03-21 17:13:30'),(3573,1137,'action started via WP Cron','2025-03-22 08:45:49','2025-03-22 17:45:49'),(3574,1137,'action complete via WP Cron','2025-03-22 08:45:50','2025-03-22 17:45:50'),(3575,1203,'action created','2025-03-22 08:45:50','2025-03-22 17:45:50'),(3753,1203,'action started via WP Cron','2025-03-23 08:51:53','2025-03-23 17:51:53'),(3754,1203,'action complete via WP Cron','2025-03-23 08:51:53','2025-03-23 17:51:53'),(3755,1263,'action created','2025-03-23 08:51:53','2025-03-23 17:51:53'),(3885,917,'action started via WP Cron','2025-03-24 06:33:10','2025-03-24 15:33:10'),(3886,917,'action complete via WP Cron','2025-03-24 06:33:10','2025-03-24 15:33:10'),(3887,1307,'action created','2025-03-24 06:33:10','2025-03-24 15:33:10'),(3900,1263,'action started via WP Cron','2025-03-24 09:16:32','2025-03-24 18:16:32'),(3901,1263,'action complete via WP Cron','2025-03-24 09:16:32','2025-03-24 18:16:32'),(3902,1312,'action created','2025-03-24 09:16:32','2025-03-24 18:16:32'),(4044,1312,'action started via WP Cron','2025-03-25 09:35:35','2025-03-25 18:35:35'),(4045,1312,'action complete via WP Cron','2025-03-25 09:35:35','2025-03-25 18:35:35'),(4046,1360,'action created','2025-03-25 09:35:36','2025-03-25 18:35:36'),(4239,1360,'action started via WP Cron','2025-03-26 10:30:08','2025-03-26 19:30:08'),(4240,1360,'action complete via WP Cron','2025-03-26 10:30:08','2025-03-26 19:30:08'),(4241,1425,'action created','2025-03-26 10:30:08','2025-03-26 19:30:08'),(4395,1425,'action started via WP Cron','2025-03-27 11:08:12','2025-03-27 20:08:12'),(4396,1425,'action complete via WP Cron','2025-03-27 11:08:12','2025-03-27 20:08:12'),(4397,1477,'action created','2025-03-27 11:08:12','2025-03-27 20:08:12'),(4593,1477,'action started via WP Cron','2025-03-28 11:08:55','2025-03-28 20:08:55'),(4594,1477,'action complete via WP Cron','2025-03-28 11:08:55','2025-03-28 20:08:55'),(4595,1543,'action created','2025-03-28 11:08:55','2025-03-28 20:08:55'),(4791,1543,'action started via WP Cron','2025-03-29 11:52:31','2025-03-29 20:52:31'),(4792,1543,'action complete via WP Cron','2025-03-29 11:52:31','2025-03-29 20:52:31'),(4793,1609,'action created','2025-03-29 11:52:31','2025-03-29 20:52:31'),(4935,1609,'action started via WP Cron','2025-03-30 11:54:52','2025-03-30 20:54:52'),(4936,1609,'action complete via WP Cron','2025-03-30 11:54:52','2025-03-30 20:54:52'),(4937,1657,'action created','2025-03-30 11:54:52','2025-03-30 20:54:52'),(5043,1307,'action started via WP Cron','2025-03-31 08:37:18','2025-03-31 17:37:18'),(5044,1307,'action complete via WP Cron','2025-03-31 08:37:18','2025-03-31 17:37:18'),(5045,1693,'action created','2025-03-31 08:37:18','2025-03-31 17:37:18'),(5070,1657,'action started via WP Cron','2025-03-31 12:07:38','2025-03-31 21:07:38'),(5071,1657,'action complete via WP Cron','2025-03-31 12:07:38','2025-03-31 21:07:38'),(5072,1702,'action created','2025-03-31 12:07:38','2025-03-31 21:07:38'),(5262,1702,'action started via WP Cron','2025-04-01 14:23:12','2025-04-01 23:23:12'),(5263,1702,'action complete via WP Cron','2025-04-01 14:23:12','2025-04-01 23:23:12'),(5264,1766,'action created','2025-04-01 14:23:12','2025-04-01 23:23:12'),(5469,1766,'action started via WP Cron','2025-04-02 15:08:14','2025-04-03 00:08:14'),(5470,1766,'action complete via WP Cron','2025-04-02 15:08:14','2025-04-03 00:08:14'),(5471,1835,'action created','2025-04-02 15:08:14','2025-04-03 00:08:14'),(5739,1835,'action started via WP Cron','2025-04-03 15:18:59','2025-04-04 00:18:59'),(5740,1835,'action complete via WP Cron','2025-04-03 15:18:59','2025-04-04 00:18:59'),(5741,1925,'action created','2025-04-03 15:18:59','2025-04-04 00:18:59'),(5783,1939,'action created','2025-04-03 22:22:41','2025-04-04 07:22:41'),(5988,1925,'action started via WP Cron','2025-04-04 15:50:27','2025-04-05 00:50:27'),(5989,1925,'action complete via WP Cron','2025-04-04 15:50:27','2025-04-05 00:50:27'),(5990,2008,'action created','2025-04-04 15:50:27','2025-04-05 00:50:27'),(6204,2008,'action started via WP Cron','2025-04-05 17:07:20','2025-04-06 02:07:20'),(6205,2008,'action complete via WP Cron','2025-04-05 17:07:20','2025-04-06 02:07:20'),(6206,2080,'action created','2025-04-05 17:07:20','2025-04-06 02:07:20'),(6372,2080,'action started via WP Cron','2025-04-06 17:42:25','2025-04-07 02:42:25'),(6373,2080,'action complete via WP Cron','2025-04-06 17:42:25','2025-04-07 02:42:25'),(6374,2136,'action created','2025-04-06 17:42:25','2025-04-07 02:42:25'),(6516,1693,'action started via WP Cron','2025-04-07 09:32:23','2025-04-07 18:32:23'),(6517,1693,'action complete via WP Cron','2025-04-07 09:32:23','2025-04-07 18:32:23'),(6518,2184,'action created','2025-04-07 09:32:23','2025-04-07 18:32:23'),(6585,2136,'action started via WP Cron','2025-04-07 17:53:10','2025-04-08 02:53:10'),(6586,2136,'action complete via WP Cron','2025-04-07 17:53:11','2025-04-08 02:53:11'),(6587,2207,'action created','2025-04-07 17:53:11','2025-04-08 02:53:11'),(6813,2207,'action started via WP Cron','2025-04-08 18:08:52','2025-04-09 03:08:52'),(6814,2207,'action complete via WP Cron','2025-04-08 18:08:52','2025-04-09 03:08:52'),(6815,2283,'action created','2025-04-08 18:08:52','2025-04-09 03:08:52'),(6875,2303,'action created','2025-04-09 00:13:08','2025-04-09 09:13:08'),(7080,2283,'action started via WP Cron','2025-04-09 18:19:30','2025-04-10 03:19:30'),(7081,2283,'action complete via WP Cron','2025-04-09 18:19:30','2025-04-10 03:19:30'),(7082,2372,'action created','2025-04-09 18:19:30','2025-04-10 03:19:30'),(7326,2372,'action started via WP Cron','2025-04-10 18:34:29','2025-04-11 03:34:29'),(7327,2372,'action complete via WP Cron','2025-04-10 18:34:30','2025-04-11 03:34:30'),(7328,2454,'action created','2025-04-10 18:34:30','2025-04-11 03:34:30'),(7343,2459,'action created','2025-04-10 22:22:19','2025-04-11 07:22:19'),(7384,2473,'action created','2025-04-11 03:01:23','2025-04-11 12:01:23'),(7389,2473,'action started via WP Cron','2025-04-11 03:34:09','2025-04-11 12:34:09'),(7390,2475,'action created','2025-04-11 03:34:09','2025-04-11 12:34:09'),(7391,2473,'action complete via WP Cron','2025-04-11 03:34:09','2025-04-11 12:34:09'),(7395,2475,'action started via WP Cron','2025-04-11 03:51:44','2025-04-11 12:51:44'),(7396,2477,'action created','2025-04-11 03:51:44','2025-04-11 12:51:44'),(7397,2475,'action complete via WP Cron','2025-04-11 03:51:44','2025-04-11 12:51:44'),(7401,2477,'action started via WP Cron','2025-04-11 04:59:20','2025-04-11 13:59:20'),(7402,2479,'action created','2025-04-11 04:59:20','2025-04-11 13:59:20'),(7403,2477,'action complete via WP Cron','2025-04-11 04:59:20','2025-04-11 13:59:20'),(7407,2479,'action started via WP Cron','2025-04-11 05:18:14','2025-04-11 14:18:14'),(7408,2481,'action created','2025-04-11 05:18:14','2025-04-11 14:18:14'),(7409,2479,'action complete via WP Cron','2025-04-11 05:18:14','2025-04-11 14:18:14'),(7413,2481,'action started via WP Cron','2025-04-11 06:34:48','2025-04-11 15:34:48'),(7414,2483,'action created','2025-04-11 06:34:48','2025-04-11 15:34:48'),(7415,2481,'action complete via WP Cron','2025-04-11 06:34:48','2025-04-11 15:34:48'),(7419,2483,'action started via WP Cron','2025-04-11 07:01:47','2025-04-11 16:01:47'),(7420,2485,'action created','2025-04-11 07:01:47','2025-04-11 16:01:47'),(7421,2483,'action complete via WP Cron','2025-04-11 07:01:47','2025-04-11 16:01:47'),(7425,2485,'action started via WP Cron','2025-04-11 07:21:37','2025-04-11 16:21:37'),(7426,2487,'action created','2025-04-11 07:21:37','2025-04-11 16:21:37'),(7427,2485,'action complete via WP Cron','2025-04-11 07:21:37','2025-04-11 16:21:37'),(7431,2487,'action started via WP Cron','2025-04-11 08:00:18','2025-04-11 17:00:18'),(7432,2489,'action created','2025-04-11 08:00:18','2025-04-11 17:00:18'),(7433,2487,'action complete via WP Cron','2025-04-11 08:00:18','2025-04-11 17:00:18'),(7437,2489,'action started via WP Cron','2025-04-11 08:22:22','2025-04-11 17:22:22'),(7438,2491,'action created','2025-04-11 08:22:22','2025-04-11 17:22:22'),(7439,2489,'action complete via WP Cron','2025-04-11 08:22:22','2025-04-11 17:22:22'),(7443,2491,'action started via WP Cron','2025-04-11 10:55:57','2025-04-11 19:55:57'),(7444,2493,'action created','2025-04-11 10:55:57','2025-04-11 19:55:57'),(7445,2491,'action complete via WP Cron','2025-04-11 10:55:57','2025-04-11 19:55:57'),(7449,2493,'action started via WP Cron','2025-04-11 11:48:51','2025-04-11 20:48:51'),(7450,2495,'action created','2025-04-11 11:48:51','2025-04-11 20:48:51'),(7451,2493,'action complete via WP Cron','2025-04-11 11:48:51','2025-04-11 20:48:51'),(7455,2495,'action started via WP Cron','2025-04-11 12:30:04','2025-04-11 21:30:04'),(7456,2497,'action created','2025-04-11 12:30:04','2025-04-11 21:30:04'),(7457,2495,'action complete via WP Cron','2025-04-11 12:30:04','2025-04-11 21:30:04'),(7461,2497,'action started via WP Cron','2025-04-11 13:00:25','2025-04-11 22:00:25'),(7462,2499,'action created','2025-04-11 13:00:25','2025-04-11 22:00:25'),(7463,2497,'action complete via WP Cron','2025-04-11 13:00:25','2025-04-11 22:00:25'),(7464,2500,'action created','2025-04-11 13:00:42','2025-04-11 22:00:42'),(7466,2500,'action started via WP Cron','2025-04-11 13:50:28','2025-04-11 22:50:28'),(7467,2500,'action complete via WP Cron','2025-04-11 13:50:28','2025-04-11 22:50:28'),(7473,2499,'action started via WP Cron','2025-04-11 13:50:28','2025-04-11 22:50:28'),(7474,2503,'action created','2025-04-11 13:50:28','2025-04-11 22:50:28'),(7475,2499,'action complete via WP Cron','2025-04-11 13:50:28','2025-04-11 22:50:28'),(7479,2503,'action started via WP Cron','2025-04-11 14:22:43','2025-04-11 23:22:43'),(7480,2505,'action created','2025-04-11 14:22:43','2025-04-11 23:22:43'),(7481,2503,'action complete via WP Cron','2025-04-11 14:22:43','2025-04-11 23:22:43'),(7485,2505,'action started via WP Cron','2025-04-11 14:54:39','2025-04-11 23:54:39'),(7486,2507,'action created','2025-04-11 14:54:39','2025-04-11 23:54:39'),(7487,2505,'action complete via WP Cron','2025-04-11 14:54:39','2025-04-11 23:54:39'),(7491,2507,'action started via WP Cron','2025-04-11 16:00:39','2025-04-12 01:00:39'),(7492,2509,'action created','2025-04-11 16:00:39','2025-04-12 01:00:39'),(7493,2507,'action complete via WP Cron','2025-04-11 16:00:39','2025-04-12 01:00:39'),(7497,2509,'action started via WP Cron','2025-04-11 16:59:11','2025-04-12 01:59:11'),(7498,2511,'action created','2025-04-11 16:59:11','2025-04-12 01:59:11'),(7499,2509,'action complete via WP Cron','2025-04-11 16:59:11','2025-04-12 01:59:11'),(7503,2511,'action started via WP Cron','2025-04-11 17:18:18','2025-04-12 02:18:18'),(7504,2513,'action created','2025-04-11 17:18:18','2025-04-12 02:18:18'),(7505,2511,'action complete via WP Cron','2025-04-11 17:18:18','2025-04-12 02:18:18'),(7509,2513,'action started via WP Cron','2025-04-11 17:44:33','2025-04-12 02:44:33'),(7510,2515,'action created','2025-04-11 17:44:33','2025-04-12 02:44:33'),(7511,2513,'action complete via WP Cron','2025-04-11 17:44:33','2025-04-12 02:44:33'),(7515,2515,'action started via WP Cron','2025-04-11 18:08:10','2025-04-12 03:08:10'),(7516,2517,'action created','2025-04-11 18:08:10','2025-04-12 03:08:10'),(7517,2515,'action complete via WP Cron','2025-04-11 18:08:10','2025-04-12 03:08:10'),(7521,2517,'action started via WP Cron','2025-04-11 18:37:41','2025-04-12 03:37:41'),(7522,2519,'action created','2025-04-11 18:37:41','2025-04-12 03:37:41'),(7523,2517,'action complete via WP Cron','2025-04-11 18:37:41','2025-04-12 03:37:41'),(7524,2454,'action started via WP Cron','2025-04-11 18:37:41','2025-04-12 03:37:41'),(7525,2454,'action complete via WP Cron','2025-04-11 18:37:41','2025-04-12 03:37:41'),(7526,2520,'action created','2025-04-11 18:37:41','2025-04-12 03:37:41'),(7530,2519,'action started via WP Cron','2025-04-11 19:08:56','2025-04-12 04:08:56'),(7531,2522,'action created','2025-04-11 19:08:56','2025-04-12 04:08:56'),(7532,2519,'action complete via WP Cron','2025-04-11 19:08:56','2025-04-12 04:08:56'),(7536,2522,'action started via WP Cron','2025-04-11 19:26:40','2025-04-12 04:26:40'),(7537,2524,'action created','2025-04-11 19:26:40','2025-04-12 04:26:40'),(7538,2522,'action complete via WP Cron','2025-04-11 19:26:40','2025-04-12 04:26:40'),(7542,2524,'action started via WP Cron','2025-04-11 19:45:26','2025-04-12 04:45:26'),(7543,2526,'action created','2025-04-11 19:45:26','2025-04-12 04:45:26'),(7544,2524,'action complete via WP Cron','2025-04-11 19:45:26','2025-04-12 04:45:26'),(7548,2526,'action started via WP Cron','2025-04-11 20:03:48','2025-04-12 05:03:48'),(7549,2528,'action created','2025-04-11 20:03:48','2025-04-12 05:03:48'),(7550,2526,'action complete via WP Cron','2025-04-11 20:03:48','2025-04-12 05:03:48'),(7554,2528,'action started via WP Cron','2025-04-11 20:48:21','2025-04-12 05:48:21'),(7555,2530,'action created','2025-04-11 20:48:21','2025-04-12 05:48:21'),(7556,2528,'action complete via WP Cron','2025-04-11 20:48:21','2025-04-12 05:48:21'),(7560,2530,'action started via WP Cron','2025-04-11 21:17:59','2025-04-12 06:17:59'),(7561,2532,'action created','2025-04-11 21:17:59','2025-04-12 06:17:59'),(7562,2530,'action complete via WP Cron','2025-04-11 21:17:59','2025-04-12 06:17:59'),(7566,2532,'action started via WP Cron','2025-04-11 21:58:16','2025-04-12 06:58:16'),(7567,2534,'action created','2025-04-11 21:58:16','2025-04-12 06:58:16'),(7568,2532,'action complete via WP Cron','2025-04-11 21:58:16','2025-04-12 06:58:16'),(7572,2534,'action started via WP Cron','2025-04-11 22:37:34','2025-04-12 07:37:34'),(7573,2536,'action created','2025-04-11 22:37:35','2025-04-12 07:37:35'),(7574,2534,'action complete via WP Cron','2025-04-11 22:37:35','2025-04-12 07:37:35'),(7575,2459,'action started via WP Cron','2025-04-11 22:37:35','2025-04-12 07:37:35'),(7576,2459,'action complete via WP Cron','2025-04-11 22:37:35','2025-04-12 07:37:35'),(7577,2537,'action created','2025-04-11 22:37:35','2025-04-12 07:37:35'),(7581,2536,'action started via WP Cron','2025-04-11 23:35:25','2025-04-12 08:35:25'),(7582,2539,'action created','2025-04-11 23:35:25','2025-04-12 08:35:25'),(7583,2536,'action complete via WP Cron','2025-04-11 23:35:25','2025-04-12 08:35:25'),(7587,2539,'action started via WP Cron','2025-04-12 00:05:01','2025-04-12 09:05:01'),(7588,2541,'action created','2025-04-12 00:05:01','2025-04-12 09:05:01'),(7589,2539,'action complete via WP Cron','2025-04-12 00:05:01','2025-04-12 09:05:01'),(7593,2541,'action started via WP Cron','2025-04-12 00:48:42','2025-04-12 09:48:42'),(7594,2543,'action created','2025-04-12 00:48:42','2025-04-12 09:48:42'),(7595,2541,'action complete via WP Cron','2025-04-12 00:48:42','2025-04-12 09:48:42'),(7599,2543,'action started via WP Cron','2025-04-12 01:31:03','2025-04-12 10:31:03'),(7600,2545,'action created','2025-04-12 01:31:03','2025-04-12 10:31:03'),(7601,2543,'action complete via WP Cron','2025-04-12 01:31:03','2025-04-12 10:31:03'),(7605,2545,'action started via WP Cron','2025-04-12 02:06:37','2025-04-12 11:06:37'),(7606,2547,'action created','2025-04-12 02:06:37','2025-04-12 11:06:37'),(7607,2545,'action complete via WP Cron','2025-04-12 02:06:37','2025-04-12 11:06:37'),(7611,2547,'action started via WP Cron','2025-04-12 02:50:30','2025-04-12 11:50:30'),(7612,2549,'action created','2025-04-12 02:50:30','2025-04-12 11:50:30'),(7613,2547,'action complete via WP Cron','2025-04-12 02:50:30','2025-04-12 11:50:30'),(7615,2550,'action created','2025-04-12 03:11:17','2025-04-12 12:11:17'),(7617,2549,'action started via WP Cron','2025-04-12 03:11:17','2025-04-12 12:11:17'),(7618,2551,'action created','2025-04-12 03:11:17','2025-04-12 12:11:17'),(7619,2549,'action complete via WP Cron','2025-04-12 03:11:17','2025-04-12 12:11:17'),(7620,2550,'action started via WP Cron','2025-04-12 03:33:47','2025-04-12 12:33:47'),(7621,2552,'action created','2025-04-12 03:33:47','2025-04-12 12:33:47'),(7622,2550,'action complete via WP Cron','2025-04-12 03:33:47','2025-04-12 12:33:47'),(7623,2551,'action started via WP Cron','2025-04-12 03:33:47','2025-04-12 12:33:47'),(7624,2553,'action created','2025-04-12 03:33:47','2025-04-12 12:33:47'),(7625,2551,'action complete via WP Cron','2025-04-12 03:33:47','2025-04-12 12:33:47'); /*!40000 ALTER TABLE `wp_actionscheduler_logs` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_aioseo_blc_cache` -- DROP TABLE IF EXISTS `wp_aioseo_blc_cache`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `wp_aioseo_blc_cache` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `key` varchar(80) COLLATE utf8mb4_unicode_520_ci NOT NULL, `value` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL, `expiration` datetime DEFAULT NULL, `created` datetime NOT NULL, `updated` datetime NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `ndx_aioseo_blc_cache_key` (`key`), KEY `ndx_aioseo_blc_cache_expiration` (`expiration`) ) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_aioseo_blc_cache` -- LOCK TABLES `wp_aioseo_blc_cache` WRITE; /*!40000 ALTER TABLE `wp_aioseo_blc_cache` DISABLE KEYS */; INSERT INTO `wp_aioseo_blc_cache` VALUES (2,'aioseo_blc_admin_notifications_update','i:1744462842;','2025-04-12 13:00:42','2025-03-14 04:45:21','2025-04-11 13:00:42'),(3,'aioseo_blc_scan_post_2','b:1;','2025-03-14 04:45:25','2025-03-14 04:45:22','2025-03-14 04:45:22'),(4,'aioseo_blc_scan_post_11','b:1;','2025-03-14 04:45:25','2025-03-14 04:45:22','2025-03-14 04:45:22'),(5,'aioseo_blc_scan_post_13','b:1;','2025-03-14 04:45:25','2025-03-14 04:45:22','2025-03-14 04:45:22'); /*!40000 ALTER TABLE `wp_aioseo_blc_cache` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_aioseo_blc_link_status` -- DROP TABLE IF EXISTS `wp_aioseo_blc_link_status`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `wp_aioseo_blc_link_status` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `url` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `url_hash` varchar(40) COLLATE utf8mb4_unicode_520_ci NOT NULL, `http_status_code` smallint DEFAULT NULL, `broken` tinyint unsigned NOT NULL DEFAULT '0', `dismissed` tinyint(1) NOT NULL DEFAULT '0', `request_duration` float DEFAULT NULL, `scan_count` int unsigned NOT NULL DEFAULT '0', `redirect_count` smallint unsigned NOT NULL DEFAULT '0', `final_url` text COLLATE utf8mb4_unicode_520_ci, `first_failure` datetime DEFAULT NULL, `log` text COLLATE utf8mb4_unicode_520_ci, `last_scan_date` datetime DEFAULT NULL, `created` datetime NOT NULL, `updated` datetime NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `ndx_aioseo_blc_link_status_url_hash` (`url_hash`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_aioseo_blc_link_status` -- LOCK TABLES `wp_aioseo_blc_link_status` WRITE; /*!40000 ALTER TABLE `wp_aioseo_blc_link_status` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_aioseo_blc_link_status` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_aioseo_blc_links` -- DROP TABLE IF EXISTS `wp_aioseo_blc_links`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `wp_aioseo_blc_links` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `post_id` bigint unsigned NOT NULL, `blc_link_status_id` bigint unsigned DEFAULT NULL, `url` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `url_hash` varchar(40) COLLATE utf8mb4_unicode_520_ci NOT NULL, `hostname` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `hostname_url` varchar(40) COLLATE utf8mb4_unicode_520_ci NOT NULL, `external` tinyint(1) NOT NULL DEFAULT '0', `anchor` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `phrase` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `phrase_html` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `paragraph` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `paragraph_html` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `created` datetime NOT NULL, `updated` datetime NOT NULL, PRIMARY KEY (`id`), KEY `ndx_aioseo_blc_links_post_id` (`post_id`), KEY `ndx_aioseo_blc_links_hostname` (`hostname`(10)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_aioseo_blc_links` -- LOCK TABLES `wp_aioseo_blc_links` WRITE; /*!40000 ALTER TABLE `wp_aioseo_blc_links` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_aioseo_blc_links` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_aioseo_blc_notifications` -- DROP TABLE IF EXISTS `wp_aioseo_blc_notifications`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `wp_aioseo_blc_notifications` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `notification_id` bigint unsigned DEFAULT NULL, `notification_name` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `slug` varchar(13) COLLATE utf8mb4_unicode_520_ci NOT NULL, `title` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `content` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL, `type` varchar(64) COLLATE utf8mb4_unicode_520_ci NOT NULL, `level` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `start` datetime DEFAULT NULL, `end` datetime DEFAULT NULL, `button1_label` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `button1_action` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `button2_label` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `button2_action` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `dismissed` tinyint(1) NOT NULL DEFAULT '0', `new` tinyint(1) NOT NULL DEFAULT '1', `created` datetime NOT NULL, `updated` datetime NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `ndx__aioseo_blc_notifications_slug` (`slug`), KEY `ndx__aioseo_blc_notifications_dates` (`start`,`end`), KEY `ndx__aioseo_blc_notifications_type` (`type`), KEY `ndx__aioseo_blc_notifications_dismissed` (`dismissed`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_aioseo_blc_notifications` -- LOCK TABLES `wp_aioseo_blc_notifications` WRITE; /*!40000 ALTER TABLE `wp_aioseo_blc_notifications` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_aioseo_blc_notifications` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_aioseo_blc_posts` -- DROP TABLE IF EXISTS `wp_aioseo_blc_posts`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `wp_aioseo_blc_posts` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `post_id` bigint unsigned NOT NULL, `link_scan_date` datetime DEFAULT NULL, `created` datetime NOT NULL, `updated` datetime NOT NULL, PRIMARY KEY (`id`), KEY `ndx_aioseo_blc_posts_post_id` (`post_id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_aioseo_blc_posts` -- LOCK TABLES `wp_aioseo_blc_posts` WRITE; /*!40000 ALTER TABLE `wp_aioseo_blc_posts` DISABLE KEYS */; INSERT INTO `wp_aioseo_blc_posts` VALUES (1,2,'2025-03-14 04:45:22','2025-03-14 04:45:22','2025-03-14 04:45:22'),(2,11,'2025-03-14 04:45:22','2025-03-14 04:45:22','2025-03-14 04:45:22'),(3,13,'2025-03-14 04:45:22','2025-03-14 04:45:22','2025-03-14 04:45:22'); /*!40000 ALTER TABLE `wp_aioseo_blc_posts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_aioseo_cache` -- DROP TABLE IF EXISTS `wp_aioseo_cache`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `wp_aioseo_cache` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `key` varchar(80) COLLATE utf8mb4_unicode_520_ci NOT NULL, `value` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL, `expiration` datetime DEFAULT NULL, `created` datetime NOT NULL, `updated` datetime NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `ndx_aioseo_cache_key` (`key`), KEY `ndx_aioseo_cache_expiration` (`expiration`) ) ENGINE=InnoDB AUTO_INCREMENT=239 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_aioseo_cache` -- LOCK TABLES `wp_aioseo_cache` WRITE; /*!40000 ALTER TABLE `wp_aioseo_cache` DISABLE KEYS */; INSERT INTO `wp_aioseo_cache` VALUES (1,'attachment_url_to_post_id_a6132e4c16b782149ab01794457f454bad94d198','s:2:\"29\";','2025-04-13 02:06:39','2025-03-27 22:04:51','2025-04-12 02:06:39'),(2,'attachment_url_to_post_id_cf5a1781759e1faa0af663e67c28993bbd0a3867','s:2:\"23\";','2025-04-13 02:06:39','2025-03-27 22:04:51','2025-04-12 02:06:39'),(3,'addons','a:9:{i:0;a:15:{s:3:\"sku\";s:16:\"aioseo-redirects\";s:4:\"name\";s:19:\"Redirection Manager\";s:7:\"version\";s:6:\"1.4.10\";s:5:\"image\";N;s:4:\"icon\";s:480:\"PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgY2xhc3M9ImFpb3Nlby1yZWRpcmVjdCI+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMC41OSA5LjE3TDUuNDEgNEw0IDUuNDFMOS4xNyAxMC41OEwxMC41OSA5LjE3Wk0xNC41IDRMMTYuNTQgNi4wNEw0IDE4LjU5TDUuNDEgMjBMMTcuOTYgNy40NkwyMCA5LjVWNEgxNC41Wk0xMy40MiAxNC44MkwxNC44MyAxMy40MUwxNy45NiAxNi41NEwyMCAxNC41VjIwSDE0LjVMMTYuNTUgMTcuOTVMMTMuNDIgMTQuODJaIiBmaWxsPSJjdXJyZW50Q29sb3IiIC8+PC9zdmc+\";s:6:\"levels\";a:4:{i:0;s:8:\"business\";i:1;s:6:\"agency\";i:2;s:3:\"pro\";i:3;s:5:\"elite\";}s:13:\"currentLevels\";a:2:{i:0;s:3:\"pro\";i:1;s:5:\"elite\";}s:15:\"requiresUpgrade\";b:1;s:11:\"description\";s:101:\"<p>Our Redirection Manager allows you to create and manage redirects for 404s or modified posts.</p>\n\";s:18:\"descriptionVersion\";i:0;s:11:\"downloadUrl\";s:0:\"\";s:10:\"productUrl\";s:48:\"https://aioseo.com/features/redirection-manager/\";s:12:\"learnMoreUrl\";s:48:\"https://aioseo.com/features/redirection-manager/\";s:9:\"manageUrl\";s:40:\"https://route#aioseo-redirects:redirects\";s:8:\"features\";a:1:{i:0;a:2:{s:13:\"license_level\";s:5:\"elite\";s:7:\"feature\";s:19:\"404-parent-redirect\";}}}i:1;a:15:{s:3:\"sku\";s:21:\"aioseo-link-assistant\";s:4:\"name\";s:14:\"Link Assistant\";s:7:\"version\";s:5:\"1.1.9\";s:5:\"image\";N;s:4:\"icon\";s:516:\"PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMSAxNUg3QzUuMzUgMTUgNCAxMy42NSA0IDEyQzQgMTAuMzUgNS4zNSA5IDcgOUgxMVY3SDdDNC4yNCA3IDIgOS4yNCAyIDEyQzIgMTQuNzYgNC4yNCAxNyA3IDE3SDExVjE1Wk0xNyA3SDEzVjlIMTdDMTguNjUgOSAyMCAxMC4zNSAyMCAxMkMyMCAxMy42NSAxOC42NSAxNSAxNyAxNUgxM1YxN0gxN0MxOS43NiAxNyAyMiAxNC43NiAyMiAxMkMyMiA5LjI0IDE5Ljc2IDcgMTcgN1pNMTYgMTFIOFYxM0gxNlYxMVoiIGZpbGw9ImN1cnJlbnRDb2xvciIvPjwvc3ZnPgo=\";s:6:\"levels\";a:3:{i:0;s:6:\"agency\";i:1;s:3:\"pro\";i:2;s:5:\"elite\";}s:13:\"currentLevels\";a:2:{i:0;s:3:\"pro\";i:1;s:5:\"elite\";}s:15:\"requiresUpgrade\";b:1;s:11:\"description\";s:283:\"<p>Super-charge your SEO with Link Assistant! Get relevant suggestions for adding internal links to older content as well as finding any orphaned posts that have no internal links. Use our reporting feature to see all link suggestions or add them directly from any page or post.</p>\n\";s:18:\"descriptionVersion\";i:0;s:11:\"downloadUrl\";s:0:\"\";s:10:\"productUrl\";s:39:\"https://aioseo.com/docs/link-assistant/\";s:12:\"learnMoreUrl\";s:39:\"https://aioseo.com/docs/link-assistant/\";s:9:\"manageUrl\";s:44:\"https://route#aioseo-link-assistant:overview\";s:8:\"features\";a:0:{}}i:2;a:15:{s:3:\"sku\";s:20:\"aioseo-video-sitemap\";s:4:\"name\";s:13:\"Video Sitemap\";s:7:\"version\";s:6:\"1.1.18\";s:5:\"image\";N;s:4:\"icon\";s:420:\"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMCAyMCI+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBkPSJNMy4zMzMgNWgxMGMuNDU5IDAgLjgzNC4zNzUuODM0LjgzM1Y4Ljc1TDE3LjUgNS40MTd2OS4xNjZsLTMuMzMzLTMuMzMzdjIuOTE3YS44MzYuODM2IDAgMCAxLS44MzQuODMzaC0xMGEuODM2LjgzNiAwIDAgMS0uODMzLS44MzNWNS44MzNjMC0uNDU4LjM3NS0uODMzLjgzMy0uODMzWm05LjE2NyA4LjMzM1Y2LjY2N0g0LjE2N3Y2LjY2NkgxMi41WiIgY2xpcC1ydWxlPSJldmVub2RkIi8+PC9zdmc+\";s:6:\"levels\";a:5:{i:0;s:10:\"individual\";i:1;s:8:\"business\";i:2;s:6:\"agency\";i:3;s:3:\"pro\";i:4;s:5:\"elite\";}s:13:\"currentLevels\";a:2:{i:0;s:3:\"pro\";i:1;s:5:\"elite\";}s:15:\"requiresUpgrade\";b:1;s:11:\"description\";s:243:\"<p>The Video Sitemap works in much the same way as the XML Sitemap module, it generates an XML Sitemap specifically for video content on your site. Search engines use this information to display rich snippet information in search results.</p>\n\";s:18:\"descriptionVersion\";i:0;s:11:\"downloadUrl\";s:0:\"\";s:10:\"productUrl\";s:54:\"https://aioseo.com/docs/how-to-create-a-video-sitemap/\";s:12:\"learnMoreUrl\";s:54:\"https://aioseo.com/docs/how-to-create-a-video-sitemap/\";s:9:\"manageUrl\";s:43:\"https://route#aioseo-sitemaps:video-sitemap\";s:8:\"features\";a:0:{}}i:3;a:15:{s:3:\"sku\";s:21:\"aioseo-local-business\";s:4:\"name\";s:18:\"Local Business SEO\";s:7:\"version\";s:6:\"1.3.10\";s:5:\"image\";N;s:4:\"icon\";s:18:\"svg-local-business\";s:6:\"levels\";a:5:{i:0;s:8:\"business\";i:1;s:6:\"agency\";i:2;s:4:\"plus\";i:3;s:3:\"pro\";i:4;s:5:\"elite\";}s:13:\"currentLevels\";a:3:{i:0;s:4:\"plus\";i:1;s:3:\"pro\";i:2;s:5:\"elite\";}s:15:\"requiresUpgrade\";b:1;s:11:\"description\";s:253:\"<p>Local Business schema markup enables you to tell Google about your business, including your business name, address and phone number, opening hours and price range. This information may be displayed as a Knowledge Graph card or business carousel.</p>\n\";s:18:\"descriptionVersion\";i:0;s:11:\"downloadUrl\";s:0:\"\";s:10:\"productUrl\";s:43:\"https://aioseo.com/docs/local-business-seo/\";s:12:\"learnMoreUrl\";s:43:\"https://aioseo.com/docs/local-business-seo/\";s:9:\"manageUrl\";s:40:\"https://route#aioseo-local-seo:locations\";s:8:\"features\";a:0:{}}i:4;a:15:{s:3:\"sku\";s:19:\"aioseo-news-sitemap\";s:4:\"name\";s:12:\"News Sitemap\";s:7:\"version\";s:6:\"1.0.18\";s:5:\"image\";N;s:4:\"icon\";s:16:\"svg-sitemaps-pro\";s:6:\"levels\";a:4:{i:0;s:8:\"business\";i:1;s:6:\"agency\";i:2;s:3:\"pro\";i:3;s:5:\"elite\";}s:13:\"currentLevels\";a:2:{i:0;s:3:\"pro\";i:1;s:5:\"elite\";}s:15:\"requiresUpgrade\";b:1;s:11:\"description\";s:284:\"<p>Our Google News Sitemap lets you control which content you submit to Google News and only contains articles that were published in the last 48 hours. In order to submit a News Sitemap to Google, you must have added your site to Google’s Publisher Center and had it approved.</p>\n\";s:18:\"descriptionVersion\";i:0;s:11:\"downloadUrl\";s:0:\"\";s:10:\"productUrl\";s:60:\"https://aioseo.com/docs/how-to-create-a-google-news-sitemap/\";s:12:\"learnMoreUrl\";s:60:\"https://aioseo.com/docs/how-to-create-a-google-news-sitemap/\";s:9:\"manageUrl\";s:42:\"https://route#aioseo-sitemaps:news-sitemap\";s:8:\"features\";a:0:{}}i:5;a:15:{s:3:\"sku\";s:16:\"aioseo-index-now\";s:4:\"name\";s:8:\"IndexNow\";s:7:\"version\";s:6:\"1.0.12\";s:5:\"image\";N;s:4:\"icon\";s:1836:\"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMCAyMCI+PHBhdGggZD0iTTE3LjY0NCAxMS42NTVjLS4zMjEtLjIyOS0uNjU0LS40NDYtLjk2NC0uNjk3LS42NDMtLjUzNC0uNjMxLTEuMzcyLjAyMy0xLjg4NC4zMS0uMjQuNjQyLS40NTguOTY0LS42OTcuMTg0LS4xMy4zMjEtLjI5NC4zMzMtLjUzNCAwLS4wMzIgMC0uMDc2LS4wMTItLjEyYTcuNDQyIDcuNDQyIDAgMCAwLTEuODkzLTMuMTQ3Yy0uMjA3LS4yMDctLjQ2LS4yNC0uNzQ2LS4xMmEyMi4wNSAyMi4wNSAwIDAgMS0xLjA2OC40MzZjLS45MTguMzQ4LTEuNjg3LS4wODctMS44MTMtMS4wMjQtLjA0Ni0uMzM4LS4wOC0uNjc1LS4xMTUtMS4wMTMtLjAzNC0uMzctLjI0LS41OTktLjYzLS42NzVhOC40NDYgOC40NDYgMCAwIDAtMy40NjcgMGMtLjM2Ny4wNzYtLjU3NC4yNzItLjYwOC42MzJhMTMuNzggMTMuNzggMCAwIDEtLjE2IDEuMTc2Yy0uMTYxLjgyOC0uOTE5IDEuMjMtMS43NDUuOTE1LS4zNTYtLjEzLS43MTItLjI5NC0xLjA2Ny0uNDQ3LS4zMzMtLjE0MS0uNjA5LS4wODctLjg1LjE2NGE3Ljc3OSA3Ljc3OSAwIDAgMC0xLjc3OSAyLjkxOGMtLjExNC4zMzgtLjAyMy42MS4yODcuODI4LjI5OS4yMDcuNjA5LjQxNC44OTUuNjMyLjc3LjU4OC43NTggMS40NDgtLjAyMiAyLjAxNC0uMjg3LjIwNy0uNTc0LjQxNC0uODYxLjYxLS4zMjIuMjE4LS40MTMuNTEyLS4yOTkuODZhNy44NyA3Ljg3IDAgMCAwIDEuNzQ1IDIuODg3Yy4yNC4yNS41MTYuMzE2Ljg1LjE4NS4zOS0uMTUzLjc2OC0uMzI3IDEuMTU4LS40NjguNzU4LS4yNzMgMS41MTUuMTIgMS42NzYuODcuMDguNDA0LjEyNi44MTguMTYgMS4yMi4wMzUuMzcuMjQxLjU2Ny41OTcuNjQzIDEuMTYuMjQgMi4zMDcuMjQgMy40NjYuMDExLjQxMy0uMDg3LjYwOC0uMzE2LjY0My0uNzA4LjAyMy0uMzI3LjA2OS0uNjUzLjEwMy0uOTcuMTE1LS45MjUuODk1LTEuMzgyIDEuODE0LTEuMDQ1LjM0NC4xMzEuNjg4LjI3MyAxLjAzMi40MjUuMzY4LjE1My42NjYuMDc2LjkxOC0uMjA3YTguNDk0IDguNDk0IDAgMCAwIDEuNzEtMi44MmMuMTUtLjMzOC4wNTgtLjYyMS0uMjc1LS44NXptLTkuNDguNjk3Yy0uMTAzLjEzLS4zMS4xMi0uNDEzLS4wMUw2LjAzIDEwLjE3M2EuMjIuMjIgMCAwIDEgMC0uMjgzbDEuOTI4LTIuNDI5IDEuNDY5IDEuNzItLjYzMS44NS41MjcuNzA4YS4yMDUuMjA1IDAgMCAxLS4wMTEuMjYyem01LjgzLTIuMTc4LTIuNDc5IDMuMDE3YS4yNi4yNiAwIDAgMS0uMjA2LjEwOUg5LjEwNWEuMjUuMjUgMCAwIDEtLjIwNi0uNDAzbDIuMzUzLTIuODY1LTIuNjc0LTMuMjY3aDIuODY5bDIuNTU5IDMuMTI2YS4yMzYuMjM2IDAgMCAxLS4wMTEuMjgzeiIvPjwvc3ZnPg==\";s:6:\"levels\";a:6:{i:0;s:8:\"business\";i:1;s:6:\"agency\";i:2;s:5:\"basic\";i:3;s:4:\"plus\";i:4;s:3:\"pro\";i:5;s:5:\"elite\";}s:13:\"currentLevels\";a:4:{i:0;s:5:\"basic\";i:1;s:4:\"plus\";i:2;s:3:\"pro\";i:3;s:5:\"elite\";}s:15:\"requiresUpgrade\";b:1;s:11:\"description\";s:193:\"<p>Add IndexNow support to instantly notify search engines when your content has changed. This helps the search engines to prioritize the changes on your website and helps you rank faster.</p>\n\";s:18:\"descriptionVersion\";i:0;s:11:\"downloadUrl\";s:0:\"\";s:10:\"productUrl\";s:28:\"https://aioseo.com/index-now\";s:12:\"learnMoreUrl\";s:28:\"https://aioseo.com/index-now\";s:9:\"manageUrl\";s:45:\"https://route#aioseo-settings:webmaster-tools\";s:8:\"features\";a:0:{}}i:6;a:15:{s:3:\"sku\";s:15:\"aioseo-rest-api\";s:4:\"name\";s:8:\"REST API\";s:7:\"version\";s:5:\"1.0.9\";s:5:\"image\";N;s:4:\"icon\";s:280:\"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgY2xhc3M9ImFpb3Nlby1jb2RlIj48cGF0aCBkPSJNOS40IDE2LjZMNC44IDEybDQuNi00LjZMOCA2bC02IDYgNiA2IDEuNC0xLjR6bTUuMiAwbDQuNi00LjYtNC42LTQuNkwxNiA2bDYgNi02IDYtMS40LTEuNHoiIGZpbGw9ImN1cnJlbnRDb2xvciIvPjwvc3ZnPg==\";s:6:\"levels\";a:3:{i:0;s:4:\"plus\";i:1;s:3:\"pro\";i:2;s:5:\"elite\";}s:13:\"currentLevels\";a:3:{i:0;s:4:\"plus\";i:1;s:3:\"pro\";i:2;s:5:\"elite\";}s:15:\"requiresUpgrade\";b:1;s:11:\"description\";s:137:\"<p>Manage your post and term SEO meta via the WordPress REST API. This addon also works seamlessly with headless WordPress installs.</p>\n\";s:18:\"descriptionVersion\";i:0;s:11:\"downloadUrl\";s:0:\"\";s:10:\"productUrl\";s:36:\"https://aioseo.com/feature/rest-api/\";s:12:\"learnMoreUrl\";s:36:\"https://aioseo.com/feature/rest-api/\";s:9:\"manageUrl\";s:0:\"\";s:8:\"features\";a:0:{}}i:7;a:15:{s:3:\"sku\";s:16:\"aioseo-image-seo\";s:4:\"name\";s:9:\"Image SEO\";s:7:\"version\";s:6:\"1.1.18\";s:5:\"image\";N;s:4:\"icon\";s:436:\"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMCAyMCI+PHBhdGggZD0iTTE1LjgzMyA0LjE2N3YxMS42NjZINC4xNjdWNC4xNjdoMTEuNjY2Wm0wLTEuNjY3SDQuMTY3QzMuMjUgMi41IDIuNSAzLjI1IDIuNSA0LjE2N3YxMS42NjZjMCAuOTE3Ljc1IDEuNjY3IDEuNjY3IDEuNjY3aDExLjY2NmMuOTE3IDAgMS42NjctLjc1IDEuNjY3LTEuNjY3VjQuMTY3YzAtLjkxNy0uNzUtMS42NjctMS42NjctMS42NjdabS00LjA1IDcuMzgzLTIuNSAzLjIyNUw3LjUgMTAuOTUgNSAxNC4xNjdoMTBsLTMuMjE3LTQuMjg0WiIvPjwvc3ZnPg==\";s:6:\"levels\";a:5:{i:0;s:8:\"business\";i:1;s:6:\"agency\";i:2;s:4:\"plus\";i:3;s:3:\"pro\";i:4;s:5:\"elite\";}s:13:\"currentLevels\";a:3:{i:0;s:4:\"plus\";i:1;s:3:\"pro\";i:2;s:5:\"elite\";}s:15:\"requiresUpgrade\";b:1;s:11:\"description\";s:161:\"<p>Globally control the Title, Alt Text, Caption and Descriptions for images in your content. These attributes are essential for both accessibility and SEO.</p>\n\";s:18:\"descriptionVersion\";i:0;s:11:\"downloadUrl\";s:0:\"\";s:10:\"productUrl\";s:71:\"https://aioseo.com/docs/using-the-image-seo-features-in-all-in-one-seo/\";s:12:\"learnMoreUrl\";s:71:\"https://aioseo.com/docs/using-the-image-seo-features-in-all-in-one-seo/\";s:9:\"manageUrl\";s:44:\"https://route#aioseo-search-appearance:media\";s:8:\"features\";a:0:{}}i:8;a:15:{s:3:\"sku\";s:11:\"aioseo-eeat\";s:4:\"name\";s:20:\"Author SEO (E-E-A-T)\";s:7:\"version\";s:7:\"1.2.1.1\";s:5:\"image\";N;s:4:\"icon\";s:1380:\"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgLTk2MCA5NjAgOTYwIiB3aWR0aD0iMjQiPjxwYXRoIGQ9Ik00NDAuMTE4LTU2MHEzMy44MzkgMCA1Ny44MTctMjQuMDk3dDIzLjk3OC01Ny45MzVxMC0zMy44MzgtMjMuOTc4LTU3LjY5Ni0yMy45NzgtMjMuODU5LTU3LjgxNy0yMy44NTktMzMuODM4IDAtNTcuOTM0IDIzLjg1OS0yNC4wOTcgMjMuODU4LTI0LjA5NyA1Ny42OTYgMCAzMy44MzggMjQuMDk3IDU3LjkzNVE0MDYuMjgtNTYwIDQ0MC4xMTgtNTYwWk00NDAtMzk2LjQxM3E0NS43MTcgMCA4NS41NzYtMTkuNDc4IDM5Ljg1OS0xOS40NzkgNjkuNTc2LTU2LjE1Mi0zNS45NTYtMjMuNzE4LTc0LjkzNS0zNS44MzdRNDgxLjIzOS01MjAgNDQwLTUyMHQtODAuMjE3IDEyLjEycS0zOC45NzkgMTIuMTE5LTc0LjkzNSAzNS44MzcgMjkuNzE3IDM2LjY3MyA2OS41NzYgNTYuMTUyIDM5Ljg1OSAxOS40NzggODUuNTc2IDE5LjQ3OFptMzg2LjM5MSAyODYuOTM1TDYzNy45MTMtMjk3Ljk1NnEtNDEuNzE3IDMxLjc2MS05MS42OTYgNDkuNDAyUTQ5Ni4yMzktMjMwLjkxMyA0NDAtMjMwLjkxM3EtMTM3LjU4NyAwLTIzMy4zMzctOTUuNzVUMTEwLjkxMy01NjBxMC0xMzcuNTg3IDk1Ljc1LTIzMy4zMzdUNDQwLTg4OS4wODdxMTM3LjU4NyAwIDIzMy4zMzcgOTUuNzVUNzY5LjA4Ny01NjBxMCA1NS43NjEtMTcuNzYxIDEwNS45NzgtMTcuNzYxIDUwLjIxOC00OS41MjEgOTIuMTc0TDg5MC4yODMtMTczLjM3bC02My44OTIgNjMuODkyWk00NDAuMTEzLTMyMS45MTNxOTkuMTU2IDAgMTY4LjU2NS02OS41MjIgNjkuNDA5LTY5LjUyMiA2OS40MDktMTY4LjY3OCAwLTk5LjE1Ni02OS40MDktMTY4LjU2NS02OS40MDktNjkuNDA5LTE2OC41NjUtNjkuNDA5LTk5LjE1NiAwLTE2OC42NzggNjkuNDA5LTY5LjUyMiA2OS40MDktNjkuNTIyIDE2OC41NjUgMCA5OS4xNTYgNjkuNTIyIDE2OC42NzggNjkuNTIyIDY5LjUyMiAxNjguNjc4IDY5LjUyMlpNNDQwLTU2MFoiLz48L3N2Zz4=\";s:6:\"levels\";a:3:{i:0;s:4:\"plus\";i:1;s:3:\"pro\";i:2;s:5:\"elite\";}s:13:\"currentLevels\";a:3:{i:0;s:4:\"plus\";i:1;s:3:\"pro\";i:2;s:5:\"elite\";}s:15:\"requiresUpgrade\";b:1;s:11:\"description\";s:147:\"<p>Optimize your site for Google\'s E-E-A-T ranking factor by proving your writer\'s expertise through author schema markup and new UI elements.</p>\n\";s:18:\"descriptionVersion\";i:0;s:11:\"downloadUrl\";s:0:\"\";s:10:\"productUrl\";s:33:\"https://aioseo.com/features/eeat/\";s:12:\"learnMoreUrl\";s:33:\"https://aioseo.com/features/eeat/\";s:9:\"manageUrl\";s:49:\"https://route#aioseo-search-appearance:author-seo\";s:8:\"features\";a:0:{}}}','2025-04-13 02:06:37','2025-03-27 22:04:58','2025-04-12 02:06:37'),(4,'action_scheduler_log_cleanup','b:1;','2025-04-12 03:34:10','2025-03-27 22:37:03','2025-04-11 03:34:10'),(19,'aioseo_sitemap_sitemap.rss','a:3:{s:6:\"counts\";a:0:{}s:8:\"datetime\";a:3:{s:40:\"https://tenjokure-n.com/contact-confirm/\";a:2:{s:4:\"date\";s:15:\"2025年3月4日\";s:4:\"time\";s:8:\"10:34 AM\";}s:39:\"https://tenjokure-n.com/contact-thanks/\";a:2:{s:4:\"date\";s:15:\"2025年3月4日\";s:4:\"time\";s:8:\"10:33 AM\";}s:24:\"https://tenjokure-n.com/\";a:2:{s:4:\"date\";s:15:\"2025年3月7日\";s:4:\"time\";s:7:\"9:28 PM\";}}s:10:\"pagination\";a:2:{s:7:\"showing\";i:3;s:5:\"total\";i:3;}}','2025-05-12 00:48:42','2025-03-28 04:28:50','2025-04-12 00:48:42'),(37,'aioseo_sitemap_sitemap.xml','a:3:{s:6:\"counts\";a:1:{s:40:\"https://tenjokure-n.com/page-sitemap.xml\";i:3;}s:8:\"datetime\";a:1:{s:40:\"https://tenjokure-n.com/page-sitemap.xml\";a:2:{s:4:\"date\";s:15:\"2025年3月7日\";s:4:\"time\";s:7:\"9:28 PM\";}}s:10:\"pagination\";a:2:{s:7:\"showing\";i:1;s:5:\"total\";i:1;}}','2025-05-11 19:45:26','2025-03-29 10:53:32','2025-04-11 19:45:26'),(79,'aioseo_sitemap_page-sitemap.xml','a:3:{s:6:\"counts\";a:0:{}s:8:\"datetime\";a:3:{s:24:\"https://tenjokure-n.com/\";a:2:{s:4:\"date\";s:15:\"2025年3月7日\";s:4:\"time\";s:7:\"9:28 PM\";}s:40:\"https://tenjokure-n.com/contact-confirm/\";a:2:{s:4:\"date\";s:15:\"2025年3月4日\";s:4:\"time\";s:8:\"10:34 AM\";}s:39:\"https://tenjokure-n.com/contact-thanks/\";a:2:{s:4:\"date\";s:15:\"2025年3月4日\";s:4:\"time\";s:8:\"10:33 AM\";}}s:10:\"pagination\";a:2:{s:7:\"showing\";i:3;s:5:\"total\";i:3;}}','2025-05-10 03:28:13','2025-04-02 14:16:22','2025-04-10 03:28:13'),(83,'aioseo_sitemap_sitemap.xml.gz','a:3:{s:6:\"counts\";a:1:{s:40:\"https://tenjokure-n.com/page-sitemap.xml\";i:3;}s:8:\"datetime\";a:1:{s:40:\"https://tenjokure-n.com/page-sitemap.xml\";a:2:{s:4:\"date\";s:15:\"2025年3月7日\";s:4:\"time\";s:7:\"9:28 PM\";}}s:10:\"pagination\";a:2:{s:7:\"showing\";i:1;s:5:\"total\";i:1;}}','2025-05-08 19:30:11','2025-04-02 18:47:29','2025-04-08 19:30:11'),(222,'admin_notifications_update','i:1744462842;','2025-04-12 13:00:42','2025-04-11 13:00:42','2025-04-11 13:00:42'),(223,'wp_notices','a:0:{}','2025-04-13 03:20:44','2025-04-11 13:00:45','2025-04-12 03:20:44'),(224,'license_features','a:32:{i:0;a:3:{s:13:\"license_level\";s:3:\"pro\";s:7:\"section\";s:6:\"schema\";s:7:\"feature\";s:5:\"event\";}i:1;a:3:{s:13:\"license_level\";s:5:\"elite\";s:7:\"section\";s:6:\"schema\";s:7:\"feature\";s:5:\"event\";}i:2;a:3:{s:13:\"license_level\";s:5:\"elite\";s:7:\"section\";s:6:\"schema\";s:7:\"feature\";s:11:\"job-posting\";}i:3;a:3:{s:13:\"license_level\";s:5:\"elite\";s:7:\"section\";s:5:\"tools\";s:7:\"feature\";s:29:\"network-tools-site-activation\";}i:4;a:3:{s:13:\"license_level\";s:5:\"elite\";s:7:\"section\";s:5:\"tools\";s:7:\"feature\";s:22:\"network-tools-database\";}i:5;a:3:{s:13:\"license_level\";s:5:\"elite\";s:7:\"section\";s:5:\"tools\";s:7:\"feature\";s:27:\"network-tools-import-export\";}i:6;a:3:{s:13:\"license_level\";s:5:\"elite\";s:7:\"section\";s:5:\"tools\";s:7:\"feature\";s:20:\"network-tools-robots\";}i:7;a:3:{s:13:\"license_level\";s:5:\"elite\";s:7:\"section\";s:17:\"search-statistics\";s:7:\"feature\";s:14:\"seo-statistics\";}i:8;a:3:{s:13:\"license_level\";s:5:\"elite\";s:7:\"section\";s:17:\"search-statistics\";s:7:\"feature\";s:16:\"keyword-rankings\";}i:9;a:3:{s:13:\"license_level\";s:5:\"elite\";s:7:\"section\";s:17:\"search-statistics\";s:7:\"feature\";s:22:\"keyword-rankings-pages\";}i:10;a:3:{s:13:\"license_level\";s:5:\"elite\";s:7:\"section\";s:17:\"search-statistics\";s:7:\"feature\";s:11:\"post-detail\";}i:11;a:3:{s:13:\"license_level\";s:5:\"elite\";s:7:\"section\";s:17:\"search-statistics\";s:7:\"feature\";s:22:\"post-detail-page-speed\";}i:12;a:3:{s:13:\"license_level\";s:5:\"elite\";s:7:\"section\";s:17:\"search-statistics\";s:7:\"feature\";s:26:\"post-detail-seo-statistics\";}i:13;a:3:{s:13:\"license_level\";s:5:\"elite\";s:7:\"section\";s:17:\"search-statistics\";s:7:\"feature\";s:20:\"post-detail-keywords\";}i:14;a:3:{s:13:\"license_level\";s:5:\"elite\";s:7:\"section\";s:17:\"search-statistics\";s:7:\"feature\";s:31:\"post-detail-focus-keyword-trend\";}i:15;a:3:{s:13:\"license_level\";s:5:\"elite\";s:7:\"section\";s:17:\"search-statistics\";s:7:\"feature\";s:16:\"keyword-tracking\";}i:16;a:3:{s:13:\"license_level\";s:5:\"elite\";s:7:\"section\";s:17:\"search-statistics\";s:7:\"feature\";s:28:\"post-detail-keyword-tracking\";}i:17;a:3:{s:13:\"license_level\";s:5:\"elite\";s:7:\"section\";s:17:\"search-statistics\";s:7:\"feature\";s:16:\"content-rankings\";}i:18;a:3:{s:13:\"license_level\";s:5:\"elite\";s:7:\"section\";s:13:\"seo-revisions\";s:7:\"feature\";s:12:\"revisions:-1\";}i:19;a:3:{s:13:\"license_level\";s:3:\"pro\";s:7:\"section\";s:13:\"seo-revisions\";s:7:\"feature\";s:12:\"revisions:30\";}i:20;a:3:{s:13:\"license_level\";s:4:\"plus\";s:7:\"section\";s:13:\"seo-revisions\";s:7:\"feature\";s:12:\"revisions:15\";}i:21;a:3:{s:13:\"license_level\";s:3:\"pro\";s:7:\"section\";s:7:\"general\";s:7:\"feature\";s:19:\"cornerstone-content\";}i:22;a:3:{s:13:\"license_level\";s:5:\"elite\";s:7:\"section\";s:7:\"general\";s:7:\"feature\";s:19:\"cornerstone-content\";}i:23;a:3:{s:13:\"license_level\";s:5:\"elite\";s:7:\"section\";s:17:\"search-statistics\";s:7:\"feature\";s:12:\"index-status\";}i:24;a:3:{s:13:\"license_level\";s:4:\"plus\";s:7:\"section\";s:11:\"aioseo-eeat\";s:7:\"feature\";s:11:\"author-info\";}i:25;a:3:{s:13:\"license_level\";s:3:\"pro\";s:7:\"section\";s:11:\"aioseo-eeat\";s:7:\"feature\";s:11:\"author-info\";}i:26;a:3:{s:13:\"license_level\";s:5:\"elite\";s:7:\"section\";s:11:\"aioseo-eeat\";s:7:\"feature\";s:11:\"author-info\";}i:27;a:3:{s:13:\"license_level\";s:3:\"pro\";s:7:\"section\";s:11:\"aioseo-eeat\";s:7:\"feature\";s:18:\"author-archive-bio\";}i:28;a:3:{s:13:\"license_level\";s:5:\"elite\";s:7:\"section\";s:11:\"aioseo-eeat\";s:7:\"feature\";s:18:\"author-archive-bio\";}i:29;a:3:{s:13:\"license_level\";s:3:\"pro\";s:7:\"section\";s:11:\"aioseo-eeat\";s:7:\"feature\";s:13:\"post-reviewer\";}i:30;a:3:{s:13:\"license_level\";s:5:\"elite\";s:7:\"section\";s:11:\"aioseo-eeat\";s:7:\"feature\";s:13:\"post-reviewer\";}i:31;a:3:{s:13:\"license_level\";s:5:\"elite\";s:7:\"section\";s:17:\"search-statistics\";s:7:\"feature\";s:24:\"keyword-rank-tracker:100\";}}','2025-04-12 13:00:45','2025-04-11 13:00:45','2025-04-11 13:00:45'),(225,'admin_help_docs','s:74143:\"{\"categories\":{\"getting-started\":\"Getting Started\",\"advanced-settings\":\"Advanced Settings\",\"display-settings\":\"Display Settings\",\"general-seo-topics\":\"General SEO Topics\",\"feature-manager\":\"Feature Manager\",\"installation\":\"Installation\"},\"docs\":{\"401534\":{\"title\":\"How to Generate Your SEO Email Reports\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-generate-your-seo-email-reports\\/\",\"categories\":[\"advanced-settings\",\"general-settings\",\"search-statistics\"]},\"389367\":{\"title\":\"Using the Keyword Rank Tracker feature in Search Statistics\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/using-the-keyword-rank-tracker-feature-in-search-statistics\\/\",\"categories\":[\"keyword-settings\",\"search-statistics\"]},\"379863\":{\"title\":\"Setting Vehicle (Car) Schema Markup in Your Content\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-vehicle-car-schema-markup-in-your-content\\/\",\"categories\":[\"schema-settings\"]},\"379713\":{\"title\":\"Setting Product Review Schema Markup in Your Content\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-product-review-schema-markup-in-your-content\\/\",\"categories\":[\"schema-settings\"]},\"332691\":{\"title\":\"Google Permissions for oAuth\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/google-permissions-for-the-aioseo-google-search-console-integration\\/\",\"categories\":[]},\"326862\":{\"title\":\"aioseo_user_profile_tab_allowed_user_ids\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_user_profile_tab_allowed_user_ids\\/\",\"categories\":[\"developer-documentation\",\"filter-hooks\"]},\"326858\":{\"title\":\"aioseo_import_yoast_seo_posts_per_action\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_import_yoast_seo_posts_per_action\\/\",\"categories\":[\"developer-documentation\",\"filter-hooks\"]},\"326856\":{\"title\":\"aioseo_import_seopress_posts_per_action\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_import_seopress_posts_per_action\\/\",\"categories\":[\"developer-documentation\",\"filter-hooks\"]},\"326850\":{\"title\":\"aioseo_import_rank_math_posts_per_action\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_import_rank_math_posts_per_action\\/\",\"categories\":[\"developer-documentation\",\"filter-hooks\"]},\"298356\":{\"title\":\"aioseo_redirects_log_skip\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_redirects_log_skip\\/\",\"categories\":[\"developer-documentation\",\"filter-hooks\"]},\"294047\":{\"title\":\"Using the Query Arg Monitoring in All in One SEO\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/using-the-query-arg-monitoring-in-all-in-one-seo\\/\",\"categories\":[\"advanced-settings\"]},\"279241\":{\"title\":\"How to Schedule a Redirect in All in One SEO\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-schedule-a-redirect-in-all-in-one-seo\\/\",\"categories\":[\"redirection-manager\"]},\"269732\":{\"title\":\"Displaying Detailed Author Information on Your Site\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/displaying-detailed-author-information-on-your-site\\/\",\"categories\":[\"author-seo\",\"content-blocks\"]},\"267254\":{\"title\":\"Adding Author SEO (E-E-A-T) to Your Site\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/adding-author-seo-e-e-a-t-to-your-site\\/\",\"categories\":[\"author-seo\"]},\"262344\":{\"title\":\"How to Get Your Images to Appear in Search Results\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-get-your-images-to-appear-in-search-results\\/\",\"categories\":[\"frequently-asked-questions\",\"general-seo-topics\",\"image-seo\"]},\"261932\":{\"title\":\"Sharing Content on Slack\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/sharing-content-on-slack\\/\",\"categories\":[\"social-networks\"]},\"261923\":{\"title\":\"Sharing Content on WhatsApp\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/sharing-content-on-whatsapp\\/\",\"categories\":[\"social-networks\"]},\"261517\":{\"title\":\"Importing Locations From Other Plugins\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/importing-locations-from-other-plugins\\/\",\"categories\":[\"importer-exporter\",\"local-business-seo\"]},\"244975\":{\"title\":\"Checking the Index Status of Content\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/checking-the-index-status-of-content\\/\",\"categories\":[\"post-page-settings\",\"search-statistics\"]},\"242346\":{\"title\":\"Using AIOSEO Details on the Posts Screen\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/using-aioseo-details-on-the-posts-screen\\/\",\"categories\":[\"category-tag-settings\",\"post-page-settings\"]},\"240583\":{\"title\":\"Setting WP_HOME and WP_SITEURL in the wp-config.php File\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-wp_home-and-wp_siteurl-in-the-wp-config-php-file\\/\",\"categories\":[\"troubleshooting\"]},\"240452\":{\"title\":\"Should I Use Meta Keywords?\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/should-i-use-meta-keywords\\/\",\"categories\":[\"frequently-asked-questions\",\"general-seo-topics\"]},\"235044\":{\"title\":\"Setting Cornerstone Content in All in One SEO\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/cornerstone-content\\/\",\"categories\":[\"link-assistant\",\"post-page-settings\"]},\"222363\":{\"title\":\"aioseo_get_post_id\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_get_post_id\\/\",\"categories\":[\"filter-hooks\"]},\"200603\":{\"title\":\"Viewing Detailed Search Statistics For Your Content\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/viewing-detailed-search-statistics-for-your-content\\/\",\"categories\":[\"search-statistics\"]},\"200304\":{\"title\":\"Tracking Changes to Your SEO Using SEO Revisions\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/tracking-changes-to-your-seo-using-seo-revisions\\/\",\"categories\":[\"seo-revisions\"]},\"188167\":{\"title\":\"WPCode Snippet Library\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/wpcode-snippet-library\\/\",\"categories\":[\"tools\"]},\"186946\":{\"title\":\"aioseo_hide_version_number\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_hide_version_number\\/\",\"categories\":[\"filter-hooks\"]},\"178887\":{\"title\":\"Setting the Primary Term for Breadcrumbs\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-the-primary-term-for-breadcrumbs\\/\",\"categories\":[\"breadcrumbs\"]},\"178727\":{\"title\":\"Using Broken Link Checker to Find and Fix Broken Links and Images\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/using-broken-link-checker-to-find-and-fix-broken-links-and-images\\/\",\"categories\":[\"broken-link-checker\"]},\"163922\":{\"title\":\"aioseo_schema_json_flags\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_schema_json_flags\\/\",\"categories\":[\"filter-hooks\"]},\"163519\":{\"title\":\"Using OpenAI to Generate SEO Titles and Meta Descriptions\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/using-openai-to-generate-seo-titles-and-meta-descriptions\\/\",\"categories\":[]},\"145363\":{\"title\":\"Using the Search Statistics in All in One SEO\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/using-the-search-statistics-in-all-in-one-seo\\/\",\"categories\":[\"google-search-console\",\"search-statistics\"]},\"145281\":{\"title\":\"Connecting Search Statistics to Google Search Console\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/connecting-search-statistics-to-google-search-console\\/\",\"categories\":[\"google-search-console\",\"search-statistics\"]},\"139798\":{\"title\":\"Checking Your SEO Using the SEO Preview\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/checking-your-seo-using-the-seo-preview\\/\",\"categories\":[\"facebook-settings\",\"post-page-settings\",\"seo-preview\",\"truseo\",\"twitter-settings\"]},\"136509\":{\"title\":\"aioseo_sitemap_lastmod_disable\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_sitemap_lastmod_disable\\/\",\"categories\":[\"filter-hooks\"]},\"135249\":{\"title\":\"aioseo_sitemap_rss\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_sitemap_rss\\/\",\"categories\":[\"filter-hooks\"]},\"133251\":{\"title\":\"aioseo_user_profile_tab_disable\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_user_profile_tab_disable\\/\",\"categories\":[\"filter-hooks\"]},\"131885\":{\"title\":\"Setting Web Page Schema Markup in Your Content\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-web-page-schema-markup-in-your-content\\/\",\"categories\":[\"schema-settings\"]},\"129515\":{\"title\":\"Editing the .htaccess file Using All in One SEO\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/editing-the-htaccess-file-using-all-in-one-seo\\/\",\"categories\":[\"file-editor\",\"tools\"]},\"124292\":{\"title\":\"Using the Emojis in Titles and Descriptions\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/using-the-emojis-in-titles-and-descriptions\\/\",\"categories\":[\"facebook-settings\",\"post-page-settings\",\"search-appearance\",\"social-networks\",\"twitter-settings\"]},\"123164\":{\"title\":\"Google Permissions for the AIOSEO Google Search Console Integration\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/google-permissions-for-oauth\\/\",\"categories\":[\"google-search-console\",\"search-statistics\"]},\"112137\":{\"title\":\"Setting the Schema Type for Individual Content\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-the-schema-type-for-individual-content\\/\",\"categories\":[\"schema-settings\"]},\"112145\":{\"title\":\"Configuring the Schema Settings in All in One SEO\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/configuring-the-schema-settings-in-all-in-one-seo\\/\",\"categories\":[\"schema-settings\"]},\"112153\":{\"title\":\"A Guide to Schema.org Markup for Rich Snippets\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/a-guide-to-schema-org-markup-for-rich-snippets\\/\",\"categories\":[\"schema-settings\"]},\"112438\":{\"title\":\"Creating Reusable Schema Templates in All in One SEO\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/creating-reusable-schema-templates-in-all-in-one-seo\\/\",\"categories\":[\"schema-settings\"]},\"112428\":{\"title\":\"Creating Custom Schema Markup with All in One SEO\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/creating-custom-schema-markup-with-all-in-one-seo\\/\",\"categories\":[\"schema-settings\"]},\"112889\":{\"title\":\"Setting Event Schema Markup in Your Content\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-event-schema-markup-in-your-content\\/\",\"categories\":[\"schema-settings\"]},\"112735\":{\"title\":\"Setting Dataset Schema Markup in Your Content\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-dataset-schema-markup-in-your-content\\/\",\"categories\":[\"schema-settings\"]},\"112711\":{\"title\":\"Setting Article Schema Markup in Your Content\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-article-schema-markup-in-your-content\\/\",\"categories\":[\"schema-settings\"]},\"112164\":{\"title\":\"Setting Course Schema Markup in Your Content\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-course-schema-markup-in-your-content\\/\",\"categories\":[\"schema-settings\"]},\"112933\":{\"title\":\"Setting Job Posting Schema Markup in Your Content\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-job-posting-schema-markup-in-your-content\\/\",\"categories\":[\"schema-settings\"]},\"112926\":{\"title\":\"Setting How-To Schema Markup in Your Content\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-how-to-schema-markup-in-your-content\\/\",\"categories\":[\"schema-settings\"]},\"112916\":{\"title\":\"Setting Fact Check Schema Markup in Your Content\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-fact-check-schema-markup-in-your-content\\/\",\"categories\":[\"schema-settings\"]},\"112727\":{\"title\":\"Setting Book Schema Markup in Your Content\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-book-schema-markup-in-your-content\\/\",\"categories\":[\"schema-settings\"]},\"112243\":{\"title\":\"Setting FAQ Schema Markup in Your Content\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-faq-page-schema-markup-in-your-content\\/\",\"categories\":[\"schema-settings\"]},\"112958\":{\"title\":\"Setting Service Schema Markup in Your Content\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-service-schema-markup-in-your-content\\/\",\"categories\":[\"schema-settings\"]},\"112949\":{\"title\":\"Setting Person Schema Markup in Your Content\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-person-schema-markup-in-your-content\\/\",\"categories\":[\"schema-settings\"]},\"112944\":{\"title\":\"Setting Music Schema Markup in Your Content\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-music-schema-markup-in-your-content\\/\",\"categories\":[\"schema-settings\"]},\"112941\":{\"title\":\"Setting Movie Schema Markup in Your Content\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-movie-schema-markup-in-your-content\\/\",\"categories\":[\"schema-settings\"]},\"112212\":{\"title\":\"Setting Recipe Schema Markup in Your Content\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-recipe-schema-markup-in-your-content\\/\",\"categories\":[\"schema-settings\"]},\"112962\":{\"title\":\"Setting Video Schema Markup in Your Content\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-video-schema-markup-in-your-content\\/\",\"categories\":[\"schema-settings\"]},\"112403\":{\"title\":\"Testing Your Schema in All in One SEO\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/testing-your-schema-in-all-in-one-seo\\/\",\"categories\":[\"schema-settings\"]},\"112226\":{\"title\":\"Setting Software Application Schema Markup in Your Content\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-software-application-schema-markup-in-your-content\\/\",\"categories\":[\"schema-settings\"]},\"112197\":{\"title\":\"Setting Product Schema Markup in Your Content\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-product-schema-markup-in-your-content\\/\",\"categories\":[\"schema-settings\"]},\"119555\":{\"title\":\"How to Use the AIOSEO Feature Manager on a Multisite Network\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-use-the-aioseo-feature-manager-on-a-multisite-network\\/\",\"categories\":[\"feature-manager\",\"multisite-networks\"]},\"119550\":{\"title\":\"How to Reset the AIOSEO Site Settings on a Multisite Network\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-reset-the-aioseo-site-settings-on-a-multisite-network\\/\",\"categories\":[\"multisite-networks\",\"network-tools\"]},\"119543\":{\"title\":\"How to Backup and Restore AIOSEO Site Settings on a Multisite Network\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-backup-and-restore-aioseo-site-settings-on-a-multisite-network\\/\",\"categories\":[\"multisite-networks\",\"network-tools\"]},\"119531\":{\"title\":\"How to Import Settings from Other Plugins on a Multisite Network\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-import-settings-from-other-plugins-on-a-multisite-network\\/\",\"categories\":[\"multisite-networks\",\"network-tools\"]},\"119519\":{\"title\":\"How to Import and Export AIOSEO Settings and Meta Data on a Multisite Network\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-import-and-export-aioseo-settings-and-meta-data-on-a-multisite-network\\/\",\"categories\":[\"multisite-networks\",\"network-tools\"]},\"119497\":{\"title\":\"How to Add Your AIOSEO License Key on a WordPress Multisite Network\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-add-your-aioseo-license-key-on-a-wordpress-multisite-network\\/\",\"categories\":[\"multisite-networks\",\"network-settings\"]},\"111476\":{\"title\":\"Displaying a List of Locations on Your Site\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/displaying-a-list-of-locations-on-your-site\\/\",\"categories\":[\"content-blocks\",\"local-business-seo\"]},\"111473\":{\"title\":\"Displaying Your Business Location Information on Your Site\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/displaying-your-business-location-information-on-your-site\\/\",\"categories\":[\"content-blocks\",\"local-business-seo\"]},\"111459\":{\"title\":\"Displaying Opening Hours on Your Site\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/displaying-opening-hours-on-your-site\\/\",\"categories\":[\"content-blocks\",\"local-business-seo\"]},\"111455\":{\"title\":\"Adding a Map of Your Location to Your Site\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/adding-a-map-of-your-location-to-your-site\\/\",\"categories\":[\"content-blocks\",\"local-business-seo\"]},\"111450\":{\"title\":\"Adding Breadcrumbs to Your Site Using the AIOSEO Breadcrumbs Block\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/adding-breadcrumbs-to-your-site-using-the-aioseo-breadcrumbs-block\\/\",\"categories\":[\"breadcrumbs\",\"content-blocks\"]},\"109878\":{\"title\":\"Adding a Redirect When You Delete Content\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/adding-a-redirect-when-you-delete-content\\/\",\"categories\":[\"redirection-manager\"]},\"109829\":{\"title\":\"Redirecting 404 Content Not Found Using All in One SEO\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/redirecting-404-content-not-found-using-all-in-one-seo\\/\",\"categories\":[\"redirection-manager\"]},\"109916\":{\"title\":\"Using the Image SEO Features in All in One SEO\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/using-the-image-seo-features-in-all-in-one-seo\\/\",\"categories\":[\"image-seo\"]},\"104857\":{\"title\":\"Adding a Table of Contents to Your Site Using All in One SEO\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/adding-a-table-of-contents-to-your-site-using-all-in-one-seo\\/\",\"categories\":[\"content-blocks\"]},\"104616\":{\"title\":\"Adding FAQs to Your Site Using All in One SEO\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/adding-faqs-to-your-site-using-all-in-one-seo\\/\",\"categories\":[\"content-blocks\"]},\"104595\":{\"title\":\"Automatic Redirects When Changing the Post Slug\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/automatic-redirects-when-changing-the-post-slug\\/\",\"categories\":[\"redirection-manager\"]},\"103415\":{\"title\":\"Removing Published Date from Article Schema\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/removing-published-date-from-article-schema\\/\",\"categories\":[\"developer-documentation\"]},\"101250\":{\"title\":\"Outputting AIOSEO\'s data in the HEAD without using wp_head()\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/outputting-aioseos-data-in-the-head-without-using-wp_head\\/\",\"categories\":[\"developer-documentation\"]},\"100154\":{\"title\":\"Automatic Redirects When You Delete Content\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/automatic-redirects-when-you-delete-content\\/\",\"categories\":[\"redirection-manager\"]},\"98532\":{\"title\":\"Localizing AIOSEO Data via the Translations API\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/localizing-aioseo-data-via-the-translations-api\\/\",\"categories\":[\"developer-documentation\"]},\"98576\":{\"title\":\"aioseo_sitemap_term\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_sitemap_term\\/\",\"categories\":[\"filter-hooks\"]},\"98575\":{\"title\":\"aioseo_sitemap_post\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_sitemap_post\\/\",\"categories\":[\"filter-hooks\"]},\"98566\":{\"title\":\"aioseo_save_term\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_save_term\\/\",\"categories\":[\"filter-hooks\"]},\"98565\":{\"title\":\"aioseo_save_post\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_save_post\\/\",\"categories\":[\"filter-hooks\"]},\"98557\":{\"title\":\"aioseo_get_term\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_get_term\\/\",\"categories\":[\"filter-hooks\"]},\"98554\":{\"title\":\"aioseo_get_post\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_get_post\\/\",\"categories\":[\"filter-hooks\"]},\"93967\":{\"title\":\"Importing URLs into the XML Sitemap\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/importing-urls-into-the-xml-sitemap\\/\",\"categories\":[\"xml-sitemap\"]},\"93822\":{\"title\":\"How to Use Crawl Cleanup to Increase Search Engine Crawl Quota\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/crawl-cleanup-best-practices\\/\",\"categories\":[\"advanced-settings\"]},\"90584\":{\"title\":\"How to Add a Temporary Administrator Login to Your Site\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-add-a-temporary-administrator-login-to-your-site\\/\",\"categories\":[\"frequently-asked-questions\",\"troubleshooting\"]},\"88927\":{\"title\":\"Dashboard Widgets in All in One SEO\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/dashboard-widgets-in-all-in-one-seo\\/\",\"categories\":[\"dashboard\"]},\"86198\":{\"title\":\"How to Strip the Category Base in WordPress\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-strip-the-category-base-in-wordpress\\/\",\"categories\":[\"category-tag-settings\"]},\"84322\":{\"title\":\"Running shortcodes in All in One SEO\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/running-shortcodes\\/\",\"categories\":[\"advanced-settings\"]},\"84156\":{\"title\":\"Translating Your SEO with WPML\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/translating-your-seo-with-wpml\\/\",\"categories\":[\"post-page-settings\"]},\"80219\":{\"title\":\"How to Verify Your Site with Microsoft Clarity\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-verify-your-site-with-microsoft-clarity\\/\",\"categories\":[\"webmaster-tools\"]},\"79928\":{\"title\":\"How to Handle Issues With Installing All in One SEO Pro\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-handle-issues-with-installing-all-in-one-seo-pro\\/\",\"categories\":[\"installation\"]},\"79149\":{\"title\":\"Fetching & Updating AIOSEO Data via the WordPress REST API\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/fetching-updating-aioseo-data-via-the-wordpress-rest-api\\/\",\"categories\":[\"developer-documentation\",\"rest-api\"]},\"77593\":{\"title\":\"How To Fix JavaScript Errors\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-fix-javascript-errors\\/\",\"categories\":[\"troubleshooting\"]},\"77589\":{\"title\":\"Browser Support Policy\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/browser-support-policy\\/\",\"categories\":[\"frequently-asked-questions\"]},\"75143\":{\"title\":\"How to Redirect a Post from the Edit Post Screen\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-redirect-a-post-from-the-edit-post-screen\\/\",\"categories\":[\"post-page-settings\",\"redirection-manager\"]},\"75686\":{\"title\":\"Preventing the Modified Date for Content from Changing\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/preventing-the-modified-date-for-content-from-changing\\/\",\"categories\":[\"post-page-settings\"]},\"73002\":{\"title\":\"Page Builder Integrations\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/page-builder-integrations\\/\",\"categories\":[\"home-page-settings\",\"post-page-settings\",\"third-party-integrations\",\"truseo\"]},\"73003\":{\"title\":\"Integrating with IndexNow to Instantly Re-index Your Content\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/integrating-with-indexnow-to-instantly-re-index-your-content\\/\",\"categories\":[\"indexnow\",\"webmaster-tools\"]},\"72711\":{\"title\":\"aioseo_page_builder_integration_disable\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_page_builder_integration_disable\\/\",\"categories\":[\"filter-hooks\"]},\"68444\":{\"title\":\"An Introduction to Link Assistant \\u2014 The Easy Way to Manage Onsite Links\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/introduction-to-link-assistant\\/\",\"categories\":[\"link-assistant\"]},\"69559\":{\"title\":\"Using the Link Assistant in All in One SEO Pro\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/link-assistant\\/\",\"categories\":[\"link-assistant\"]},\"69594\":{\"title\":\"Internal Links in the Links Report in Link Assistant\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/internal-links-in-the-links-report-in-link-assistant\\/\",\"categories\":[\"link-assistant\"]},\"69596\":{\"title\":\"External Links in the Links Report in Link Assistant\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/external-links-in-the-links-report-in-link-assistant\\/\",\"categories\":[\"link-assistant\"]},\"69921\":{\"title\":\"Link Suggestions in the Links Report in Link Assistant\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/link-suggestions-in-the-links-report-in-link-assistant\\/\",\"categories\":[\"link-assistant\"]},\"69602\":{\"title\":\"Affiliate Links in the Links Report in Link Assistant\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/affiliate-links-in-the-links-report-in-link-assistant\\/\",\"categories\":[\"link-assistant\"]},\"69761\":{\"title\":\"Using the Domains Report in Link Assistant\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/using-the-domains-report-in-link-assistant\\/\",\"categories\":[\"link-assistant\"]},\"69770\":{\"title\":\"Link Assistant Settings\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/link-assistant-settings\\/\",\"categories\":[\"link-assistant\"]},\"68431\":{\"title\":\"aioseo_sitemap_images\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_sitemap_images\\/\",\"categories\":[\"filter-hooks\"]},\"66833\":{\"title\":\"Why Is N\\/A Displayed Instead of a Score For My Content?\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/why-is-na-displayed-instead-of-a-score-for-my-content\\/\",\"categories\":[\"frequently-asked-questions\",\"truseo\"]},\"18824\":{\"title\":\"Local Business SEO for a Single Location\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/local-business-seo-for-a-single-location\\/\",\"categories\":[\"local-business-seo\",\"schema-settings\"]},\"35828\":{\"title\":\"Local Business SEO for Multiple Locations\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/local-business-seo-for-multiple-locations\\/\",\"categories\":[\"local-business-seo\"]},\"58476\":{\"title\":\"aioseo_public_taxonomies\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_public_taxonomies\\/\",\"categories\":[\"filter-hooks\"]},\"58475\":{\"title\":\"aioseo_public_post_types\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_public_post_types\\/\",\"categories\":[\"filter-hooks\"]},\"64776\":{\"title\":\"How Long Does it Take For My Content to Appear on Google?\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-long-does-it-take-for-my-content-to-appear-on-google\\/\",\"categories\":[\"frequently-asked-questions\"]},\"35926\":{\"title\":\"Adding a Location in Local SEO Addon\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/adding-a-location-in-local-seo-addon\\/\",\"categories\":[\"local-business-seo\"]},\"61020\":{\"title\":\"How to Display a Favicon in Search Results\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-display-a-favicon-in-search-results\\/\",\"categories\":[\"frequently-asked-questions\",\"general-seo-topics\"]},\"35956\":{\"title\":\"Displaying Locations on Your Site\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/displaying-locations-on-your-site\\/\",\"categories\":[\"local-business-seo\"]},\"56330\":{\"title\":\"aioseo_sitemap_indexes\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_sitemap_indexes\\/\",\"categories\":[\"filter-hooks\"]},\"56011\":{\"title\":\"Redirect Manager - Configuration Reload\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/redirect-manager-configuration-reload\\/\",\"categories\":[\"redirection-manager\"]},\"52689\":{\"title\":\"aioseo_flyout_menu_enable\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_flyout_menu_disable\\/\",\"categories\":[\"filter-hooks\"]},\"45698\":{\"title\":\"Displaying your Business Information and Star Ratings on a Map\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/using-places-on-your-maps\\/\",\"categories\":[\"local-business-seo\"]},\"49268\":{\"title\":\"aioseo_access_control_excluded_roles\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_access_control_excluded_roles\\/\",\"categories\":[\"filter-hooks\"]},\"44555\":{\"title\":\"Setting up Google Maps for Local SEO\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-up-google-maps\\/\",\"categories\":[\"local-business-seo\"]},\"48189\":{\"title\":\"How to Create an HTML Sitemap\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/html-sitemap\\/\",\"categories\":[\"html-sitemap\"]},\"48365\":{\"title\":\"Using a Widget to Display Your HTML Sitemap\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/using-a-widget-to-display-your-html-sitemap\\/\",\"categories\":[\"html-sitemap\"]},\"48361\":{\"title\":\"Using PHP Code to Display Your HTML Sitemap\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/function-html-sitemap\\/\",\"categories\":[\"html-sitemap\"]},\"48260\":{\"title\":\"Using a Block to Display Your HTML Sitemap\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/using-a-block-to-display-your-html-sitemap\\/\",\"categories\":[\"content-blocks\",\"html-sitemap\"]},\"48222\":{\"title\":\"aioseo_breadcrumbs_separator_symbol\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_breadcrumbs_separator_symbol\\/\",\"categories\":[\"filter-hooks\"]},\"48227\":{\"title\":\"aioseo_breadcrumbs_template\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_breadcrumbs_template\\/\",\"categories\":[\"filter-hooks\"]},\"48231\":{\"title\":\"aioseo_breadcrumbs_trail\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_breadcrumbs_trail\\/\",\"categories\":[\"filter-hooks\"]},\"48232\":{\"title\":\"aioseo_breadcrumbs_link_current_item\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_breadcrumbs_link_current_item\\/\",\"categories\":[\"filter-hooks\"]},\"48233\":{\"title\":\"aioseo_breadcrumbs_show_current_item\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_breadcrumbs_show_current_item\\/\",\"categories\":[\"filter-hooks\"]},\"48219\":{\"title\":\"aioseo_breadcrumbs_output\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_breadcrumbs_output\\/\",\"categories\":[\"filter-hooks\"]},\"48223\":{\"title\":\"aioseo_breadcrumbs_separator\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_breadcrumbs_separator\\/\",\"categories\":[\"filter-hooks\"]},\"48238\":{\"title\":\"Using a Shortcode to Display Your HTML Sitemap\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/shortcode-html-sitemap\\/\",\"categories\":[\"html-sitemap\"]},\"45805\":{\"title\":\"aioseo_sitemap_exclude_terms\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_sitemap_exclude_terms\\/\",\"categories\":[\"filter-hooks\"]},\"45804\":{\"title\":\"aioseo_sitemap_exclude_posts\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_sitemap_exclude_posts\\/\",\"categories\":[\"filter-hooks\"]},\"61002\":{\"title\":\"How to Create a Google Maps API Key\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-create-a-google-maps-api-key\\/\",\"categories\":[\"local-business-seo\"]},\"45528\":{\"title\":\"aioseo_schema_output\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_schema_output\\/\",\"categories\":[\"filter-hooks\"]},\"42995\":{\"title\":\"Using the Headline Analyzer in All in One SEO\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/using-the-headline-analyzer-in-all-in-one-seo\\/\",\"categories\":[\"headline-analyzer\"]},\"42683\":{\"title\":\"How to Perform a Full Site Redirect\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/full-site-redirects\\/\",\"categories\":[\"redirection-manager\"]},\"50988\":{\"title\":\"Displaying Maps on Your Site\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/displaying-maps-on-your-site\\/\",\"categories\":[\"local-business-seo\"]},\"42999\":{\"title\":\"How to Disable the Headline Analyzer\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-disable-the-headline-analyzer\\/\",\"categories\":[\"advanced-settings\",\"headline-analyzer\"]},\"42975\":{\"title\":\"Installing Addons for All in One SEO Pro\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/installing-addons-for-all-in-one-seo-pro\\/\",\"categories\":[\"installation\"]},\"42854\":{\"title\":\"Creating a Pass Through Redirect\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/creating-a-pass-through-redirect\\/\",\"categories\":[\"redirection-manager\"]},\"41800\":{\"title\":\"Using Custom Rules in the Redirection Manager\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/redirection-manager-custom-rules\\/\",\"categories\":[\"redirection-manager\"]},\"42224\":{\"title\":\"Resetting the Settings in All in One SEO\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/resetting-the-settings-in-all-in-one-seo\\/\",\"categories\":[\"database-tools\",\"tools\"]},\"41884\":{\"title\":\"Setting the Site Name for Facebook\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-the-site-name-for-facebook\\/\",\"categories\":[\"facebook-settings\",\"social-networks\"]},\"41862\":{\"title\":\"How to Get Google to Display the Sitelinks Search Box\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-get-google-to-display-the-sitelinks-search-box\\/\",\"categories\":[\"schema-settings\"]},\"41851\":{\"title\":\"Setting the SEO Title and Description Format for the Search Results Page\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-the-seo-title-and-description-format-for-the-search-results-page\\/\",\"categories\":[\"content-type-settings\",\"search-appearance\"]},\"41811\":{\"title\":\"SEO Analysis Unable to Connect to Your Site\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/seo-analysis-unable-to-connect-to-your-site\\/\",\"categories\":[\"seo-analysis\",\"troubleshooting\"]},\"41280\":{\"title\":\"How to Renew Your AIOSEO License\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-renew-your-aioseo-license\\/\",\"categories\":[\"frequently-asked-questions\",\"getting-started\"]},\"41077\":{\"title\":\"Update WordPress: WordPress Versions Supported by AIOSEO\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/update-wordpress\\/\",\"categories\":[\"troubleshooting\"]},\"40587\":{\"title\":\"How to Open the Browser Error Console\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-open-the-browser-error-console\\/\",\"categories\":[\"troubleshooting\"]},\"40582\":{\"title\":\"How to Enable Debugging in WordPress\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-enable-debugging-in-wordpress\\/\",\"categories\":[\"troubleshooting\"]},\"40148\":{\"title\":\"What is TruSEO?\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/what-is-truseo\\/\",\"categories\":[\"frequently-asked-questions\",\"truseo\"]},\"39494\":{\"title\":\"Redirecting Attachment Pages\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/redirecting-attachment-pages\\/\",\"categories\":[\"media-settings\",\"search-appearance\"]},\"66310\":{\"title\":\"Selecting the Google Maps APIs to use with All in One SEO\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/selecting-the-google-maps-apis-to-use-with-all-in-one-seo\\/\",\"categories\":[\"local-business-seo\"]},\"38915\":{\"title\":\"Setting Up and Using Breadcrumbs Templates\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-up-and-using-breadcrumbs-templates\\/\",\"categories\":[\"breadcrumbs\"]},\"38610\":{\"title\":\"Displaying Breadcrumbs On Your Site\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/displaying-breadcrumbs-on-your-site\\/\",\"categories\":[\"breadcrumbs\"]},\"36048\":{\"title\":\"Function: aioseo_breadcrumbs()\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/function-aioseo_breadcrumbs\\/\",\"categories\":[\"breadcrumbs\"]},\"36047\":{\"title\":\"Shortcode: [aioseo_breadcrumbs]\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/shortcode-aioseo_breadcrumbs\\/\",\"categories\":[\"breadcrumbs\"]},\"38240\":{\"title\":\"aioseo_social_image_ignore_cover_block\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_social_image_ignore_cover_block\\/\",\"categories\":[\"filter-hooks\"]},\"34923\":{\"title\":\"How to Redirect a Post or Page in All in One SEO\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-redirect-a-post-or-page-in-all-in-one-seo\\/\",\"categories\":[\"redirection-manager\"]},\"34977\":{\"title\":\"How to Redirect Multiple URLs to the Same Destination\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-redirect-multiple-urls-to-the-same-destination\\/\",\"categories\":[\"redirection-manager\"]},\"35604\":{\"title\":\"Automatic Redirects When URLs Change in Content\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/automatic-redirects-when-urls-change-in-content\\/\",\"categories\":[\"redirection-manager\"]},\"31460\":{\"title\":\"Enhanced Search Query Conflict\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/enhanced-search-query-conflict\\/\",\"categories\":[\"local-business-seo\"]},\"30850\":{\"title\":\"aioseo_local_business_info_email_icon\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_local_business_info_email_icon\\/\",\"categories\":[\"filter-hooks\"]},\"30839\":{\"title\":\"aioseo_local_business_info_location_icon\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_local_business_info_location_icon\\/\",\"categories\":[\"filter-hooks\"]},\"30759\":{\"title\":\"aioseo_local_business_output_business_info_instance\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_local_business_output_business_info_instance\\/\",\"categories\":[\"filter-hooks\"]},\"30760\":{\"title\":\"aioseo_local_business_output_business_info_location_data\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_local_business_output_business_info_location_data\\/\",\"categories\":[\"filter-hooks\"]},\"30765\":{\"title\":\"aioseo_local_business_output_opening_hours_instance\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_local_business_output_opening_hours_instance\\/\",\"categories\":[\"filter-hooks\"]},\"30766\":{\"title\":\"aioseo_local_business_output_opening_hours_data\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_local_business_output_opening_hours_data\\/\",\"categories\":[\"filter-hooks\"]},\"30849\":{\"title\":\"aioseo_local_business_info_phone_icon\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_local_business_info_phone_icon\\/\",\"categories\":[\"filter-hooks\"]},\"30851\":{\"title\":\"aioseo_local_business_opening_hours_icon\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_local_business_opening_hours_icon\\/\",\"categories\":[\"filter-hooks\"]},\"30398\":{\"title\":\"aioseo_local_business_post_type_name\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_local_business_post_type_name\\/\",\"categories\":[\"filter-hooks\"]},\"30551\":{\"title\":\"aioseo_local_business_post_type_slug\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_local_business_post_type_slug\\/\",\"categories\":[\"filter-hooks\"]},\"30556\":{\"title\":\"aioseo_local_business_post_type_single_label\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_local_business_post_type_single_label\\/\",\"categories\":[\"filter-hooks\"]},\"30559\":{\"title\":\"aioseo_local_business_post_type_plural_label\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_local_business_post_type_plural_label\\/\",\"categories\":[\"filter-hooks\"]},\"30560\":{\"title\":\"aioseo_local_business_post_type\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_local_business_post_type\\/\",\"categories\":[\"filter-hooks\"]},\"30563\":{\"title\":\"aioseo_local_business_taxonomy_name\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_local_business_taxonomy_name\\/\",\"categories\":[\"filter-hooks\"]},\"30564\":{\"title\":\"aioseo_local_business_taxonomy_slug\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_local_business_taxonomy_slug\\/\",\"categories\":[\"filter-hooks\"]},\"35609\":{\"title\":\"Choosing Which Redirect Type to Use\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/choosing-which-redirect-type-to-use\\/\",\"categories\":[\"redirection-manager\"]},\"35599\":{\"title\":\"Importing Redirects From Other Plugins\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/importing-redirects-from-other-plugins\\/\",\"categories\":[\"redirection-manager\"]},\"35588\":{\"title\":\"Exporting and Importing Redirects\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/exporting-and-importing-redirects\\/\",\"categories\":[\"redirection-manager\"]},\"35579\":{\"title\":\"Logging 404 Errors in All in One SEO\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/logging-404-errors-in-all-in-one-seo\\/\",\"categories\":[\"redirection-manager\"]},\"35552\":{\"title\":\"Logging Redirects in All in One SEO\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/logging-redirects-in-all-in-one-seo\\/\",\"categories\":[\"redirection-manager\"]},\"35570\":{\"title\":\"Redirect GDPR Privacy Information\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/redirect-gdpr-privacy-information\\/\",\"categories\":[\"redirection-manager\"]},\"30863\":{\"title\":\"Local Business SEO - Template overrides\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/local-business-seo-template-overrides\\/\",\"categories\":[\"local-business-seo\"]},\"35133\":{\"title\":\"aioseo_twitter_tags\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_twitter_tags\\/\",\"categories\":[\"filter-hooks\"]},\"35132\":{\"title\":\"aioseo_facebook_tags\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_facebook_tags\\/\",\"categories\":[\"filter-hooks\"]},\"34993\":{\"title\":\"Ignoring Case Sensitivity in Redirects\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/ignoring-case-sensitivity-in-redirects\\/\",\"categories\":[\"redirection-manager\"]},\"34983\":{\"title\":\"Ignoring the Trailing Slash in Redirects\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/ignoring-the-trailing-slash-in-redirects\\/\",\"categories\":[\"redirection-manager\"]},\"36104\":{\"title\":\"Using Query Parameters With Redirects\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/using-query-parameters-with-redirects\\/\",\"categories\":[\"redirection-manager\"]},\"30565\":{\"title\":\"aioseo_local_business_taxonomy\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_local_business_taxonomy\\/\",\"categories\":[\"filter-hooks\"]},\"36115\":{\"title\":\"Caching of Redirects in the Browser\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/caching-of-redirects-in-the-browser\\/\",\"categories\":[\"redirection-manager\"]},\"34701\":{\"title\":\"Adding WooCommerce Product Attributes to SEO Title or Description\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/adding-woocommerce-product-attributes-to-seo-title-or-description\\/\",\"categories\":[\"post-page-settings\",\"search-appearance\",\"woocommerce\"]},\"36111\":{\"title\":\"Selecting the Redirect Method in Redirects\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/selecting-the-redirect-method-in-redirects\\/\",\"categories\":[\"redirection-manager\"]},\"40115\":{\"title\":\"Redirect Manager Cannot Detect Your Server\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/redirect-manager-unknown-web-server\\/\",\"categories\":[\"redirection-manager\"]},\"36369\":{\"title\":\"Using Regex in the Redirection Manager\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/redirect-manager-regex\\/\",\"categories\":[\"redirection-manager\"]},\"31442\":{\"title\":\"Shortcode: [aioseo_local_opening_hours]\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/shortcode-aioseo_local_opening_hours\\/\",\"categories\":[\"local-business-seo\"]},\"31443\":{\"title\":\"Shortcode: [aioseo_local_locations]\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/shortcode-aioseo_local_locations\\/\",\"categories\":[\"local-business-seo\"]},\"34179\":{\"title\":\"Using the Smart Tags in Titles and Descriptions\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/using-the-smart-tags-in-titles-and-descriptions\\/\",\"categories\":[\"post-page-settings\",\"search-appearance\"]},\"31441\":{\"title\":\"Shortcode: [aioseo_local_business_info]\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/shortcode-aioseo_local_business_info\\/\",\"categories\":[\"local-business-seo\"]},\"46122\":{\"title\":\"Shortcode: [aioseo_local_map]\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/shortcode-aioseo_local_map\\/\",\"categories\":[\"local-business-seo\"]},\"33507\":{\"title\":\"What\'s The Difference Between TruSEO and Page Analysis?\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/whats-the-difference-between-truseo-and-page-analysis\\/\",\"categories\":[\"frequently-asked-questions\",\"post-page-settings\",\"truseo\"]},\"33310\":{\"title\":\"Setting Noindex for RSS Feeds\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-noindex-for-rss-feeds\\/\",\"categories\":[\"advanced-settings\",\"search-appearance\"]},\"33130\":{\"title\":\"aioseo_disable_shortcode_parsing\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_disable_shortcode_parsing\\/\",\"categories\":[\"filter-hooks\"]},\"32085\":{\"title\":\"aioseo_conflicting_shortcodes\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_conflicting_shortcodes\\/\",\"categories\":[\"filter-hooks\"]},\"31992\":{\"title\":\"aioseo_schema_graphs\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_schema_graphs\\/\",\"categories\":[\"filter-hooks\"]},\"31589\":{\"title\":\"Understanding the TruSEO Page Analysis Recommendations\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/understanding-the-truseo-page-analysis-recommendations\\/\",\"categories\":[\"post-page-settings\",\"truseo\"]},\"31456\":{\"title\":\"Function: aioseo_local_locations()\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/function-aioseo_local_locations\\/\",\"categories\":[\"local-business-seo\"]},\"31455\":{\"title\":\"Function: aioseo_local_opening_hours()\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/function-aioseo_local_opening_hours\\/\",\"categories\":[\"local-business-seo\"]},\"31451\":{\"title\":\"Function: aioseo_local_business_info()\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/function-aioseo_local_business_info\\/\",\"categories\":[\"local-business-seo\"]},\"46123\":{\"title\":\"Function: aioseo_local_map()\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/function-aioseo_local_map\\/\",\"categories\":[\"local-business-seo\"]},\"31042\":{\"title\":\"Getting Keyphrase Suggestions From Semrush\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/getting-keyphrase-suggestions-from-semrush\\/\",\"categories\":[\"post-page-settings\",\"truseo\"]},\"30773\":{\"title\":\"aioseo_local_business_address_tag_value\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_local_business_address_tag_value\\/\",\"categories\":[\"filter-hooks\"]},\"30770\":{\"title\":\"aioseo_local_business_address_tags\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_local_business_address_tags\\/\",\"categories\":[\"filter-hooks\"]},\"30752\":{\"title\":\"aioseo_local_business_get_location\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_local_business_get_location\\/\",\"categories\":[\"filter-hooks\"]},\"30728\":{\"title\":\"Unable to Save Settings Due to Cloudflare Firewall Rules\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/unable-to-save-settings-due-to-cloudflare-firewall-rules\\/\",\"categories\":[\"troubleshooting\"]},\"30318\":{\"title\":\"aioseo_flush_output_buffer\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_flush_output_buffer\\/\",\"categories\":[\"filter-hooks\"]},\"18813\":{\"title\":\"Installing All in One SEO Pro\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/installing-all-in-one-seo-pro\\/\",\"categories\":[\"getting-started\",\"installation\"]},\"18973\":{\"title\":\"Beginners Guide for All in One SEO\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/quick-start-guide\\/\",\"categories\":[\"getting-started\"]},\"18820\":{\"title\":\"Setting the SEO Title and Description for Your Content\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-the-seo-title-and-description-for-your-content\\/\",\"categories\":[\"getting-started\",\"post-page-settings\"]},\"18902\":{\"title\":\"How to Create an XML Sitemap\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-create-an-xml-sitemap\\/\",\"categories\":[\"getting-started\",\"xml-sitemap\"]},\"18859\":{\"title\":\"Beginners Guide to Social Networks Settings for Facebook\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/beginners-guide-to-social-networks-settings-for-facebook\\/\",\"categories\":[\"facebook-settings\",\"getting-started\",\"social-networks\"]},\"18857\":{\"title\":\"Beginners Guide to Social Networks Settings for Twitter\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/beginners-guide-to-social-networks-settings-for-twitter\\/\",\"categories\":[\"getting-started\",\"social-networks\",\"twitter-settings\"]},\"29991\":{\"title\":\"aioseo_disable_link_format\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_disable_link_format\\/\",\"categories\":[\"filter-hooks\"]},\"27841\":{\"title\":\"aioseo_thumbnail_size\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_thumbnail_size\\/\",\"categories\":[\"filter-hooks\"]},\"27844\":{\"title\":\"Displaying Additional Data for Written By and Reading Time\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/displaying-additional-data-for-written-by-and-reading-time\\/\",\"categories\":[\"social-networks\"]},\"27494\":{\"title\":\"aioseo_meta_views\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_meta_views\\/\",\"categories\":[\"filter-hooks\"]},\"27363\":{\"title\":\"Using the SEO Analysis Tool\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/using-the-seo-analysis-tool\\/\",\"categories\":[\"seo-analysis\"]},\"27272\":{\"title\":\"Importing Settings From Other Plugins\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/importing-settings-from-other-plugins\\/\",\"categories\":[\"importer-exporter\",\"seo-data-importer\",\"tools\"]},\"27268\":{\"title\":\"Backing Up and Restoring AIOSEO Settings\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/backing-up-and-restoring-aioseo-settings\\/\",\"categories\":[\"importer-exporter\",\"tools\"]},\"27259\":{\"title\":\"Importing and Exporting AIOSEO Settings and Meta Data\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/importing-and-exporting-aioseo-settings-and-meta-data\\/\",\"categories\":[\"importer-exporter\",\"tools\"]},\"26450\":{\"title\":\"Blank Title Formats Have Been Detected\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/blank-title-formats-detected\\/\",\"categories\":[\"troubleshooting\"]},\"25802\":{\"title\":\"aioseo_sitemap_additional_pages\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_sitemap_additional_pages\\/\",\"categories\":[\"filter-hooks\"]},\"24928\":{\"title\":\"Including Custom Fields in the TruSEO Page Analysis\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/including-custom-fields-in-the-seo-page-analysis\\/\",\"categories\":[\"content-type-settings\",\"search-appearance\",\"truseo\"]},\"24285\":{\"title\":\"aioseo_prev_link\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_prev_link\\/\",\"categories\":[\"filter-hooks\"]},\"24284\":{\"title\":\"aioseo_next_link\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_next_link\\/\",\"categories\":[\"filter-hooks\"]},\"23717\":{\"title\":\"aioseo_canonical_url\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_canonical_url\\/\",\"categories\":[\"filter-hooks\"]},\"23604\":{\"title\":\"aioseo_schema_breadcrumbs_home\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_schema_breadcrumbs_home\\/\",\"categories\":[\"filter-hooks\"]},\"23448\":{\"title\":\"aioseo_schema_disable\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_schema_disable\\/\",\"categories\":[\"filter-hooks\"]},\"23447\":{\"title\":\"aioseo_robots_meta\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_robots_meta\\/\",\"categories\":[\"filter-hooks\"]},\"23446\":{\"title\":\"aioseo_disable\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_disable\\/\",\"categories\":[\"filter-hooks\"]},\"23438\":{\"title\":\"aioseo_disable_title_rewrites\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_disable_title_rewrites\\/\",\"categories\":[\"filter-hooks\"]},\"23437\":{\"title\":\"aioseo_post_metabox_priority\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_post_metabox_priority\\/\",\"categories\":[\"filter-hooks\"]},\"23436\":{\"title\":\"aioseo_show_seo_news\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_show_seo_news\\/\",\"categories\":[\"filter-hooks\"]},\"23433\":{\"title\":\"aioseo_show_in_admin_bar\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_show_in_admin_bar\\/\",\"categories\":[\"filter-hooks\"]},\"23423\":{\"title\":\"aioseo_keywords\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_keywords\\/\",\"categories\":[\"filter-hooks\"]},\"23350\":{\"title\":\"aioseo_title\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_title\\/\",\"categories\":[\"filter-hooks\"]},\"23351\":{\"title\":\"aioseo_description\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_description\\/\",\"categories\":[\"filter-hooks\"]},\"23415\":{\"title\":\"Troubleshooting Action Scheduler issues with AIOSEO\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/troubleshooting-action-scheduler-issues\\/\",\"categories\":[\"troubleshooting\"]},\"20504\":{\"title\":\"Where Did my SEO Keywords go in All in One SEO v4.0?\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/where-did-my-seo-keywords-go-in-all-in-one-seo-v4-0\\/\",\"categories\":[\"advanced-settings\",\"frequently-asked-questions\",\"post-page-settings\",\"search-appearance\"]},\"18792\":{\"title\":\"Sitemap rewrite rules for NGINX\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/xml-sitemap-rewrite-rules-for-nginx\\/\",\"categories\":[\"rss-sitemap\",\"video-sitemap\",\"xml-sitemap\"]},\"18793\":{\"title\":\"Unfiltered HTML Capability is Required\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/unfiltered-html-capability\\/\",\"categories\":[\"troubleshooting\"]},\"18794\":{\"title\":\"Deprecated Open Graph Settings in All in One SEO version 4.0\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/deprecated-opengraph-settings\\/\",\"categories\":[\"social-networks\"]},\"18795\":{\"title\":\"Why does the character counter for SEO titles show a different count?\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/why-does-the-character-counter-for-seo-titles-show-a-different-count\\/\",\"categories\":[\"frequently-asked-questions\",\"post-page-settings\"]},\"18796\":{\"title\":\"Adding nofollow, sponsored, UGC and title attributes to links\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/adding-nofollow-sponsored-and-title-attributes-to-links\\/\",\"categories\":[\"post-page-settings\"]},\"18797\":{\"title\":\"Setting the SEO for WooCommerce Content\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-the-seo-for-woocommerce-content\\/\",\"categories\":[\"search-appearance\",\"woocommerce\"]},\"18798\":{\"title\":\"All in One SEO uses the WordPress REST API\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo-uses-rest-api\\/\",\"categories\":[\"frequently-asked-questions\"]},\"18799\":{\"title\":\"How to Remove All Settings and Data When you Uninstall All in One SEO\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-remove-all-settings-and-data-when-you-uninstall-all-in-one-seo\\/\",\"categories\":[\"advanced-settings\",\"general-settings\"]},\"18800\":{\"title\":\"How to Disable TruSEO Content Analysis\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-disable-truseo-content-analysis\\/\",\"categories\":[\"advanced-settings\",\"general-settings\",\"truseo\"]},\"18801\":{\"title\":\"Enabling Automatic Updates for All in One SEO\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/enabling-automatic-updates-for-all-in-one-seo\\/\",\"categories\":[\"advanced-settings\",\"general-settings\"]},\"18802\":{\"title\":\"Hiding Plugin Notifications in the Notifications Center\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/hiding-plugin-notifications-in-the-notifications-center\\/\",\"categories\":[\"advanced-settings\",\"general-settings\"]},\"18803\":{\"title\":\"How to Hide the AIOSEO Settings on the Edit Content Screens in WordPress\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-hide-the-aioseo-settings-on-the-edit-content-screens-in-wordpress\\/\",\"categories\":[\"advanced-settings\",\"content-type-settings\",\"post-page-settings\",\"search-appearance\"]},\"18804\":{\"title\":\"Setting Noindex and Nofollow on Paginated Content\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-noindex-and-nofollow-on-paginated-content\\/\",\"categories\":[\"advanced-settings\",\"search-appearance\"]},\"18805\":{\"title\":\"Setting Unique SEO Titles and Descriptions for Paginated Content\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-unique-seo-titles-and-descriptions-for-paginated-content\\/\",\"categories\":[\"advanced-settings\",\"search-appearance\"]},\"18806\":{\"title\":\"Setting the SEO Title and Description Format for Custom Post Type Archives\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-the-seo-title-and-description-format-for-custom-post-type-archives\\/\",\"categories\":[\"archive-settings\",\"search-appearance\"]},\"18807\":{\"title\":\"Meta Keyword Settings in All in One SEO\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/keyword-settings\\/\",\"categories\":[\"advanced-settings\",\"search-appearance\"]},\"18808\":{\"title\":\"Using the Quick Edit Feature in All in One SEO\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/using-the-quick-edit-feature-in-all-in-one-seo\\/\",\"categories\":[\"post-page-settings\"]},\"18809\":{\"title\":\"How to FTP to your web server\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-ftp-to-your-web-server\\/\",\"categories\":[\"frequently-asked-questions\"]},\"18810\":{\"title\":\"How to manually install All in One SEO Pro when the file is too big\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-manually-install-all-in-one-seo-pro-when-the-file-is-too-big\\/\",\"categories\":[\"frequently-asked-questions\",\"installation\"]},\"18811\":{\"title\":\"How to Upgrade From All in One SEO Lite to Pro\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-upgrade-from-all-in-one-seo-lite-to-pro\\/\",\"categories\":[\"getting-started\",\"installation\"]},\"18812\":{\"title\":\"Installation instructions for WordPress.com Users\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/installation-instructions-for-wordpress-com-users\\/\",\"categories\":[\"installation\"]},\"18814\":{\"title\":\"Configuring the Twitter Settings for Your Content\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/configuring-the-twitter-settings-for-your-content\\/\",\"categories\":[\"post-page-settings\",\"social-networks\",\"twitter-settings\"]},\"18815\":{\"title\":\"Configuring the Facebook Settings for Your Content\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/configuring-the-facebook-settings-for-your-content\\/\",\"categories\":[\"facebook-settings\",\"post-page-settings\",\"social-networks\"]},\"18816\":{\"title\":\"Hiding the AIOSEO Column on Taxonomy Screens\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/hiding-the-aioseo-column-on-taxonomy-screens\\/\",\"categories\":[\"advanced-settings\",\"category-tag-settings\",\"general-settings\"]},\"18818\":{\"title\":\"Setting the Sitemap Priority and Frequency for Individual Content\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-the-sitemap-priority-and-frequency-for-individual-content\\/\",\"categories\":[\"post-page-settings\",\"xml-sitemap\"]},\"18819\":{\"title\":\"Setting the Robots Meta for Individual Content\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-the-robots-meta-for-individual-content\\/\",\"categories\":[\"post-page-settings\"]},\"18821\":{\"title\":\"Individual Post\\/Page Settings\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/post-settings\\/\",\"categories\":[\"post-page-settings\"]},\"18822\":{\"title\":\"Bad Bot Blocker\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/bad-bot-blocker\\/\",\"categories\":[\"bad-bot-blocker\"]},\"18823\":{\"title\":\"How to Fix a 404 Error When Viewing Your Sitemap\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-fix-a-404-error-when-viewing-your-sitemap\\/\",\"categories\":[\"frequently-asked-questions\",\"google-news-sitemap\",\"rss-sitemap\",\"troubleshooting\",\"video-sitemap\",\"xml-sitemap\"]},\"18825\":{\"title\":\"When to use NOINDEX or the robots.txt?\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/when-to-use-noindex-or-the-robots-txt\\/\",\"categories\":[\"frequently-asked-questions\",\"robots-txt\",\"search-appearance\",\"tools\"]},\"18826\":{\"title\":\"Support for Videos Embedded Using the Media Library\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/support-for-videos-embedded-using-the-media-library\\/\",\"categories\":[\"video-sitemap\"]},\"18827\":{\"title\":\"Supported Videos\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/supported-videos\\/\",\"categories\":[\"video-sitemap\"]},\"18828\":{\"title\":\"Performance Settings\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/performance-settings\\/\",\"categories\":[\"performance\"]},\"18830\":{\"title\":\"Setting the SEO Title and Description Format for Author and Date Archives\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-the-seo-title-and-description-format-for-author-and-date-archives\\/\",\"categories\":[\"archive-settings\",\"search-appearance\"]},\"18831\":{\"title\":\"Using Custom Fields in Titles and Descriptions\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/custom-fields-in-titles-and-descriptions\\/\",\"categories\":[\"content-type-settings\",\"post-page-settings\",\"search-appearance\"]},\"18832\":{\"title\":\"Using the Focus Keyphrase to Analyze Your Content\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/using-the-focus-keyphrase-to-analyze-your-content\\/\",\"categories\":[\"frequently-asked-questions\",\"post-page-settings\",\"truseo\"]},\"18833\":{\"title\":\"Using the Robots.txt Tool in All in One SEO\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/using-the-robots-txt-tool-in-all-in-one-seo\\/\",\"categories\":[\"robots-txt\",\"tools\"]},\"18834\":{\"title\":\"Using the Robots Meta Settings in All in One SEO\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/using-the-robots-meta-settings-in-all-in-one-seo\\/\",\"categories\":[\"advanced-settings\",\"archive-settings\",\"category-tag-settings\",\"content-type-settings\",\"media-settings\",\"post-page-settings\",\"search-appearance\",\"taxonomy-settings\"]},\"18835\":{\"title\":\"Noindex Settings\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/noindex-settings\\/\",\"categories\":[\"search-appearance\"]},\"18838\":{\"title\":\"Hiding the AIOSEO Admin Bar Menu\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/hiding-the-aioseo-admin-bar-menu\\/\",\"categories\":[\"advanced-settings\",\"general-settings\"]},\"18839\":{\"title\":\"Hiding the AIOSEO Dashboard Widgets\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/hiding-the-aioseo-dashboard-widget\\/\",\"categories\":[\"advanced-settings\",\"general-settings\"]},\"18840\":{\"title\":\"Hiding the AIOSEO Column on All Posts Screens\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/hiding-the-aioseo-column-on-all-posts-screens\\/\",\"categories\":[\"advanced-settings\",\"general-settings\"]},\"18841\":{\"title\":\"Display Settings\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/display-settings\\/\",\"categories\":[\"display-settings\"]},\"18842\":{\"title\":\"Setting the SEO Title and Description Format for Media Attachments\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-the-seo-title-and-description-format-for-media-attachments\\/\",\"categories\":[\"media-settings\",\"search-appearance\"]},\"18843\":{\"title\":\"Showing or Hiding Your Content in Search Results\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/showing-or-hiding-your-content-in-search-results\\/\",\"categories\":[\"archive-settings\",\"category-tag-settings\",\"content-type-settings\",\"media-settings\",\"post-page-settings\",\"search-appearance\",\"taxonomy-settings\"]},\"18844\":{\"title\":\"Content Type Settings\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/custom-post-type-settings\\/\",\"categories\":[\"content-type-settings\",\"search-appearance\"]},\"18845\":{\"title\":\"What Are Media Attachments and Should I Submit Them to Search Engines?\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/what-are-media-attachments-and-should-i-submit-them-to-search-engines\\/\",\"categories\":[\"frequently-asked-questions\",\"media-settings\"]},\"18846\":{\"title\":\"Setting the SEO Title and Description Format for Custom Taxonomies\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-the-seo-title-and-description-format-for-custom-taxonomies\\/\",\"categories\":[\"category-tag-settings\",\"search-appearance\",\"taxonomy-settings\"]},\"18847\":{\"title\":\"Setting the SEO Title and Description Format for Custom Post Types\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-the-seo-title-and-description-format-for-custom-post-types\\/\",\"categories\":[\"content-type-settings\",\"search-appearance\"]},\"18848\":{\"title\":\"Setting the SEO Title and Description Format for Tags\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-the-seo-title-and-description-format-for-tags\\/\",\"categories\":[\"category-tag-settings\",\"search-appearance\",\"taxonomy-settings\"]},\"18849\":{\"title\":\"Setting the SEO Title and Description Format for Categories\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-the-seo-title-and-description-format-for-categories\\/\",\"categories\":[\"category-tag-settings\",\"search-appearance\",\"taxonomy-settings\"]},\"18850\":{\"title\":\"Setting the SEO Title and Description Format for Pages\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-the-seo-title-and-description-format-for-pages\\/\",\"categories\":[\"content-type-settings\",\"post-page-settings\",\"search-appearance\"]},\"18851\":{\"title\":\"Setting the SEO Title and Description Format for Posts\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-the-seo-title-and-description-format-for-posts\\/\",\"categories\":[\"content-type-settings\",\"post-page-settings\",\"search-appearance\"]},\"18852\":{\"title\":\"Title Settings\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/title-settings\\/\",\"categories\":[\"search-appearance\"]},\"18853\":{\"title\":\"Setting the SEO for Your Home Page\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-the-seo-for-your-home-page\\/\",\"categories\":[\"home-page-settings\",\"search-appearance\"]},\"18854\":{\"title\":\"General Settings\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/general-settings\\/\",\"categories\":[\"general-settings\"]},\"18855\":{\"title\":\"How to Add Your License Key for All in One SEO Pro\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-add-your-license-key-in-all-in-one-seo-pro\\/\",\"categories\":[\"general-settings\",\"getting-started\"]},\"18856\":{\"title\":\"Canonical URLs in All in One SEO\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/canonical-urls-in-all-in-one-seo\\/\",\"categories\":[\"advanced-settings\",\"search-appearance\"]},\"18858\":{\"title\":\"Adding non-WordPress Content to the Video Sitemap\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/adding-non-wordpress-content-to-the-video-sitemap\\/\",\"categories\":[\"video-sitemap\"]},\"18860\":{\"title\":\"Troubleshooting Problems With Sharing Content on Twitter\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/troubleshooting-problems-with-sharing-content-on-twitter\\/\",\"categories\":[\"social-networks\",\"troubleshooting\",\"twitter-settings\"]},\"18861\":{\"title\":\"Troubleshooting Problems With Sharing Content on Facebook\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/troubleshooting-problems-with-sharing-content-on-facebook\\/\",\"categories\":[\"facebook-settings\",\"social-networks\",\"troubleshooting\"]},\"18862\":{\"title\":\"Getting Started With Pinterest Rich Pins\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/using-social-meta-for-pinterest-rich-pins\\/\",\"categories\":[\"pinterest-settings\",\"social-networks\"]},\"18863\":{\"title\":\"Setting the Content Publisher for Twitter\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-the-content-publisher-for-twitter\\/\",\"categories\":[\"social-networks\",\"twitter-settings\"]},\"18865\":{\"title\":\"Submitting a Sitemap to Yandex\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/submitting-a-sitemap-to-yandex\\/\",\"categories\":[\"rss-sitemap\",\"video-sitemap\",\"xml-sitemap\"]},\"18866\":{\"title\":\"Submitting a Sitemap to Bing\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/submitting-a-sitemap-to-bing\\/\",\"categories\":[\"bing-webmaster-tools\",\"rss-sitemap\",\"video-sitemap\",\"xml-sitemap\"]},\"18867\":{\"title\":\"Submitting a Sitemap to Google\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/submitting-a-sitemap-to-google\\/\",\"categories\":[\"google-news-sitemap\",\"google-search-console\",\"rss-sitemap\",\"video-sitemap\",\"xml-sitemap\"]},\"18868\":{\"title\":\"Including Date and Author Archives in Your XML Sitemap\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/including-date-and-author-archives-in-your-xml-sitemap\\/\",\"categories\":[\"xml-sitemap\"]},\"18869\":{\"title\":\"Choosing Which Content to Include in Your Video Sitemap\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/choosing-which-content-to-include-in-your-video-sitemap\\/\",\"categories\":[\"video-sitemap\"]},\"18870\":{\"title\":\"Choosing Which Content to Include in Your XML Sitemap\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/choosing-which-content-to-include-in-your-xml-sitemap\\/\",\"categories\":[\"xml-sitemap\"]},\"18871\":{\"title\":\"Using Sitemap Indexes and Pagination\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/using-sitemap-indexes-and-pagination\\/\",\"categories\":[\"video-sitemap\",\"xml-sitemap\"]},\"18872\":{\"title\":\"How to Disable Sitemaps in All in One SEO\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-disable-sitemaps-in-all-in-one-seo\\/\",\"categories\":[\"google-news-sitemap\",\"rss-sitemap\",\"video-sitemap\",\"xml-sitemap\"]},\"18873\":{\"title\":\"Baidu Webmaster Tools Verification\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/baidu-webmaster-tools-verification\\/\",\"categories\":[\"webmaster-tools\",\"webmaster-verification\"]},\"18874\":{\"title\":\"Setting Twitter Social Meta for Your Homepage\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-twitter-social-meta-for-your-homepage\\/\",\"categories\":[\"home-page-settings\",\"social-networks\",\"twitter-settings\"]},\"18875\":{\"title\":\"Setting Facebook Social Meta for Your Homepage\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-facebook-social-meta-for-your-homepage\\/\",\"categories\":[\"facebook-settings\",\"home-page-settings\",\"social-networks\"]},\"18876\":{\"title\":\"Setting the Card Type for Twitter\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-the-card-type-for-twitter\\/\",\"categories\":[\"social-networks\",\"twitter-settings\"]},\"18877\":{\"title\":\"Setting the Object Types for Facebook\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-the-object-types-for-facebook\\/\",\"categories\":[\"facebook-settings\",\"social-networks\"]},\"18879\":{\"title\":\"Setting the Priority and Frequency for Content in the Video Sitemap\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-the-priority-and-frequency-for-content-in-the-video-sitemap\\/\",\"categories\":[\"video-sitemap\"]},\"18880\":{\"title\":\"Setting the Priority and Frequency for Content in the XML Sitemap\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-the-priority-and-frequency-for-content-in-the-xml-sitemap\\/\",\"categories\":[\"xml-sitemap\"]},\"18881\":{\"title\":\"How to Exclude Content from Your RSS Sitemap\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-exclude-content-from-your-rss-sitemap\\/\",\"categories\":[\"rss-sitemap\"]},\"18882\":{\"title\":\"How to Exclude Content from Your Google News Sitemap\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-exclude-content-from-your-google-news-sitemap\\/\",\"categories\":[\"google-news-sitemap\"]},\"18883\":{\"title\":\"How to Exclude Content from Your Video Sitemap\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-exclude-content-from-your-video-sitemap\\/\",\"categories\":[\"video-sitemap\"]},\"18884\":{\"title\":\"How to Exclude Content from Your XML Sitemap\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-exclude-content-from-your-xml-sitemap\\/\",\"categories\":[\"xml-sitemap\"]},\"18885\":{\"title\":\"Setting Article Tags for Facebook\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-article-tags-for-facebook\\/\",\"categories\":[\"facebook-settings\",\"social-networks\"]},\"18886\":{\"title\":\"Setting the Content Author for Twitter\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-the-content-author-for-twitter\\/\",\"categories\":[\"social-networks\",\"twitter-settings\"]},\"18887\":{\"title\":\"Setting the Content Author for Facebook\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-the-content-author-for-facebook\\/\",\"categories\":[\"facebook-settings\",\"social-networks\"]},\"18888\":{\"title\":\"Setting the Content Publisher for Facebook\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-the-content-publisher-for-facebook\\/\",\"categories\":[\"facebook-settings\",\"social-networks\"]},\"18889\":{\"title\":\"How to Create a Google News Sitemap\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-create-a-google-news-sitemap\\/\",\"categories\":[\"google-news-sitemap\"]},\"18890\":{\"title\":\"Including Videos in Custom Fields in Your Video Sitemap\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/including-videos-in-custom-fields-in-your-video-sitemap\\/\",\"categories\":[\"video-sitemap\"]},\"18891\":{\"title\":\"What is a Dynamically Generated Sitemap and Why is it Better to Use?\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/what-is-a-dynamically-generated-sitemap-and-why-is-it-better-to-use\\/\",\"categories\":[\"frequently-asked-questions\",\"video-sitemap\",\"xml-sitemap\"]},\"18892\":{\"title\":\"How to Create a Video Sitemap\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-create-a-video-sitemap\\/\",\"categories\":[\"video-sitemap\"]},\"18893\":{\"title\":\"Adding Your Facebook Admin ID\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/adding-your-facebook-admin-id\\/\",\"categories\":[\"facebook-settings\",\"social-networks\"]},\"18894\":{\"title\":\"Adding Your Facebook App ID\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/adding-your-facebook-app-id\\/\",\"categories\":[\"facebook-settings\",\"social-networks\"]},\"18895\":{\"title\":\"Access Control Settings\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/access-control-settings\\/\",\"categories\":[\"access-control-settings\"]},\"18896\":{\"title\":\"Advanced Settings for Google Analytics\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/advanced-settings-for-google-analytics\\/\",\"categories\":[\"google-analytics\"]},\"18897\":{\"title\":\"Miscellaneous Site Verification\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/miscellaneous-site-verification\\/\",\"categories\":[\"webmaster-tools\",\"webmaster-verification\"]},\"18898\":{\"title\":\"Displaying Your Social Media Profiles in Knowledge Panel\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/displaying-your-social-media-profiles-in-knowledge-panel\\/\",\"categories\":[\"schema-settings\",\"social-networks\"]},\"18899\":{\"title\":\"How to Create an RSS Sitemap\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-create-an-rss-sitemap\\/\",\"categories\":[\"rss-sitemap\"]},\"18900\":{\"title\":\"Excluding Images from the XML Sitemap\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/excluding-images-from-the-xml-sitemap\\/\",\"categories\":[\"xml-sitemap\"]},\"18901\":{\"title\":\"Adding non-WordPress Content to the XML Sitemap\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/adding-non-wordpress-content-to-the-xml-sitemap\\/\",\"categories\":[\"xml-sitemap\"]},\"18903\":{\"title\":\"Setting a Default Image for Twitter\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-a-default-image-for-twitter\\/\",\"categories\":[\"social-networks\",\"twitter-settings\"]},\"18904\":{\"title\":\"Setting a Default Image for Facebook\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-a-default-image-for-facebook\\/\",\"categories\":[\"facebook-settings\",\"social-networks\"]},\"18905\":{\"title\":\"Setting a Title Separator\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-a-title-separator\\/\",\"categories\":[\"search-appearance\"]},\"18906\":{\"title\":\"How to Protect Your Content With RSS Content Settings\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-protect-your-content-with-rss-content-settings\\/\",\"categories\":[\"rss-content-settings\"]},\"18907\":{\"title\":\"How to Connect Your Site with Google Tag Manager\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-connect-your-site-with-google-tag-manager\\/\",\"categories\":[\"google-analytics\"]},\"18908\":{\"title\":\"How to Connect Your Site with Google Analytics\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-connect-your-site-with-google-analytics\\/\",\"categories\":[\"google-analytics\"]},\"18909\":{\"title\":\"How to Verify Your Site with Pinterest\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-verify-your-site-with-pinterest\\/\",\"categories\":[\"pinterest-settings\",\"social-networks\",\"webmaster-tools\",\"webmaster-verification\"]},\"18910\":{\"title\":\"How to Verify Your Site with Yandex Webmaster Tools\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-verify-your-site-with-yandex-webmaster-tools\\/\",\"categories\":[\"webmaster-tools\",\"webmaster-verification\"]},\"18911\":{\"title\":\"How to Verify Your Site with Bing Webmaster Tools\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-verify-your-site-with-bing-webmaster-tools\\/\",\"categories\":[\"bing-webmaster-tools\",\"webmaster-tools\",\"webmaster-verification\"]},\"18912\":{\"title\":\"How to Verify Your Site with Google Search Console\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-verify-your-site-with-google-search-console\\/\",\"categories\":[\"google-search-console\",\"webmaster-tools\",\"webmaster-verification\"]},\"18913\":{\"title\":\"Usage Tracking\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/usage-tracking\\/\",\"categories\":[\"frequently-asked-questions\"]},\"18915\":{\"title\":\"How do I use All in One SEO in my language?\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-do-i-use-all-in-one-seo-in-my-language\\/\",\"categories\":[\"frequently-asked-questions\"]},\"18920\":{\"title\":\"NGINX rewrite rules for Robots.txt\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/nginx-rewrite-rules-for-robots-txt\\/\",\"categories\":[\"robots-txt\",\"tools\"]},\"18927\":{\"title\":\"Supported PHP Versions for All in One SEO\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/supported-php-version\\/\",\"categories\":[\"troubleshooting\"]},\"18929\":{\"title\":\"Using a different CDN for script enqueuing\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/using-a-different-cdn-for-script-enqueuing\\/\",\"categories\":[\"troubleshooting\"]},\"18930\":{\"title\":\"How do I get Google to show sitelinks for my site?\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-do-i-get-google-to-show-sitelinks-for-my-site\\/\",\"categories\":[\"frequently-asked-questions\"]},\"18954\":{\"title\":\"How does the import process for SEO data work?\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-does-the-import-process-for-seo-data-work\\/\",\"categories\":[\"frequently-asked-questions\",\"importer-exporter\",\"tools\"]},\"18960\":{\"title\":\"Robots.txt Editor for Multisite Networks\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/robots-txt-editor-for-multisite-networks\\/\",\"categories\":[\"multisite-networks\",\"robots-txt\"]},\"18961\":{\"title\":\"What are the minimum requirements for All in One SEO?\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/what-are-the-minimum-requirements-for-all-in-one-seo-pack\\/\",\"categories\":[\"frequently-asked-questions\"]},\"18964\":{\"title\":\"How do I use your API code examples?\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-do-i-use-your-api-code-examples\\/\",\"categories\":[\"frequently-asked-questions\"]},\"18969\":{\"title\":\"XML Parsing Error - This page contains the following errors\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/this-page-contains-the-following-errors\\/\",\"categories\":[\"google-news-sitemap\",\"troubleshooting\",\"video-sitemap\",\"xml-sitemap\"]},\"18972\":{\"title\":\"The File Editor or Robots.txt modules are missing\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/the-file-editor-or-robots-txt-modules-are-missing\\/\",\"categories\":[\"frequently-asked-questions\"]},\"18977\":{\"title\":\"Excluding the XML Sitemap from caching\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/excluding-the-xml-sitemap-from-caching\\/\",\"categories\":[\"xml-sitemap\"]},\"18982\":{\"title\":\"Why doesn\'t the title and description I set appear in search results?\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/why-doesnt-the-title-and-description-i-set-appear-in-search-results\\/\",\"categories\":[\"frequently-asked-questions\",\"post-page-settings\"]},\"18983\":{\"title\":\"Can I remove the date from Google search results?\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/can-i-remove-the-date-from-google-search-results\\/\",\"categories\":[\"frequently-asked-questions\"]},\"18985\":{\"title\":\"Setting up HTTPS SSL\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-up-https-ssl\\/\",\"categories\":[\"general-seo-topics\"]},\"18995\":{\"title\":\"How to Increase the WordPress PHP Memory Limit\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/increase-wordpress-php-memory-limit\\/\",\"categories\":[\"troubleshooting\"]},\"19002\":{\"title\":\"Checking Index Status in Google Search Results\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/checking-index-status-in-google-search-results\\/\",\"categories\":[\"general-seo-topics\"]},\"19006\":{\"title\":\"SEO Data Importer\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/seo-data-importer\\/\",\"categories\":[\"seo-data-importer\"]},\"19008\":{\"title\":\"How to troubleshoot issues with All in One SEO\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-troubleshoot-issues-with-all-in-one-seo-pack\\/\",\"categories\":[\"troubleshooting\"]},\"19010\":{\"title\":\"Quality Guidelines for SEO Titles and Descriptions\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/quality-guidelines-for-seo-titles-and-descriptions\\/\",\"categories\":[\"general-seo-topics\"]},\"19016\":{\"title\":\"Top Tips for Good On-Page SEO\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/top-tips-for-good-on-page-seo\\/\",\"categories\":[\"general-seo-topics\"]},\"19017\":{\"title\":\"Meta Descriptions\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/meta-descriptions\\/\",\"categories\":[\"general-seo-topics\"]},\"19028\":{\"title\":\"What is SEO meta?\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/what-is-seo-meta\\/\",\"categories\":[\"getting-started\"]},\"19029\":{\"title\":\"Social Meta Settings - Individual Page\\/Post Settings\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/social-meta-settings-individual-pagepost-settings\\/\",\"categories\":[\"post-page-settings\",\"social-networks\"]},\"19030\":{\"title\":\"File Editor Module\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/file-editor-module\\/\",\"categories\":[\"file-editor\"]},\"19031\":{\"title\":\"Social Meta Settings\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/social-meta-module\\/\",\"categories\":[\"social-networks\"]},\"19032\":{\"title\":\"Importer & Exporter Module\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/importer-exporter-module\\/\",\"categories\":[\"importer-exporter\",\"tools\"]},\"19034\":{\"title\":\"Feature Manager\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/feature-manager\\/\",\"categories\":[\"feature-manager\"]},\"19035\":{\"title\":\"Advanced Settings for All in One SEO Pack\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/all-in-one-seo-pack-advanced-settings\\/\",\"categories\":[\"advanced-settings\"]}}}\";','2025-04-18 13:00:45','2025-04-11 13:00:45','2025-04-11 13:00:45'); /*!40000 ALTER TABLE `wp_aioseo_cache` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_aioseo_crawl_cleanup_blocked_args` -- DROP TABLE IF EXISTS `wp_aioseo_crawl_cleanup_blocked_args`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `wp_aioseo_crawl_cleanup_blocked_args` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `key` text COLLATE utf8mb4_unicode_520_ci, `value` text COLLATE utf8mb4_unicode_520_ci, `key_value_hash` varchar(40) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `regex` varchar(150) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `hits` int NOT NULL DEFAULT '0', `created` datetime NOT NULL, `updated` datetime NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `ndx_aioseo_crawl_cleanup_blocked_args_key_value_hash` (`key_value_hash`), UNIQUE KEY `ndx_aioseo_crawl_cleanup_blocked_args_regex` (`regex`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_aioseo_crawl_cleanup_blocked_args` -- LOCK TABLES `wp_aioseo_crawl_cleanup_blocked_args` WRITE; /*!40000 ALTER TABLE `wp_aioseo_crawl_cleanup_blocked_args` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_aioseo_crawl_cleanup_blocked_args` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_aioseo_crawl_cleanup_logs` -- DROP TABLE IF EXISTS `wp_aioseo_crawl_cleanup_logs`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `wp_aioseo_crawl_cleanup_logs` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `slug` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `key` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `value` text COLLATE utf8mb4_unicode_520_ci, `hash` varchar(40) COLLATE utf8mb4_unicode_520_ci NOT NULL, `hits` int NOT NULL DEFAULT '1', `created` datetime NOT NULL, `updated` datetime NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `ndx_aioseo_crawl_cleanup_logs_hash` (`hash`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_aioseo_crawl_cleanup_logs` -- LOCK TABLES `wp_aioseo_crawl_cleanup_logs` WRITE; /*!40000 ALTER TABLE `wp_aioseo_crawl_cleanup_logs` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_aioseo_crawl_cleanup_logs` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_aioseo_notifications` -- DROP TABLE IF EXISTS `wp_aioseo_notifications`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `wp_aioseo_notifications` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `slug` varchar(13) COLLATE utf8mb4_unicode_520_ci NOT NULL, `addon` varchar(64) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `title` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `content` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL, `type` varchar(64) COLLATE utf8mb4_unicode_520_ci NOT NULL, `level` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `notification_id` bigint unsigned DEFAULT NULL, `notification_name` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `start` datetime DEFAULT NULL, `end` datetime DEFAULT NULL, `button1_label` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `button1_action` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `button2_label` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `button2_action` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `dismissed` tinyint(1) NOT NULL DEFAULT '0', `new` tinyint(1) NOT NULL DEFAULT '1', `created` datetime NOT NULL, `updated` datetime NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `ndx_aioseo_notifications_slug` (`slug`), KEY `ndx_aioseo_notifications_dates` (`start`,`end`), KEY `ndx_aioseo_notifications_type` (`type`), KEY `ndx_aioseo_notifications_dismissed` (`dismissed`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_aioseo_notifications` -- LOCK TABLES `wp_aioseo_notifications` WRITE; /*!40000 ALTER TABLE `wp_aioseo_notifications` DISABLE KEYS */; INSERT INTO `wp_aioseo_notifications` VALUES (2,'67bea3048d3cb',NULL,'サイトを Google Search Console に接続しましたか ?','All in One SEO では、サイトが Google Search Console で正しく認証されているか、サイトマップが正しく送信されているかを確認できるようになりました。今すぐ Google Search Console に接続し、コンテンツをできるだけ早く Google に追加して、ランキングを向上させましょう。','warning','[\"all\"]',NULL,'search-console-site-not-connected','2025-02-26 05:13:40',NULL,'Google Search Console に接続','https://route#aioseo-settings&aioseo-scroll=google-search-console-settings&aioseo-highlight=google-search-console-settings:webmaster-tools?activetool=googleSearchConsole',NULL,NULL,0,0,'2025-02-26 05:13:40','2025-02-26 05:13:40'),(3,'67d1198b1b6a9',NULL,'メールレポート','新しいメールダイジェストで SEO の最新情報をチェックしましょう。よりスマートかつ迅速に最適化するために役立つ最新のヒント、トレンド、ツールをメールでお届けします。今すぐ有効化して、ランキングを次のレベルに引き上げるために役立つ最新情報を見逃さないようにしましょう。','info','[\"all\"]',NULL,'email-reports-enable-reminder','2025-03-12 05:20:11',NULL,'メールレポートを有効化','https://route#aioseo-settings&aioseo-scroll=aioseo-email-summary-row&aioseo-highlight=aioseo-email-summary-row:advanced','レポート取得は設定済み','http://action#notification/email-reports-enable',0,0,'2025-03-12 05:20:11','2025-03-12 05:20:11'),(4,'67d3b1d3ce4c9',NULL,'[New] Supercharged Crawl Cleanup and Query Arg Monitoring! 🚀','<p>Is your WordPress site slowing down? Or are AI bots scraping your content? 🧐</p>\n\n<p><strong>AIOSEO 4.8.0 puts you in control with</strong>:<br>🧹 <strong>Supercharged Crawl Cleanup</strong> – Stop search engines from indexing unnecessary URLs.<br>📊 <strong>Advanced Query Monitoring</strong> – Optimize UTM parameters automatically.<br>🛡️ <strong>Bot Control</strong> – Block unauthorized AI crawlers.<br>🔍 <strong>Internal Search Optimization</strong> – Prevent spam & boost performance.<br><br>🔥 Keep your site fast, secure, and SEO-friendly. Update now! 🚀</p>','success','[\"4-x\",\"lite\"]',1222,NULL,'2025-03-11 00:00:00',NULL,'Learn More','https://aioseo.com/introducing-aioseo-4-8-0-advanced-crawl-features/?utm_source=WordPress&utm_medium=plugin-notification&utm_campaign=480-v4-x-lite','Get AIOSEO Pro','https://aioseo.com/lite-upgrade/?utm_source=WordPress&utm_medium=plugin-notification&utm_campaign=480-v4-x-lite',0,0,'2025-03-14 04:34:27','2025-04-01 08:34:25'); /*!40000 ALTER TABLE `wp_aioseo_notifications` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_aioseo_posts` -- DROP TABLE IF EXISTS `wp_aioseo_posts`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `wp_aioseo_posts` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `post_id` bigint unsigned NOT NULL, `title` text COLLATE utf8mb4_unicode_520_ci, `description` text COLLATE utf8mb4_unicode_520_ci, `keywords` mediumtext COLLATE utf8mb4_unicode_520_ci, `keyphrases` longtext COLLATE utf8mb4_unicode_520_ci, `page_analysis` longtext COLLATE utf8mb4_unicode_520_ci, `primary_term` longtext COLLATE utf8mb4_unicode_520_ci, `canonical_url` text COLLATE utf8mb4_unicode_520_ci, `og_title` text COLLATE utf8mb4_unicode_520_ci, `og_description` text COLLATE utf8mb4_unicode_520_ci, `og_object_type` varchar(64) COLLATE utf8mb4_unicode_520_ci DEFAULT 'default', `og_image_type` varchar(64) COLLATE utf8mb4_unicode_520_ci DEFAULT 'default', `og_image_url` text COLLATE utf8mb4_unicode_520_ci, `og_image_width` int DEFAULT NULL, `og_image_height` int DEFAULT NULL, `og_image_custom_url` text COLLATE utf8mb4_unicode_520_ci, `og_image_custom_fields` text COLLATE utf8mb4_unicode_520_ci, `og_video` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `og_custom_url` text COLLATE utf8mb4_unicode_520_ci, `og_article_section` text COLLATE utf8mb4_unicode_520_ci, `og_article_tags` text COLLATE utf8mb4_unicode_520_ci, `twitter_use_og` tinyint(1) DEFAULT '0', `twitter_card` varchar(64) COLLATE utf8mb4_unicode_520_ci DEFAULT 'default', `twitter_image_type` varchar(64) COLLATE utf8mb4_unicode_520_ci DEFAULT 'default', `twitter_image_url` text COLLATE utf8mb4_unicode_520_ci, `twitter_image_custom_url` text COLLATE utf8mb4_unicode_520_ci, `twitter_image_custom_fields` text COLLATE utf8mb4_unicode_520_ci, `twitter_title` text COLLATE utf8mb4_unicode_520_ci, `twitter_description` text COLLATE utf8mb4_unicode_520_ci, `seo_score` int NOT NULL DEFAULT '0', `schema` longtext COLLATE utf8mb4_unicode_520_ci, `schema_type` varchar(20) COLLATE utf8mb4_unicode_520_ci DEFAULT 'default', `schema_type_options` longtext COLLATE utf8mb4_unicode_520_ci, `pillar_content` tinyint(1) DEFAULT NULL, `robots_default` tinyint(1) NOT NULL DEFAULT '1', `robots_noindex` tinyint(1) NOT NULL DEFAULT '0', `robots_noarchive` tinyint(1) NOT NULL DEFAULT '0', `robots_nosnippet` tinyint(1) NOT NULL DEFAULT '0', `robots_nofollow` tinyint(1) NOT NULL DEFAULT '0', `robots_noimageindex` tinyint(1) NOT NULL DEFAULT '0', `robots_noodp` tinyint(1) NOT NULL DEFAULT '0', `robots_notranslate` tinyint(1) NOT NULL DEFAULT '0', `robots_max_snippet` int DEFAULT NULL, `robots_max_videopreview` int DEFAULT NULL, `robots_max_imagepreview` varchar(20) COLLATE utf8mb4_unicode_520_ci DEFAULT 'large', `images` longtext COLLATE utf8mb4_unicode_520_ci, `image_scan_date` datetime DEFAULT NULL, `priority` float DEFAULT NULL, `frequency` tinytext COLLATE utf8mb4_unicode_520_ci, `videos` longtext COLLATE utf8mb4_unicode_520_ci, `video_thumbnail` text COLLATE utf8mb4_unicode_520_ci, `video_scan_date` datetime DEFAULT NULL, `local_seo` longtext COLLATE utf8mb4_unicode_520_ci, `limit_modified_date` tinyint(1) NOT NULL DEFAULT '0', `options` longtext COLLATE utf8mb4_unicode_520_ci, `created` datetime NOT NULL, `updated` datetime NOT NULL, PRIMARY KEY (`id`), KEY `ndx_aioseo_posts_post_id` (`post_id`) ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_aioseo_posts` -- LOCK TABLES `wp_aioseo_posts` WRITE; /*!40000 ALTER TABLE `wp_aioseo_posts` DISABLE KEYS */; INSERT INTO `wp_aioseo_posts` VALUES (2,2,'#site_title','#tagline',NULL,'{\"focus\":{\"keyphrase\":\"\",\"score\":0,\"analysis\":{\"keyphraseInTitle\":{\"score\":0,\"maxScore\":9,\"error\":1}}},\"additional\":[]}','{\"analysis\":{\"basic\":{\"lengthContent\":{\"error\":1,\"score\":1,\"maxScore\":5}},\"title\":{\"titleLength\":{\"score\":6,\"maxScore\":9,\"error\":1},\"errors\":1},\"readability\":{\"contentHasAssets\":{\"error\":1,\"score\":1,\"maxScore\":5}}}}',NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,67,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"ProductReview\":[],\"Car\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"WebPage\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,-1,-1,'large',NULL,'2025-03-07 12:42:13',NULL,'default',NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2025-02-26 05:14:54','2025-03-14 04:51:25'),(3,11,NULL,NULL,NULL,'{\"focus\":{\"keyphrase\":\"\",\"score\":0,\"analysis\":{\"keyphraseInTitle\":{\"score\":0,\"maxScore\":9,\"error\":1}}},\"additional\":[]}','{\"analysis\":{\"basic\":{\"metadescriptionLength\":{\"score\":6,\"maxScore\":9,\"error\":1},\"lengthContent\":{\"score\":-20,\"maxScore\":9,\"error\":1},\"isInternalLink\":{\"score\":3,\"maxScore\":9,\"error\":1},\"isExternalLink\":{\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":4},\"title\":{\"titleLength\":{\"score\":6,\"maxScore\":9,\"error\":1},\"errors\":1},\"readability\":{\"contentHasAssets\":{\"error\":1,\"score\":1,\"maxScore\":5},\"paragraphLength\":{\"score\":5,\"maxScore\":5,\"error\":0},\"sentenceLength\":{\"score\":9,\"maxScore\":9,\"error\":0},\"passiveVoice\":{\"score\":9,\"maxScore\":9,\"error\":0},\"transitionWords\":[],\"consecutiveSentences\":{\"score\":9,\"maxScore\":9,\"error\":0},\"subheadingsDistribution\":{\"score\":9,\"maxScore\":9,\"error\":0},\"calculateFleschReading\":{\"score\":6,\"maxScore\":9,\"error\":1},\"errors\":2}}}',NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,66,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"ProductReview\":[],\"Car\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"WebPage\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,-1,-1,'large',NULL,'2025-03-04 01:39:31',NULL,'default',NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2025-03-02 13:47:56','2025-03-04 01:39:31'),(4,13,NULL,NULL,NULL,'{\"focus\":{\"keyphrase\":\"\",\"score\":0,\"analysis\":{\"keyphraseInTitle\":{\"score\":0,\"maxScore\":9,\"error\":1}}},\"additional\":[]}','{\"analysis\":{\"basic\":{\"metadescriptionLength\":{\"score\":6,\"maxScore\":9,\"error\":1},\"lengthContent\":{\"score\":-20,\"maxScore\":9,\"error\":1},\"isInternalLink\":{\"score\":3,\"maxScore\":9,\"error\":1},\"isExternalLink\":{\"score\":3,\"maxScore\":9,\"error\":1},\"errors\":4},\"title\":{\"titleLength\":{\"score\":6,\"maxScore\":9,\"error\":1},\"errors\":1},\"readability\":{\"contentHasAssets\":{\"error\":1,\"score\":1,\"maxScore\":5},\"paragraphLength\":{\"score\":5,\"maxScore\":5,\"error\":0},\"sentenceLength\":{\"score\":9,\"maxScore\":9,\"error\":0},\"passiveVoice\":{\"score\":9,\"maxScore\":9,\"error\":0},\"transitionWords\":[],\"consecutiveSentences\":{\"score\":9,\"maxScore\":9,\"error\":0},\"subheadingsDistribution\":{\"score\":9,\"maxScore\":9,\"error\":0},\"calculateFleschReading\":{\"score\":9,\"maxScore\":9,\"error\":0},\"errors\":1}}}',NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,68,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"ProductReview\":[],\"Car\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"WebPage\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,-1,-1,'large',NULL,'2025-03-04 01:39:31',NULL,'default',NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2025-03-02 13:48:18','2025-03-04 01:39:31'),(5,23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"ProductReview\":[],\"Car\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/tenjokure-n.com\\/wp-content\\/uploads\\/2025\\/03\\/favicon.png\"}]','2025-03-04 01:56:14',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2025-03-04 01:56:14','2025-03-04 01:56:14'),(7,28,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"ProductReview\":[],\"Car\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/tenjokure-n.com\\/wp-content\\/uploads\\/2025\\/03\\/ogp.jpg\"}]','2025-03-12 10:10:15',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2025-03-12 10:10:15','2025-03-12 10:10:15'),(8,29,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"ProductReview\":[],\"Car\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/tenjokure-n.com\\/wp-content\\/uploads\\/2025\\/03\\/ogp-2.jpg\"}]','2025-03-12 11:32:40',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2025-03-12 11:32:40','2025-03-12 11:32:40'); /*!40000 ALTER TABLE `wp_aioseo_posts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_aioseo_writing_assistant_keywords` -- DROP TABLE IF EXISTS `wp_aioseo_writing_assistant_keywords`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `wp_aioseo_writing_assistant_keywords` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `uuid` varchar(40) COLLATE utf8mb4_unicode_520_ci NOT NULL, `keyword` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL, `country` varchar(10) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'us', `language` varchar(10) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'en', `progress` tinyint DEFAULT '0', `keywords` mediumtext COLLATE utf8mb4_unicode_520_ci, `competitors` mediumtext COLLATE utf8mb4_unicode_520_ci, `created` datetime NOT NULL, `updated` datetime NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `ndx_aioseo_writing_assistant_keywords_uuid` (`uuid`), KEY `ndx_aioseo_writing_assistant_keywords_keyword` (`keyword`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_aioseo_writing_assistant_keywords` -- LOCK TABLES `wp_aioseo_writing_assistant_keywords` WRITE; /*!40000 ALTER TABLE `wp_aioseo_writing_assistant_keywords` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_aioseo_writing_assistant_keywords` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_aioseo_writing_assistant_posts` -- DROP TABLE IF EXISTS `wp_aioseo_writing_assistant_posts`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `wp_aioseo_writing_assistant_posts` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `post_id` bigint unsigned DEFAULT NULL, `keyword_id` bigint unsigned DEFAULT NULL, `content_analysis_hash` varchar(40) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `content_analysis` text COLLATE utf8mb4_unicode_520_ci, `created` datetime NOT NULL, `updated` datetime NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `ndx_aioseo_writing_assistant_posts_post_id` (`post_id`), KEY `ndx_aioseo_writing_assistant_posts_keyword_id` (`keyword_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_aioseo_writing_assistant_posts` -- LOCK TABLES `wp_aioseo_writing_assistant_posts` WRITE; /*!40000 ALTER TABLE `wp_aioseo_writing_assistant_posts` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_aioseo_writing_assistant_posts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_commentmeta` -- DROP TABLE IF EXISTS `wp_commentmeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `wp_commentmeta` ( `meta_id` bigint unsigned NOT NULL AUTO_INCREMENT, `comment_id` bigint unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_520_ci, PRIMARY KEY (`meta_id`), KEY `comment_id` (`comment_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_commentmeta` -- LOCK TABLES `wp_commentmeta` WRITE; /*!40000 ALTER TABLE `wp_commentmeta` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_commentmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_comments` -- DROP TABLE IF EXISTS `wp_comments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `wp_comments` ( `comment_ID` bigint unsigned NOT NULL AUTO_INCREMENT, `comment_post_ID` bigint unsigned NOT NULL DEFAULT '0', `comment_author` tinytext COLLATE utf8mb4_unicode_520_ci NOT NULL, `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_content` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `comment_karma` int NOT NULL DEFAULT '0', `comment_approved` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '1', `comment_agent` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `comment_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'comment', `comment_parent` bigint unsigned NOT NULL DEFAULT '0', `user_id` bigint unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`comment_ID`), KEY `comment_post_ID` (`comment_post_ID`), KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`), KEY `comment_date_gmt` (`comment_date_gmt`), KEY `comment_parent` (`comment_parent`), KEY `comment_author_email` (`comment_author_email`(10)) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_comments` -- LOCK TABLES `wp_comments` WRITE; /*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_ewwwio_images` -- DROP TABLE IF EXISTS `wp_ewwwio_images`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `wp_ewwwio_images` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `attachment_id` bigint unsigned DEFAULT NULL, `gallery` varchar(10) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `resize` varchar(75) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `path` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `converted` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `image_size` int unsigned DEFAULT NULL, `orig_size` int unsigned DEFAULT NULL, `backup` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `retrieve` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `level` int unsigned DEFAULT NULL, `resized_width` smallint unsigned DEFAULT NULL, `resized_height` smallint unsigned DEFAULT NULL, `resize_error` tinyint unsigned DEFAULT NULL, `webp_size` int unsigned DEFAULT NULL, `webp_error` tinyint unsigned DEFAULT NULL, `pending` tinyint NOT NULL DEFAULT '0', `updates` int unsigned DEFAULT NULL, `updated` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `trace` blob, PRIMARY KEY (`id`), KEY `path` (`path`(191)), KEY `attachment_info` (`gallery`(3),`attachment_id`) ) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_ewwwio_images` -- LOCK TABLES `wp_ewwwio_images` WRITE; /*!40000 ALTER TABLE `wp_ewwwio_images` DISABLE KEYS */; INSERT INTO `wp_ewwwio_images` VALUES (1,23,'media','full','ABSPATHwp-content/uploads/2025/03/favicon.png','',13278,24928,'',NULL,10,NULL,NULL,NULL,NULL,NULL,0,1,'2025-03-04 01:51:04',NULL),(2,23,'media','medium','ABSPATHwp-content/uploads/2025/03/favicon-300x300.png','',11284,14168,'',NULL,10,NULL,NULL,NULL,NULL,NULL,0,1,'2025-03-04 01:51:04',NULL),(3,23,'media','thumbnail','ABSPATHwp-content/uploads/2025/03/favicon-150x150.png','',5091,6646,'',NULL,10,NULL,NULL,NULL,NULL,NULL,0,1,'2025-03-04 01:51:04',NULL),(9,28,'media','full','ABSPATHwp-content/uploads/2025/03/ogp.jpg','',153390,196135,'',NULL,10,NULL,NULL,NULL,NULL,NULL,0,1,'2025-03-12 09:57:50',NULL),(10,28,'media','medium','ABSPATHwp-content/uploads/2025/03/ogp-300x158.jpg','',14248,42741,'',NULL,10,NULL,NULL,NULL,NULL,NULL,0,1,'2025-03-12 09:57:50',NULL),(11,28,'media','large','ABSPATHwp-content/uploads/2025/03/ogp-1024x538.jpg','',77677,109351,'',NULL,10,NULL,NULL,NULL,NULL,NULL,0,1,'2025-03-12 09:57:50',NULL),(12,28,'media','thumbnail','ABSPATHwp-content/uploads/2025/03/ogp-150x150.jpg','',11847,40218,'',NULL,10,NULL,NULL,NULL,NULL,NULL,0,1,'2025-03-12 09:57:50',NULL),(13,28,'media','medium_large','ABSPATHwp-content/uploads/2025/03/ogp-768x403.jpg','',53253,83853,'',NULL,10,NULL,NULL,NULL,NULL,NULL,0,1,'2025-03-12 09:57:50',NULL),(14,29,'media','full','ABSPATHwp-content/uploads/2025/03/ogp-2.jpg','',268577,314879,'',NULL,10,NULL,NULL,NULL,NULL,NULL,0,1,'2025-03-12 11:30:02',NULL),(15,29,'media','medium','ABSPATHwp-content/uploads/2025/03/ogp-2-300x158.jpg','',14293,41999,'',NULL,10,NULL,NULL,NULL,NULL,NULL,0,1,'2025-03-12 11:30:02',NULL),(16,29,'media','large','ABSPATHwp-content/uploads/2025/03/ogp-2-1024x538.jpg','',77561,108428,'',NULL,10,NULL,NULL,NULL,NULL,NULL,0,1,'2025-03-12 11:30:02',NULL),(17,29,'media','thumbnail','ABSPATHwp-content/uploads/2025/03/ogp-2-150x150.jpg','',11890,39476,'',NULL,10,NULL,NULL,NULL,NULL,NULL,0,1,'2025-03-12 11:30:02',NULL),(18,29,'media','medium_large','ABSPATHwp-content/uploads/2025/03/ogp-2-768x403.jpg','',53232,83044,'',NULL,10,NULL,NULL,NULL,NULL,NULL,0,1,'2025-03-12 11:30:02',NULL); /*!40000 ALTER TABLE `wp_ewwwio_images` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_ewwwio_queue` -- DROP TABLE IF EXISTS `wp_ewwwio_queue`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `wp_ewwwio_queue` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `attachment_id` bigint unsigned DEFAULT NULL, `gallery` varchar(20) DEFAULT NULL, `scanned` tinyint NOT NULL DEFAULT '0', `new` tinyint NOT NULL DEFAULT '0', `convert_once` tinyint NOT NULL DEFAULT '0', `force_reopt` tinyint NOT NULL DEFAULT '0', `force_smart` tinyint NOT NULL DEFAULT '0', `webp_only` tinyint NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `attachment_info` (`gallery`(3),`attachment_id`) ) ENGINE=InnoDB AUTO_INCREMENT=27 DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_ewwwio_queue` -- LOCK TABLES `wp_ewwwio_queue` WRITE; /*!40000 ALTER TABLE `wp_ewwwio_queue` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_ewwwio_queue` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_links` -- DROP TABLE IF EXISTS `wp_links`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `wp_links` ( `link_id` bigint unsigned NOT NULL AUTO_INCREMENT, `link_url` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `link_name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `link_image` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `link_target` varchar(25) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `link_description` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `link_visible` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'Y', `link_owner` bigint unsigned NOT NULL DEFAULT '1', `link_rating` int NOT NULL DEFAULT '0', `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `link_rel` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `link_notes` mediumtext COLLATE utf8mb4_unicode_520_ci NOT NULL, `link_rss` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', PRIMARY KEY (`link_id`), KEY `link_visible` (`link_visible`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_links` -- LOCK TABLES `wp_links` WRITE; /*!40000 ALTER TABLE `wp_links` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_links` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_options` -- DROP TABLE IF EXISTS `wp_options`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `wp_options` ( `option_id` bigint unsigned NOT NULL AUTO_INCREMENT, `option_name` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `option_value` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL, `autoload` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'yes', PRIMARY KEY (`option_id`), UNIQUE KEY `option_name` (`option_name`), KEY `autoload` (`autoload`) ) ENGINE=InnoDB AUTO_INCREMENT=8406 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_options` -- LOCK TABLES `wp_options` WRITE; /*!40000 ALTER TABLE `wp_options` DISABLE KEYS */; INSERT INTO `wp_options` VALUES (1,'cron','a:22:{i:1744429161;a:1:{s:26:\"action_scheduler_run_queue\";a:1:{s:32:\"0d04ed39571b55704c122d726248bbac\";a:3:{s:8:\"schedule\";s:12:\"every_minute\";s:4:\"args\";a:1:{i:0;s:7:\"WP Cron\";}s:8:\"interval\";i:60;}}}i:1744432572;a:1:{s:22:\"backwpup_check_cleanup\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1744432659;a:1:{s:41:\"googlesitekit_cron_update_remote_features\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1744432682;a:1:{s:34:\"wp_privacy_delete_old_export_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1744433086;a:1:{s:40:\"monsterinsights_feature_feedback_checkin\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1744433924;a:3:{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;}}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:1744433925;a:1:{s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1744447082;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:1744450681;a:1:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1744452482;a:1:{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;}}}i:1744454193;a:1:{s:22:\"siteguard_update_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1744454282;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:1744467000;a:1:{s:44:\"optin_monster_api_admin_notifications_update\";a:1:{s:32:\"ab4ac09344b84968a0c8367e826a8531\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;s:6:\"wpcron\";}}}}i:1744470000;a:1:{s:13:\"backwpup_cron\";a:1:{s:32:\"fd86a2725be8319dcc1338fbc861123c\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{s:3:\"arg\";i:1;}}}}i:1744473301;a:1:{s:45:\"fs_data_sync_contact-form-7-multi-step-module\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1744623885;a:1:{s:30:\"wp_delete_temp_updater_backups\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1744706282;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1744721562;a:1:{s:36:\"monsterinsights_email_summaries_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:39:\"monsterinsights_email_summaries_monthly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:2592000;}}}i:1744780625;a:1:{s:27:\"acf_update_site_health_data\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1744913359;a:1:{s:35:\"monsterinsights_usage_tracking_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1744951486;a:1:{s:46:\"monsterinsights_feature_feedback_clear_expired\";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://tenjokure-n.com','on'),(3,'home','https://tenjokure-n.com','on'),(4,'blogname','天井クレーンドットコム|天井クレーン点検メンテナンス専門店','on'),(5,'blogdescription','神奈川県を拠点に1都3県対応。天井(ホイスト)クレーンの点検メンテナンス専門店!天井(ホイスト)クレーンに関する法定点検・修理・設置まで一気通貫で対応。','on'),(6,'users_can_register','0','on'),(7,'admin_email','cs@acsport.net','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','password','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','0','on'),(23,'posts_per_page','10','on'),(24,'date_format','Y年n月j日','on'),(25,'time_format','g:i A','on'),(26,'links_updated_date_format','Y年n月j日 g:i A','on'),(27,'comment_moderation','0','on'),(28,'moderation_notify','1','on'),(29,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','on'),(30,'rewrite_rules','a:93:{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: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:24:\"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:27:\"comment-page-([0-9]{1,})/?$\";s:38:\"index.php?&page_id=2&cpage=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:88:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:53:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/embed/?$\";s:91:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:61:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','on'),(31,'hack_file','0','on'),(32,'blog_charset','UTF-8','on'),(33,'moderation_keys','','off'),(34,'active_plugins','a:14:{i:0;s:34:\"advanced-custom-fields-pro/acf.php\";i:1;s:19:\"akismet/akismet.php\";i:2;s:43:\"all-in-one-seo-pack/all_in_one_seo_pack.php\";i:3;s:21:\"backwpup/backwpup.php\";i:4;s:54:\"broken-link-checker-seo/aioseo-broken-link-checker.php\";i:5;s:77:\"contact-form-7-multi-step-module-premium/contact-form-7-multi-step-module.php\";i:6;s:36:\"contact-form-7/wp-contact-form-7.php\";i:7;s:45:\"ewww-image-optimizer/ewww-image-optimizer.php\";i:8;s:50:\"google-analytics-for-wordpress/googleanalytics.php\";i:9;s:35:\"google-site-kit/google-site-kit.php\";i:10;s:21:\"imsanity/imsanity.php\";i:11;s:37:\"optinmonster/optin-monster-wp-api.php\";i:12;s:23:\"siteguard/siteguard.php\";i:13;s:29:\"wp-mail-smtp/wp_mail_smtp.php\";}','on'),(35,'category_base','','on'),(36,'ping_sites','http://rpc.pingomatic.com/','on'),(37,'comment_max_links','2','on'),(38,'gmt_offset','','on'),(39,'default_email_category','1','on'),(40,'recently_edited','a:5:{i:0;s:80:\"/home/saito-kouatsu/www/tenjokure-n.com/wp-content/themes/tenjokure-n/footer.php\";i:2;s:79:\"/home/saito-kouatsu/www/tenjokure-n.com/wp-content/themes/tenjokure-n/style.css\";i:3;s:80:\"/home/saito-kouatsu/www/tenjokure-n.com/wp-content/themes/tenjokure-n/header.php\";i:4;s:90:\"/home/saito-kouatsu/www/tenjokure-n.com/wp-content/themes/tenjokure-n/assets/css/style.css\";i:5;s:0:\"\";}','off'),(41,'template','tenjokure-n','on'),(42,'stylesheet','tenjokure-n','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','58975','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','page','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:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','auto'),(78,'widget_text','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','auto'),(79,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','auto'),(80,'uninstall_plugins','a:3:{s:25:\"zipaddr-jp/zipaddr-jp.php\";s:17:\"zipaddr_uninstall\";s:50:\"google-analytics-for-wordpress/googleanalytics.php\";s:35:\"monsterinsights_lite_uninstall_hook\";s:37:\"optinmonster/optin-monster-wp-api.php\";s:32:\"optin_monster_api_uninstall_hook\";}','off'),(81,'timezone_string','Asia/Tokyo','on'),(82,'page_for_posts','0','on'),(83,'page_on_front','2','on'),(84,'default_post_format','0','on'),(85,'link_manager_enabled','0','on'),(86,'finished_splitting_shared_terms','1','on'),(87,'site_icon','23','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','1755938282','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:{}','off'),(100,'wp_attachment_pages_enabled','0','on'),(101,'initial_db_version','57155','on'),(102,'wp_user_roles','a:8:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:81:{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:17:\"aioseo_manage_seo\";b:1;s:20:\"aioseo_page_analysis\";b:1;s:28:\"aioseo_page_general_settings\";b:1;s:29:\"aioseo_page_advanced_settings\";b:1;s:27:\"aioseo_page_schema_settings\";b:1;s:27:\"aioseo_page_social_settings\";b:1;s:8:\"backwpup\";b:1;s:13:\"backwpup_jobs\";b:1;s:18:\"backwpup_jobs_edit\";b:1;s:19:\"backwpup_jobs_start\";b:1;s:16:\"backwpup_backups\";b:1;s:25:\"backwpup_backups_download\";b:1;s:23:\"backwpup_backups_delete\";b:1;s:13:\"backwpup_logs\";b:1;s:20:\"backwpup_logs_delete\";b:1;s:17:\"backwpup_settings\";b:1;s:16:\"backwpup_restore\";b:1;s:24:\"aioseo_blc_about_us_page\";b:1;s:28:\"aioseo_blc_broken_links_page\";b:1;s:28:\"aioseo_blc_setup_wizard_page\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:42:{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:20:\"aioseo_page_analysis\";b:1;s:28:\"aioseo_page_general_settings\";b:1;s:29:\"aioseo_page_advanced_settings\";b:1;s:27:\"aioseo_page_schema_settings\";b:1;s:27:\"aioseo_page_social_settings\";b:1;s:24:\"aioseo_blc_about_us_page\";b:1;s:28:\"aioseo_blc_broken_links_page\";b:1;s:28:\"aioseo_blc_setup_wizard_page\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:18:{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:20:\"aioseo_page_analysis\";b:1;s:28:\"aioseo_page_general_settings\";b:1;s:29:\"aioseo_page_advanced_settings\";b:1;s:27:\"aioseo_page_schema_settings\";b:1;s:27:\"aioseo_page_social_settings\";b:1;s:24:\"aioseo_blc_about_us_page\";b:1;s:28:\"aioseo_blc_broken_links_page\";b:1;s:28:\"aioseo_blc_setup_wizard_page\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:13:{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:20:\"aioseo_page_analysis\";b:1;s:28:\"aioseo_page_general_settings\";b:1;s:29:\"aioseo_page_advanced_settings\";b:1;s:27:\"aioseo_page_schema_settings\";b:1;s:27:\"aioseo_page_social_settings\";b:1;s:24:\"aioseo_blc_about_us_page\";b:1;s:28:\"aioseo_blc_broken_links_page\";b:1;s:28:\"aioseo_blc_setup_wizard_page\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}s:14:\"backwpup_admin\";a:2:{s:4:\"name\";s:15:\"BackWPup 管理\";s:12:\"capabilities\";a:12:{s:4:\"read\";b:1;s:8:\"backwpup\";b:1;s:13:\"backwpup_jobs\";b:1;s:18:\"backwpup_jobs_edit\";b:1;s:19:\"backwpup_jobs_start\";b:1;s:16:\"backwpup_backups\";b:1;s:25:\"backwpup_backups_download\";b:1;s:23:\"backwpup_backups_delete\";b:1;s:13:\"backwpup_logs\";b:1;s:20:\"backwpup_logs_delete\";b:1;s:17:\"backwpup_settings\";b:1;s:16:\"backwpup_restore\";b:1;}}s:14:\"backwpup_check\";a:2:{s:4:\"name\";s:33:\"BackWPup ジョブチェッカー\";s:12:\"capabilities\";a:12:{s:4:\"read\";b:1;s:8:\"backwpup\";b:1;s:13:\"backwpup_jobs\";b:1;s:18:\"backwpup_jobs_edit\";b:0;s:19:\"backwpup_jobs_start\";b:0;s:16:\"backwpup_backups\";b:1;s:25:\"backwpup_backups_download\";b:0;s:23:\"backwpup_backups_delete\";b:0;s:13:\"backwpup_logs\";b:1;s:20:\"backwpup_logs_delete\";b:0;s:17:\"backwpup_settings\";b:0;s:16:\"backwpup_restore\";b:0;}}s:15:\"backwpup_helper\";a:2:{s:4:\"name\";s:24:\"BackWPup ジョブ機能\";s:12:\"capabilities\";a:12:{s:4:\"read\";b:1;s:8:\"backwpup\";b:1;s:13:\"backwpup_jobs\";b:1;s:18:\"backwpup_jobs_edit\";b:0;s:19:\"backwpup_jobs_start\";b:1;s:16:\"backwpup_backups\";b:1;s:25:\"backwpup_backups_download\";b:1;s:23:\"backwpup_backups_delete\";b:1;s:13:\"backwpup_logs\";b:1;s:20:\"backwpup_logs_delete\";b:1;s:17:\"backwpup_settings\";b:0;s:16:\"backwpup_restore\";b:0;}}}','on'),(103,'fresh_site','0','off'),(104,'WPLANG','ja','auto'),(105,'user_count','2','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:157:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>最近の投稿</h2><!-- /wp:heading --><!-- wp:latest-posts /--></div><!-- /wp:group -->\";}i:4;a:1:{s:7:\"content\";s:233:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>最近のコメント</h2><!-- /wp:heading --><!-- wp:latest-comments {\"displayAvatar\":false,\"displayDate\":false,\"displayExcerpt\":false} /--></div><!-- /wp:group -->\";}i:5;a:1:{s:7:\"content\";s:153:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>アーカイブ</h2><!-- /wp:heading --><!-- wp:archives /--></div><!-- /wp:group -->\";}i:6;a:1:{s:7:\"content\";s:155:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>カテゴリー</h2><!-- /wp:heading --><!-- wp:categories /--></div><!-- /wp:group -->\";}s:12:\"_multiwidget\";i:1;}','auto'),(107,'sidebars_widgets','a:2:{s:19:\"wp_inactive_widgets\";a:5:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";i:3;s:7:\"block-5\";i:4;s:7:\"block-6\";}s: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,'_transient_wp_core_block_css_files','a:2:{s:7:\"version\";s:5:\"6.7.2\";s:5:\"files\";a:540:{i:0;s:23:\"archives/editor-rtl.css\";i:1;s:27:\"archives/editor-rtl.min.css\";i:2;s:19:\"archives/editor.css\";i:3;s:23:\"archives/editor.min.css\";i:4;s:22:\"archives/style-rtl.css\";i:5;s:26:\"archives/style-rtl.min.css\";i:6;s:18:\"archives/style.css\";i:7;s:22:\"archives/style.min.css\";i:8;s:20:\"audio/editor-rtl.css\";i:9;s:24:\"audio/editor-rtl.min.css\";i:10;s:16:\"audio/editor.css\";i:11;s:20:\"audio/editor.min.css\";i:12;s:19:\"audio/style-rtl.css\";i:13;s:23:\"audio/style-rtl.min.css\";i:14;s:15:\"audio/style.css\";i:15;s:19:\"audio/style.min.css\";i:16;s:19:\"audio/theme-rtl.css\";i:17;s:23:\"audio/theme-rtl.min.css\";i:18;s:15:\"audio/theme.css\";i:19;s:19:\"audio/theme.min.css\";i:20;s:21:\"avatar/editor-rtl.css\";i:21;s:25:\"avatar/editor-rtl.min.css\";i:22;s:17:\"avatar/editor.css\";i:23;s:21:\"avatar/editor.min.css\";i:24;s:20:\"avatar/style-rtl.css\";i:25;s:24:\"avatar/style-rtl.min.css\";i:26;s:16:\"avatar/style.css\";i:27;s:20:\"avatar/style.min.css\";i:28;s:21:\"button/editor-rtl.css\";i:29;s:25:\"button/editor-rtl.min.css\";i:30;s:17:\"button/editor.css\";i:31;s:21:\"button/editor.min.css\";i:32;s:20:\"button/style-rtl.css\";i:33;s:24:\"button/style-rtl.min.css\";i:34;s:16:\"button/style.css\";i:35;s:20:\"button/style.min.css\";i:36;s:22:\"buttons/editor-rtl.css\";i:37;s:26:\"buttons/editor-rtl.min.css\";i:38;s:18:\"buttons/editor.css\";i:39;s:22:\"buttons/editor.min.css\";i:40;s:21:\"buttons/style-rtl.css\";i:41;s:25:\"buttons/style-rtl.min.css\";i:42;s:17:\"buttons/style.css\";i:43;s:21:\"buttons/style.min.css\";i:44;s:22:\"calendar/style-rtl.css\";i:45;s:26:\"calendar/style-rtl.min.css\";i:46;s:18:\"calendar/style.css\";i:47;s:22:\"calendar/style.min.css\";i:48;s:25:\"categories/editor-rtl.css\";i:49;s:29:\"categories/editor-rtl.min.css\";i:50;s:21:\"categories/editor.css\";i:51;s:25:\"categories/editor.min.css\";i:52;s:24:\"categories/style-rtl.css\";i:53;s:28:\"categories/style-rtl.min.css\";i:54;s:20:\"categories/style.css\";i:55;s:24:\"categories/style.min.css\";i:56;s:19:\"code/editor-rtl.css\";i:57;s:23:\"code/editor-rtl.min.css\";i:58;s:15:\"code/editor.css\";i:59;s:19:\"code/editor.min.css\";i:60;s:18:\"code/style-rtl.css\";i:61;s:22:\"code/style-rtl.min.css\";i:62;s:14:\"code/style.css\";i:63;s:18:\"code/style.min.css\";i:64;s:18:\"code/theme-rtl.css\";i:65;s:22:\"code/theme-rtl.min.css\";i:66;s:14:\"code/theme.css\";i:67;s:18:\"code/theme.min.css\";i:68;s:22:\"columns/editor-rtl.css\";i:69;s:26:\"columns/editor-rtl.min.css\";i:70;s:18:\"columns/editor.css\";i:71;s:22:\"columns/editor.min.css\";i:72;s:21:\"columns/style-rtl.css\";i:73;s:25:\"columns/style-rtl.min.css\";i:74;s:17:\"columns/style.css\";i:75;s:21:\"columns/style.min.css\";i:76;s:33:\"comment-author-name/style-rtl.css\";i:77;s:37:\"comment-author-name/style-rtl.min.css\";i:78;s:29:\"comment-author-name/style.css\";i:79;s:33:\"comment-author-name/style.min.css\";i:80;s:29:\"comment-content/style-rtl.css\";i:81;s:33:\"comment-content/style-rtl.min.css\";i:82;s:25:\"comment-content/style.css\";i:83;s:29:\"comment-content/style.min.css\";i:84;s:26:\"comment-date/style-rtl.css\";i:85;s:30:\"comment-date/style-rtl.min.css\";i:86;s:22:\"comment-date/style.css\";i:87;s:26:\"comment-date/style.min.css\";i:88;s:31:\"comment-edit-link/style-rtl.css\";i:89;s:35:\"comment-edit-link/style-rtl.min.css\";i:90;s:27:\"comment-edit-link/style.css\";i:91;s:31:\"comment-edit-link/style.min.css\";i:92;s:32:\"comment-reply-link/style-rtl.css\";i:93;s:36:\"comment-reply-link/style-rtl.min.css\";i:94;s:28:\"comment-reply-link/style.css\";i:95;s:32:\"comment-reply-link/style.min.css\";i:96;s:30:\"comment-template/style-rtl.css\";i:97;s:34:\"comment-template/style-rtl.min.css\";i:98;s:26:\"comment-template/style.css\";i:99;s:30:\"comment-template/style.min.css\";i:100;s:42:\"comments-pagination-numbers/editor-rtl.css\";i:101;s:46:\"comments-pagination-numbers/editor-rtl.min.css\";i:102;s:38:\"comments-pagination-numbers/editor.css\";i:103;s:42:\"comments-pagination-numbers/editor.min.css\";i:104;s:34:\"comments-pagination/editor-rtl.css\";i:105;s:38:\"comments-pagination/editor-rtl.min.css\";i:106;s:30:\"comments-pagination/editor.css\";i:107;s:34:\"comments-pagination/editor.min.css\";i:108;s:33:\"comments-pagination/style-rtl.css\";i:109;s:37:\"comments-pagination/style-rtl.min.css\";i:110;s:29:\"comments-pagination/style.css\";i:111;s:33:\"comments-pagination/style.min.css\";i:112;s:29:\"comments-title/editor-rtl.css\";i:113;s:33:\"comments-title/editor-rtl.min.css\";i:114;s:25:\"comments-title/editor.css\";i:115;s:29:\"comments-title/editor.min.css\";i:116;s:23:\"comments/editor-rtl.css\";i:117;s:27:\"comments/editor-rtl.min.css\";i:118;s:19:\"comments/editor.css\";i:119;s:23:\"comments/editor.min.css\";i:120;s:22:\"comments/style-rtl.css\";i:121;s:26:\"comments/style-rtl.min.css\";i:122;s:18:\"comments/style.css\";i:123;s:22:\"comments/style.min.css\";i:124;s:20:\"cover/editor-rtl.css\";i:125;s:24:\"cover/editor-rtl.min.css\";i:126;s:16:\"cover/editor.css\";i:127;s:20:\"cover/editor.min.css\";i:128;s:19:\"cover/style-rtl.css\";i:129;s:23:\"cover/style-rtl.min.css\";i:130;s:15:\"cover/style.css\";i:131;s:19:\"cover/style.min.css\";i:132;s:22:\"details/editor-rtl.css\";i:133;s:26:\"details/editor-rtl.min.css\";i:134;s:18:\"details/editor.css\";i:135;s:22:\"details/editor.min.css\";i:136;s:21:\"details/style-rtl.css\";i:137;s:25:\"details/style-rtl.min.css\";i:138;s:17:\"details/style.css\";i:139;s:21:\"details/style.min.css\";i:140;s:20:\"embed/editor-rtl.css\";i:141;s:24:\"embed/editor-rtl.min.css\";i:142;s:16:\"embed/editor.css\";i:143;s:20:\"embed/editor.min.css\";i:144;s:19:\"embed/style-rtl.css\";i:145;s:23:\"embed/style-rtl.min.css\";i:146;s:15:\"embed/style.css\";i:147;s:19:\"embed/style.min.css\";i:148;s:19:\"embed/theme-rtl.css\";i:149;s:23:\"embed/theme-rtl.min.css\";i:150;s:15:\"embed/theme.css\";i:151;s:19:\"embed/theme.min.css\";i:152;s:19:\"file/editor-rtl.css\";i:153;s:23:\"file/editor-rtl.min.css\";i:154;s:15:\"file/editor.css\";i:155;s:19:\"file/editor.min.css\";i:156;s:18:\"file/style-rtl.css\";i:157;s:22:\"file/style-rtl.min.css\";i:158;s:14:\"file/style.css\";i:159;s:18:\"file/style.min.css\";i:160;s:23:\"footnotes/style-rtl.css\";i:161;s:27:\"footnotes/style-rtl.min.css\";i:162;s:19:\"footnotes/style.css\";i:163;s:23:\"footnotes/style.min.css\";i:164;s:23:\"freeform/editor-rtl.css\";i:165;s:27:\"freeform/editor-rtl.min.css\";i:166;s:19:\"freeform/editor.css\";i:167;s:23:\"freeform/editor.min.css\";i:168;s:22:\"gallery/editor-rtl.css\";i:169;s:26:\"gallery/editor-rtl.min.css\";i:170;s:18:\"gallery/editor.css\";i:171;s:22:\"gallery/editor.min.css\";i:172;s:21:\"gallery/style-rtl.css\";i:173;s:25:\"gallery/style-rtl.min.css\";i:174;s:17:\"gallery/style.css\";i:175;s:21:\"gallery/style.min.css\";i:176;s:21:\"gallery/theme-rtl.css\";i:177;s:25:\"gallery/theme-rtl.min.css\";i:178;s:17:\"gallery/theme.css\";i:179;s:21:\"gallery/theme.min.css\";i:180;s:20:\"group/editor-rtl.css\";i:181;s:24:\"group/editor-rtl.min.css\";i:182;s:16:\"group/editor.css\";i:183;s:20:\"group/editor.min.css\";i:184;s:19:\"group/style-rtl.css\";i:185;s:23:\"group/style-rtl.min.css\";i:186;s:15:\"group/style.css\";i:187;s:19:\"group/style.min.css\";i:188;s:19:\"group/theme-rtl.css\";i:189;s:23:\"group/theme-rtl.min.css\";i:190;s:15:\"group/theme.css\";i:191;s:19:\"group/theme.min.css\";i:192;s:21:\"heading/style-rtl.css\";i:193;s:25:\"heading/style-rtl.min.css\";i:194;s:17:\"heading/style.css\";i:195;s:21:\"heading/style.min.css\";i:196;s:19:\"html/editor-rtl.css\";i:197;s:23:\"html/editor-rtl.min.css\";i:198;s:15:\"html/editor.css\";i:199;s:19:\"html/editor.min.css\";i:200;s:20:\"image/editor-rtl.css\";i:201;s:24:\"image/editor-rtl.min.css\";i:202;s:16:\"image/editor.css\";i:203;s:20:\"image/editor.min.css\";i:204;s:19:\"image/style-rtl.css\";i:205;s:23:\"image/style-rtl.min.css\";i:206;s:15:\"image/style.css\";i:207;s:19:\"image/style.min.css\";i:208;s:19:\"image/theme-rtl.css\";i:209;s:23:\"image/theme-rtl.min.css\";i:210;s:15:\"image/theme.css\";i:211;s:19:\"image/theme.min.css\";i:212;s:29:\"latest-comments/style-rtl.css\";i:213;s:33:\"latest-comments/style-rtl.min.css\";i:214;s:25:\"latest-comments/style.css\";i:215;s:29:\"latest-comments/style.min.css\";i:216;s:27:\"latest-posts/editor-rtl.css\";i:217;s:31:\"latest-posts/editor-rtl.min.css\";i:218;s:23:\"latest-posts/editor.css\";i:219;s:27:\"latest-posts/editor.min.css\";i:220;s:26:\"latest-posts/style-rtl.css\";i:221;s:30:\"latest-posts/style-rtl.min.css\";i:222;s:22:\"latest-posts/style.css\";i:223;s:26:\"latest-posts/style.min.css\";i:224;s:18:\"list/style-rtl.css\";i:225;s:22:\"list/style-rtl.min.css\";i:226;s:14:\"list/style.css\";i:227;s:18:\"list/style.min.css\";i:228;s:22:\"loginout/style-rtl.css\";i:229;s:26:\"loginout/style-rtl.min.css\";i:230;s:18:\"loginout/style.css\";i:231;s:22:\"loginout/style.min.css\";i:232;s:25:\"media-text/editor-rtl.css\";i:233;s:29:\"media-text/editor-rtl.min.css\";i:234;s:21:\"media-text/editor.css\";i:235;s:25:\"media-text/editor.min.css\";i:236;s:24:\"media-text/style-rtl.css\";i:237;s:28:\"media-text/style-rtl.min.css\";i:238;s:20:\"media-text/style.css\";i:239;s:24:\"media-text/style.min.css\";i:240;s:19:\"more/editor-rtl.css\";i:241;s:23:\"more/editor-rtl.min.css\";i:242;s:15:\"more/editor.css\";i:243;s:19:\"more/editor.min.css\";i:244;s:30:\"navigation-link/editor-rtl.css\";i:245;s:34:\"navigation-link/editor-rtl.min.css\";i:246;s:26:\"navigation-link/editor.css\";i:247;s:30:\"navigation-link/editor.min.css\";i:248;s:29:\"navigation-link/style-rtl.css\";i:249;s:33:\"navigation-link/style-rtl.min.css\";i:250;s:25:\"navigation-link/style.css\";i:251;s:29:\"navigation-link/style.min.css\";i:252;s:33:\"navigation-submenu/editor-rtl.css\";i:253;s:37:\"navigation-submenu/editor-rtl.min.css\";i:254;s:29:\"navigation-submenu/editor.css\";i:255;s:33:\"navigation-submenu/editor.min.css\";i:256;s:25:\"navigation/editor-rtl.css\";i:257;s:29:\"navigation/editor-rtl.min.css\";i:258;s:21:\"navigation/editor.css\";i:259;s:25:\"navigation/editor.min.css\";i:260;s:24:\"navigation/style-rtl.css\";i:261;s:28:\"navigation/style-rtl.min.css\";i:262;s:20:\"navigation/style.css\";i:263;s:24:\"navigation/style.min.css\";i:264;s:23:\"nextpage/editor-rtl.css\";i:265;s:27:\"nextpage/editor-rtl.min.css\";i:266;s:19:\"nextpage/editor.css\";i:267;s:23:\"nextpage/editor.min.css\";i:268;s:24:\"page-list/editor-rtl.css\";i:269;s:28:\"page-list/editor-rtl.min.css\";i:270;s:20:\"page-list/editor.css\";i:271;s:24:\"page-list/editor.min.css\";i:272;s:23:\"page-list/style-rtl.css\";i:273;s:27:\"page-list/style-rtl.min.css\";i:274;s:19:\"page-list/style.css\";i:275;s:23:\"page-list/style.min.css\";i:276;s:24:\"paragraph/editor-rtl.css\";i:277;s:28:\"paragraph/editor-rtl.min.css\";i:278;s:20:\"paragraph/editor.css\";i:279;s:24:\"paragraph/editor.min.css\";i:280;s:23:\"paragraph/style-rtl.css\";i:281;s:27:\"paragraph/style-rtl.min.css\";i:282;s:19:\"paragraph/style.css\";i:283;s:23:\"paragraph/style.min.css\";i:284;s:35:\"post-author-biography/style-rtl.css\";i:285;s:39:\"post-author-biography/style-rtl.min.css\";i:286;s:31:\"post-author-biography/style.css\";i:287;s:35:\"post-author-biography/style.min.css\";i:288;s:30:\"post-author-name/style-rtl.css\";i:289;s:34:\"post-author-name/style-rtl.min.css\";i:290;s:26:\"post-author-name/style.css\";i:291;s:30:\"post-author-name/style.min.css\";i:292;s:26:\"post-author/editor-rtl.css\";i:293;s:30:\"post-author/editor-rtl.min.css\";i:294;s:22:\"post-author/editor.css\";i:295;s:26:\"post-author/editor.min.css\";i:296;s:25:\"post-author/style-rtl.css\";i:297;s:29:\"post-author/style-rtl.min.css\";i:298;s:21:\"post-author/style.css\";i:299;s:25:\"post-author/style.min.css\";i:300;s:33:\"post-comments-form/editor-rtl.css\";i:301;s:37:\"post-comments-form/editor-rtl.min.css\";i:302;s:29:\"post-comments-form/editor.css\";i:303;s:33:\"post-comments-form/editor.min.css\";i:304;s:32:\"post-comments-form/style-rtl.css\";i:305;s:36:\"post-comments-form/style-rtl.min.css\";i:306;s:28:\"post-comments-form/style.css\";i:307;s:32:\"post-comments-form/style.min.css\";i:308;s:27:\"post-content/editor-rtl.css\";i:309;s:31:\"post-content/editor-rtl.min.css\";i:310;s:23:\"post-content/editor.css\";i:311;s:27:\"post-content/editor.min.css\";i:312;s:26:\"post-content/style-rtl.css\";i:313;s:30:\"post-content/style-rtl.min.css\";i:314;s:22:\"post-content/style.css\";i:315;s:26:\"post-content/style.min.css\";i:316;s:23:\"post-date/style-rtl.css\";i:317;s:27:\"post-date/style-rtl.min.css\";i:318;s:19:\"post-date/style.css\";i:319;s:23:\"post-date/style.min.css\";i:320;s:27:\"post-excerpt/editor-rtl.css\";i:321;s:31:\"post-excerpt/editor-rtl.min.css\";i:322;s:23:\"post-excerpt/editor.css\";i:323;s:27:\"post-excerpt/editor.min.css\";i:324;s:26:\"post-excerpt/style-rtl.css\";i:325;s:30:\"post-excerpt/style-rtl.min.css\";i:326;s:22:\"post-excerpt/style.css\";i:327;s:26:\"post-excerpt/style.min.css\";i:328;s:34:\"post-featured-image/editor-rtl.css\";i:329;s:38:\"post-featured-image/editor-rtl.min.css\";i:330;s:30:\"post-featured-image/editor.css\";i:331;s:34:\"post-featured-image/editor.min.css\";i:332;s:33:\"post-featured-image/style-rtl.css\";i:333;s:37:\"post-featured-image/style-rtl.min.css\";i:334;s:29:\"post-featured-image/style.css\";i:335;s:33:\"post-featured-image/style.min.css\";i:336;s:34:\"post-navigation-link/style-rtl.css\";i:337;s:38:\"post-navigation-link/style-rtl.min.css\";i:338;s:30:\"post-navigation-link/style.css\";i:339;s:34:\"post-navigation-link/style.min.css\";i:340;s:28:\"post-template/editor-rtl.css\";i:341;s:32:\"post-template/editor-rtl.min.css\";i:342;s:24:\"post-template/editor.css\";i:343;s:28:\"post-template/editor.min.css\";i:344;s:27:\"post-template/style-rtl.css\";i:345;s:31:\"post-template/style-rtl.min.css\";i:346;s:23:\"post-template/style.css\";i:347;s:27:\"post-template/style.min.css\";i:348;s:24:\"post-terms/style-rtl.css\";i:349;s:28:\"post-terms/style-rtl.min.css\";i:350;s:20:\"post-terms/style.css\";i:351;s:24:\"post-terms/style.min.css\";i:352;s:24:\"post-title/style-rtl.css\";i:353;s:28:\"post-title/style-rtl.min.css\";i:354;s:20:\"post-title/style.css\";i:355;s:24:\"post-title/style.min.css\";i:356;s:26:\"preformatted/style-rtl.css\";i:357;s:30:\"preformatted/style-rtl.min.css\";i:358;s:22:\"preformatted/style.css\";i:359;s:26:\"preformatted/style.min.css\";i:360;s:24:\"pullquote/editor-rtl.css\";i:361;s:28:\"pullquote/editor-rtl.min.css\";i:362;s:20:\"pullquote/editor.css\";i:363;s:24:\"pullquote/editor.min.css\";i:364;s:23:\"pullquote/style-rtl.css\";i:365;s:27:\"pullquote/style-rtl.min.css\";i:366;s:19:\"pullquote/style.css\";i:367;s:23:\"pullquote/style.min.css\";i:368;s:23:\"pullquote/theme-rtl.css\";i:369;s:27:\"pullquote/theme-rtl.min.css\";i:370;s:19:\"pullquote/theme.css\";i:371;s:23:\"pullquote/theme.min.css\";i:372;s:39:\"query-pagination-numbers/editor-rtl.css\";i:373;s:43:\"query-pagination-numbers/editor-rtl.min.css\";i:374;s:35:\"query-pagination-numbers/editor.css\";i:375;s:39:\"query-pagination-numbers/editor.min.css\";i:376;s:31:\"query-pagination/editor-rtl.css\";i:377;s:35:\"query-pagination/editor-rtl.min.css\";i:378;s:27:\"query-pagination/editor.css\";i:379;s:31:\"query-pagination/editor.min.css\";i:380;s:30:\"query-pagination/style-rtl.css\";i:381;s:34:\"query-pagination/style-rtl.min.css\";i:382;s:26:\"query-pagination/style.css\";i:383;s:30:\"query-pagination/style.min.css\";i:384;s:25:\"query-title/style-rtl.css\";i:385;s:29:\"query-title/style-rtl.min.css\";i:386;s:21:\"query-title/style.css\";i:387;s:25:\"query-title/style.min.css\";i:388;s:20:\"query/editor-rtl.css\";i:389;s:24:\"query/editor-rtl.min.css\";i:390;s:16:\"query/editor.css\";i:391;s:20:\"query/editor.min.css\";i:392;s:19:\"quote/style-rtl.css\";i:393;s:23:\"quote/style-rtl.min.css\";i:394;s:15:\"quote/style.css\";i:395;s:19:\"quote/style.min.css\";i:396;s:19:\"quote/theme-rtl.css\";i:397;s:23:\"quote/theme-rtl.min.css\";i:398;s:15:\"quote/theme.css\";i:399;s:19:\"quote/theme.min.css\";i:400;s:23:\"read-more/style-rtl.css\";i:401;s:27:\"read-more/style-rtl.min.css\";i:402;s:19:\"read-more/style.css\";i:403;s:23:\"read-more/style.min.css\";i:404;s:18:\"rss/editor-rtl.css\";i:405;s:22:\"rss/editor-rtl.min.css\";i:406;s:14:\"rss/editor.css\";i:407;s:18:\"rss/editor.min.css\";i:408;s:17:\"rss/style-rtl.css\";i:409;s:21:\"rss/style-rtl.min.css\";i:410;s:13:\"rss/style.css\";i:411;s:17:\"rss/style.min.css\";i:412;s:21:\"search/editor-rtl.css\";i:413;s:25:\"search/editor-rtl.min.css\";i:414;s:17:\"search/editor.css\";i:415;s:21:\"search/editor.min.css\";i:416;s:20:\"search/style-rtl.css\";i:417;s:24:\"search/style-rtl.min.css\";i:418;s:16:\"search/style.css\";i:419;s:20:\"search/style.min.css\";i:420;s:20:\"search/theme-rtl.css\";i:421;s:24:\"search/theme-rtl.min.css\";i:422;s:16:\"search/theme.css\";i:423;s:20:\"search/theme.min.css\";i:424;s:24:\"separator/editor-rtl.css\";i:425;s:28:\"separator/editor-rtl.min.css\";i:426;s:20:\"separator/editor.css\";i:427;s:24:\"separator/editor.min.css\";i:428;s:23:\"separator/style-rtl.css\";i:429;s:27:\"separator/style-rtl.min.css\";i:430;s:19:\"separator/style.css\";i:431;s:23:\"separator/style.min.css\";i:432;s:23:\"separator/theme-rtl.css\";i:433;s:27:\"separator/theme-rtl.min.css\";i:434;s:19:\"separator/theme.css\";i:435;s:23:\"separator/theme.min.css\";i:436;s:24:\"shortcode/editor-rtl.css\";i:437;s:28:\"shortcode/editor-rtl.min.css\";i:438;s:20:\"shortcode/editor.css\";i:439;s:24:\"shortcode/editor.min.css\";i:440;s:24:\"site-logo/editor-rtl.css\";i:441;s:28:\"site-logo/editor-rtl.min.css\";i:442;s:20:\"site-logo/editor.css\";i:443;s:24:\"site-logo/editor.min.css\";i:444;s:23:\"site-logo/style-rtl.css\";i:445;s:27:\"site-logo/style-rtl.min.css\";i:446;s:19:\"site-logo/style.css\";i:447;s:23:\"site-logo/style.min.css\";i:448;s:27:\"site-tagline/editor-rtl.css\";i:449;s:31:\"site-tagline/editor-rtl.min.css\";i:450;s:23:\"site-tagline/editor.css\";i:451;s:27:\"site-tagline/editor.min.css\";i:452;s:26:\"site-tagline/style-rtl.css\";i:453;s:30:\"site-tagline/style-rtl.min.css\";i:454;s:22:\"site-tagline/style.css\";i:455;s:26:\"site-tagline/style.min.css\";i:456;s:25:\"site-title/editor-rtl.css\";i:457;s:29:\"site-title/editor-rtl.min.css\";i:458;s:21:\"site-title/editor.css\";i:459;s:25:\"site-title/editor.min.css\";i:460;s:24:\"site-title/style-rtl.css\";i:461;s:28:\"site-title/style-rtl.min.css\";i:462;s:20:\"site-title/style.css\";i:463;s:24:\"site-title/style.min.css\";i:464;s:26:\"social-link/editor-rtl.css\";i:465;s:30:\"social-link/editor-rtl.min.css\";i:466;s:22:\"social-link/editor.css\";i:467;s:26:\"social-link/editor.min.css\";i:468;s:27:\"social-links/editor-rtl.css\";i:469;s:31:\"social-links/editor-rtl.min.css\";i:470;s:23:\"social-links/editor.css\";i:471;s:27:\"social-links/editor.min.css\";i:472;s:26:\"social-links/style-rtl.css\";i:473;s:30:\"social-links/style-rtl.min.css\";i:474;s:22:\"social-links/style.css\";i:475;s:26:\"social-links/style.min.css\";i:476;s:21:\"spacer/editor-rtl.css\";i:477;s:25:\"spacer/editor-rtl.min.css\";i:478;s:17:\"spacer/editor.css\";i:479;s:21:\"spacer/editor.min.css\";i:480;s:20:\"spacer/style-rtl.css\";i:481;s:24:\"spacer/style-rtl.min.css\";i:482;s:16:\"spacer/style.css\";i:483;s:20:\"spacer/style.min.css\";i:484;s:20:\"table/editor-rtl.css\";i:485;s:24:\"table/editor-rtl.min.css\";i:486;s:16:\"table/editor.css\";i:487;s:20:\"table/editor.min.css\";i:488;s:19:\"table/style-rtl.css\";i:489;s:23:\"table/style-rtl.min.css\";i:490;s:15:\"table/style.css\";i:491;s:19:\"table/style.min.css\";i:492;s:19:\"table/theme-rtl.css\";i:493;s:23:\"table/theme-rtl.min.css\";i:494;s:15:\"table/theme.css\";i:495;s:19:\"table/theme.min.css\";i:496;s:24:\"tag-cloud/editor-rtl.css\";i:497;s:28:\"tag-cloud/editor-rtl.min.css\";i:498;s:20:\"tag-cloud/editor.css\";i:499;s:24:\"tag-cloud/editor.min.css\";i:500;s:23:\"tag-cloud/style-rtl.css\";i:501;s:27:\"tag-cloud/style-rtl.min.css\";i:502;s:19:\"tag-cloud/style.css\";i:503;s:23:\"tag-cloud/style.min.css\";i:504;s:28:\"template-part/editor-rtl.css\";i:505;s:32:\"template-part/editor-rtl.min.css\";i:506;s:24:\"template-part/editor.css\";i:507;s:28:\"template-part/editor.min.css\";i:508;s:27:\"template-part/theme-rtl.css\";i:509;s:31:\"template-part/theme-rtl.min.css\";i:510;s:23:\"template-part/theme.css\";i:511;s:27:\"template-part/theme.min.css\";i:512;s:30:\"term-description/style-rtl.css\";i:513;s:34:\"term-description/style-rtl.min.css\";i:514;s:26:\"term-description/style.css\";i:515;s:30:\"term-description/style.min.css\";i:516;s:27:\"text-columns/editor-rtl.css\";i:517;s:31:\"text-columns/editor-rtl.min.css\";i:518;s:23:\"text-columns/editor.css\";i:519;s:27:\"text-columns/editor.min.css\";i:520;s:26:\"text-columns/style-rtl.css\";i:521;s:30:\"text-columns/style-rtl.min.css\";i:522;s:22:\"text-columns/style.css\";i:523;s:26:\"text-columns/style.min.css\";i:524;s:19:\"verse/style-rtl.css\";i:525;s:23:\"verse/style-rtl.min.css\";i:526;s:15:\"verse/style.css\";i:527;s:19:\"verse/style.min.css\";i:528;s:20:\"video/editor-rtl.css\";i:529;s:24:\"video/editor-rtl.min.css\";i:530;s:16:\"video/editor.css\";i:531;s:20:\"video/editor.min.css\";i:532;s:19:\"video/style-rtl.css\";i:533;s:23:\"video/style-rtl.min.css\";i:534;s:15:\"video/style.css\";i:535;s:19:\"video/style.min.css\";i:536;s:19:\"video/theme-rtl.css\";i:537;s:23:\"video/theme-rtl.min.css\";i:538;s:15:\"video/theme.css\";i:539;s:19:\"video/theme.min.css\";}}','on'),(126,'theme_mods_twentytwentyfour','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1740546609;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}s:9:\"sidebar-2\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}}}}','off'),(129,'recovery_keys','a:0:{}','off'),(142,'db_upgraded','','on'),(149,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:14:\"cs@acsport.net\";s:7:\"version\";s:5:\"6.7.2\";s:9:\"timestamp\";i:1740390300;}','off'),(153,'_transient_wp_styles_for_blocks','a:2:{s:4:\"hash\";s:32:\"fa78486aa101feb2ee5ebc81e45b1291\";s:6:\"blocks\";a:5:{s:11:\"core/button\";s:0:\"\";s:14:\"core/site-logo\";s:0:\"\";s:18:\"core/post-template\";s:120:\":where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}\";s:12:\"core/columns\";s:102:\":where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}\";s:14:\"core/pullquote\";s:69:\":root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}\";}}','on'),(268,'_transient_health-check-site-status-result','{\"good\":25,\"recommended\":3,\"critical\":1}','on'),(380,'can_compress_scripts','1','on'),(395,'_site_transient_wp_plugin_dependencies_plugin_data','a:0:{}','off'),(396,'recently_activated','a:0:{}','off'),(400,'finished_updating_comment_type','1','auto'),(401,'current_theme',' tenjokure-n','auto'),(402,'theme_mods_tenjokure-n','a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:10:\"globalMenu\";i:2;}s:18:\"custom_css_post_id\";i:31;}','on'),(403,'theme_switched','','auto'),(449,'action_scheduler_hybrid_store_demarkation','6','auto'),(450,'schema-ActionScheduler_StoreSchema','7.0.1740546819','auto'),(451,'schema-ActionScheduler_LoggerSchema','3.0.1740546819','auto'),(452,'wpcf7','a:2:{s:7:\"version\";s:5:\"6.0.4\";s:13:\"bulk_validate\";a:4:{s:9:\"timestamp\";i:1740546819;s:7:\"version\";s:5:\"6.0.4\";s:11:\"count_valid\";i:1;s:13:\"count_invalid\";i:0;}}','auto'),(453,'ewww_image_optimizer_relative_migration_status','done','auto'),(454,'zipaddr_define','s:318:\"a:14:{s:8:\"sys_site\";s:1:\"4\";s:8:\"sys_keta\";s:1:\"7\";s:8:\"sys_tate\";s:0:\"\";s:8:\"sys_yoko\";s:0:\"\";s:8:\"sys_pfon\";s:0:\"\";s:8:\"sys_sfon\";s:0:\"\";s:8:\"sys_focs\";s:0:\"\";s:8:\"sys_syid\";s:0:\"\";s:8:\"sys_deli\";s:1:\"-\";s:8:\"sys_parm\";s:0:\"\";s:8:\"sys_plce\";s:0:\"\";s:8:\"sys_drct\";s:0:\"\";s:8:\"sys_dyna\";s:0:\"\";s:8:\"sys_gide\";s:0:\"\";}\";','auto'),(455,'action_scheduler_lock_async-request-runner','67f9127e388338.05246838|1744376506','auto'),(456,'aioseo_options_internal','{\"internal\":{\"validLicenseKey\":null,\"lastActiveVersion\":\"4.8.1.1\",\"migratedVersion\":\"0.0\",\"siteAnalysis\":{\"connectToken\":null,\"score\":0,\"results\":\"\",\"competitors\":[]},\"headlineAnalysis\":{\"headlines\":[]},\"wizard\":\"{\\\"currentStage\\\":\\\"license-key\\\",\\\"stages\\\":[\\\"category\\\",\\\"additional-information\\\",\\\"features\\\",\\\"search-appearance\\\",\\\"smart-recommendations\\\",\\\"search-console\\\",\\\"license-key\\\"],\\\"importers\\\":[],\\\"category\\\":{\\\"category\\\":\\\"blog\\\",\\\"categoryOther\\\":null,\\\"siteTitle\\\":\\\"#site_title\\\",\\\"metaDescription\\\":\\\"#tagline\\\"},\\\"additionalInformation\\\":{\\\"siteRepresents\\\":\\\"organization\\\",\\\"person\\\":\\\"\\\",\\\"organizationName\\\":\\\"#site_title\\\",\\\"orgnaizationDescription\\\":null,\\\"organizationLogo\\\":\\\"\\\",\\\"personName\\\":\\\"\\\",\\\"personLogo\\\":\\\"\\\",\\\"phone\\\":\\\"\\\",\\\"socialShareImage\\\":\\\"https:\\\\\\/\\\\\\/tenjokure-n.com\\\\\\/wp-content\\\\\\/uploads\\\\\\/2025\\\\\\/03\\\\\\/ogp-2.jpg\\\",\\\"social\\\":{\\\"profiles\\\":{\\\"sameUsername\\\":{\\\"enable\\\":false,\\\"username\\\":\\\"\\\",\\\"included\\\":[\\\"facebookPageUrl\\\",\\\"twitterUrl\\\",\\\"tiktokUrl\\\",\\\"pinterestUrl\\\",\\\"instagramUrl\\\",\\\"youtubeUrl\\\",\\\"linkedinUrl\\\"]},\\\"urls\\\":{\\\"facebookPageUrl\\\":\\\"\\\",\\\"twitterUrl\\\":\\\"\\\",\\\"instagramUrl\\\":\\\"\\\",\\\"tiktokUrl\\\":\\\"\\\",\\\"pinterestUrl\\\":\\\"\\\",\\\"youtubeUrl\\\":\\\"\\\",\\\"linkedinUrl\\\":\\\"\\\",\\\"tumblrUrl\\\":\\\"\\\",\\\"yelpPageUrl\\\":\\\"\\\",\\\"soundCloudUrl\\\":\\\"\\\",\\\"wikipediaUrl\\\":\\\"\\\",\\\"myspaceUrl\\\":\\\"\\\",\\\"googlePlacesUrl\\\":\\\"\\\",\\\"wordPressUrl\\\":\\\"\\\"},\\\"additionalUrls\\\":\\\"\\\"}},\\\"organizationDescription\\\":\\\"#tagline\\\"},\\\"features\\\":[\\\"aioseo-eeat\\\",\\\"aioseo-image-seo\\\",\\\"aioseo-redirects\\\",\\\"analytics\\\",\\\"broken-link-checker\\\",\\\"conversion-tools\\\",\\\"optimized-search-appearance\\\",\\\"sitemaps\\\"],\\\"searchAppearance\\\":{\\\"underConstruction\\\":false,\\\"postTypes\\\":{\\\"postTypes\\\":{\\\"all\\\":true,\\\"included\\\":[\\\"post\\\",\\\"page\\\",\\\"attachment\\\",\\\"product\\\"]}},\\\"multipleAuthors\\\":true,\\\"redirectAttachmentPages\\\":true,\\\"emailReports\\\":true},\\\"smartRecommendations\\\":{\\\"accountInfo\\\":\\\"cs@acsport.net\\\",\\\"usageTracking\\\":true},\\\"licenseKey\\\":null,\\\"showUsageTrackingModal\\\":false}\",\"category\":\"blog\",\"categoryOther\":null,\"deprecatedOptions\":[],\"searchStatistics\":{\"profile\":[],\"trustToken\":null,\"rolling\":\"last28Days\",\"site\":{\"verified\":false,\"lastFetch\":0},\"sitemap\":{\"list\":[],\"ignored\":[],\"lastFetch\":0}}},\"integrations\":{\"semrush\":{\"accessToken\":null,\"tokenType\":null,\"expires\":null,\"refreshToken\":null}},\"database\":{\"installedTables\":\"{\\\"wp_aioseo_posts\\\":[\\\"id\\\",\\\"post_id\\\",\\\"title\\\",\\\"description\\\",\\\"keywords\\\",\\\"keyphrases\\\",\\\"page_analysis\\\",\\\"primary_term\\\",\\\"canonical_url\\\",\\\"og_title\\\",\\\"og_description\\\",\\\"og_object_type\\\",\\\"og_image_type\\\",\\\"og_image_url\\\",\\\"og_image_width\\\",\\\"og_image_height\\\",\\\"og_image_custom_url\\\",\\\"og_image_custom_fields\\\",\\\"og_video\\\",\\\"og_custom_url\\\",\\\"og_article_section\\\",\\\"og_article_tags\\\",\\\"twitter_use_og\\\",\\\"twitter_card\\\",\\\"twitter_image_type\\\",\\\"twitter_image_url\\\",\\\"twitter_image_custom_url\\\",\\\"twitter_image_custom_fields\\\",\\\"twitter_title\\\",\\\"twitter_description\\\",\\\"seo_score\\\",\\\"schema\\\",\\\"schema_type\\\",\\\"schema_type_options\\\",\\\"pillar_content\\\",\\\"robots_default\\\",\\\"robots_noindex\\\",\\\"robots_noarchive\\\",\\\"robots_nosnippet\\\",\\\"robots_nofollow\\\",\\\"robots_noimageindex\\\",\\\"robots_noodp\\\",\\\"robots_notranslate\\\",\\\"robots_max_snippet\\\",\\\"robots_max_videopreview\\\",\\\"robots_max_imagepreview\\\",\\\"images\\\",\\\"image_scan_date\\\",\\\"priority\\\",\\\"frequency\\\",\\\"videos\\\",\\\"video_thumbnail\\\",\\\"video_scan_date\\\",\\\"local_seo\\\",\\\"limit_modified_date\\\",\\\"options\\\",\\\"created\\\",\\\"updated\\\"],\\\"wp_aioseo_cache\\\":[],\\\"wp_actionscheduler_actions\\\":[],\\\"wp_actionscheduler_groups\\\":[],\\\"wp_actionscheduler_logs\\\":[],\\\"wp_actionscheduler_claims\\\":[],\\\"wp_aioseo_notifications\\\":[]}\"}}','auto'),(457,'aioseo_options_internal_lite','{\"internal\":{\"activated\":1740546819,\"firstActivated\":1740546819,\"installed\":0,\"connect\":{\"key\":null,\"time\":0,\"network\":false,\"token\":null}}}','auto'),(460,'aioseo_options_dynamic_localized','a:10:{s:42:\"searchAppearance_taxonomies_category_title\";s:41:\"#taxonomy_title #separator_sa #site_title\";s:52:\"searchAppearance_taxonomies_category_metaDescription\";s:21:\"#taxonomy_description\";s:42:\"searchAppearance_taxonomies_post_tag_title\";s:41:\"#taxonomy_title #separator_sa #site_title\";s:52:\"searchAppearance_taxonomies_post_tag_metaDescription\";s:21:\"#taxonomy_description\";s:37:\"searchAppearance_postTypes_post_title\";s:37:\"#post_title #separator_sa #site_title\";s:47:\"searchAppearance_postTypes_post_metaDescription\";s:13:\"#post_excerpt\";s:37:\"searchAppearance_postTypes_page_title\";s:37:\"#post_title #separator_sa #site_title\";s:47:\"searchAppearance_postTypes_page_metaDescription\";s:13:\"#post_content\";s:43:\"searchAppearance_postTypes_attachment_title\";s:37:\"#post_title #separator_sa #site_title\";s:53:\"searchAppearance_postTypes_attachment_metaDescription\";s:19:\"#attachment_caption\";}','auto'),(463,'aioseo_dynamic_settings_backup','{}','off'),(464,'ewww_image_optimizer_background_optimization','1','off'),(465,'ewww_image_optimizer_noauto','','auto'),(466,'ewww_image_optimizer_auto','','auto'),(467,'ewww_image_optimizer_ludicrous_mode','','auto'),(468,'ewww_image_optimizer_jpg_only_mode','','auto'),(469,'ewww_image_optimizer_disable_editor','','auto'),(470,'ewww_image_optimizer_debug','','auto'),(471,'ewww_image_optimizer_metadata_remove','1','auto'),(472,'ewww_image_optimizer_maxmediawidth','2560','auto'),(473,'ewww_image_optimizer_maxmediaheight','2560','auto'),(474,'ewww_image_optimizer_cloud_key','','auto'),(475,'ewww_image_optimizer_jpg_level','10','auto'),(476,'ewww_image_optimizer_png_level','10','auto'),(477,'ewww_image_optimizer_gif_level','10','auto'),(478,'ewww_image_optimizer_pdf_level','0','auto'),(479,'ewww_image_optimizer_svg_level','0','auto'),(480,'ewww_image_optimizer_webp_level','0','auto'),(481,'ewww_image_optimizer_webp','','auto'),(482,'ewww_image_optimizer_jpg_quality','','auto'),(483,'ewww_image_optimizer_webp_quality','','auto'),(484,'ewww_image_optimizer_backup_files','','auto'),(485,'ewww_image_optimizer_resize_existing','1','auto'),(486,'ewww_image_optimizer_exactdn','','auto'),(487,'ewww_image_optimizer_exactdn_plan_id','0','auto'),(488,'exactdn_all_the_things','1','auto'),(489,'exactdn_lossy','1','auto'),(490,'exactdn_hidpi','1','off'),(491,'exactdn_exclude','','auto'),(492,'exactdn_sub_folder','','off'),(493,'exactdn_prevent_db_queries','','auto'),(494,'exactdn_asset_domains','','auto'),(495,'ewww_image_optimizer_lazy_load','','auto'),(496,'ewww_image_optimizer_add_missing_dims','','auto'),(497,'ewww_image_optimizer_use_siip','','auto'),(498,'ewww_image_optimizer_use_lqip','','auto'),(499,'ewww_image_optimizer_use_dcip','','auto'),(500,'ewww_image_optimizer_ll_exclude','','auto'),(501,'ewww_image_optimizer_ll_all_things','','auto'),(502,'ewww_image_optimizer_disable_pngout','1','auto'),(503,'ewww_image_optimizer_disable_svgcleaner','1','auto'),(504,'ewww_image_optimizer_optipng_level','2','auto'),(505,'ewww_image_optimizer_pngout_level','2','auto'),(506,'ewww_image_optimizer_webp_for_cdn','','auto'),(507,'ewww_image_optimizer_force_gif2webp','1','auto'),(508,'ewww_image_optimizer_picture_webp','','auto'),(509,'ewww_image_optimizer_webp_rewrite_exclude','','auto'),(513,'ewww_image_optimizer_ll_autoscale','1','off'),(514,'exactdn_never_been_active','1','off'),(515,'ewww_image_optimizer_bulk_resume','','auto'),(516,'ewww_image_optimizer_aux_resume','','auto'),(517,'ewww_image_optimizer_flag_attachments','','off'),(518,'ewww_image_optimizer_ngg_attachments','','off'),(520,'ewww_image_optimizer_review_time','1741151622','off'),(521,'ewww_image_optimizer_version','813','auto'),(522,'ewww_image_optimizer_dismiss_utf8','1','auto'),(523,'imsanity_max_width','1920','no'),(524,'imsanity_max_height','1920','no'),(525,'imsanity_max_width_library','1920','no'),(526,'imsanity_max_height_library','1920','no'),(527,'imsanity_max_width_other','1920','no'),(528,'imsanity_max_height_other','1920','no'),(529,'imsanity_bmp_to_jpg','1','no'),(530,'imsanity_png_to_jpg','','no'),(531,'imsanity_quality','82','no'),(532,'imsanity_delete_originals','','no'),(533,'imsanity_version','2.8.6','auto'),(536,'aioseo_options','{\"internal\":[],\"webmasterTools\":{\"google\":\"\",\"bing\":\"\",\"yandex\":\"\",\"baidu\":\"\",\"pinterest\":\"\",\"microsoftClarityProjectId\":\"\",\"norton\":\"\",\"miscellaneousVerification\":\"\"},\"breadcrumbs\":{\"separator\":\"»\",\"homepageLink\":true,\"homepageLabel\":\"Home\",\"breadcrumbPrefix\":\"\",\"archiveFormat\":\"Archives for #breadcrumb_archive_post_type_name\",\"searchResultFormat\":\"Search Results for \'#breadcrumb_search_string\'\",\"errorFormat404\":\"404 - Page Not Found\",\"showCurrentItem\":true,\"linkCurrentItem\":false,\"categoryFullHierarchy\":false,\"showBlogHome\":false},\"rssContent\":{\"before\":\"\",\"after\":\"<p>The post #post_link first appeared on #site_link.<\\/p>\"},\"advanced\":{\"truSeo\":true,\"headlineAnalyzer\":true,\"seoAnalysis\":true,\"dashboardWidgets\":[\"seoSetup\",\"seoOverview\",\"seoNews\"],\"announcements\":true,\"postTypes\":{\"all\":true,\"included\":[\"post\",\"page\",\"product\"]},\"taxonomies\":{\"all\":true,\"included\":[\"category\",\"post_tag\",\"product_cat\",\"product_tag\"]},\"uninstall\":false,\"emailSummary\":{\"enable\":true,\"recipients\":[{\"email\":\"cs@acsport.net\",\"frequency\":\"monthly\"}]}},\"sitemap\":{\"general\":{\"enable\":true,\"filename\":\"sitemap\",\"indexes\":true,\"linksPerIndex\":1000,\"postTypes\":{\"all\":true,\"included\":[\"post\",\"page\",\"attachment\",\"product\"]},\"taxonomies\":{\"all\":true,\"included\":[\"category\",\"post_tag\",\"product_cat\",\"product_tag\"]},\"author\":false,\"date\":false,\"additionalPages\":{\"enable\":false,\"pages\":[]},\"advancedSettings\":{\"enable\":false,\"excludeImages\":false,\"excludePosts\":[],\"excludeTerms\":[],\"priority\":{\"homePage\":{\"priority\":\"{\\\"label\\\":\\\"default\\\",\\\"value\\\":\\\"default\\\"}\",\"frequency\":\"{\\\"label\\\":\\\"default\\\",\\\"value\\\":\\\"default\\\"}\"},\"postTypes\":{\"grouped\":true,\"priority\":\"{\\\"label\\\":\\\"default\\\",\\\"value\\\":\\\"default\\\"}\",\"frequency\":\"{\\\"label\\\":\\\"default\\\",\\\"value\\\":\\\"default\\\"}\"},\"taxonomies\":{\"grouped\":true,\"priority\":\"{\\\"label\\\":\\\"default\\\",\\\"value\\\":\\\"default\\\"}\",\"frequency\":\"{\\\"label\\\":\\\"default\\\",\\\"value\\\":\\\"default\\\"}\"},\"archive\":{\"priority\":\"{\\\"label\\\":\\\"default\\\",\\\"value\\\":\\\"default\\\"}\",\"frequency\":\"{\\\"label\\\":\\\"default\\\",\\\"value\\\":\\\"default\\\"}\"},\"author\":{\"priority\":\"{\\\"label\\\":\\\"default\\\",\\\"value\\\":\\\"default\\\"}\",\"frequency\":\"{\\\"label\\\":\\\"default\\\",\\\"value\\\":\\\"default\\\"}\"}}}},\"rss\":{\"enable\":true,\"linksPerIndex\":50,\"postTypes\":{\"all\":true,\"included\":[\"post\",\"page\",\"product\"]}},\"html\":{\"enable\":true,\"pageUrl\":\"\",\"postTypes\":{\"all\":true,\"included\":[\"post\",\"page\",\"product\"]},\"taxonomies\":{\"all\":true,\"included\":[\"category\",\"post_tag\",\"product_cat\",\"product_tag\"]},\"sortOrder\":\"publish_date\",\"sortDirection\":\"asc\",\"publicationDate\":true,\"compactArchives\":false,\"advancedSettings\":{\"enable\":false,\"nofollowLinks\":false,\"excludePosts\":[],\"excludeTerms\":[]}}},\"social\":{\"profiles\":{\"sameUsername\":{\"enable\":false,\"username\":\"\",\"included\":[\"facebookPageUrl\",\"twitterUrl\",\"tiktokUrl\",\"pinterestUrl\",\"instagramUrl\",\"youtubeUrl\",\"linkedinUrl\"]},\"urls\":{\"facebookPageUrl\":\"\",\"twitterUrl\":\"\",\"instagramUrl\":\"\",\"tiktokUrl\":\"\",\"pinterestUrl\":\"\",\"youtubeUrl\":\"\",\"linkedinUrl\":\"\",\"tumblrUrl\":\"\",\"yelpPageUrl\":\"\",\"soundCloudUrl\":\"\",\"wikipediaUrl\":\"\",\"myspaceUrl\":\"\",\"googlePlacesUrl\":\"\",\"wordPressUrl\":\"\"},\"additionalUrls\":\"\"},\"facebook\":{\"general\":{\"enable\":true,\"defaultImageSourcePosts\":\"default\",\"customFieldImagePosts\":\"\",\"defaultImagePosts\":\"https:\\/\\/tenjokure-n.com\\/wp-content\\/uploads\\/2025\\/03\\/ogp-2.jpg\",\"defaultImagePostsWidth\":0,\"defaultImagePostsHeight\":0,\"showAuthor\":true,\"siteName\":\"#site_title #separator_sa #tagline\"},\"homePage\":{\"image\":\"\",\"title\":\"\",\"description\":\"\",\"imageWidth\":0,\"imageHeight\":0,\"objectType\":\"website\"},\"advanced\":{\"enable\":false,\"adminId\":\"\",\"appId\":\"\",\"authorUrl\":\"\",\"generateArticleTags\":false,\"useKeywordsInTags\":true,\"useCategoriesInTags\":true,\"usePostTagsInTags\":true}},\"twitter\":{\"general\":{\"enable\":true,\"useOgData\":true,\"defaultCardType\":\"summary_large_image\",\"defaultImageSourcePosts\":\"default\",\"customFieldImagePosts\":\"\",\"defaultImagePosts\":\"https:\\/\\/tenjokure-n.com\\/wp-content\\/uploads\\/2025\\/03\\/ogp-2.jpg\",\"showAuthor\":true,\"additionalData\":false},\"homePage\":{\"image\":\"\",\"title\":\"\",\"description\":\"\",\"cardType\":\"summary\"}}},\"searchAppearance\":{\"global\":{\"separator\":\"-\",\"siteTitle\":\"#site_title #separator_sa #tagline\",\"metaDescription\":\"#tagline\",\"keywords\":\"\",\"schema\":{\"websiteName\":\"#site_title\",\"websiteAlternateName\":\"\",\"siteRepresents\":\"organization\",\"person\":\"\",\"organizationName\":\"#site_title\",\"organizationDescription\":\"#tagline\",\"organizationLogo\":\"https:\\/\\/tenjokure-n.com\\/wp-content\\/uploads\\/2025\\/03\\/favicon.png\",\"personName\":\"\",\"personLogo\":\"\",\"phone\":\"\",\"email\":\"\",\"foundingDate\":\"\",\"numberOfEmployees\":{\"isRange\":false,\"from\":0,\"to\":0,\"number\":0}}},\"advanced\":{\"globalRobotsMeta\":{\"default\":true,\"noindex\":false,\"nofollow\":false,\"noindexPaginated\":true,\"nofollowPaginated\":true,\"noindexFeed\":true,\"noarchive\":false,\"noimageindex\":false,\"notranslate\":false,\"nosnippet\":false,\"noodp\":false,\"maxSnippet\":-1,\"maxVideoPreview\":-1,\"maxImagePreview\":\"large\"},\"sitelinks\":true,\"noIndexEmptyCat\":true,\"removeStopWords\":false,\"useKeywords\":false,\"keywordsLooking\":true,\"useCategoriesForMetaKeywords\":false,\"useTagsForMetaKeywords\":false,\"dynamicallyGenerateKeywords\":false,\"pagedFormat\":\"#separator_sa Page #page_number\",\"runShortcodes\":false,\"crawlCleanup\":{\"enable\":false,\"feeds\":{\"global\":true,\"globalComments\":false,\"staticBlogPage\":true,\"authors\":true,\"postComments\":false,\"search\":false,\"attachments\":false,\"archives\":{\"all\":false,\"included\":[]},\"taxonomies\":{\"all\":false,\"included\":[\"category\"]},\"atom\":false,\"rdf\":false,\"paginated\":false}},\"unwantedBots\":{\"all\":false,\"settings\":{\"googleAdsBot\":false,\"openAiGptBot\":false,\"commonCrawlCcBot\":false,\"googleGeminiVertexAiBots\":false}},\"searchCleanup\":{\"enable\":false,\"settings\":{\"maxAllowedNumberOfChars\":50,\"emojisAndSymbols\":false,\"commonPatterns\":false,\"redirectPrettyUrls\":false,\"preventCrawling\":false}},\"blockArgs\":{\"enable\":false,\"optimizeUtmParameters\":false,\"logsRetention\":\"{\\\"label\\\":\\\"1 week\\\",\\\"value\\\":\\\"week\\\"}\"},\"removeCategoryBase\":false},\"archives\":{\"author\":{\"show\":true,\"title\":\"#author_name #separator_sa #site_title\",\"metaDescription\":\"#author_bio\",\"advanced\":{\"robotsMeta\":{\"default\":true,\"noindex\":false,\"nofollow\":false,\"noarchive\":false,\"noimageindex\":false,\"notranslate\":false,\"nosnippet\":false,\"noodp\":false,\"maxSnippet\":-1,\"maxVideoPreview\":-1,\"maxImagePreview\":\"large\"},\"showDateInGooglePreview\":true,\"showPostThumbnailInSearch\":true,\"showMetaBox\":true,\"keywords\":\"\"}},\"date\":{\"show\":true,\"title\":\"#archive_date #separator_sa #site_title\",\"metaDescription\":\"\",\"advanced\":{\"robotsMeta\":{\"default\":true,\"noindex\":false,\"nofollow\":false,\"noarchive\":false,\"noimageindex\":false,\"notranslate\":false,\"nosnippet\":false,\"noodp\":false,\"maxSnippet\":-1,\"maxVideoPreview\":-1,\"maxImagePreview\":\"large\"},\"showDateInGooglePreview\":true,\"showPostThumbnailInSearch\":true,\"showMetaBox\":true,\"keywords\":\"\"}},\"search\":{\"show\":false,\"title\":\"#search_term #separator_sa #site_title\",\"metaDescription\":\"\",\"advanced\":{\"robotsMeta\":{\"default\":false,\"noindex\":true,\"nofollow\":false,\"noarchive\":false,\"noimageindex\":false,\"notranslate\":false,\"nosnippet\":false,\"noodp\":false,\"maxSnippet\":-1,\"maxVideoPreview\":-1,\"maxImagePreview\":\"large\"},\"showDateInGooglePreview\":true,\"showPostThumbnailInSearch\":true,\"showMetaBox\":true,\"keywords\":\"\"}}}},\"searchStatistics\":{\"postTypes\":{\"all\":true,\"included\":[\"post\",\"page\"]}},\"tools\":{\"robots\":{\"enable\":false,\"rules\":[],\"robotsDetected\":true},\"importExport\":{\"backup\":{\"lastTime\":\"\",\"data\":\"\"}}},\"deprecated\":{\"breadcrumbs\":{\"enable\":true},\"searchAppearance\":{\"global\":{\"descriptionFormat\":\"\",\"schema\":{\"enableSchemaMarkup\":true}},\"advanced\":{\"autogenerateDescriptions\":true,\"runShortcodesInDescription\":true,\"useContentForAutogeneratedDescriptions\":false,\"excludePosts\":[],\"excludeTerms\":[],\"noPaginationForCanonical\":true}},\"sitemap\":{\"general\":{\"advancedSettings\":{\"dynamic\":true}}},\"tools\":{\"blocker\":{\"blockBots\":false,\"blockReferer\":false,\"track\":false,\"custom\":{\"enable\":false,\"bots\":\"Abonti\\naggregator\\nAhrefsBot\\nasterias\\nBDCbot\\nBLEXBot\\nBuiltBotTough\\nBullseye\\nBunnySlippers\\nca-crawler\\nCCBot\\nCegbfeieh\\nCheeseBot\\nCherryPicker\\nCopyRightCheck\\ncosmos\\nCrescent\\ndiscobot\\nDittoSpyder\\nDotBot\\nDownload Ninja\\nEasouSpider\\nEmailCollector\\nEmailSiphon\\nEmailWolf\\nEroCrawler\\nExtractorPro\\nFasterfox\\nFeedBooster\\nFoobot\\nGenieo\\ngrub-client\\nHarvest\\nhloader\\nhttplib\\nHTTrack\\nhumanlinks\\nieautodiscovery\\nInfoNaviRobot\\nIstellaBot\\nJava\\/1.\\nJennyBot\\nk2spider\\nKenjin Spider\\nKeyword Density\\/0.9\\nlarbin\\nLexiBot\\nlibWeb\\nlibwww\\nLinkextractorPro\\nlinko\\nLinkScan\\/8.1a Unix\\nLinkWalker\\nLNSpiderguy\\nlwp-trivial\\nmagpie\\nMata Hari\\nMaxPointCrawler\\nMegaIndex\\nMicrosoft URL Control\\nMIIxpc\\nMippin\\nMissigua Locator\\nMister PiX\\nMJ12bot\\nmoget\\nMSIECrawler\\nNetAnts\\nNICErsPRO\\nNiki-Bot\\nNPBot\\nNutch\\nOffline Explorer\\nOpenfind\\npanscient.com\\nPHP\\/5.{\\nProPowerBot\\/2.14\\nProWebWalker\\nPython-urllib\\nQueryN Metasearch\\nRepoMonkey\\nSISTRIX\\nsitecheck.Internetseer.com\\nSiteSnagger\\nSnapPreviewBot\\nSogou\\nSpankBot\\nspanner\\nspbot\\nSpinn3r\\nsuzuran\\nSzukacz\\/1.4\\nTeleport\\nTelesoft\\nThe Intraformant\\nTheNomad\\nTightTwatBot\\nTitan\\ntoCrawl\\/UrlDispatcher\\nTrue_Robot\\nturingos\\nTurnitinBot\\nUbiCrawler\\nUnisterBot\\nURLy Warning\\nVCI\\nWBSearchBot\\nWeb Downloader\\/6.9\\nWeb Image Collector\\nWebAuto\\nWebBandit\\nWebCopier\\nWebEnhancer\\nWebmasterWorldForumBot\\nWebReaper\\nWebSauger\\nWebsite Quester\\nWebster Pro\\nWebStripper\\nWebZip\\nWotbox\\nwsr-agent\\nWWW-Collector-E\\nXenu\\nZao\\nZeus\\nZyBORG\\ncoccoc\\nIncutio\\nlmspider\\nmemoryBot\\nserf\\nUnknown\\nuptime files\",\"referer\":\"semalt.com\\nkambasoft.com\\nsavetubevideo.com\\nbuttons-for-website.com\\nsharebutton.net\\nsoundfrost.org\\nsrecorder.com\\nsoftomix.com\\nsoftomix.net\\nmyprintscreen.com\\njoinandplay.me\\nfbfreegifts.com\\nopenmediasoft.com\\nzazagames.org\\nextener.org\\nopenfrost.com\\nopenfrost.net\\ngooglsucks.com\\nbest-seo-offer.com\\nbuttons-for-your-website.com\\nwww.Get-Free-Traffic-Now.com\\nbest-seo-solution.com\\nbuy-cheap-online.info\\nsite3.free-share-buttons.com\\nwebmaster-traffic.com\"}}}},\"writingAssistant\":{\"postTypes\":{\"all\":true,\"included\":[\"post\",\"page\"]}}}','auto'),(537,'aioseo_options_lite','{\"advanced\":{\"usageTracking\":false}}','auto'),(538,'aioseo_options_dynamic','{\"sitemap\":{\"priority\":{\"postTypes\":{\"post\":{\"priority\":\"{\\\"label\\\":\\\"default\\\",\\\"value\\\":\\\"default\\\"}\",\"frequency\":\"{\\\"label\\\":\\\"default\\\",\\\"value\\\":\\\"default\\\"}\"},\"page\":{\"priority\":\"{\\\"label\\\":\\\"default\\\",\\\"value\\\":\\\"default\\\"}\",\"frequency\":\"{\\\"label\\\":\\\"default\\\",\\\"value\\\":\\\"default\\\"}\"},\"attachment\":{\"priority\":\"{\\\"label\\\":\\\"default\\\",\\\"value\\\":\\\"default\\\"}\",\"frequency\":\"{\\\"label\\\":\\\"default\\\",\\\"value\\\":\\\"default\\\"}\"}},\"taxonomies\":{\"category\":{\"priority\":\"{\\\"label\\\":\\\"default\\\",\\\"value\\\":\\\"default\\\"}\",\"frequency\":\"{\\\"label\\\":\\\"default\\\",\\\"value\\\":\\\"default\\\"}\"},\"post_tag\":{\"priority\":\"{\\\"label\\\":\\\"default\\\",\\\"value\\\":\\\"default\\\"}\",\"frequency\":\"{\\\"label\\\":\\\"default\\\",\\\"value\\\":\\\"default\\\"}\"}}}},\"social\":{\"facebook\":{\"general\":{\"postTypes\":{\"post\":{\"objectType\":\"article\"},\"page\":{\"objectType\":\"article\"},\"attachment\":{\"objectType\":\"article\"}}}}},\"searchAppearance\":{\"postTypes\":{\"post\":{\"show\":true,\"advanced\":{\"robotsMeta\":{\"default\":true,\"noindex\":false,\"nofollow\":false,\"noarchive\":false,\"noimageindex\":false,\"notranslate\":false,\"nosnippet\":false,\"noodp\":false,\"maxSnippet\":-1,\"maxVideoPreview\":-1,\"maxImagePreview\":\"large\"},\"showDateInGooglePreview\":true,\"showPostThumbnailInSearch\":true,\"showMetaBox\":true,\"bulkEditing\":\"enabled\"},\"title\":\"#post_title #separator_sa #site_title\",\"metaDescription\":\"#post_excerpt\",\"schemaType\":\"Article\",\"webPageType\":\"WebPage\",\"articleType\":\"BlogPosting\",\"customFields\":\"\"},\"page\":{\"show\":true,\"advanced\":{\"robotsMeta\":{\"default\":true,\"noindex\":false,\"nofollow\":false,\"noarchive\":false,\"noimageindex\":false,\"notranslate\":false,\"nosnippet\":false,\"noodp\":false,\"maxSnippet\":-1,\"maxVideoPreview\":-1,\"maxImagePreview\":\"large\"},\"showDateInGooglePreview\":true,\"showPostThumbnailInSearch\":true,\"showMetaBox\":true,\"bulkEditing\":\"enabled\"},\"title\":\"#post_title #separator_sa #site_title\",\"metaDescription\":\"#post_content\",\"schemaType\":\"WebPage\",\"webPageType\":\"WebPage\",\"articleType\":\"BlogPosting\",\"customFields\":\"\"},\"attachment\":{\"show\":true,\"advanced\":{\"robotsMeta\":{\"default\":true,\"noindex\":false,\"nofollow\":false,\"noarchive\":false,\"noimageindex\":false,\"notranslate\":false,\"nosnippet\":false,\"noodp\":false,\"maxSnippet\":-1,\"maxVideoPreview\":-1,\"maxImagePreview\":\"large\"},\"showDateInGooglePreview\":true,\"showPostThumbnailInSearch\":true,\"showMetaBox\":true,\"bulkEditing\":\"enabled\"},\"title\":\"#post_title #separator_sa #site_title\",\"metaDescription\":\"#attachment_caption\",\"schemaType\":\"ItemPage\",\"webPageType\":\"ItemPage\",\"articleType\":\"BlogPosting\",\"customFields\":\"\",\"redirectAttachmentUrls\":\"attachment\"}},\"taxonomies\":{\"category\":{\"show\":true,\"advanced\":{\"robotsMeta\":{\"default\":true,\"noindex\":false,\"nofollow\":false,\"noarchive\":false,\"noimageindex\":false,\"notranslate\":false,\"nosnippet\":false,\"noodp\":false,\"maxSnippet\":-1,\"maxVideoPreview\":-1,\"maxImagePreview\":\"large\"},\"showDateInGooglePreview\":true,\"showPostThumbnailInSearch\":true,\"showMetaBox\":true},\"title\":\"#taxonomy_title #separator_sa #site_title\",\"metaDescription\":\"#taxonomy_description\"},\"post_tag\":{\"show\":true,\"advanced\":{\"robotsMeta\":{\"default\":true,\"noindex\":false,\"nofollow\":false,\"noarchive\":false,\"noimageindex\":false,\"notranslate\":false,\"nosnippet\":false,\"noodp\":false,\"maxSnippet\":-1,\"maxVideoPreview\":-1,\"maxImagePreview\":\"large\"},\"showDateInGooglePreview\":true,\"showPostThumbnailInSearch\":true,\"showMetaBox\":true},\"title\":\"#taxonomy_title #separator_sa #site_title\",\"metaDescription\":\"#taxonomy_description\"}},\"archives\":[]}}','auto'),(542,'fs_active_plugins','O:8:\"stdClass\":3:{s:7:\"plugins\";a:1:{s:49:\"contact-form-7-multi-step-module-premium/freemius\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"2.11.0\";s:4:\"type\";s:6:\"plugin\";s:9:\"timestamp\";i:1740547106;s:11:\"plugin_path\";s:77:\"contact-form-7-multi-step-module-premium/contact-form-7-multi-step-module.php\";}}s:7:\"abspath\";s:40:\"/home/saito-kouatsu/www/tenjokure-n.com/\";s:6:\"newest\";O:8:\"stdClass\":5:{s:11:\"plugin_path\";s:77:\"contact-form-7-multi-step-module-premium/contact-form-7-multi-step-module.php\";s:8:\"sdk_path\";s:49:\"contact-form-7-multi-step-module-premium/freemius\";s:7:\"version\";s:6:\"2.11.0\";s:13:\"in_activation\";b:0;s:9:\"timestamp\";i:1740547106;}}','auto'),(543,'fs_debug_mode','','auto'),(544,'fs_accounts','a:14:{s:21:\"id_slug_type_path_map\";a:1:{i:1614;a:3:{s:4:\"slug\";s:32:\"contact-form-7-multi-step-module\";s:4:\"type\";s:6:\"plugin\";s:4:\"path\";s:77:\"contact-form-7-multi-step-module-premium/contact-form-7-multi-step-module.php\";}}s:11:\"plugin_data\";a:1:{s:32:\"contact-form-7-multi-step-module\";a:29:{s:19:\"last_load_timestamp\";i:1744411054;s:16:\"plugin_main_file\";O:8:\"stdClass\":1:{s:4:\"path\";s:77:\"contact-form-7-multi-step-module-premium/contact-form-7-multi-step-module.php\";}s:20:\"is_network_activated\";b:0;s:17:\"install_timestamp\";i:1740546853;s:17:\"was_plugin_loaded\";b:1;s:21:\"is_plugin_new_install\";b:0;s:16:\"sdk_last_version\";s:5:\"2.7.2\";s:11:\"sdk_version\";s:6:\"2.11.0\";s:16:\"sdk_upgrade_mode\";b:1;s:18:\"sdk_downgrade_mode\";b:0;s:19:\"plugin_last_version\";s:3:\"4.4\";s:14:\"plugin_version\";s:5:\"4.4.2\";s:19:\"plugin_upgrade_mode\";b:1;s:21:\"plugin_downgrade_mode\";b:0;s:17:\"connectivity_test\";a:6:{s:12:\"is_connected\";b:1;s:4:\"host\";s:15:\"tenjokure-n.com\";s:9:\"server_ip\";s:11:\"100.64.0.47\";s:9:\"is_active\";b:1;s:9:\"timestamp\";i:1740546865;s:7:\"version\";s:3:\"4.4\";}s:15:\"prev_is_premium\";b:1;s:30:\"is_diagnostic_tracking_allowed\";b:1;s:30:\"is_extensions_tracking_allowed\";b:0;s:14:\"has_trial_plan\";b:0;s:19:\"keepalive_timestamp\";i:1744387327;s:16:\"last_license_key\";s:32:\"bde4c5297052cb8bce33d3410cbaa206\";s:20:\"last_license_user_id\";N;s:15:\"is_whitelabeled\";b:0;s:20:\"activation_timestamp\";i:1740546865;s:13:\"subscriptions\";a:1:{i:0;O:15:\"FS_Subscription\":20:{s:2:\"id\";s:6:\"584992\";s:7:\"updated\";s:19:\"2024-07-22 09:21:55\";s:7:\"created\";s:19:\"2024-07-22 08:15:05\";s:22:\"\0FS_Entity\0_is_updated\";b:0;s:7:\"user_id\";s:7:\"6899277\";s:10:\"install_id\";s:8:\"15558891\";s:7:\"plan_id\";s:4:\"2334\";s:10:\"license_id\";s:7:\"1491111\";s:11:\"total_gross\";d:99.99;s:16:\"amount_per_cycle\";d:99.99;s:13:\"billing_cycle\";i:12;s:19:\"outstanding_balance\";i:0;s:15:\"failed_payments\";i:0;s:7:\"gateway\";s:6:\"stripe\";s:11:\"external_id\";s:28:\"sub_1PfHOcFmXz63vF5vHrp6kCRl\";s:10:\"trial_ends\";N;s:12:\"next_payment\";s:19:\"2025-07-22 08:15:02\";s:11:\"canceled_at\";N;s:6:\"vat_id\";N;s:12:\"country_code\";s:2:\"jp\";}}s:9:\"sync_cron\";O:8:\"stdClass\":5:{s:7:\"version\";s:3:\"4.4\";s:7:\"blog_id\";i:0;s:11:\"sdk_version\";s:5:\"2.7.2\";s:9:\"timestamp\";i:1740546870;s:2:\"on\";b:1;}s:9:\"beta_data\";a:2:{s:7:\"is_beta\";b:0;s:7:\"version\";s:5:\"4.4.2\";}s:14:\"sync_timestamp\";i:1744387327;s:22:\"install_sync_timestamp\";i:1744387327;}}s:13:\"file_slug_map\";a:1:{s:77:\"contact-form-7-multi-step-module-premium/contact-form-7-multi-step-module.php\";s:32:\"contact-form-7-multi-step-module\";}s:7:\"plugins\";a:1:{s:32:\"contact-form-7-multi-step-module\";O:9:\"FS_Plugin\":24:{s:2:\"id\";s:4:\"1614\";s:7:\"updated\";N;s:7:\"created\";N;s:22:\"\0FS_Entity\0_is_updated\";b:0;s:10:\"public_key\";s:32:\"pk_b445061ad8b540f6a89c2c4f4df19\";s:10:\"secret_key\";N;s:16:\"parent_plugin_id\";N;s:5:\"title\";s:31:\"Contact Form 7 Multi-Step Forms\";s:4:\"slug\";s:32:\"contact-form-7-multi-step-module\";s:12:\"premium_slug\";s:40:\"contact-form-7-multi-step-module-premium\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";b:0;s:19:\"is_wp_org_compliant\";b:1;s:22:\"premium_releases_count\";N;s:4:\"file\";s:77:\"contact-form-7-multi-step-module-premium/contact-form-7-multi-step-module.php\";s:7:\"version\";s:5:\"4.4.2\";s:11:\"auto_update\";N;s:4:\"info\";N;s:10:\"is_premium\";b:1;s:14:\"premium_suffix\";s:5:\"(Pro)\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:17:\"opt_in_moderation\";N;}}s:12:\"gc_timestamp\";a:0:{}s:10:\"theme_data\";a:0:{}s:9:\"unique_id\";s:32:\"c9830c1777d4e1cf19e2d9a05806d51a\";s:5:\"plans\";a:1:{s:32:\"contact-form-7-multi-step-module\";a:2:{i:0;O:14:\"FS_Plugin_Plan\":24:{s:2:\"id\";s:8:\"MjMzMw==\";s:7:\"updated\";N;s:7:\"created\";s:28:\"MjAxNy0xMi0yNCAwMjowNjoyNg==\";s:22:\"\0FS_Entity\0_is_updated\";b:0;s:9:\"plugin_id\";s:8:\"MTYxNA==\";s:4:\"name\";s:8:\"ZnJlZQ==\";s:5:\"title\";s:8:\"RnJlZQ==\";s:11:\"description\";N;s:17:\"is_free_localhost\";s:4:\"MQ==\";s:17:\"is_block_features\";s:4:\"MQ==\";s:12:\"license_type\";s:4:\"MA==\";s:16:\"is_https_support\";s:0:\"\";s:12:\"trial_period\";N;s:23:\"is_require_subscription\";s:0:\"\";s:10:\"support_kb\";N;s:13:\"support_forum\";N;s:13:\"support_email\";N;s:13:\"support_phone\";N;s:13:\"support_skype\";N;s:18:\"is_success_manager\";s:0:\"\";s:11:\"is_featured\";s:0:\"\";s:9:\"is_hidden\";s:0:\"\";s:7:\"pricing\";N;s:8:\"features\";N;}i:1;O:14:\"FS_Plugin_Plan\":24:{s:2:\"id\";s:8:\"MjMzNA==\";s:7:\"updated\";s:28:\"MjAxOC0wMS0yNSAxNjo1NTozMw==\";s:7:\"created\";s:28:\"MjAxNy0xMi0yNCAwMjoyMDoxMQ==\";s:22:\"\0FS_Entity\0_is_updated\";b:0;s:9:\"plugin_id\";s:8:\"MTYxNA==\";s:4:\"name\";s:4:\"cHJv\";s:5:\"title\";s:4:\"UHJv\";s:11:\"description\";s:20:\"VW5saW1pdGVkIHN0ZXBz\";s:17:\"is_free_localhost\";s:4:\"MQ==\";s:17:\"is_block_features\";s:0:\"\";s:12:\"license_type\";s:4:\"MA==\";s:16:\"is_https_support\";s:0:\"\";s:12:\"trial_period\";N;s:23:\"is_require_subscription\";s:0:\"\";s:10:\"support_kb\";N;s:13:\"support_forum\";N;s:13:\"support_email\";s:32:\"c3VwcG9ydEB3ZWJoZWFkY29kZXIuY29t\";s:13:\"support_phone\";N;s:13:\"support_skype\";N;s:18:\"is_success_manager\";s:0:\"\";s:11:\"is_featured\";s:4:\"MQ==\";s:9:\"is_hidden\";s:0:\"\";s:7:\"pricing\";N;s:8:\"features\";N;}}}s:5:\"sites\";a:1:{s:32:\"contact-form-7-multi-step-module\";O:7:\"FS_Site\":26:{s:2:\"id\";s:8:\"17263527\";s:7:\"updated\";s:19:\"2025-02-26 05:18:28\";s:7:\"created\";s:19:\"2025-02-26 05:14:25\";s:22:\"\0FS_Entity\0_is_updated\";b:0;s:10:\"public_key\";s:32:\"pk_6bbab20144c9fd731da2daba826bc\";s:10:\"secret_key\";s:32:\"sk_8r<dpLu>-E:^@9atrJ{2jC6<i8P?Y\";s:7:\"site_id\";s:9:\"259203688\";s:7:\"blog_id\";N;s:9:\"plugin_id\";s:4:\"1614\";s:7:\"user_id\";s:7:\"6899277\";s:5:\"title\";s:0:\"\";s:3:\"url\";s:23:\"https://tenjokure-n.com\";s:7:\"version\";s:5:\"4.4.2\";s:8:\"language\";s:2:\"ja\";s:16:\"platform_version\";s:5:\"6.7.2\";s:11:\"sdk_version\";s:6:\"2.11.0\";s:28:\"programming_language_version\";s:6:\"8.2.20\";s:7:\"plan_id\";s:4:\"2334\";s:10:\"license_id\";s:7:\"1491111\";s:13:\"trial_plan_id\";N;s:10:\"trial_ends\";N;s:10:\"is_premium\";b:1;s:15:\"is_disconnected\";b:0;s:9:\"is_active\";b:1;s:14:\"is_uninstalled\";b:0;s:7:\"is_beta\";b:0;}}s:5:\"users\";a:1:{i:6899277;O:7:\"FS_User\":12:{s:2:\"id\";s:7:\"6899277\";s:7:\"updated\";s:19:\"2024-07-22 08:45:49\";s:7:\"created\";s:19:\"2023-04-14 00:22:14\";s:22:\"\0FS_Entity\0_is_updated\";b:0;s:10:\"public_key\";s:32:\"pk_67d1bd9865c8a37c2c81b27ae1f24\";s:10:\"secret_key\";s:32:\"sk_j7sJ)x$*Qh-!<JMhhgp9E{LB8[yjK\";s:5:\"email\";s:14:\"cs@acsport.net\";s:5:\"first\";s:4:\"Kaho\";s:4:\"last\";s:4:\"Ueto\";s:11:\"is_verified\";b:1;s:11:\"customer_id\";N;s:5:\"gross\";N;}}s:23:\"user_id_license_ids_map\";a:1:{i:1614;a:1:{i:6899277;a:1:{i:0;i:1491111;}}}s:12:\"all_licenses\";a:1:{i:1614;a:1:{i:0;O:17:\"FS_Plugin_License\":21:{s:2:\"id\";s:7:\"1491111\";s:7:\"updated\";s:19:\"2025-04-10 07:52:19\";s:7:\"created\";s:19:\"2024-07-22 08:15:05\";s:22:\"\0FS_Entity\0_is_updated\";b:0;s:9:\"plugin_id\";s:4:\"1614\";s:7:\"user_id\";s:7:\"6899277\";s:7:\"plan_id\";s:4:\"2334\";s:16:\"parent_plan_name\";N;s:17:\"parent_plan_title\";N;s:17:\"parent_license_id\";N;s:8:\"products\";N;s:10:\"pricing_id\";s:4:\"1681\";s:5:\"quota\";N;s:9:\"activated\";i:65;s:15:\"activated_local\";i:62;s:10:\"expiration\";s:19:\"2025-07-23 08:15:02\";s:10:\"secret_key\";s:32:\"sk_Y1zbquy4P!C#T-q5:*?7mQqmYgb^l\";s:15:\"is_whitelabeled\";b:0;s:17:\"is_free_localhost\";b:1;s:17:\"is_block_features\";b:0;s:12:\"is_cancelled\";b:0;}}}s:13:\"admin_notices\";a:1:{s:32:\"contact-form-7-multi-step-module\";a:0:{}}s:7:\"updates\";a:1:{i:1614;N;}}','auto'),(545,'fs_api_cache','a:8:{s:26:\"get:/v1/users/6899277.json\";O:8:\"stdClass\":3:{s:6:\"result\";O:8:\"stdClass\":10:{s:5:\"email\";s:14:\"cs@acsport.net\";s:5:\"first\";s:4:\"Kaho\";s:4:\"last\";s:4:\"Ueto\";s:11:\"is_verified\";b:1;s:4:\"auth\";s:8:\"password\";s:10:\"secret_key\";s:32:\"sk_j7sJ)x$*Qh-!<JMhhgp9E{LB8[yjK\";s:10:\"public_key\";s:32:\"pk_67d1bd9865c8a37c2c81b27ae1f24\";s:2:\"id\";s:7:\"6899277\";s:7:\"created\";s:19:\"2023-04-14 00:22:14\";s:7:\"updated\";s:19:\"2024-07-22 08:45:49\";}s:7:\"created\";i:1740546865;s:9:\"timestamp\";i:1740633265;}s:30:\"get:/v1/installs/17263527.json\";O:8:\"stdClass\":3:{s:6:\"result\";O:8:\"stdClass\":33:{s:7:\"site_id\";s:9:\"259203688\";s:9:\"plugin_id\";s:4:\"1614\";s:7:\"user_id\";s:7:\"6899277\";s:3:\"url\";s:23:\"https://tenjokure-n.com\";s:5:\"title\";s:0:\"\";s:7:\"version\";s:3:\"4.4\";s:7:\"plan_id\";s:4:\"2334\";s:10:\"license_id\";s:7:\"1491111\";s:13:\"trial_plan_id\";N;s:10:\"trial_ends\";N;s:15:\"subscription_id\";s:6:\"584992\";s:5:\"gross\";i:0;s:12:\"country_code\";s:2:\"jp\";s:8:\"language\";s:2:\"ja\";s:16:\"platform_version\";s:5:\"6.7.2\";s:11:\"sdk_version\";s:5:\"2.7.2\";s:28:\"programming_language_version\";s:6:\"8.2.20\";s:9:\"is_active\";b:1;s:15:\"is_disconnected\";b:0;s:10:\"is_premium\";b:1;s:14:\"is_uninstalled\";b:0;s:9:\"is_locked\";b:0;s:6:\"source\";i:0;s:8:\"upgraded\";N;s:12:\"last_seen_at\";s:19:\"2025-02-26 05:14:27\";s:26:\"last_served_update_version\";N;s:10:\"secret_key\";s:32:\"sk_8r<dpLu>-E:^@9atrJ{2jC6<i8P?Y\";s:10:\"public_key\";s:32:\"pk_6bbab20144c9fd731da2daba826bc\";s:2:\"id\";s:8:\"17263527\";s:7:\"created\";s:19:\"2025-02-26 05:14:25\";s:7:\"updated\";s:19:\"2025-02-26 05:14:25\";s:7:\"charset\";N;s:7:\"is_beta\";b:0;}s:7:\"created\";i:1740546865;s:9:\"timestamp\";i:1740633265;}s:45:\"get:/v1/users/6899277/plugins/1614/plans.json\";O:8:\"stdClass\":3:{s:6:\"result\";O:8:\"stdClass\":1:{s:5:\"plans\";a:2:{i:0;O:14:\"FS_Plugin_Plan\":24:{s:2:\"id\";s:4:\"2333\";s:7:\"updated\";N;s:7:\"created\";s:19:\"2017-12-24 02:06:26\";s:22:\"\0FS_Entity\0_is_updated\";b:0;s:9:\"plugin_id\";s:4:\"1614\";s:4:\"name\";s:4:\"free\";s:5:\"title\";s:4:\"Free\";s:11:\"description\";N;s:17:\"is_free_localhost\";b:1;s:17:\"is_block_features\";b:1;s:12:\"license_type\";i:0;s:16:\"is_https_support\";b:0;s:12:\"trial_period\";N;s:23:\"is_require_subscription\";b:0;s:10:\"support_kb\";N;s:13:\"support_forum\";N;s:13:\"support_email\";N;s:13:\"support_phone\";N;s:13:\"support_skype\";N;s:18:\"is_success_manager\";b:0;s:11:\"is_featured\";b:0;s:9:\"is_hidden\";b:0;s:7:\"pricing\";N;s:8:\"features\";N;}i:1;O:14:\"FS_Plugin_Plan\":24:{s:2:\"id\";s:4:\"2334\";s:7:\"updated\";s:19:\"2018-01-25 16:55:33\";s:7:\"created\";s:19:\"2017-12-24 02:20:11\";s:22:\"\0FS_Entity\0_is_updated\";b:0;s:9:\"plugin_id\";s:4:\"1614\";s:4:\"name\";s:3:\"pro\";s:5:\"title\";s:3:\"Pro\";s:11:\"description\";s:15:\"Unlimited steps\";s:17:\"is_free_localhost\";b:1;s:17:\"is_block_features\";b:0;s:12:\"license_type\";i:0;s:16:\"is_https_support\";b:0;s:12:\"trial_period\";N;s:23:\"is_require_subscription\";b:0;s:10:\"support_kb\";N;s:13:\"support_forum\";N;s:13:\"support_email\";s:24:\"support@webheadcoder.com\";s:13:\"support_phone\";N;s:13:\"support_skype\";N;s:18:\"is_success_manager\";b:0;s:11:\"is_featured\";b:1;s:9:\"is_hidden\";b:0;s:7:\"pricing\";N;s:8:\"features\";N;}}}s:7:\"created\";i:1744387327;s:9:\"timestamp\";i:1744473727;}s:65:\"get:/v1/users/6899277/plugins/1614/licenses.json?is_enriched=true\";O:8:\"stdClass\":3:{s:6:\"result\";O:8:\"stdClass\":1:{s:8:\"licenses\";a:1:{i:0;O:17:\"FS_Plugin_License\":21:{s:2:\"id\";s:7:\"1491111\";s:7:\"updated\";s:19:\"2025-04-10 07:52:19\";s:7:\"created\";s:19:\"2024-07-22 08:15:05\";s:22:\"\0FS_Entity\0_is_updated\";b:0;s:9:\"plugin_id\";s:4:\"1614\";s:7:\"user_id\";s:7:\"6899277\";s:7:\"plan_id\";s:4:\"2334\";s:16:\"parent_plan_name\";N;s:17:\"parent_plan_title\";N;s:17:\"parent_license_id\";N;s:8:\"products\";N;s:10:\"pricing_id\";s:4:\"1681\";s:5:\"quota\";N;s:9:\"activated\";i:65;s:15:\"activated_local\";i:62;s:10:\"expiration\";s:19:\"2025-07-23 08:15:02\";s:10:\"secret_key\";s:32:\"sk_Y1zbquy4P!C#T-q5:*?7mQqmYgb^l\";s:15:\"is_whitelabeled\";b:0;s:17:\"is_free_localhost\";b:1;s:17:\"is_block_features\";b:0;s:12:\"is_cancelled\";b:0;}}}s:7:\"created\";i:1744387327;s:9:\"timestamp\";i:1744473727;}s:61:\"get:/v1/installs/17263527/licenses/1491111/subscriptions.json\";O:8:\"stdClass\":3:{s:6:\"result\";O:8:\"stdClass\":1:{s:13:\"subscriptions\";a:1:{i:0;O:8:\"stdClass\":33:{s:8:\"tax_rate\";i:0;s:11:\"total_gross\";d:99.99;s:16:\"amount_per_cycle\";d:99.99;s:14:\"initial_amount\";d:99.99;s:14:\"renewal_amount\";d:99.99;s:17:\"renewals_discount\";N;s:22:\"renewals_discount_type\";s:10:\"percentage\";s:13:\"billing_cycle\";i:12;s:19:\"outstanding_balance\";i:0;s:15:\"failed_payments\";i:0;s:10:\"trial_ends\";N;s:12:\"next_payment\";s:19:\"2025-07-22 08:15:02\";s:11:\"canceled_at\";N;s:7:\"user_id\";s:7:\"6899277\";s:10:\"install_id\";s:8:\"15558891\";s:7:\"plan_id\";s:4:\"2334\";s:10:\"pricing_id\";s:4:\"1681\";s:10:\"license_id\";s:7:\"1491111\";s:2:\"ip\";s:13:\"124.36.15.166\";s:12:\"country_code\";s:2:\"jp\";s:15:\"zip_postal_code\";i:1006213;s:6:\"vat_id\";N;s:9:\"coupon_id\";N;s:12:\"user_card_id\";s:6:\"468865\";s:6:\"source\";i:0;s:9:\"plugin_id\";s:4:\"1614\";s:11:\"external_id\";s:28:\"sub_1PfHOcFmXz63vF5vHrp6kCRl\";s:7:\"gateway\";s:6:\"stripe\";s:11:\"environment\";i:0;s:2:\"id\";s:6:\"584992\";s:7:\"created\";s:19:\"2024-07-22 08:15:05\";s:7:\"updated\";s:19:\"2024-07-22 09:21:55\";s:8:\"currency\";s:3:\"usd\";}}}s:7:\"created\";i:1744387327;s:9:\"timestamp\";i:1744473727;}s:88:\"get:/v1/installs/17263527/updates/latest.json?is_premium=true&newer_than=4.4&readme=true\";O:8:\"stdClass\":3:{s:6:\"result\";O:8:\"stdClass\":21:{s:9:\"plugin_id\";s:4:\"1614\";s:12:\"developer_id\";s:4:\"1845\";s:4:\"slug\";N;s:12:\"premium_slug\";s:40:\"contact-form-7-multi-step-module-premium\";s:7:\"version\";s:5:\"4.4.2\";s:11:\"sdk_version\";s:6:\"2.11.0\";s:25:\"requires_platform_version\";s:3:\"4.7\";s:37:\"requires_programming_language_version\";N;s:20:\"tested_up_to_version\";s:3:\"6.6\";s:8:\"has_free\";b:1;s:11:\"has_premium\";b:1;s:12:\"release_mode\";s:8:\"released\";s:5:\"limit\";N;s:7:\"uniques\";i:2596;s:14:\"is_incremental\";b:1;s:2:\"id\";s:5:\"84136\";s:7:\"created\";s:19:\"2025-01-27 19:22:26\";s:7:\"updated\";s:19:\"2025-02-26 05:17:00\";s:11:\"is_released\";b:0;s:3:\"url\";s:388:\"https://api.freemius.com/v1/installs/17263527/updates/84136.zip?is_premium=true&authorization=FSLA+17263527%3AfzOKVhwz9if8Sizye1Kdqz7jKNgxXtdZMsbC8JZAeQR8qyxNSCve7RNA0XygIf0gaVk6kov72GdS4aG0O9Z6euhB_2kGtaXcdJt2b1q4hkwGpJH1GflHeP4SMUrhLT8uDc-t_6UQNeTa2nc9f9Dx4gJqMXwy8YTf6HzTManS18OrDhYUYHleddUNf9EynEYG0C955rSFw5-2QrOwaCFENqAcXdcg8IXKb4KJwhXbvsrGhunH8SNoV2ASmQu1Kf04PgYVD-CmFkV0bIzF1Tj_cQ\";s:6:\"readme\";O:8:\"stdClass\":11:{s:4:\"name\";s:31:\"Contact Form 7 Multi-Step Forms\";s:4:\"slug\";s:32:\"contact-form-7-multi-step-module\";s:4:\"tags\";O:8:\"stdClass\":5:{s:14:\"contact form 7\";s:14:\"contact form 7\";s:14:\"multistep form\";s:14:\"multistep form\";s:4:\"form\";s:4:\"form\";s:14:\"multiple pages\";s:14:\"multiple pages\";s:7:\"contact\";s:7:\"contact\";}s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";N;s:6:\"tested\";s:3:\"6.6\";s:10:\"stable_tag\";s:5:\"4.4.2\";s:8:\"sections\";O:8:\"stdClass\":3:{s:11:\"description\";s:5428:\"<p>I needed a contact form that spanned across multiple pages and in the end would send an email with all the info collected. This plugin adds onto the popular Contact Form 7 plugin to do just that.</p>\n\n<p>Sample of this working is at <a href=\"https://webheadcoder.com/contact-form-7-multi-step-form/\">https://webheadcoder.com/contact-form-7-multi-step-form/</a></p>\n\n<p>Requires the <a href=\"https://wordpress.org/plugins/contact-form-7/\">Contact Form 7 plugin</a>, version 5.2 or above, by Takayuki Miyoshi.</p>\n\n<p><strong>Usage</strong></p>\n\n<ol>\n<li><p>Create one page or post for each step in your multi-step form process. If you have 3 steps, create 3 pages/posts. You will need the urls to these when creating your forms.</p></li>\n<li><p>Create a Contact Form 7 form.</p></li>\n<li><p>Place your cursor at the end of the form.</p></li>\n<li><p>On the \"Form\" tab of the Contact Form 7 form, click on the button named \"multistep\".</p></li>\n<li><p>In the window that pops up, check the checkbox next to \"First Step\" if this is the first step of your multi step forms. If this is your last step in the multi step forms, check the \"Last Step\" checkbox. All other checkboxes are optional.</p></li>\n<li><p>The Next Page URL is the url that contains your next form. If this form is the last step, you can leave the URL field blank.</p></li>\n<li><p>Click \"Insert Tag\"</p></li>\n<li><p>Save your completed form and place the form\'s shortcode into the appropriate Page/Post you created in step 1.</p></li>\n<li><p>Repeat for <strong>each form</strong> in your multi-step form process.</p></li>\n<li><p>On the last step, you probably would want to send an email. Make sure to check the \"Send Email\" checkbox in step 5. On the Mail Tab, simply enter the mail-tags as you normally would. For example if your first form has the field <code>your-email</code> you can include <code>[your-email]</code> in the Mail tab on your last form. Note: CF7 will see this as an error because <code>your-email</code> may not be displayed on the current form. You can safely ignore this error.</p></li>\n</ol>\n\n<p><strong>Multistep Tag Options</strong></p>\n\n<ul>\n<li><p><strong>Name</strong> - The name of this multistep form-tag. This is required, but is currently not being used.</p></li>\n<li><p><strong>First Step</strong> - Besides marking the first step of your multistep forms, this allows any form to act as the first step and show when no previous data has ben submitted. This is useful when you want some users to skip the first step.</p></li>\n<li><p><strong>Last Step</strong> - Besides marking the last step of you multistep forms, this clears the data from user\'s browsers. Once they submit this form they won\'t see their data populating the forms anymore.</p></li>\n<li><p><strong>Send Email</strong> - If this is checked the form will send an email like a normal Contact Form 7 submission.</p></li>\n<li><p><strong>Skip Save</strong> - If you use Flamingo or CFDB7 to save submissions to the database this prevents saving this form submission.</p></li>\n<li><p><strong>Next Page URL</strong> - This is the URL your users will go to after the form is submitted.</p>\n\n<p>[multistep multistep-123 last_step send_email skip_save \"/thank-you\"]</p></li>\n</ul>\n\n<p><strong>Additional Tags</strong></p>\n\n<pre><code>[multiform \"your-name\"]\n</code></pre>\n\n<p>The <code>multiform</code> form-tag can be used to display a field from a previous step. Replace <code>your-name</code> with the name of your field. This is only for use on the Form tab, this tag will not work in the Mail tab.</p>\n\n<pre><code>[previous \"Go Back\"]\n</code></pre>\n\n<p>The <code>previous</code> form-tag can be used to display a button to go to a previous step. Replace <code>Go Back</code> with text you want to show in the button.</p>\n\n<p><strong>Messages Tab</strong>\nWhen a visitor to your site visits the 4th step in your multi step form without filling out the 1st step, the message \"Please fill out the form on the previous page.\" will be displayed. You can change this on each form in the Messages tab.</p>\n\n<p><strong>What this plugin DOES NOT do:</strong></p>\n\n<ul>\n<li><p>This plugin does not support file uploads on every form. If you need to use file uploads make sure to place it on the last step.</p></li>\n<li><p>This plugin currently does not support \"pipes\" in the select field. See https://contactform7.com/selectable-recipient-with-pipes/ for more on what \"pipes\" is on the Contact Form 7 site.</p></li>\n<li><p>This plugin does not load another form on the same page. It only works when the forms are on separate pages. Many have asked to make it load via ajax so all forms can reside on one page. This plugin does not support that.</p></li>\n</ul>\n\n<p><strong>PRO Version</strong>\nIf you expect to have a lot of data submitted through your multi-step forms, the Pro version may be able to help you better. The PRO version uses Session Storage so it is able to handle roughly 1,000 times more data for your multiple forms. In total it can handle about 5MB vs 4KB in the free version. <strong>Currently the Pro version REQUIRES the WordPress REST API and Contact Form 7 AJAX Submission to be enabled.</strong></p>\n\n<p>Another feature the Pro version offers is the ability to skip steps with the \"Contact Form 7 - Conditional Fields plugin\". <a href=\"https://webheadcoder.com/contact-form-7-multi-step-forms/#pro\">Learn more here.</a></p>\";s:3:\"faq\";s:4311:\"<h4>The Next button doesn\'t show up</h4>\n\n<p>Like all Contact Form 7 forms, you still need to add a button to submit the form. Use the normal submit button with any label you want like so <code>[submit \"Next\"]</code>.</p>\n\n<p>The <code>multistep</code> form tag is a hidden field and tries not to add any spacing to your form. In this effort, anything directly after this tag may be hidden. To prevent this, add a carriage return after the <code>multistep</code> form tag, or just follow the directions and place the form tag at the end of the form.</p>\n\n<h4>I keep getting the \"Please fill out the form on the previous page\" message. What\'s wrong?</h4>\n\n<p>It could be one of these reasons:</p>\n\n<ol>\n<li>Your Caching system is not allowing cookies to be set in a normal way. No workarounds or fixes are planned at this time. You will need to turn off caching for cookies named cf7*.</li>\n<li>Your protocol or domain is not the same on all pages. Each page that holds a form needs to have the same protocol and domain. If your first page uses https like https://webheadcoder.com, your second page cannot be http:// or a subdomain of that.</li>\n<li>Make sure your first form has the first_step attribute in the multistep form-tag, like: <code>[multistep multistep-123 first_step \"/your-next-url/\"]</code></li>\n</ol>\n\n<h4>Why are no values being passed from one form to the next form?</h4>\n\n<p>If your form reloads the page after hitting the submit button, you either disabled the WordPress REST API or javascript for Contact Form 7 isn\'t working correctly. Please see the Contact Form 7\'s troubleshooting page for more information:\n<a href=\"https://contactform7.com/why-isnt-my-ajax-contact-form-working-correctly/\">https://contactform7.com/why-isnt-my-ajax-contact-form-working-correctly/</a></p>\n\n<h4>How can I show a summary of what the user entered or show fields from previous steps?</h4>\n\n<pre><code>[multiform \"your-name\"] \n</code></pre>\n\n<p>The multiform form-tag can be used to display a field from a previous step. Replace <code>your-name</code> with the name of your field.</p>\n\n<h4>My form values aren\'t being sent in the email. I get [multiform \"your-name\"] instead of the actual person\'s name.</h4>\n\n<p>The multiform form-tag should only be used on the Form tab. On the Mail tab follow the instructions from the Contact Fom 7 documentation. So if you wanted to show the <code>your-name</code> field, type <code>[your-name]</code>.</p>\n\n<p>It\'s also important that the last form has the multistep form-tag.</p>\n\n<h4>Can I have an email sent on the first step of the multi-step forms?</h4>\n\n<p>Yes, you can. Make sure to check the \"Send Email\" checkbox or have the send_email attribute in the multistep form-tag like: <code>[multistep multistep-123 first_step send_email \"/your-next-url/\"]</code>.</p>\n\n<h4>My forms are not working as expected. What\'s wrong?</h4>\n\n<ul>\n<li><p>Make sure you have the <code>multistep</code> tag on each and every form.</p></li>\n<li><p>It is very common for other plugins to have javascript errors which can prevent this plugin from running properly. Deactivate all other plugins and try again.</p></li>\n</ul>\n\n<h4>Why \"place your cursor at the end of the form\" before inserting the multistep tag?</h4>\n\n<p>The <code>multistep</code> form tag is a hidden field and tries not to add any spacing to your form. In this effort, anything directly after this tag may be hidden. To prevent this, add a carriage return after the <code>multistep</code> form tag, or just follow the directions and place the form tag at the end of the form.</p>\n\n<h4>How do I get Flamingo or CFDB7 to not save every form?</h4>\n\n<p>Make sure to check the \"Skip Save\" checkbox or have the skip_save attribute in the multistep form-tag like: <code>[multistep multistep-123 skip_save \"/your-next-url/\"]</code>.</p>\n\n<h4>When checkbox fields are left unchecked they appear as [field-name] in the email. How do I resolve this?</h4>\n\n<p>When checkboxes are not checked they aren\'t submitted through the form so the last step of the form doesn\'t know the unchecked checkbox field exists. To get around this issue add a hidden form tag like <code>[hidden field-name]</code> to the last step. This way the last step will either submit the previously set value or a blank value.</p>\";s:9:\"changelog\";s:11508:\"<h4>4.4.2</h4>\n\n<ul>\n<li>updated Freemius. </li>\n</ul>\n\n<h4>4.4.1</h4>\n\n<ul>\n<li>fixed error when cookie has an array in it. </li>\n<li>updated tag generator to be compatible with CF7 6.0. </li>\n<li>updated Freemius. </li>\n</ul>\n\n<h4>4.4</h4>\n\n<ul>\n<li>fixed checkbox and radio free text not saving between forms. </li>\n<li>Upped minimum CF7 version to 5.2. </li>\n<li>updated Freemius. </li>\n</ul>\n\n<h4>4.3.1</h4>\n\n<ul>\n<li>fixed PHP warning. </li>\n<li>updated Freemius. </li>\n</ul>\n\n<h4>4.3</h4>\n\n<ul>\n<li>added multiform form tags to Mail tab. Thanks to @tkc49! </li>\n<li>updated Freemius. </li>\n</ul>\n\n<h4>4.2.1</h4>\n\n<ul>\n<li>fixed PHP warning. </li>\n<li>updated checkboxes to trigger the checked event when form is repopulated. </li>\n</ul>\n\n<h4>4.2</h4>\n\n<ul>\n<li>fixed multiform tags for CF7 5.7.3. </li>\n<li>changed \"form field\" tag generator name to \"multiform\". </li>\n<li>updated Freemius. </li>\n</ul>\n\n<h4>4.1.92</h4>\n\n<ul>\n<li>fixed values not saving across steps on Safari browsers. </li>\n</ul>\n\n<h4>4.1.91</h4>\n\n<ul>\n<li>updated Freemius to v2.4.3. </li>\n</ul>\n\n<h4>4.1.9</h4>\n\n<ul>\n<li>updated logo images to be within the plugin to comply with WordPress requirements. </li>\n</ul>\n\n<h4>4.1.8</h4>\n\n<ul>\n<li>security update: HTML is now escaped when being output using the multiform tag. Additional sanitization changes. </li>\n</ul>\n\n<h4>4.1.7</h4>\n\n<ul>\n<li>fixed next url to support external urls. </li>\n</ul>\n\n<h4>4.1.6</h4>\n\n<ul>\n<li>fixed conditional fields not trigerring after form population. </li>\n<li>fixed 500 error due to conflict with Conditional Fields plugin expecting an array in cookie values. </li>\n</ul>\n\n<h4>4.1.5</h4>\n\n<ul>\n<li>fixed prev button not showing up when next url from previous form has a querystring in it. </li>\n<li>fixed issue with cookie being set on non-multistep forms. </li>\n<li>PRO: added compatibility for repeaters in Conditional Fields Pro. </li>\n</ul>\n\n<h4>4.1.4</h4>\n\n<ul>\n<li>fixed error when caching is enabled. </li>\n</ul>\n\n<h4>4.1.2</h4>\n\n<ul>\n<li>updated version to bust cache. </li>\n</ul>\n\n<h4>4.1.1</h4>\n\n<ul>\n<li>updated for CF7 5.4.</li>\n<li>updated freemius. </li>\n</ul>\n\n<h4>4.1</h4>\n\n<ul>\n<li>added sanitization similar to the core CF7 plugin. </li>\n</ul>\n\n<h4>4.0.9</h4>\n\n<ul>\n<li>updated freemius. </li>\n</ul>\n\n<h4>4.0.8</h4>\n\n<ul>\n<li>fixed values being saved when form submission is invalid. </li>\n</ul>\n\n<h4>4.0.7</h4>\n\n<ul>\n<li>fixed success message showing when not on the last step due to a change in Contact Form 7 v5.2.1. </li>\n<li>added Skip Save for Advanced Contact form 7 DB plugin. Thanks to @undersound. </li>\n</ul>\n\n<h4>4.0.6</h4>\n\n<ul>\n<li>PRO: fixed fields not going through when form ids were not in the right order. </li>\n</ul>\n\n<h4>4.0.5</h4>\n\n<ul>\n<li>PRO: fixed checkboxes not being passed on to next form. </li>\n</ul>\n\n<h4>4.0.4</h4>\n\n<ul>\n<li>PRO: fixed fields showing up out of order when viewed in Flamingo (part 2). </li>\n</ul>\n\n<h4>4.0.3</h4>\n\n<ul>\n<li>PRO: fixed fields showing up out of order when viewed in Flamingo. </li>\n</ul>\n\n<h4>4.0.2</h4>\n\n<ul>\n<li>fixed get_magic_quotes_gpc() deprecated warning when running PHP 7.4. </li>\n<li>fixed slashes appearing in free version</li>\n<li>fixed previous button not showing when the multiform tag\'s next url doesn\'t match the page url because of a trailing slash.</li>\n<li>added a filter to fallback to sessions. </li>\n</ul>\n\n<h4>4.0.1</h4>\n\n<ul>\n<li>fixed issue where the multistep cookie was being set on non multistep forms. </li>\n</ul>\n\n<h4>4.0</h4>\n\n<p>In Version 4.0 the format of the multistep form-tag has changed dramatically. The old format is backwards compatible and will still work until January 2021. Beyond that the old format is not guaranteed to work with newer versions. More Info: <a href=\"https://webheadcoder.com/contact-form-7-multi-step-forms-update-4-0/\">https://webheadcoder.com/contact-form-7-multi-step-forms-update-4-0/</a></p>\n\n<ul>\n<li>added new multiform form-tag format to allow for options to send email and not save to database. </li>\n<li>added customizable error on the Messages tab. </li>\n<li>added admin notice to notify user of large form submissions.</li>\n<li>PRO: added compatibility to skip steps with the CF7 Conditional Fields plugin. </li>\n</ul>\n\n<h4>3.2</h4>\n\n<ul>\n<li>added review notice to get to know how users like this plugin. </li>\n<li>fixed WP warning when CF7 is not installed. </li>\n<li>updated freemius.</li>\n</ul>\n\n<h4>3.1.2</h4>\n\n<ul>\n<li>added ability to skip over steps if it was previously submitted. </li>\n</ul>\n\n<h4>3.1.1</h4>\n\n<ul>\n<li>updated freemius. </li>\n</ul>\n\n<h4>3.1</h4>\n\n<ul>\n<li>fixed issue where CF7 MSM files still loaded even when WPCF7_LOAD_JS is set to false. </li>\n<li>fixed success message not showing for forms with a wrapping inner element.</li>\n<li>fixed multi-select population. </li>\n<li>updated how select is set so it can trigger javascript changes. </li>\n</ul>\n\n<h4>3.0.9</h4>\n\n<ul>\n<li>fixed issue where WPCF7_LOAD_JS is set to false and resulted in 302 error. thanks to @zetoun17.</li>\n<li>security fix </li>\n</ul>\n\n<h4>3.0.8</h4>\n\n<ul>\n<li>added missing freemius files </li>\n</ul>\n\n<h4>3.0.7</h4>\n\n<ul>\n<li>updated freemius</li>\n</ul>\n\n<h4>3.0.6</h4>\n\n<ul>\n<li>PRO: fixed \"Cannot use a scalar value as an array\" warning when CF7 Conditional Fields plugin is active. </li>\n</ul>\n\n<h4>3.0.5</h4>\n\n<ul>\n<li>PRO: fixed compatibility with Contact Form 7 Conditional Fields plugin to only show group that is supposed to show. </li>\n</ul>\n\n<h4>3.0.4</h4>\n\n<ul>\n<li>deprecated wpcf7_form_field_value filters. </li>\n<li>added cf7msm_form_field_value filters. </li>\n</ul>\n\n<h4>3.0.3</h4>\n\n<ul>\n<li>PRO: fixed conditional fields (from the Conditional Fields for Contact Form 7 plugin) not showing in email. </li>\n</ul>\n\n<h4>3.0.2</h4>\n\n<ul>\n<li>fixed quotes in values causing errors. </li>\n<li>added plugin action links. </li>\n</ul>\n\n<h4>3.0.1</h4>\n\n<ul>\n<li>fixed session storage not clearing after final step was submitted. </li>\n<li>fixed form not hiding after final step was submitted. Thanks to @tschodde. </li>\n</ul>\n\n<h4>3.0</h4>\n\n<ul>\n<li>changed internal field names to be prefixed with cf7msm. </li>\n<li>added PRO version to handle long forms. </li>\n<li>fixed minor issues. </li>\n</ul>\n\n<h4>2.26</h4>\n\n<ul>\n<li>updated i18n code. </li>\n</ul>\n\n<h4>2.25</h4>\n\n<p><strong>Contact From 7 version 4.8 or above is required for this version</strong>.<br />\n* fixed incompatible JSON_UNESCAPED_UNICODE for PHP versions < 5.4.</p>\n\n<h4>2.24</h4>\n\n<p><strong>Contact From 7 version 4.8 or above is required for this version</strong>.<br />\n* fixed not redirecting to next step on older iPad browsers.<br />\n* fixed illegal offset exception warning.<br />\n* added JSON_UNESCAPED_UNICODE for czech language.</p>\n\n<h4>2.23</h4>\n\n<p><strong>Contact From 7 version 4.8 or above is required for this version</strong>.<br />\n* fixed back button on firefox.<br />\n* fixed url not displaying correctly when it has the & symbol.</p>\n\n<h4>2.22</h4>\n\n<p><strong>Contact From 7 version 4.8 or above is required for this version</strong>.<br />\n* fixed back button going back more than one step.</p>\n\n<h4>2.21</h4>\n\n<p><strong>Contact From 7 version 4.8 or above is required for this version</strong>.<br />\n* fixed an issue where a notice occurred when using scan_form_tags on servers that displayed PHP notices.</p>\n\n<h4>2.2</h4>\n\n<p><strong>Contact From 7 version 4.8 or above is required for this version</strong>.<br />\n* fixed back button not working when using with Contact Form 7 version 4.8.<br />\n* fixed fields from previous steps not showing up when using with Contact Form 7 version 4.8.<br />\nThanks to @eddraw, updated deprecated functions.</p>\n\n<h4>2.1</h4>\n\n<ul>\n<li>Use Contact Form 7\'s built-in hidden form tag if version 4.6 or above is present. </li>\n</ul>\n\n<h4>2.0.9</h4>\n\n<ul>\n<li>fixed issue where using the <code>[multiform]</code> tag causes the field to blank out and not show in emails on certain servers. </li>\n</ul>\n\n<h4>2.0.8</h4>\n\n<ul>\n<li>added field_name and value to wpcf7_form_field_value filter. </li>\n</ul>\n\n<h4>2.0.7</h4>\n\n<ul>\n<li>fixed calls to deprecated CF7 functions.</li>\n<li>Increased minimum WP version to match CF7\'s specs. </li>\n</ul>\n\n<h4>2.0.6</h4>\n\n<ul>\n<li>Thanks to @eddraw for the updates! </li>\n<li>added translation: add pot file. </li>\n<li>fixed translation: use the name of the plugin as textdomain and load it. </li>\n</ul>\n\n<h4>2.0.5</h4>\n\n<ul>\n<li>added form id to wh_hide_cf7_step_message filter. </li>\n</ul>\n\n<h4>2.0.4</h4>\n\n<ul>\n<li>fixed plugin conflict. </li>\n</ul>\n\n<h4>2.0.3</h4>\n\n<ul>\n<li>fixed issue where server variables may not be defined. added some support for strings to be translatable. </li>\n</ul>\n\n<h4>2.0.2</h4>\n\n<ul>\n<li>Fix previous button not showing class attribute. </li>\n</ul>\n\n<h4>2.0.1</h4>\n\n<ul>\n<li>Minor fix to detecting if previous form was filled. </li>\n</ul>\n\n<h4>2.0</h4>\n\n<ul>\n<li>Added Form Tags to Form Tag Generator. No more needing to update the Additional Settings tab. </li>\n<li>Added error alert when form is too large. </li>\n<li>Fixed Deprecated: preg_replace() error message. </li>\n<li>Fixed certain instances where the \"Please fill out the form on the previous page\" messages displayed unexpectedly.</li>\n<li>Fixed issue where it was possible to type in the url of the next step after receiving validation errors on the current step. </li>\n</ul>\n\n<h4>1.6</h4>\n\n<ul>\n<li>Added support for when contact form 7 ajax is disabled.</li>\n</ul>\n\n<h4>1.5</h4>\n\n<ul>\n<li>Added support for free_text in checkboxes and radio buttons.</li>\n</ul>\n\n<h4>1.4.4</h4>\n\n<ul>\n<li>fix empty checkboxes causing javascript error when going back.</li>\n</ul>\n\n<h4>1.4.3</h4>\n\n<ul>\n<li>fix exclusive checkboxes not saving on back. added version to javascript.</li>\n</ul>\n\n<h4>1.4.2</h4>\n\n<ul>\n<li>fix radio button not saving on back. make sure its the last step before clearing cookies.</li>\n</ul>\n\n<h4>1.4.1</h4>\n\n<ul>\n<li>Fixed bug where tapping the Submit button on the final step submits form even with validation errors.</li>\n</ul>\n\n<h4>1.4</h4>\n\n<ul>\n<li>Updated to be compatible with Contact Form 7 version 3.9.</li>\n</ul>\n\n<h4>1.3.6</h4>\n\n<ul>\n<li>Updated readme to be more readable.</li>\n<li>Fixed issue for servers with magic quotes turned off. Fixes \"Please fill out the form on the previous page\" error.</li>\n</ul>\n\n<h4>1.3.5</h4>\n\n<ul>\n<li>Fix: Also detect contact-form-7-3rd-party-integration/hidden.php so no conflicts arise if both are activated.</li>\n</ul>\n\n<h4>1.3.4</h4>\n\n<ul>\n<li>Fix: Better detection of contact-form-7-modules plugin so no conflicts arise if both are activated.</li>\n</ul>\n\n<h4>1.3.3</h4>\n\n<ul>\n<li>Fixed back button functionality.</li>\n</ul>\n\n<h4>1.3.2</h4>\n\n<ul>\n<li>Some people are having trouble with cookies. added \'cf7msm_force_session\' filter to force to use session.</li>\n</ul>\n\n<h4>1.3.1</h4>\n\n<ul>\n<li>Added checks to prevent errors when contact form 7 is not installed.</li>\n</ul>\n\n<h4>1.3</h4>\n\n<ul>\n<li>Confused with the version numbers. apparently 1.02 is greater than 1.1?</li>\n</ul>\n\n<h4>1.1</h4>\n\n<ul>\n<li>renamed all function names to be more consistent.</li>\n<li>use cookies before falling back to session.</li>\n<li>added back shortcode so users can go back to previous step.</li>\n</ul>\n\n<h4>1.02</h4>\n\n<ul>\n<li>updated version numbers.</li>\n</ul>\n\n<h4>1.01</h4>\n\n<ul>\n<li>updated readme.</li>\n</ul>\n\n<h4>1.0</h4>\n\n<ul>\n<li>Initial release.</li>\n</ul>\";}s:14:\"upgrade_notice\";b:0;s:7:\"version\";s:5:\"4.4.2\";s:13:\"download_link\";s:388:\"https://api.freemius.com/v1/installs/17263527/updates/84136.zip?is_premium=true&authorization=FSLA+17263527%3AfzOKVhwz9if8Sizye1Kdqz7jKNgxXtdZMsbC8JZAeQR8qyxNSCve7RNA0XygIf0gaVk6kov72GdS4aG0O9Z6euhB_2kGtaXcdJt2b1q4hkwGpJH1GflHeP4SMUrhLT8uDc-t_6UQNeTa2nc9f9Dx4gJqMXwy8YTf6HzTManS18OrDhYUYHleddUNf9EynEYG0C955rSFw5-2QrOwaCFENqAcXdcg8IXKb4KJwhXbvsrGhunH8SNoV2ASmQu1Kf04PgYVD-CmFkV0bIzF1Tj_cQ\";}}s:7:\"created\";i:1740547020;s:9:\"timestamp\";i:1740550620;}s:73:\"get:/v1/installs/17263527/updates/latest.json?is_premium=true&readme=true\";O:8:\"stdClass\":3:{s:6:\"result\";O:8:\"stdClass\":21:{s:9:\"plugin_id\";s:4:\"1614\";s:12:\"developer_id\";s:4:\"1845\";s:4:\"slug\";N;s:12:\"premium_slug\";s:40:\"contact-form-7-multi-step-module-premium\";s:7:\"version\";s:5:\"4.4.2\";s:11:\"sdk_version\";s:6:\"2.11.0\";s:25:\"requires_platform_version\";s:3:\"4.7\";s:37:\"requires_programming_language_version\";N;s:20:\"tested_up_to_version\";s:3:\"6.6\";s:8:\"has_free\";b:1;s:11:\"has_premium\";b:1;s:12:\"release_mode\";s:8:\"released\";s:5:\"limit\";N;s:7:\"uniques\";i:2596;s:14:\"is_incremental\";b:1;s:2:\"id\";s:5:\"84136\";s:7:\"created\";s:19:\"2025-01-27 19:22:26\";s:7:\"updated\";s:19:\"2025-02-26 05:17:00\";s:11:\"is_released\";b:0;s:3:\"url\";s:388:\"https://api.freemius.com/v1/installs/17263527/updates/84136.zip?is_premium=true&authorization=FSLA+17263527%3Asocghj7KX4qLP2BZ5wDF2fO2tx43tG5W7iXB4ZYnWDrfpU4Nu97Wgj_urXbTB1YHy4D_A5R8ir15Z3n9IM-4WyyVrF7i_BMajkBaxc-SZ8ODbEH50uMs0-e7G8-D0oOuUTbwxxbJAoP3IzrjtxCy_QtHF7e-AedBwky8KMz7io89FBiZfKt11QDoQm3F9MIeWoi_T5o22YpFMbcJd941E3JwCO_X7tQxSPuwJKZ0_6YsR4-5-MB1eoAclNsQsowAH54bnkqgY0dmYajjs76r3g\";s:6:\"readme\";O:8:\"stdClass\":11:{s:4:\"name\";s:31:\"Contact Form 7 Multi-Step Forms\";s:4:\"slug\";s:32:\"contact-form-7-multi-step-module\";s:4:\"tags\";O:8:\"stdClass\":5:{s:14:\"contact form 7\";s:14:\"contact form 7\";s:14:\"multistep form\";s:14:\"multistep form\";s:4:\"form\";s:4:\"form\";s:14:\"multiple pages\";s:14:\"multiple pages\";s:7:\"contact\";s:7:\"contact\";}s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";N;s:6:\"tested\";s:3:\"6.6\";s:10:\"stable_tag\";s:5:\"4.4.2\";s:8:\"sections\";O:8:\"stdClass\":3:{s:11:\"description\";s:5428:\"<p>I needed a contact form that spanned across multiple pages and in the end would send an email with all the info collected. This plugin adds onto the popular Contact Form 7 plugin to do just that.</p>\n\n<p>Sample of this working is at <a href=\"https://webheadcoder.com/contact-form-7-multi-step-form/\">https://webheadcoder.com/contact-form-7-multi-step-form/</a></p>\n\n<p>Requires the <a href=\"https://wordpress.org/plugins/contact-form-7/\">Contact Form 7 plugin</a>, version 5.2 or above, by Takayuki Miyoshi.</p>\n\n<p><strong>Usage</strong></p>\n\n<ol>\n<li><p>Create one page or post for each step in your multi-step form process. If you have 3 steps, create 3 pages/posts. You will need the urls to these when creating your forms.</p></li>\n<li><p>Create a Contact Form 7 form.</p></li>\n<li><p>Place your cursor at the end of the form.</p></li>\n<li><p>On the \"Form\" tab of the Contact Form 7 form, click on the button named \"multistep\".</p></li>\n<li><p>In the window that pops up, check the checkbox next to \"First Step\" if this is the first step of your multi step forms. If this is your last step in the multi step forms, check the \"Last Step\" checkbox. All other checkboxes are optional.</p></li>\n<li><p>The Next Page URL is the url that contains your next form. If this form is the last step, you can leave the URL field blank.</p></li>\n<li><p>Click \"Insert Tag\"</p></li>\n<li><p>Save your completed form and place the form\'s shortcode into the appropriate Page/Post you created in step 1.</p></li>\n<li><p>Repeat for <strong>each form</strong> in your multi-step form process.</p></li>\n<li><p>On the last step, you probably would want to send an email. Make sure to check the \"Send Email\" checkbox in step 5. On the Mail Tab, simply enter the mail-tags as you normally would. For example if your first form has the field <code>your-email</code> you can include <code>[your-email]</code> in the Mail tab on your last form. Note: CF7 will see this as an error because <code>your-email</code> may not be displayed on the current form. You can safely ignore this error.</p></li>\n</ol>\n\n<p><strong>Multistep Tag Options</strong></p>\n\n<ul>\n<li><p><strong>Name</strong> - The name of this multistep form-tag. This is required, but is currently not being used.</p></li>\n<li><p><strong>First Step</strong> - Besides marking the first step of your multistep forms, this allows any form to act as the first step and show when no previous data has ben submitted. This is useful when you want some users to skip the first step.</p></li>\n<li><p><strong>Last Step</strong> - Besides marking the last step of you multistep forms, this clears the data from user\'s browsers. Once they submit this form they won\'t see their data populating the forms anymore.</p></li>\n<li><p><strong>Send Email</strong> - If this is checked the form will send an email like a normal Contact Form 7 submission.</p></li>\n<li><p><strong>Skip Save</strong> - If you use Flamingo or CFDB7 to save submissions to the database this prevents saving this form submission.</p></li>\n<li><p><strong>Next Page URL</strong> - This is the URL your users will go to after the form is submitted.</p>\n\n<p>[multistep multistep-123 last_step send_email skip_save \"/thank-you\"]</p></li>\n</ul>\n\n<p><strong>Additional Tags</strong></p>\n\n<pre><code>[multiform \"your-name\"]\n</code></pre>\n\n<p>The <code>multiform</code> form-tag can be used to display a field from a previous step. Replace <code>your-name</code> with the name of your field. This is only for use on the Form tab, this tag will not work in the Mail tab.</p>\n\n<pre><code>[previous \"Go Back\"]\n</code></pre>\n\n<p>The <code>previous</code> form-tag can be used to display a button to go to a previous step. Replace <code>Go Back</code> with text you want to show in the button.</p>\n\n<p><strong>Messages Tab</strong>\nWhen a visitor to your site visits the 4th step in your multi step form without filling out the 1st step, the message \"Please fill out the form on the previous page.\" will be displayed. You can change this on each form in the Messages tab.</p>\n\n<p><strong>What this plugin DOES NOT do:</strong></p>\n\n<ul>\n<li><p>This plugin does not support file uploads on every form. If you need to use file uploads make sure to place it on the last step.</p></li>\n<li><p>This plugin currently does not support \"pipes\" in the select field. See https://contactform7.com/selectable-recipient-with-pipes/ for more on what \"pipes\" is on the Contact Form 7 site.</p></li>\n<li><p>This plugin does not load another form on the same page. It only works when the forms are on separate pages. Many have asked to make it load via ajax so all forms can reside on one page. This plugin does not support that.</p></li>\n</ul>\n\n<p><strong>PRO Version</strong>\nIf you expect to have a lot of data submitted through your multi-step forms, the Pro version may be able to help you better. The PRO version uses Session Storage so it is able to handle roughly 1,000 times more data for your multiple forms. In total it can handle about 5MB vs 4KB in the free version. <strong>Currently the Pro version REQUIRES the WordPress REST API and Contact Form 7 AJAX Submission to be enabled.</strong></p>\n\n<p>Another feature the Pro version offers is the ability to skip steps with the \"Contact Form 7 - Conditional Fields plugin\". <a href=\"https://webheadcoder.com/contact-form-7-multi-step-forms/#pro\">Learn more here.</a></p>\";s:3:\"faq\";s:4311:\"<h4>The Next button doesn\'t show up</h4>\n\n<p>Like all Contact Form 7 forms, you still need to add a button to submit the form. Use the normal submit button with any label you want like so <code>[submit \"Next\"]</code>.</p>\n\n<p>The <code>multistep</code> form tag is a hidden field and tries not to add any spacing to your form. In this effort, anything directly after this tag may be hidden. To prevent this, add a carriage return after the <code>multistep</code> form tag, or just follow the directions and place the form tag at the end of the form.</p>\n\n<h4>I keep getting the \"Please fill out the form on the previous page\" message. What\'s wrong?</h4>\n\n<p>It could be one of these reasons:</p>\n\n<ol>\n<li>Your Caching system is not allowing cookies to be set in a normal way. No workarounds or fixes are planned at this time. You will need to turn off caching for cookies named cf7*.</li>\n<li>Your protocol or domain is not the same on all pages. Each page that holds a form needs to have the same protocol and domain. If your first page uses https like https://webheadcoder.com, your second page cannot be http:// or a subdomain of that.</li>\n<li>Make sure your first form has the first_step attribute in the multistep form-tag, like: <code>[multistep multistep-123 first_step \"/your-next-url/\"]</code></li>\n</ol>\n\n<h4>Why are no values being passed from one form to the next form?</h4>\n\n<p>If your form reloads the page after hitting the submit button, you either disabled the WordPress REST API or javascript for Contact Form 7 isn\'t working correctly. Please see the Contact Form 7\'s troubleshooting page for more information:\n<a href=\"https://contactform7.com/why-isnt-my-ajax-contact-form-working-correctly/\">https://contactform7.com/why-isnt-my-ajax-contact-form-working-correctly/</a></p>\n\n<h4>How can I show a summary of what the user entered or show fields from previous steps?</h4>\n\n<pre><code>[multiform \"your-name\"] \n</code></pre>\n\n<p>The multiform form-tag can be used to display a field from a previous step. Replace <code>your-name</code> with the name of your field.</p>\n\n<h4>My form values aren\'t being sent in the email. I get [multiform \"your-name\"] instead of the actual person\'s name.</h4>\n\n<p>The multiform form-tag should only be used on the Form tab. On the Mail tab follow the instructions from the Contact Fom 7 documentation. So if you wanted to show the <code>your-name</code> field, type <code>[your-name]</code>.</p>\n\n<p>It\'s also important that the last form has the multistep form-tag.</p>\n\n<h4>Can I have an email sent on the first step of the multi-step forms?</h4>\n\n<p>Yes, you can. Make sure to check the \"Send Email\" checkbox or have the send_email attribute in the multistep form-tag like: <code>[multistep multistep-123 first_step send_email \"/your-next-url/\"]</code>.</p>\n\n<h4>My forms are not working as expected. What\'s wrong?</h4>\n\n<ul>\n<li><p>Make sure you have the <code>multistep</code> tag on each and every form.</p></li>\n<li><p>It is very common for other plugins to have javascript errors which can prevent this plugin from running properly. Deactivate all other plugins and try again.</p></li>\n</ul>\n\n<h4>Why \"place your cursor at the end of the form\" before inserting the multistep tag?</h4>\n\n<p>The <code>multistep</code> form tag is a hidden field and tries not to add any spacing to your form. In this effort, anything directly after this tag may be hidden. To prevent this, add a carriage return after the <code>multistep</code> form tag, or just follow the directions and place the form tag at the end of the form.</p>\n\n<h4>How do I get Flamingo or CFDB7 to not save every form?</h4>\n\n<p>Make sure to check the \"Skip Save\" checkbox or have the skip_save attribute in the multistep form-tag like: <code>[multistep multistep-123 skip_save \"/your-next-url/\"]</code>.</p>\n\n<h4>When checkbox fields are left unchecked they appear as [field-name] in the email. How do I resolve this?</h4>\n\n<p>When checkboxes are not checked they aren\'t submitted through the form so the last step of the form doesn\'t know the unchecked checkbox field exists. To get around this issue add a hidden form tag like <code>[hidden field-name]</code> to the last step. This way the last step will either submit the previously set value or a blank value.</p>\";s:9:\"changelog\";s:11508:\"<h4>4.4.2</h4>\n\n<ul>\n<li>updated Freemius. </li>\n</ul>\n\n<h4>4.4.1</h4>\n\n<ul>\n<li>fixed error when cookie has an array in it. </li>\n<li>updated tag generator to be compatible with CF7 6.0. </li>\n<li>updated Freemius. </li>\n</ul>\n\n<h4>4.4</h4>\n\n<ul>\n<li>fixed checkbox and radio free text not saving between forms. </li>\n<li>Upped minimum CF7 version to 5.2. </li>\n<li>updated Freemius. </li>\n</ul>\n\n<h4>4.3.1</h4>\n\n<ul>\n<li>fixed PHP warning. </li>\n<li>updated Freemius. </li>\n</ul>\n\n<h4>4.3</h4>\n\n<ul>\n<li>added multiform form tags to Mail tab. Thanks to @tkc49! </li>\n<li>updated Freemius. </li>\n</ul>\n\n<h4>4.2.1</h4>\n\n<ul>\n<li>fixed PHP warning. </li>\n<li>updated checkboxes to trigger the checked event when form is repopulated. </li>\n</ul>\n\n<h4>4.2</h4>\n\n<ul>\n<li>fixed multiform tags for CF7 5.7.3. </li>\n<li>changed \"form field\" tag generator name to \"multiform\". </li>\n<li>updated Freemius. </li>\n</ul>\n\n<h4>4.1.92</h4>\n\n<ul>\n<li>fixed values not saving across steps on Safari browsers. </li>\n</ul>\n\n<h4>4.1.91</h4>\n\n<ul>\n<li>updated Freemius to v2.4.3. </li>\n</ul>\n\n<h4>4.1.9</h4>\n\n<ul>\n<li>updated logo images to be within the plugin to comply with WordPress requirements. </li>\n</ul>\n\n<h4>4.1.8</h4>\n\n<ul>\n<li>security update: HTML is now escaped when being output using the multiform tag. Additional sanitization changes. </li>\n</ul>\n\n<h4>4.1.7</h4>\n\n<ul>\n<li>fixed next url to support external urls. </li>\n</ul>\n\n<h4>4.1.6</h4>\n\n<ul>\n<li>fixed conditional fields not trigerring after form population. </li>\n<li>fixed 500 error due to conflict with Conditional Fields plugin expecting an array in cookie values. </li>\n</ul>\n\n<h4>4.1.5</h4>\n\n<ul>\n<li>fixed prev button not showing up when next url from previous form has a querystring in it. </li>\n<li>fixed issue with cookie being set on non-multistep forms. </li>\n<li>PRO: added compatibility for repeaters in Conditional Fields Pro. </li>\n</ul>\n\n<h4>4.1.4</h4>\n\n<ul>\n<li>fixed error when caching is enabled. </li>\n</ul>\n\n<h4>4.1.2</h4>\n\n<ul>\n<li>updated version to bust cache. </li>\n</ul>\n\n<h4>4.1.1</h4>\n\n<ul>\n<li>updated for CF7 5.4.</li>\n<li>updated freemius. </li>\n</ul>\n\n<h4>4.1</h4>\n\n<ul>\n<li>added sanitization similar to the core CF7 plugin. </li>\n</ul>\n\n<h4>4.0.9</h4>\n\n<ul>\n<li>updated freemius. </li>\n</ul>\n\n<h4>4.0.8</h4>\n\n<ul>\n<li>fixed values being saved when form submission is invalid. </li>\n</ul>\n\n<h4>4.0.7</h4>\n\n<ul>\n<li>fixed success message showing when not on the last step due to a change in Contact Form 7 v5.2.1. </li>\n<li>added Skip Save for Advanced Contact form 7 DB plugin. Thanks to @undersound. </li>\n</ul>\n\n<h4>4.0.6</h4>\n\n<ul>\n<li>PRO: fixed fields not going through when form ids were not in the right order. </li>\n</ul>\n\n<h4>4.0.5</h4>\n\n<ul>\n<li>PRO: fixed checkboxes not being passed on to next form. </li>\n</ul>\n\n<h4>4.0.4</h4>\n\n<ul>\n<li>PRO: fixed fields showing up out of order when viewed in Flamingo (part 2). </li>\n</ul>\n\n<h4>4.0.3</h4>\n\n<ul>\n<li>PRO: fixed fields showing up out of order when viewed in Flamingo. </li>\n</ul>\n\n<h4>4.0.2</h4>\n\n<ul>\n<li>fixed get_magic_quotes_gpc() deprecated warning when running PHP 7.4. </li>\n<li>fixed slashes appearing in free version</li>\n<li>fixed previous button not showing when the multiform tag\'s next url doesn\'t match the page url because of a trailing slash.</li>\n<li>added a filter to fallback to sessions. </li>\n</ul>\n\n<h4>4.0.1</h4>\n\n<ul>\n<li>fixed issue where the multistep cookie was being set on non multistep forms. </li>\n</ul>\n\n<h4>4.0</h4>\n\n<p>In Version 4.0 the format of the multistep form-tag has changed dramatically. The old format is backwards compatible and will still work until January 2021. Beyond that the old format is not guaranteed to work with newer versions. More Info: <a href=\"https://webheadcoder.com/contact-form-7-multi-step-forms-update-4-0/\">https://webheadcoder.com/contact-form-7-multi-step-forms-update-4-0/</a></p>\n\n<ul>\n<li>added new multiform form-tag format to allow for options to send email and not save to database. </li>\n<li>added customizable error on the Messages tab. </li>\n<li>added admin notice to notify user of large form submissions.</li>\n<li>PRO: added compatibility to skip steps with the CF7 Conditional Fields plugin. </li>\n</ul>\n\n<h4>3.2</h4>\n\n<ul>\n<li>added review notice to get to know how users like this plugin. </li>\n<li>fixed WP warning when CF7 is not installed. </li>\n<li>updated freemius.</li>\n</ul>\n\n<h4>3.1.2</h4>\n\n<ul>\n<li>added ability to skip over steps if it was previously submitted. </li>\n</ul>\n\n<h4>3.1.1</h4>\n\n<ul>\n<li>updated freemius. </li>\n</ul>\n\n<h4>3.1</h4>\n\n<ul>\n<li>fixed issue where CF7 MSM files still loaded even when WPCF7_LOAD_JS is set to false. </li>\n<li>fixed success message not showing for forms with a wrapping inner element.</li>\n<li>fixed multi-select population. </li>\n<li>updated how select is set so it can trigger javascript changes. </li>\n</ul>\n\n<h4>3.0.9</h4>\n\n<ul>\n<li>fixed issue where WPCF7_LOAD_JS is set to false and resulted in 302 error. thanks to @zetoun17.</li>\n<li>security fix </li>\n</ul>\n\n<h4>3.0.8</h4>\n\n<ul>\n<li>added missing freemius files </li>\n</ul>\n\n<h4>3.0.7</h4>\n\n<ul>\n<li>updated freemius</li>\n</ul>\n\n<h4>3.0.6</h4>\n\n<ul>\n<li>PRO: fixed \"Cannot use a scalar value as an array\" warning when CF7 Conditional Fields plugin is active. </li>\n</ul>\n\n<h4>3.0.5</h4>\n\n<ul>\n<li>PRO: fixed compatibility with Contact Form 7 Conditional Fields plugin to only show group that is supposed to show. </li>\n</ul>\n\n<h4>3.0.4</h4>\n\n<ul>\n<li>deprecated wpcf7_form_field_value filters. </li>\n<li>added cf7msm_form_field_value filters. </li>\n</ul>\n\n<h4>3.0.3</h4>\n\n<ul>\n<li>PRO: fixed conditional fields (from the Conditional Fields for Contact Form 7 plugin) not showing in email. </li>\n</ul>\n\n<h4>3.0.2</h4>\n\n<ul>\n<li>fixed quotes in values causing errors. </li>\n<li>added plugin action links. </li>\n</ul>\n\n<h4>3.0.1</h4>\n\n<ul>\n<li>fixed session storage not clearing after final step was submitted. </li>\n<li>fixed form not hiding after final step was submitted. Thanks to @tschodde. </li>\n</ul>\n\n<h4>3.0</h4>\n\n<ul>\n<li>changed internal field names to be prefixed with cf7msm. </li>\n<li>added PRO version to handle long forms. </li>\n<li>fixed minor issues. </li>\n</ul>\n\n<h4>2.26</h4>\n\n<ul>\n<li>updated i18n code. </li>\n</ul>\n\n<h4>2.25</h4>\n\n<p><strong>Contact From 7 version 4.8 or above is required for this version</strong>.<br />\n* fixed incompatible JSON_UNESCAPED_UNICODE for PHP versions < 5.4.</p>\n\n<h4>2.24</h4>\n\n<p><strong>Contact From 7 version 4.8 or above is required for this version</strong>.<br />\n* fixed not redirecting to next step on older iPad browsers.<br />\n* fixed illegal offset exception warning.<br />\n* added JSON_UNESCAPED_UNICODE for czech language.</p>\n\n<h4>2.23</h4>\n\n<p><strong>Contact From 7 version 4.8 or above is required for this version</strong>.<br />\n* fixed back button on firefox.<br />\n* fixed url not displaying correctly when it has the & symbol.</p>\n\n<h4>2.22</h4>\n\n<p><strong>Contact From 7 version 4.8 or above is required for this version</strong>.<br />\n* fixed back button going back more than one step.</p>\n\n<h4>2.21</h4>\n\n<p><strong>Contact From 7 version 4.8 or above is required for this version</strong>.<br />\n* fixed an issue where a notice occurred when using scan_form_tags on servers that displayed PHP notices.</p>\n\n<h4>2.2</h4>\n\n<p><strong>Contact From 7 version 4.8 or above is required for this version</strong>.<br />\n* fixed back button not working when using with Contact Form 7 version 4.8.<br />\n* fixed fields from previous steps not showing up when using with Contact Form 7 version 4.8.<br />\nThanks to @eddraw, updated deprecated functions.</p>\n\n<h4>2.1</h4>\n\n<ul>\n<li>Use Contact Form 7\'s built-in hidden form tag if version 4.6 or above is present. </li>\n</ul>\n\n<h4>2.0.9</h4>\n\n<ul>\n<li>fixed issue where using the <code>[multiform]</code> tag causes the field to blank out and not show in emails on certain servers. </li>\n</ul>\n\n<h4>2.0.8</h4>\n\n<ul>\n<li>added field_name and value to wpcf7_form_field_value filter. </li>\n</ul>\n\n<h4>2.0.7</h4>\n\n<ul>\n<li>fixed calls to deprecated CF7 functions.</li>\n<li>Increased minimum WP version to match CF7\'s specs. </li>\n</ul>\n\n<h4>2.0.6</h4>\n\n<ul>\n<li>Thanks to @eddraw for the updates! </li>\n<li>added translation: add pot file. </li>\n<li>fixed translation: use the name of the plugin as textdomain and load it. </li>\n</ul>\n\n<h4>2.0.5</h4>\n\n<ul>\n<li>added form id to wh_hide_cf7_step_message filter. </li>\n</ul>\n\n<h4>2.0.4</h4>\n\n<ul>\n<li>fixed plugin conflict. </li>\n</ul>\n\n<h4>2.0.3</h4>\n\n<ul>\n<li>fixed issue where server variables may not be defined. added some support for strings to be translatable. </li>\n</ul>\n\n<h4>2.0.2</h4>\n\n<ul>\n<li>Fix previous button not showing class attribute. </li>\n</ul>\n\n<h4>2.0.1</h4>\n\n<ul>\n<li>Minor fix to detecting if previous form was filled. </li>\n</ul>\n\n<h4>2.0</h4>\n\n<ul>\n<li>Added Form Tags to Form Tag Generator. No more needing to update the Additional Settings tab. </li>\n<li>Added error alert when form is too large. </li>\n<li>Fixed Deprecated: preg_replace() error message. </li>\n<li>Fixed certain instances where the \"Please fill out the form on the previous page\" messages displayed unexpectedly.</li>\n<li>Fixed issue where it was possible to type in the url of the next step after receiving validation errors on the current step. </li>\n</ul>\n\n<h4>1.6</h4>\n\n<ul>\n<li>Added support for when contact form 7 ajax is disabled.</li>\n</ul>\n\n<h4>1.5</h4>\n\n<ul>\n<li>Added support for free_text in checkboxes and radio buttons.</li>\n</ul>\n\n<h4>1.4.4</h4>\n\n<ul>\n<li>fix empty checkboxes causing javascript error when going back.</li>\n</ul>\n\n<h4>1.4.3</h4>\n\n<ul>\n<li>fix exclusive checkboxes not saving on back. added version to javascript.</li>\n</ul>\n\n<h4>1.4.2</h4>\n\n<ul>\n<li>fix radio button not saving on back. make sure its the last step before clearing cookies.</li>\n</ul>\n\n<h4>1.4.1</h4>\n\n<ul>\n<li>Fixed bug where tapping the Submit button on the final step submits form even with validation errors.</li>\n</ul>\n\n<h4>1.4</h4>\n\n<ul>\n<li>Updated to be compatible with Contact Form 7 version 3.9.</li>\n</ul>\n\n<h4>1.3.6</h4>\n\n<ul>\n<li>Updated readme to be more readable.</li>\n<li>Fixed issue for servers with magic quotes turned off. Fixes \"Please fill out the form on the previous page\" error.</li>\n</ul>\n\n<h4>1.3.5</h4>\n\n<ul>\n<li>Fix: Also detect contact-form-7-3rd-party-integration/hidden.php so no conflicts arise if both are activated.</li>\n</ul>\n\n<h4>1.3.4</h4>\n\n<ul>\n<li>Fix: Better detection of contact-form-7-modules plugin so no conflicts arise if both are activated.</li>\n</ul>\n\n<h4>1.3.3</h4>\n\n<ul>\n<li>Fixed back button functionality.</li>\n</ul>\n\n<h4>1.3.2</h4>\n\n<ul>\n<li>Some people are having trouble with cookies. added \'cf7msm_force_session\' filter to force to use session.</li>\n</ul>\n\n<h4>1.3.1</h4>\n\n<ul>\n<li>Added checks to prevent errors when contact form 7 is not installed.</li>\n</ul>\n\n<h4>1.3</h4>\n\n<ul>\n<li>Confused with the version numbers. apparently 1.02 is greater than 1.1?</li>\n</ul>\n\n<h4>1.1</h4>\n\n<ul>\n<li>renamed all function names to be more consistent.</li>\n<li>use cookies before falling back to session.</li>\n<li>added back shortcode so users can go back to previous step.</li>\n</ul>\n\n<h4>1.02</h4>\n\n<ul>\n<li>updated version numbers.</li>\n</ul>\n\n<h4>1.01</h4>\n\n<ul>\n<li>updated readme.</li>\n</ul>\n\n<h4>1.0</h4>\n\n<ul>\n<li>Initial release.</li>\n</ul>\";}s:14:\"upgrade_notice\";b:0;s:7:\"version\";s:5:\"4.4.2\";s:13:\"download_link\";s:388:\"https://api.freemius.com/v1/installs/17263527/updates/84136.zip?is_premium=true&authorization=FSLA+17263527%3Asocghj7KX4qLP2BZ5wDF2fO2tx43tG5W7iXB4ZYnWDrfpU4Nu97Wgj_urXbTB1YHy4D_A5R8ir15Z3n9IM-4WyyVrF7i_BMajkBaxc-SZ8ODbEH50uMs0-e7G8-D0oOuUTbwxxbJAoP3IzrjtxCy_QtHF7e-AedBwky8KMz7io89FBiZfKt11QDoQm3F9MIeWoi_T5o22YpFMbcJd941E3JwCO_X7tQxSPuwJKZ0_6YsR4-5-MB1eoAclNsQsowAH54bnkqgY0dmYajjs76r3g\";}}s:7:\"created\";i:1740547020;s:9:\"timestamp\";i:1740633420;}s:90:\"get:/v1/installs/17263527/updates/latest.json?is_premium=true&newer_than=4.4.2&readme=true\";O:8:\"stdClass\":3:{s:6:\"result\";O:8:\"stdClass\":1:{s:5:\"error\";O:8:\"stdClass\":3:{s:7:\"message\";s:40:\"There\'s no newer release of the product.\";s:4:\"code\";s:23:\"newer_version_not_found\";s:4:\"http\";i:404;}}s:7:\"created\";i:1744411054;s:9:\"timestamp\";i:1744411054;}}','off'),(548,'_cf7msm_stats','a:2:{s:12:\"install_date\";i:1740546854;s:5:\"count\";i:2;}','auto'),(549,'_cf7msm_version','4.4.2','auto'),(554,'fs_gdpr','a:1:{s:2:\"u1\";a:1:{s:18:\"show_opt_in_notice\";b:0;}}','auto'),(555,'_site_transient_timeout_fs_locked_1','2055906867','off'),(556,'_site_transient_fs_locked_1','1','off'),(565,'acf_first_activated_version','6.3.5','on'),(566,'acf_site_health','{\"version\":\"6.3.12\",\"plugin_type\":\"PRO\",\"update_source\":\"ACF Direct\",\"activated\":true,\"activated_url\":\"https:\\/\\/tenjokure-n.com\",\"license_type\":\"Agency\",\"license_status\":\"active\",\"subscription_expires\":1756253010,\"wp_version\":\"6.7.2\",\"mysql_version\":\"8.0.39\",\"is_multisite\":false,\"active_theme\":{\"name\":\"\\u3000tenjokure-n\",\"version\":\"1.0.0\",\"theme_uri\":\"\",\"stylesheet\":false},\"active_plugins\":{\"advanced-custom-fields-pro\\/acf.php\":{\"name\":\"Advanced Custom Fields PRO\",\"version\":\"6.3.12\",\"plugin_uri\":\"https:\\/\\/www.advancedcustomfields.com\"},\"akismet\\/akismet.php\":{\"name\":\"Akismet Anti-spam: Spam Protection\",\"version\":\"5.3.7\",\"plugin_uri\":\"https:\\/\\/akismet.com\\/\"},\"all-in-one-seo-pack\\/all_in_one_seo_pack.php\":{\"name\":\"All in One SEO\",\"version\":\"4.8.1.1\",\"plugin_uri\":\"https:\\/\\/aioseo.com\\/\"},\"backwpup\\/backwpup.php\":{\"name\":\"BackWPup\",\"version\":\"5.0.7\",\"plugin_uri\":\"https:\\/\\/backwpup.com\\/\"},\"broken-link-checker-seo\\/aioseo-broken-link-checker.php\":{\"name\":\"Broken Link Checker by AIOSEO\",\"version\":\"1.2.3\",\"plugin_uri\":\"https:\\/\\/aioseo.com\\/broken-link-checker\"},\"contact-form-7\\/wp-contact-form-7.php\":{\"name\":\"Contact Form 7\",\"version\":\"6.0.4\",\"plugin_uri\":\"https:\\/\\/contactform7.com\\/\"},\"contact-form-7-multi-step-module-premium\\/contact-form-7-multi-step-module.php\":{\"name\":\"Contact Form 7 Multi-Step Forms (PRO)\",\"version\":\"4.4.2\",\"plugin_uri\":\"http:\\/\\/www.mymonkeydo.com\\/contact-form-7-multi-step-module\\/\"},\"ewww-image-optimizer\\/ewww-image-optimizer.php\":{\"name\":\"EWWW Image Optimizer\",\"version\":\"8.1.3\",\"plugin_uri\":\"https:\\/\\/wordpress.org\\/plugins\\/ewww-image-optimizer\\/\"},\"google-analytics-for-wordpress\\/googleanalytics.php\":{\"name\":\"Google Analytics for WordPress by MonsterInsights\",\"version\":\"9.4.1\",\"plugin_uri\":\"https:\\/\\/www.monsterinsights.com\\/?utm_source=liteplugin&utm_medium=pluginheader&utm_campaign=pluginurl&utm_content=7%2E0%2E0\"},\"imsanity\\/imsanity.php\":{\"name\":\"Imsanity\",\"version\":\"2.8.6\",\"plugin_uri\":\"https:\\/\\/wordpress.org\\/plugins\\/imsanity\\/\"},\"optinmonster\\/optin-monster-wp-api.php\":{\"name\":\"OptinMonster\",\"version\":\"2.16.16\",\"plugin_uri\":\"https:\\/\\/optinmonster.com\"},\"siteguard\\/siteguard.php\":{\"name\":\"SiteGuard WP Plugin\",\"version\":\"1.7.8\",\"plugin_uri\":\"http:\\/\\/www.jp-secure.com\\/cont\\/products\\/siteguard_wp_plugin\\/index_en.html\"},\"google-site-kit\\/google-site-kit.php\":{\"name\":\"Site Kit by Google\",\"version\":\"1.150.0\",\"plugin_uri\":\"https:\\/\\/sitekit.withgoogle.com\"},\"wp-mail-smtp\\/wp_mail_smtp.php\":{\"name\":\"WP Mail SMTP\",\"version\":\"4.4.0\",\"plugin_uri\":\"https:\\/\\/wpmailsmtp.com\\/\"}},\"ui_field_groups\":\"0\",\"php_field_groups\":\"0\",\"json_field_groups\":\"0\",\"rest_field_groups\":\"0\",\"number_of_fields_by_type\":[],\"number_of_third_party_fields_by_type\":[],\"post_types_enabled\":true,\"ui_post_types\":\"6\",\"json_post_types\":\"0\",\"ui_taxonomies\":\"4\",\"json_taxonomies\":\"0\",\"ui_options_pages_enabled\":true,\"ui_options_pages\":\"0\",\"json_options_pages\":\"0\",\"php_options_pages\":\"0\",\"rest_api_format\":\"light\",\"registered_acf_blocks\":\"0\",\"blocks_per_api_version\":[],\"blocks_per_acf_block_version\":[],\"blocks_using_post_meta\":\"0\",\"preload_blocks\":true,\"admin_ui_enabled\":true,\"field_type-modal_enabled\":true,\"field_settings_tabs_enabled\":false,\"shortcode_enabled\":false,\"registered_acf_forms\":\"0\",\"json_save_paths\":1,\"json_load_paths\":1,\"event_first_activated_pro\":1740547025,\"last_updated\":1744175845}','off'),(568,'acf_version','6.4.0.1','auto'),(573,'acf_pro_license','YToyOntzOjM6ImtleSI7czo3MjoiTURBMU5XRmlOak5qTVdZM01HVTRZekk1TW1FMU0ySTBZbVUxT0RjeFlXVTFZemN5TXpNMVl6WXpNemRoTVRrM01HWmxORGd3IjtzOjM6InVybCI7czoyMzoiaHR0cHM6Ly90ZW5qb2t1cmUtbi5jb20iO30=','off'),(574,'acf_pro_license_status','a:11:{s:6:\"status\";s:6:\"active\";s:7:\"created\";i:1724717010;s:6:\"expiry\";i:1756253010;s:4:\"name\";s:6:\"Agency\";s:8:\"lifetime\";b:0;s:8:\"refunded\";b:0;s:17:\"view_licenses_url\";s:62:\"https://www.advancedcustomfields.com/my-account/view-licenses/\";s:23:\"manage_subscription_url\";s:73:\"https://www.advancedcustomfields.com/my-account/view-subscription/531979/\";s:9:\"error_msg\";s:0:\"\";s:10:\"next_check\";i:1744462843;s:16:\"legacy_multisite\";b:0;}','on'),(1523,'ewww_image_optimizer_wizard_complete','1','off'),(2005,'category_children','a:0:{}','auto'),(2123,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','off'),(2207,'secret_key','Q#?>u!Yx4+zYwO<;K3/=y~sN[@WeT$XQ`bNLJFdjeXhE`/f^h!#w(vS|L?jTeG<E','off'),(2245,'aioseo_options_localized','a:22:{s:28:\"breadcrumbs_breadcrumbPrefix\";s:0:\"\";s:25:\"breadcrumbs_archiveFormat\";s:47:\"Archives for #breadcrumb_archive_post_type_name\";s:30:\"breadcrumbs_searchResultFormat\";s:46:\"Search Results for \'#breadcrumb_search_string\'\";s:26:\"breadcrumbs_errorFormat404\";s:20:\"404 - Page Not Found\";s:32:\"social_facebook_general_siteName\";s:34:\"#site_title #separator_sa #tagline\";s:30:\"social_facebook_homePage_title\";s:0:\"\";s:36:\"social_facebook_homePage_description\";s:0:\"\";s:29:\"social_twitter_homePage_title\";s:0:\"\";s:35:\"social_twitter_homePage_description\";s:0:\"\";s:33:\"searchAppearance_global_siteTitle\";s:34:\"#site_title #separator_sa #tagline\";s:39:\"searchAppearance_global_metaDescription\";s:8:\"#tagline\";s:32:\"searchAppearance_global_keywords\";s:0:\"\";s:37:\"searchAppearance_advanced_pagedFormat\";s:31:\"#separator_sa Page #page_number\";s:38:\"searchAppearance_archives_author_title\";s:38:\"#author_name #separator_sa #site_title\";s:48:\"searchAppearance_archives_author_metaDescription\";s:11:\"#author_bio\";s:50:\"searchAppearance_archives_author_advanced_keywords\";s:0:\"\";s:36:\"searchAppearance_archives_date_title\";s:39:\"#archive_date #separator_sa #site_title\";s:46:\"searchAppearance_archives_date_metaDescription\";s:0:\"\";s:48:\"searchAppearance_archives_date_advanced_keywords\";s:0:\"\";s:38:\"searchAppearance_archives_search_title\";s:38:\"#search_term #separator_sa #site_title\";s:48:\"searchAppearance_archives_search_metaDescription\";s:0:\"\";s:50:\"searchAppearance_archives_search_advanced_keywords\";s:0:\"\";}','auto'),(2246,'new_admin_email','cs@acsport.net','auto'),(3164,'ewww_image_optimizer_dismiss_review_notice','1','off'),(3174,'action_scheduler_migration_status','complete','auto'),(3177,'ewww_image_optimizer_webp_conversion_method','local','auto'),(4398,'widget_akismet_widget','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(4399,'akismet_strictness','0','auto'),(4400,'akismet_show_user_comments_approved','0','auto'),(4401,'akismet_comment_form_privacy_notice','hide','auto'),(4402,'wordpress_api_key','80ee5fbdad4f','auto'),(4403,'akismet_spam_count','0','auto'),(4404,'auto_update_plugins','a:7:{i:0;s:34:\"advanced-custom-fields-pro/acf.php\";i:1;s:19:\"akismet/akismet.php\";i:2;s:43:\"all-in-one-seo-pack/all_in_one_seo_pack.php\";i:3;s:29:\"wp-mail-smtp/wp_mail_smtp.php\";i:4;s:35:\"google-site-kit/google-site-kit.php\";i:5;s:21:\"imsanity/imsanity.php\";i:6;s:45:\"ewww-image-optimizer/ewww-image-optimizer.php\";}','off'),(4405,'backwpup_cfg_hash','916948','off'),(4406,'backwpup_activation_time','1741926972','off'),(4407,'backwpup_onboarding','','off'),(4408,'backwpup_backup_files_job_id','1','off'),(4409,'backwpup_backup_database_job_id','1','off'),(4410,'backwpup_jobs','a:2:{i:1;a:38:{s:9:\"backupdir\";s:32:\"uploads/backwpup/916948/backups/\";s:10:\"maxbackups\";i:15;s:18:\"backupsyncnodelete\";b:0;s:12:\"destinations\";a:1:{i:0;s:6:\"FOLDER\";}s:13:\"archiveformat\";s:4:\".tar\";s:4:\"name\";s:25:\"Files and Database Backup\";s:5:\"jobid\";i:1;s:10:\"backuptype\";s:7:\"archive\";s:4:\"type\";a:3:{i:0;s:4:\"FILE\";i:1;s:6:\"DBDUMP\";i:2;s:8:\"WPPLUGIN\";}s:14:\"mailaddresslog\";s:14:\"cs@acsport.net\";s:20:\"mailaddresssenderlog\";s:111:\"BackWPup 天井クレーンドットコム 天井クレーン点検メンテナンス専門店 <cs@acsport.net>\";s:13:\"mailerroronly\";b:1;s:17:\"archiveencryption\";b:0;s:11:\"archivename\";s:24:\"%Y-%m-%d_%H-%i-%s_%hash%\";s:4:\"cron\";s:9:\"0 0 * * *\";s:10:\"activetype\";s:6:\"wpcron\";s:11:\"fileexclude\";s:0:\"\";s:10:\"dirinclude\";s:0:\"\";s:19:\"backupexcludethumbs\";b:0;s:18:\"backupspecialfiles\";b:1;s:10:\"backuproot\";b:1;s:17:\"backupabsfolderup\";b:0;s:13:\"backupcontent\";b:1;s:13:\"backupplugins\";b:1;s:12:\"backupthemes\";b:1;s:13:\"backupuploads\";b:1;s:21:\"backuprootexcludedirs\";a:0:{}s:24:\"backupcontentexcludedirs\";a:1:{i:0;s:7:\"upgrade\";}s:24:\"backuppluginsexcludedirs\";a:1:{i:0;s:8:\"backwpup\";}s:23:\"backupthemesexcludedirs\";a:0:{}s:24:\"backupuploadsexcludedirs\";a:0:{}s:21:\"dbdumpfilecompression\";s:0:\"\";s:10:\"dbdumpfile\";s:5:\"local\";s:13:\"dbdumpexclude\";a:0:{}s:7:\"lastrun\";i:1744419640;s:7:\"logfile\";s:124:\"/home/saito-kouatsu/www/tenjokure-n.com/wp-content/uploads/backwpup/916948/logs/backwpup_log_fab848_2025-04-12_01-00-40.html\";s:21:\"lastbackupdownloadurl\";s:154:\"https://tenjokure-n.com/wp-admin/admin.php?page=backwpupbackups&action=downloadfolder&file=2025-04-12_01-00-40_J6IWSSEX01_FILE-DBDUMP-WPPLUGIN.tar&jobid=1\";s:11:\"lastruntime\";i:8;}i:2;a:34:{s:9:\"backupdir\";s:32:\"uploads/backwpup/916948/backups/\";s:10:\"maxbackups\";i:15;s:18:\"backupsyncnodelete\";b:0;s:12:\"destinations\";a:1:{i:0;s:6:\"FOLDER\";}s:13:\"archiveformat\";s:4:\".tar\";s:4:\"name\";s:15:\"Database Backup\";s:5:\"jobid\";i:2;s:10:\"backuptype\";s:7:\"archive\";s:4:\"type\";a:1:{i:0;s:6:\"DBDUMP\";}s:14:\"mailaddresslog\";s:14:\"cs@acsport.net\";s:20:\"mailaddresssenderlog\";s:111:\"BackWPup 天井クレーンドットコム 天井クレーン点検メンテナンス専門店 <cs@acsport.net>\";s:13:\"mailerroronly\";b:1;s:17:\"archiveencryption\";b:0;s:11:\"archivename\";s:24:\"%Y-%m-%d_%H-%i-%s_%hash%\";s:4:\"cron\";s:9:\"0 0 * * *\";s:10:\"activetype\";s:0:\"\";s:11:\"fileexclude\";s:0:\"\";s:10:\"dirinclude\";s:0:\"\";s:19:\"backupexcludethumbs\";b:0;s:18:\"backupspecialfiles\";b:1;s:10:\"backuproot\";b:1;s:17:\"backupabsfolderup\";b:0;s:13:\"backupcontent\";b:1;s:13:\"backupplugins\";b:1;s:12:\"backupthemes\";b:1;s:13:\"backupuploads\";b:1;s:21:\"backuprootexcludedirs\";a:0:{}s:24:\"backupcontentexcludedirs\";a:1:{i:0;s:7:\"upgrade\";}s:24:\"backuppluginsexcludedirs\";a:1:{i:0;s:8:\"backwpup\";}s:23:\"backupthemesexcludedirs\";a:0:{}s:24:\"backupuploadsexcludedirs\";a:0:{}s:21:\"dbdumpfilecompression\";s:0:\"\";s:10:\"dbdumpfile\";s:5:\"local\";s:13:\"dbdumpexclude\";a:0:{}}}','off'),(4411,'backwpup_version','5.0.7','off'),(4412,'backwpup_cfg_showadminbar','1','off'),(4413,'backwpup_cfg_showfoldersize','','off'),(4414,'backwpup_cfg_protectfolders','1','off'),(4415,'backwpup_cfg_keepplugindata','','off'),(4416,'backwpup_cfg_jobmaxexecutiontime','30','off'),(4417,'backwpup_cfg_jobstepretry','3','off'),(4418,'backwpup_cfg_jobrunauthkey','8a96efa8','off'),(4419,'backwpup_cfg_loglevel','normal_translated','off'),(4420,'backwpup_cfg_jobwaittimems','0','off'),(4421,'backwpup_cfg_jobdooutput','0','off'),(4422,'backwpup_cfg_windows','0','off'),(4423,'backwpup_cfg_maxlogs','30','off'),(4424,'backwpup_cfg_gzlogs','0','off'),(4425,'backwpup_cfg_logfolder','uploads/backwpup/916948/logs/','off'),(4426,'backwpup_cfg_httpauthuser','','off'),(4427,'backwpup_cfg_httpauthpassword','','off'),(4430,'backwpup_dinotopt_informations_505_notice','1','off'),(4436,'googlesitekit_db_version','1.129.0','auto'),(4437,'googlesitekit_has_connected_admins','1','auto'),(4439,'wp_mail_smtp_initial_version','4.4.0','off'),(4440,'wp_mail_smtp_version','4.4.0','off'),(4441,'wp_mail_smtp','a:14:{s:4:\"mail\";a:6:{s:10:\"from_email\";s:24:\"no-reply@tenjokure-n.com\";s:9:\"from_name\";s:33:\"天井クレーンドットコム\";s:6:\"mailer\";s:4:\"smtp\";s:11:\"return_path\";b:1;s:16:\"from_email_force\";b:1;s:15:\"from_name_force\";b:1;}s:4:\"smtp\";a:7:{s:7:\"autotls\";b:1;s:4:\"auth\";b:1;s:4:\"host\";s:17:\"mss546.kagoya.net\";s:10:\"encryption\";s:3:\"tls\";s:4:\"port\";i:587;s:4:\"user\";s:24:\"no-reply@tenjokure-n.com\";s:4:\"pass\";s:72:\"+diIypgWsWjMlgQji0df6wVc9qeG1LMalpzBkpAq4/0WVM3JGXSZk+6/SttdaQV00j1+uFg=\";}s:7:\"general\";a:1:{s:29:\"summary_report_email_disabled\";b:0;}s:9:\"sendlayer\";a:1:{s:7:\"api_key\";s:0:\"\";}s:7:\"smtpcom\";a:2:{s:7:\"api_key\";s:0:\"\";s:7:\"channel\";s:0:\"\";}s:10:\"sendinblue\";a:2:{s:7:\"api_key\";s:0:\"\";s:6:\"domain\";s:0:\"\";}s:12:\"elasticemail\";a:1:{s:7:\"api_key\";s:0:\"\";}s:5:\"gmail\";a:2:{s:9:\"client_id\";s:0:\"\";s:13:\"client_secret\";s:0:\"\";}s:7:\"mailgun\";a:3:{s:7:\"api_key\";s:0:\"\";s:6:\"domain\";s:0:\"\";s:6:\"region\";s:2:\"US\";}s:7:\"mailjet\";a:2:{s:7:\"api_key\";s:0:\"\";s:10:\"secret_key\";s:0:\"\";}s:8:\"postmark\";a:2:{s:16:\"server_api_token\";s:0:\"\";s:14:\"message_stream\";s:0:\"\";}s:8:\"sendgrid\";a:2:{s:7:\"api_key\";s:0:\"\";s:6:\"domain\";s:0:\"\";}s:7:\"smtp2go\";a:1:{s:7:\"api_key\";s:0:\"\";}s:9:\"sparkpost\";a:2:{s:7:\"api_key\";s:0:\"\";s:6:\"region\";s:2:\"US\";}}','off'),(4442,'wp_mail_smtp_activated_time','1741927065','off'),(4443,'wp_mail_smtp_activated','a:1:{s:4:\"lite\";i:1741927065;}','auto'),(4448,'wp_mail_smtp_migration_version','5','on'),(4449,'wp_mail_smtp_debug_events_db_version','1','on'),(4450,'wp_mail_smtp_activation_prevent_redirect','1','auto'),(4451,'wp_mail_smtp_review_notice','a:2:{s:4:\"time\";i:1743230117;s:9:\"dismissed\";b:1;}','auto'),(4453,'wp_mail_smtp_notifications','a:4:{s:6:\"update\";i:1744396661;s:4:\"feed\";a:0:{}s:6:\"events\";a:0:{}s:9:\"dismissed\";a:0:{}}','auto'),(4457,'_transient_googlesitekit_verification_meta_tags','a:0:{}','on'),(4458,'googlesitekit_active_modules','a:2:{i:0;s:18:\"pagespeed-insights\";i:1;s:11:\"analytics-4\";}','auto'),(4459,'googlesitekit_credentials','+RKT//hWN2oCCy0bhGY6U3JCMlJocFZ2dmxDZEZ0WEZQU2J5VDBYZUlUN1R5RW9XVEcwajIzKzA5Rk8yQU93Tm5mNllGQy9MVldZSVVvKy85WlBvQ0MrZHVZTDVROE5nSjMvY3grTjlDL0dhR3pxTFkzTENiVUFhL0swNldESE9vbWllYnFUODVZUy9VVDQ4REdNdDF4OHNDNWdIdTgzdHJYUUZMdUdPaForamtxOGY5QzBTZlh4cWQ1NU1wZFNGMk16b3Z2OXl3eUdodGd6K25OWWwvc0tPV0JqeVlIM3QvWm1ndzgxcEl1SkhUQ05vVHV5NkU1SjVRMk5vS2xNaWZuTlY2MHhnMjY5RnYrUlZSdlBhMW1TTlZDRThoaEY4UWp5MmNsVi9ISTRWTFhxcHJYZElTMjFob3kzZitxRFdabWhiK2Z4cFlRPT0=','auto'),(4460,'googlesitekitpersistent_remote_features','a:24:{s:18:\"adBlockerDetection\";a:1:{s:7:\"enabled\";b:1;}s:9:\"adsModule\";a:1:{s:7:\"enabled\";b:1;}s:14:\"adsenseSetupV2\";a:1:{s:7:\"enabled\";b:1;}s:20:\"audienceSegmentation\";a:1:{s:7:\"enabled\";b:1;}s:15:\"conversionInfra\";a:1:{s:7:\"enabled\";b:1;}s:19:\"conversionReporting\";a:1:{s:7:\"enabled\";b:1;}s:16:\"dashboardSharing\";a:1:{s:7:\"enabled\";b:1;}s:19:\"enhancedMeasurement\";a:1:{s:7:\"enabled\";b:1;}s:19:\"ga4ActivationBanner\";a:1:{s:7:\"enabled\";b:0;}s:12:\"ga4Reporting\";a:1:{s:7:\"enabled\";b:1;}s:8:\"ga4setup\";a:1:{s:7:\"enabled\";b:1;}s:10:\"gteSupport\";a:1:{s:7:\"enabled\";b:1;}s:14:\"helpVisibility\";a:1:{s:7:\"enabled\";b:1;}s:13:\"ideaHubModule\";a:1:{s:7:\"enabled\";b:0;}s:10:\"keyMetrics\";a:1:{s:7:\"enabled\";b:1;}s:9:\"rrmModule\";a:1:{s:7:\"enabled\";b:0;}s:14:\"serviceSetupV2\";a:1:{s:7:\"enabled\";b:1;}s:22:\"signInWithGoogleModule\";a:1:{s:7:\"enabled\";b:1;}s:16:\"unifiedDashboard\";a:1:{s:7:\"enabled\";b:1;}s:12:\"userFeedback\";a:1:{s:7:\"enabled\";b:1;}s:17:\"widgets.dashboard\";a:1:{s:7:\"enabled\";b:1;}s:21:\"widgets.pageDashboard\";a:1:{s:7:\"enabled\";b:1;}s:14:\"zeroDataStates\";a:1:{s:7:\"enabled\";b:1;}s:15:\"last_updated_at\";i:1744390751;}','auto'),(4461,'googlesitekit_connected_proxy_url','https://tenjokure-n.com/','auto'),(4462,'googlesitekit_search-console_settings','a:2:{s:10:\"propertyID\";s:24:\"https://tenjokure-n.com/\";s:7:\"ownerID\";i:1;}','auto'),(4463,'googlesitekit_owner_id','1','auto'),(4467,'googlesitekit_analytics-4_settings','a:26:{s:7:\"ownerID\";i:1;s:9:\"accountID\";s:9:\"235236511\";s:15:\"adsConversionID\";s:0:\"\";s:10:\"propertyID\";s:9:\"482112696\";s:15:\"webDataStreamID\";s:11:\"10387189015\";s:13:\"measurementID\";s:12:\"G-NN42XJXMG5\";s:16:\"trackingDisabled\";a:1:{i:0;s:13:\"loggedinUsers\";}s:10:\"useSnippet\";b:1;s:11:\"googleTagID\";s:11:\"GT-MKRVDV97\";s:18:\"googleTagAccountID\";s:10:\"6273267237\";s:20:\"googleTagContainerID\";s:9:\"208626991\";s:32:\"googleTagContainerDestinationIDs\";a:1:{i:0;s:12:\"G-NN42XJXMG5\";}s:23:\"googleTagLastSyncedAtMs\";i:1741927361243;s:25:\"availableCustomDimensions\";N;s:18:\"propertyCreateTime\";i:1741927348000;s:13:\"adSenseLinked\";b:0;s:25:\"adSenseLinkedLastSyncedAt\";i:0;s:27:\"adsConversionIDMigratedAtMs\";i:0;s:9:\"adsLinked\";b:0;s:21:\"adsLinkedLastSyncedAt\";i:1742533834;s:18:\"availableAudiences\";a:2:{i:0;a:5:{s:4:\"name\";s:42:\"properties/482112696/audiences/10387191871\";s:11:\"displayName\";s:12:\"All visitors\";s:11:\"description\";s:9:\"All users\";s:12:\"audienceType\";s:16:\"DEFAULT_AUDIENCE\";s:12:\"audienceSlug\";s:9:\"all-users\";}i:1;a:5:{s:4:\"name\";s:42:\"properties/482112696/audiences/10387191872\";s:11:\"displayName\";s:10:\"Purchasers\";s:11:\"description\";s:45:\"Users who have purchased in the last 540 days\";s:12:\"audienceType\";s:16:\"DEFAULT_AUDIENCE\";s:12:\"audienceSlug\";s:10:\"purchasers\";}}s:30:\"availableAudiencesLastSyncedAt\";i:0;s:36:\"audienceSegmentationSetupCompletedBy\";N;s:14:\"detectedEvents\";a:0:{}s:31:\"newConversionEventsLastUpdateAt\";i:0;s:32:\"lostConversionEventsLastUpdateAt\";i:0;}','auto'),(4468,'googlesitekit_conversion_tracking','a:1:{s:7:\"enabled\";b:1;}','auto'),(4473,'optin_monster_api','a:12:{s:3:\"api\";a:0:{}s:10:\"is_expired\";b:0;s:11:\"is_disabled\";b:0;s:10:\"is_invalid\";b:0;s:9:\"installed\";i:1741927482;s:9:\"connected\";s:0:\"\";s:4:\"beta\";b:0;s:12:\"auto_updates\";s:0:\"\";s:14:\"usage_tracking\";b:0;s:18:\"hide_announcements\";b:0;s:7:\"welcome\";a:1:{s:6:\"status\";s:4:\"none\";}s:15:\"connectionToken\";s:32:\"1fa3d492d9ce58ac735a49411a96fd51\";}','auto'),(4474,'omapi_review','a:2:{s:4:\"time\";i:1741927482;s:9:\"dismissed\";b:0;}','auto'),(4477,'aioseo_blc_options_internal','{\"internal\":{\"firstActivated\":1741927485,\"lastActiveVersion\":\"1.2.3\",\"scanId\":null,\"minimumLinkScanDate\":\"2025-03-14 04:44:47\",\"license\":{\"expires\":0,\"expired\":false,\"invalid\":false,\"disabled\":false,\"connectionError\":false,\"activationsError\":false,\"requestError\":false,\"lastChecked\":0,\"level\":null,\"licenseKey\":\"\",\"quota\":0,\"quotaRemaining\":0}},\"database\":{\"installedTables\":\"{\\\"wp_aioseo_blc_links\\\":[],\\\"wp_aioseo_blc_link_status\\\":[],\\\"wp_aioseo_blc_cache\\\":[],\\\"wp_actionscheduler_actions\\\":[],\\\"wp_actionscheduler_logs\\\":[],\\\"wp_actionscheduler_groups\\\":[],\\\"wp_actionscheduler_claims\\\":[],\\\"wp_aioseo_blc_notifications\\\":[]}\"}}','auto'),(4478,'widget_optin-monster-api','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(4479,'widget_monsterinsights-popular-posts-widget','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(4480,'monsterinsights_settings','a:45:{s:22:\"enable_affiliate_links\";b:1;s:15:\"affiliate_links\";a:2:{i:0;a:2:{s:4:\"path\";s:4:\"/go/\";s:5:\"label\";s:9:\"affiliate\";}i:1;a:2:{s:4:\"path\";s:11:\"/recommend/\";s:5:\"label\";s:9:\"affiliate\";}}s:12:\"demographics\";i:1;s:12:\"ignore_users\";a:2:{i:0;s:13:\"administrator\";i:1;s:6:\"editor\";}s:19:\"dashboards_disabled\";i:0;s:13:\"anonymize_ips\";i:0;s:19:\"extensions_of_files\";s:34:\"doc,pdf,ppt,zip,xls,docx,pptx,xlsx\";s:18:\"subdomain_tracking\";s:0:\"\";s:16:\"link_attribution\";b:1;s:16:\"tag_links_in_rss\";b:1;s:12:\"allow_anchor\";i:0;s:16:\"add_allow_linker\";i:0;s:13:\"save_settings\";a:1:{i:0;s:13:\"administrator\";}s:12:\"view_reports\";a:2:{i:0;s:13:\"administrator\";i:1;s:6:\"editor\";}s:11:\"events_mode\";s:2:\"js\";s:13:\"tracking_mode\";s:4:\"gtag\";s:15:\"email_summaries\";s:2:\"on\";s:23:\"summaries_html_template\";s:3:\"yes\";s:25:\"summaries_email_addresses\";a:1:{i:0;a:1:{s:5:\"email\";s:14:\"cs@acsport.net\";}}s:31:\"exception_alert_email_addresses\";a:1:{i:0;a:1:{s:5:\"email\";s:14:\"cs@acsport.net\";}}s:17:\"automatic_updates\";s:3:\"all\";s:14:\"anonymous_data\";i:0;s:18:\"verified_automatic\";i:0;s:26:\"popular_posts_inline_theme\";s:5:\"alpha\";s:26:\"popular_posts_widget_theme\";s:5:\"alpha\";s:28:\"popular_posts_products_theme\";s:5:\"alpha\";s:30:\"popular_posts_inline_placement\";s:6:\"manual\";s:34:\"popular_posts_widget_theme_columns\";s:1:\"2\";s:36:\"popular_posts_products_theme_columns\";s:1:\"2\";s:26:\"popular_posts_widget_count\";s:1:\"4\";s:28:\"popular_posts_products_count\";s:1:\"4\";s:38:\"popular_posts_widget_theme_meta_author\";s:2:\"on\";s:36:\"popular_posts_widget_theme_meta_date\";s:2:\"on\";s:40:\"popular_posts_widget_theme_meta_comments\";s:2:\"on\";s:39:\"popular_posts_products_theme_meta_price\";s:2:\"on\";s:40:\"popular_posts_products_theme_meta_rating\";s:2:\"on\";s:39:\"popular_posts_products_theme_meta_image\";s:2:\"on\";s:32:\"popular_posts_inline_after_count\";s:3:\"150\";s:36:\"popular_posts_inline_multiple_number\";s:1:\"3\";s:38:\"popular_posts_inline_multiple_distance\";s:3:\"250\";s:39:\"popular_posts_inline_multiple_min_words\";s:3:\"100\";s:31:\"popular_posts_inline_post_types\";a:1:{i:0;s:4:\"post\";}s:31:\"popular_posts_widget_post_types\";a:1:{i:0;s:4:\"post\";}s:19:\"verified_appearance\";s:5:\"light\";s:17:\"verified_position\";s:6:\"center\";}','auto'),(4481,'monsterinsights_over_time','a:4:{s:17:\"installed_version\";s:5:\"9.3.1\";s:14:\"installed_date\";i:1741927487;s:13:\"installed_pro\";b:0;s:14:\"installed_lite\";i:1741927487;}','off'),(4482,'monsterinsights_db_version','7.4.0','auto'),(4483,'monsterinsights_current_version','9.3.1','auto'),(4487,'om_notifications','a:4:{s:7:\"updated\";i:1744376451;s:4:\"feed\";a:0:{}s:6:\"events\";a:0:{}s:9:\"dismissed\";a:0:{}}','off'),(4488,'optinmonster_upgrade_completed','2.16.16','auto'),(4489,'monsterinsights_usage_tracking_config','a:6:{s:3:\"day\";i:4;s:4:\"hour\";i:18;s:6:\"minute\";i:9;s:6:\"second\";i:19;s:6:\"offset\";i:410959;s:8:\"initsend\";i:1742494159;}','auto'),(4490,'monsterinsights_feedback_tracked_features','a:0:{}','auto'),(4498,'monsterinsights_sitenotes_installed','1741927523','auto'),(4500,'monsterinsights_notifications','a:5:{s:6:\"update\";i:1744376451;s:4:\"feed\";a:2:{i:0;a:7:{s:5:\"title\";s:80:\"[MonsterInsights 9.4] Track TikTok Ads in 2 Minutes or Less with MonsterInsights\";s:7:\"content\";s:393:\"If you run TikTok Ads, you’re going to love the newest MonsterInsights feature! Now, you can install your TikTok pixel in WordPress quickly and easily. Just upgrade to install the PPC Ads Tracking addon, copy and paste your pixel into the new TikTok Ads field in your settings, and that’s it! Stop wasting ad budget on campaigns that aren’t working the best. Track your ads like a pro!\r\n\";s:4:\"type\";a:1:{i:0;s:4:\"lite\";}s:2:\"id\";i:257;s:4:\"btns\";a:2:{s:4:\"main\";a:2:{s:3:\"url\";s:151:\"https://www.monsterinsights.com/lite/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=9-4\";s:4:\"text\";s:11:\"Upgrade Now\";}s:3:\"alt\";a:2:{s:3:\"url\";s:167:\"https://www.monsterinsights.com/new-track-tiktok-ads/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=9-4\";s:4:\"text\";s:10:\"Learn More\";}}s:5:\"start\";s:19:\"2025-03-25 00:00:00\";s:3:\"end\";s:19:\"2025-09-25 00:00:00\";}i:1;a:7:{s:5:\"title\";s:76:\"[MonsterInsights 9.2] Introducing the Country Report + New Custom Dimensions\";s:7:\"content\";s:341:\"Wish you could drill down into regions and countries from your website? We’ve added a new Country report to do just that! Now, you can toggle each country open to drill down to the most popular regions. We’ve also added new custom dimensions for SEOPress and Rank Math. Upgrade to Pro now to track your focus keywords from those plugins!\";s:4:\"type\";a:1:{i:0;s:4:\"lite\";}s:2:\"id\";i:234;s:4:\"btns\";a:2:{s:4:\"main\";a:2:{s:3:\"url\";s:208:\"https://www.monsterinsights.com/introducing-a-new-countries-report-new-custom-dimensions-more/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=9-2\";s:4:\"text\";s:10:\"Learn More\";}s:3:\"alt\";a:2:{s:3:\"url\";s:150:\"https://www.monsterinsights.com/lite?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=9-2\";s:4:\"text\";s:14:\"Upgrade to Pro\";}}s:5:\"start\";s:19:\"2024-10-30 00:00:00\";s:3:\"end\";s:19:\"2025-04-30 00:00:00\";}}s:6:\"events\";a:4:{i:0;a:10:{s:2:\"id\";s:51:\"monsterinsights_notification_mobile_device_20250329\";s:4:\"icon\";s:7:\"default\";s:5:\"title\";s:30:\"Traffic From Mobile Devices 0%\";s:7:\"content\";s:526:\"Traffic from mobile devices is considerably lower on your site compared to desktop devices. This could be an indicator that your site is not optimised for mobile devices.<br><br>Take a look now at <a href=\"https://www.wpbeginner.com/beginners-guide/how-to-preview-the-mobile-layout-of-your-site/?utm_source=monsterinsights&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=9.4.1\" target=\"_blank\">show your site looks</a> on mobile and make sure all your content can be accessed correctly.\";s:4:\"type\";a:5:{i:0;s:5:\"basic\";i:1;s:4:\"lite\";i:2;s:6:\"master\";i:3;s:4:\"plus\";i:4;s:3:\"pro\";}s:4:\"btns\";a:2:{s:11:\"view_report\";a:2:{s:3:\"url\";s:136:\"https://tenjokure-n.com/wp-admin/admin.php?page=monsterinsights_reports&monsterinsights-scroll=devices&monsterinsights-highlight=devices\";s:4:\"text\";s:21:\"レポートを表示\";}s:10:\"learn_more\";a:3:{s:3:\"url\";s:210:\"https://www.wpbeginner.com/beginners-guide/how-to-preview-the-mobile-layout-of-your-site/?utm_source=monsterinsights&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=9.4.1\";s:4:\"text\";s:18:\"さらに詳しく\";s:11:\"is_external\";b:1;}}s:5:\"start\";s:18:\"03/29/2025 6:35 am\";s:3:\"end\";s:10:\"04/11/2025\";s:8:\"category\";s:7:\"insight\";s:8:\"priority\";i:2;}i:1;a:10:{s:2:\"id\";s:65:\"monsterinsights_notification_upgrade_for_form_conversion_20250411\";s:4:\"icon\";s:7:\"default\";s:5:\"title\";s:29:\"Easily Track Form Conversions\";s:7:\"content\";s:263:\"Track your website\'s form conversion rates by upgrading to <a href=\"https://www.monsterinsights.com/lite/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=9.4.1\" target=\"_blank\">MonsterInsights Pro</a>.\";s:4:\"type\";a:3:{i:0;s:5:\"basic\";i:1;s:4:\"lite\";i:2;s:4:\"plus\";}s:4:\"btns\";a:1:{s:23:\"get_monsterinsights_pro\";a:3:{s:3:\"url\";s:153:\"https://www.monsterinsights.com/lite/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=9.4.1\";s:4:\"text\";s:30:\"今すぐアップグレード\";s:11:\"is_external\";b:1;}}s:5:\"start\";s:18:\"04/11/2025 1:01 pm\";s:3:\"end\";s:10:\"04/29/2025\";s:8:\"category\";s:7:\"insight\";s:8:\"priority\";i:3;}i:2;a:10:{s:2:\"id\";s:66:\"monsterinsights_notification_upgrade_for_events_reporting_20250411\";s:4:\"icon\";s:4:\"star\";s:5:\"title\";s:44:\"MonsterInsights Pro にアップグレード\";s:7:\"content\";s:105:\"Upgrade to MonsterInsights Pro to see which content and events your visitors are performing in real time.\";s:4:\"type\";a:3:{i:0;s:5:\"basic\";i:1;s:4:\"lite\";i:2;s:4:\"plus\";}s:4:\"btns\";a:1:{s:23:\"get_monsterinsights_pro\";a:3:{s:3:\"url\";s:153:\"https://www.monsterinsights.com/lite/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=9.4.1\";s:4:\"text\";s:29:\"MonsterInsights Pro を入手\";s:11:\"is_external\";b:1;}}s:5:\"start\";s:18:\"04/11/2025 1:01 pm\";s:3:\"end\";s:10:\"04/29/2025\";s:8:\"category\";s:7:\"insight\";s:8:\"priority\";i:3;}i:3;a:10:{s:2:\"id\";s:73:\"monsterinsights_notification_upgrade_for_popular_posts_templates_20250411\";s:4:\"icon\";s:4:\"star\";s:5:\"title\";s:44:\"MonsterInsights Pro にアップグレード\";s:7:\"content\";s:125:\"Upgrade MonsterInsights Pro and use up to 20+ Popular Post templates to help improve engagement and interaction on your site.\";s:4:\"type\";a:3:{i:0;s:5:\"basic\";i:1;s:4:\"lite\";i:2;s:4:\"plus\";}s:4:\"btns\";a:1:{s:23:\"get_monsterinsights_pro\";a:3:{s:3:\"url\";s:153:\"https://www.monsterinsights.com/lite/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=9.4.1\";s:4:\"text\";s:29:\"MonsterInsights Pro を入手\";s:11:\"is_external\";b:1;}}s:5:\"start\";s:18:\"04/11/2025 1:00 pm\";s:3:\"end\";s:10:\"04/29/2025\";s:8:\"category\";s:7:\"insight\";s:8:\"priority\";i:3;}}s:9:\"dismissed\";a:0:{}s:12:\"feed_fetched\";b:1;}','off'),(4501,'monsterinsights_notifications_run','a:24:{s:50:\"monsterinsights_notification_install_user_feedback\";i:1741927525;s:37:\"monsterinsights_notification_visitors\";i:1741927525;s:37:\"monsterinsights_notification_audience\";i:1741927525;s:55:\"monsterinsights_notification_mobile_device_high_traffic\";i:1741927525;s:42:\"monsterinsights_notification_mobile_device\";i:1743230126;s:43:\"monsterinsights_notification_upgrade_to_pro\";i:1741927525;s:56:\"monsterinsights_notification_upgrade_to_pro_high_traffic\";i:1741927525;s:40:\"monsterinsights_notification_bounce_rate\";i:1741927525;s:47:\"monsterinsights_notification_returning_visitors\";i:1741927525;s:45:\"monsterinsights_notification_traffic_dropping\";i:1741927525;s:64:\"monsterinsights_notification_upgrade_for_popular_posts_templates\";i:1744376456;s:57:\"monsterinsights_notification_upgrade_for_events_reporting\";i:1744376461;s:62:\"monsterinsights_notification_upgrade_for_search_console_report\";i:1741927525;s:56:\"monsterinsights_notification_upgrade_for_form_conversion\";i:1744376471;s:56:\"monsterinsights_notification_upgrade_for_email_summaries\";i:1741927525;s:58:\"monsterinsights_notification_upgrade_for_custom_dimensions\";i:1741927525;s:39:\"monsterinsights_notification_eu_traffic\";i:1741927525;s:56:\"monsterinsights_notification_to_add_more_file_extensions\";i:1741927525;s:53:\"monsterinsights_notification_to_setup_affiliate_links\";i:1741927525;s:46:\"monsterinsights_notification_headline_analyzer\";i:1741927525;s:49:\"monsterinsights_notification_install_optinmonster\";i:1741927525;s:43:\"monsterinsights_notification_install_aioseo\";i:1741927525;s:44:\"monsterinsights_notification_install_wpforms\";i:1741927525;s:43:\"monsterinsights_notification_multiple_gtags\";i:1741927525;}','off'),(4502,'monsterinsights_review','a:2:{s:4:\"time\";i:1741927564;s:9:\"dismissed\";b:0;}','auto'),(4516,'wp_mail_smtp_debug','a:0:{}','off'),(4517,'wp_mail_smtp_mail_key','hWFy1wJLZgeLfTwOaHuL8IHTicApU+CIh49AjbJUp6s=','auto'),(4519,'wp_mail_smtp_lite_sent_email_counter','31','on'),(4520,'wp_mail_smtp_lite_weekly_sent_email_counter','a:5:{i:11;i:5;i:12;i:6;i:13;i:9;i:14;i:4;i:15;i:7;}','on'),(5067,'wp_mail_smtp_summary_report_email_last_sent_week','15','auto'),(5556,'siteguard_config','a:36:{s:18:\"show_admin_notices\";s:1:\"1\";s:25:\"admin_filter_exclude_path\";s:57:\"css,images,admin-ajax.php,load-styles.php,site-health.php\";s:19:\"admin_filter_enable\";s:1:\"0\";s:16:\"renamelogin_path\";s:11:\"login_88297\";s:15:\"redirect_enable\";s:1:\"1\";s:18:\"renamelogin_enable\";s:1:\"1\";s:14:\"captcha_enable\";s:1:\"1\";s:13:\"captcha_login\";s:1:\"1\";s:15:\"captcha_comment\";s:1:\"1\";s:18:\"captcha_lostpasswd\";s:1:\"1\";s:18:\"captcha_registuser\";s:1:\"1\";s:16:\"same_login_error\";s:1:\"1\";s:16:\"loginlock_enable\";s:1:\"1\";s:18:\"loginlock_interval\";s:1:\"5\";s:19:\"loginlock_threshold\";s:1:\"3\";s:17:\"loginlock_locksec\";s:2:\"60\";s:19:\"loginlock_fail_once\";s:1:\"0\";s:20:\"fail_once_admin_only\";s:1:\"1\";s:17:\"loginalert_enable\";s:1:\"1\";s:21:\"loginalert_admin_only\";s:1:\"1\";s:18:\"loginalert_subject\";s:43:\"%SITENAME%にログインがありました\";s:15:\"loginalert_body\";s:208:\"%DATE% %TIME%に%USERNAME%がログインしました。\n\n== ログイン情報 ==\nIPアドレス:%IPADDRESS%\nリファラー:%REFERER%\nユーザーエージェント:%USERAGENT%\n\n--\nSiteGuard WP Plugin\";s:21:\"disable_xmlrpc_enable\";s:1:\"0\";s:23:\"disable_pingback_enable\";s:1:\"1\";s:25:\"block_author_query_enable\";s:1:\"0\";s:22:\"disable_restapi_enable\";s:1:\"0\";s:23:\"disable_restapi_exclude\";s:29:\"oembed,contact-form-7,akismet\";s:23:\"waf_exclude_rule_enable\";s:1:\"0\";s:16:\"waf_exclude_rule\";a:0:{}s:13:\"notify_wpcore\";s:1:\"1\";s:14:\"notify_plugins\";s:1:\"2\";s:13:\"notify_themes\";s:1:\"2\";s:8:\"notified\";a:3:{s:4:\"core\";s:0:\"\";s:6:\"plugin\";a:5:{s:36:\"contact-form-7/wp-contact-form-7.php\";s:5:\"6.0.6\";s:21:\"backwpup/backwpup.php\";s:5:\"5.1.0\";s:37:\"optinmonster/optin-monster-wp-api.php\";s:7:\"2.16.19\";s:54:\"broken-link-checker-seo/aioseo-broken-link-checker.php\";s:5:\"1.2.4\";s:34:\"advanced-custom-fields-pro/acf.php\";s:7:\"6.4.0.1\";}s:5:\"theme\";a:0:{}}s:15:\"last_check_time\";i:1744401362;s:21:\"updates_notify_enable\";s:1:\"1\";s:7:\"version\";s:5:\"1.7.8\";}','auto'),(5873,'_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:62:\"https://downloads.wordpress.org/release/ja/wordpress-6.7.2.zip\";s:6:\"locale\";s:2:\"ja\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:62:\"https://downloads.wordpress.org/release/ja/wordpress-6.7.2.zip\";s:10:\"no_content\";s:0:\"\";s:11:\"new_bundled\";s:0:\"\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.7.2\";s:7:\"version\";s:5:\"6.7.2\";s:11:\"php_version\";s:6:\"7.2.24\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1744408697;s:15:\"version_checked\";s:5:\"6.7.2\";s:12:\"translations\";a:0:{}}','off'),(5874,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1744408699;s:7:\"checked\";a:2:{s:11:\"tenjokure-n\";s:5:\"1.0.0\";s:16:\"twentytwentyfive\";s:3:\"1.1\";}s:8:\"response\";a:0:{}s:9:\"no_update\";a:1:{s:16:\"twentytwentyfive\";a:6:{s:5:\"theme\";s:16:\"twentytwentyfive\";s:11:\"new_version\";s:3:\"1.1\";s:3:\"url\";s:46:\"https://wordpress.org/themes/twentytwentyfive/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/twentytwentyfive.1.1.zip\";s:8:\"requires\";s:3:\"6.7\";s:12:\"requires_php\";s:3:\"7.2\";}}s:12:\"translations\";a:0:{}}','off'),(6486,'_transient_googlesitekit_analytics-4_data_available','1','on'),(6487,'_transient_googlesitekit_search-console_data_available','1','on'),(7798,'_site_transient_timeout_php_check_714ae3a617be44d067c4b5dcef2a7ebe','1744706345','off'),(7799,'_site_transient_php_check_714ae3a617be44d067c4b5dcef2a7ebe','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:6:\"7.2.24\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','off'),(7978,'_transient_timeout_acf_plugin_updates','1744411684','off'),(7979,'_transient_acf_plugin_updates','a:5:{s:7:\"plugins\";a:0:{}s:9:\"no_update\";a:1:{s:34:\"advanced-custom-fields-pro/acf.php\";a:12:{s:4:\"slug\";s:26:\"advanced-custom-fields-pro\";s:6:\"plugin\";s:34:\"advanced-custom-fields-pro/acf.php\";s:11:\"new_version\";s:7:\"6.4.0.1\";s:3:\"url\";s:36:\"https://www.advancedcustomfields.com\";s:6:\"tested\";s:3:\"6.8\";s:7:\"package\";s:0:\"\";s:5:\"icons\";a:1:{s:7:\"default\";s:64:\"https://connect.advancedcustomfields.com/assets/icon-256x256.png\";}s:7:\"banners\";a:2:{s:3:\"low\";s:66:\"https://connect.advancedcustomfields.com/assets/banner-772x250.jpg\";s:4:\"high\";s:67:\"https://connect.advancedcustomfields.com/assets/banner-1544x500.jpg\";}s:8:\"requires\";s:3:\"6.0\";s:12:\"requires_php\";s:3:\"7.4\";s:12:\"release_date\";s:8:\"20250408\";s:6:\"reason\";s:10:\"up_to_date\";}}s:10:\"expiration\";i:172800;s:6:\"status\";i:1;s:7:\"checked\";a:1:{s:34:\"advanced-custom-fields-pro/acf.php\";s:7:\"6.4.0.1\";}}','off'),(8272,'_transient_timeout_54933177a8721b642ef9e1d77884fafe','1744412159','off'),(8273,'_transient_54933177a8721b642ef9e1d77884fafe','O:8:\"WP_Error\":3:{s:6:\"errors\";a:1:{s:11:\"api_blocked\";a:1:{i:0;s:52:\"{"plugins":[],"translations":[]}\";}}s:10:\"error_data\";a:0:{}s:18:\"\0*\0additional_data\";a:0:{}}','off'),(8289,'_site_transient_timeout_available_translations','1744387224','off'),(8290,'_site_transient_available_translations','a:131:{s:2:\"af\";a:8:{s:8:\"language\";s:2:\"af\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-05-13 15:59:22\";s:12:\"english_name\";s:9:\"Afrikaans\";s:11:\"native_name\";s:9:\"Afrikaans\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8-beta/af.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"af\";i:2;s:3:\"afr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Gaan voort\";}}s:2:\"am\";a:8:{s:8:\"language\";s:2:\"am\";s:7:\"version\";s:5:\"6.0.9\";s:7:\"updated\";s:19:\"2022-09-29 20:43:49\";s:12:\"english_name\";s:7:\"Amharic\";s:11:\"native_name\";s:12:\"አማርኛ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.0.9/am.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"am\";i:2;s:3:\"amh\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"ቀጥል\";}}s:3:\"arg\";a:8:{s:8:\"language\";s:3:\"arg\";s:7:\"version\";s:8:\"6.2-beta\";s:7:\"updated\";s:19:\"2022-09-22 16:46:56\";s:12:\"english_name\";s:9:\"Aragonese\";s:11:\"native_name\";s:9:\"Aragonés\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/6.2-beta/arg.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"an\";i:2;s:3:\"arg\";i:3;s:3:\"arg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continar\";}}s:2:\"ar\";a:8:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"6.4.5\";s:7:\"updated\";s:19:\"2024-02-13 12:49:38\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.4.5/ar.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:2;s:3:\"ara\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"متابعة\";}}s:3:\"ary\";a:8:{s:8:\"language\";s:3:\"ary\";s:7:\"version\";s:6:\"4.8.25\";s:7:\"updated\";s:19:\"2017-01-26 15:42:35\";s:12:\"english_name\";s:15:\"Moroccan Arabic\";s:11:\"native_name\";s:31:\"العربية المغربية\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.8.25/ary.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:3;s:3:\"ary\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"المتابعة\";}}s:2:\"as\";a:8:{s:8:\"language\";s:2:\"as\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2024-11-01 09:05:28\";s:12:\"english_name\";s:8:\"Assamese\";s:11:\"native_name\";s:21:\"অসমীয়া\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.7.2/as.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"as\";i:2;s:3:\"asm\";i:3;s:3:\"asm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:3:\"azb\";a:8:{s:8:\"language\";s:3:\"azb\";s:7:\"version\";s:5:\"6.4.5\";s:7:\"updated\";s:19:\"2024-01-19 08:58:31\";s:12:\"english_name\";s:17:\"South Azerbaijani\";s:11:\"native_name\";s:29:\"گؤنئی آذربایجان\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.4.5/azb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:3;s:3:\"azb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"az\";a:8:{s:8:\"language\";s:2:\"az\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-06 00:09:27\";s:12:\"english_name\";s:11:\"Azerbaijani\";s:11:\"native_name\";s:16:\"Azərbaycan dili\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/az.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:2;s:3:\"aze\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Davam\";}}s:3:\"bel\";a:8:{s:8:\"language\";s:3:\"bel\";s:7:\"version\";s:6:\"4.9.26\";s:7:\"updated\";s:19:\"2024-12-26 00:37:42\";s:12:\"english_name\";s:10:\"Belarusian\";s:11:\"native_name\";s:29:\"Беларуская мова\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.9.26/bel.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"be\";i:2;s:3:\"bel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Працягнуць\";}}s:5:\"bg_BG\";a:8:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-01-12 07:32:34\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/bg_BG.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bg\";i:2;s:3:\"bul\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Напред\";}}s:5:\"bn_BD\";a:8:{s:8:\"language\";s:5:\"bn_BD\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-02-20 08:42:35\";s:12:\"english_name\";s:20:\"Bengali (Bangladesh)\";s:11:\"native_name\";s:15:\"বাংলা\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/bn_BD.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"bn\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:28:\"চালিয়ে যান\";}}s:2:\"bo\";a:8:{s:8:\"language\";s:2:\"bo\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2020-10-30 03:24:38\";s:12:\"english_name\";s:7:\"Tibetan\";s:11:\"native_name\";s:21:\"བོད་ཡིག\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8-beta/bo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bo\";i:2;s:3:\"tib\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:33:\"མུ་མཐུད་དུ།\";}}s:5:\"bs_BA\";a:8:{s:8:\"language\";s:5:\"bs_BA\";s:7:\"version\";s:5:\"6.2.6\";s:7:\"updated\";s:19:\"2023-02-22 20:45:53\";s:12:\"english_name\";s:7:\"Bosnian\";s:11:\"native_name\";s:8:\"Bosanski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.6/bs_BA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bs\";i:2;s:3:\"bos\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:2:\"ca\";a:8:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-03-29 14:26:16\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.7.2/ca.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ca\";i:2;s:3:\"cat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:3:\"ceb\";a:8:{s:8:\"language\";s:3:\"ceb\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-02 17:25:51\";s:12:\"english_name\";s:7:\"Cebuano\";s:11:\"native_name\";s:7:\"Cebuano\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/ceb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"ceb\";i:3;s:3:\"ceb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Padayun\";}}s:5:\"cs_CZ\";a:8:{s:8:\"language\";s:5:\"cs_CZ\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-04-08 08:17:37\";s:12:\"english_name\";s:5:\"Czech\";s:11:\"native_name\";s:9:\"Čeština\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/cs_CZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cs\";i:2;s:3:\"ces\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Pokračovat\";}}s:2:\"cy\";a:8:{s:8:\"language\";s:2:\"cy\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-02-04 15:09:31\";s:12:\"english_name\";s:5:\"Welsh\";s:11:\"native_name\";s:7:\"Cymraeg\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.7.2/cy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cy\";i:2;s:3:\"cym\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Parhau\";}}s:5:\"da_DK\";a:8:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-04-10 13:13:40\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/da_DK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"da\";i:2;s:3:\"dan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsæt\";}}s:5:\"de_CH\";a:8:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2024-11-05 18:11:40\";s:12:\"english_name\";s:20:\"German (Switzerland)\";s:11:\"native_name\";s:17:\"Deutsch (Schweiz)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/de_CH.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_DE\";a:8:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-04-06 17:18:54\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/de_DE.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:12:\"de_DE_formal\";a:8:{s:8:\"language\";s:12:\"de_DE_formal\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-04-06 17:16:56\";s:12:\"english_name\";s:15:\"German (Formal)\";s:11:\"native_name\";s:13:\"Deutsch (Sie)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/6.7.2/de_DE_formal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:14:\"de_CH_informal\";a:8:{s:8:\"language\";s:14:\"de_CH_informal\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2024-11-05 18:08:14\";s:12:\"english_name\";s:30:\"German (Switzerland, Informal)\";s:11:\"native_name\";s:21:\"Deutsch (Schweiz, Du)\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/translation/core/6.7.2/de_CH_informal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_AT\";a:8:{s:8:\"language\";s:5:\"de_AT\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-02-03 07:45:57\";s:12:\"english_name\";s:16:\"German (Austria)\";s:11:\"native_name\";s:21:\"Deutsch (Österreich)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/de_AT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:3:\"dsb\";a:8:{s:8:\"language\";s:3:\"dsb\";s:7:\"version\";s:5:\"6.2.6\";s:7:\"updated\";s:19:\"2022-07-16 12:13:09\";s:12:\"english_name\";s:13:\"Lower Sorbian\";s:11:\"native_name\";s:16:\"Dolnoserbšćina\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.2.6/dsb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"dsb\";i:3;s:3:\"dsb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Dalej\";}}s:3:\"dzo\";a:8:{s:8:\"language\";s:3:\"dzo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-06-29 08:59:03\";s:12:\"english_name\";s:8:\"Dzongkha\";s:11:\"native_name\";s:18:\"རྫོང་ཁ\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/dzo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"dz\";i:2;s:3:\"dzo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"el\";a:8:{s:8:\"language\";s:2:\"el\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-04-09 06:59:06\";s:12:\"english_name\";s:5:\"Greek\";s:11:\"native_name\";s:16:\"Ελληνικά\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.7.2/el.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"el\";i:2;s:3:\"ell\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Συνέχεια\";}}s:5:\"en_ZA\";a:8:{s:8:\"language\";s:5:\"en_ZA\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2024-11-08 19:43:34\";s:12:\"english_name\";s:22:\"English (South Africa)\";s:11:\"native_name\";s:22:\"English (South Africa)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/en_ZA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_NZ\";a:8:{s:8:\"language\";s:5:\"en_NZ\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2024-11-12 00:03:39\";s:12:\"english_name\";s:21:\"English (New Zealand)\";s:11:\"native_name\";s:21:\"English (New Zealand)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/en_NZ.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_CA\";a:8:{s:8:\"language\";s:5:\"en_CA\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-03-25 15:37:15\";s:12:\"english_name\";s:16:\"English (Canada)\";s:11:\"native_name\";s:16:\"English (Canada)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/en_CA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_GB\";a:8:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-04-06 12:54:02\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/en_GB.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_AU\";a:8:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2024-12-15 22:47:35\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/en_AU.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"eo\";a:8:{s:8:\"language\";s:2:\"eo\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-02-18 15:16:11\";s:12:\"english_name\";s:9:\"Esperanto\";s:11:\"native_name\";s:9:\"Esperanto\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.7.2/eo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eo\";i:2;s:3:\"epo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Daŭrigi\";}}s:5:\"es_CR\";a:8:{s:8:\"language\";s:5:\"es_CR\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2024-12-09 22:28:42\";s:12:\"english_name\";s:20:\"Spanish (Costa Rica)\";s:11:\"native_name\";s:22:\"Español de Costa Rica\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/es_CR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_PE\";a:8:{s:8:\"language\";s:5:\"es_PE\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2024-10-16 21:04:12\";s:12:\"english_name\";s:14:\"Spanish (Peru)\";s:11:\"native_name\";s:17:\"Español de Perú\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/es_PE.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_ES\";a:8:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-03-22 16:30:18\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/es_ES.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_VE\";a:8:{s:8:\"language\";s:5:\"es_VE\";s:7:\"version\";s:5:\"6.4.5\";s:7:\"updated\";s:19:\"2023-10-16 16:00:04\";s:12:\"english_name\";s:19:\"Spanish (Venezuela)\";s:11:\"native_name\";s:21:\"Español de Venezuela\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.5/es_VE.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_EC\";a:8:{s:8:\"language\";s:5:\"es_EC\";s:7:\"version\";s:5:\"6.2.6\";s:7:\"updated\";s:19:\"2023-04-21 13:32:10\";s:12:\"english_name\";s:17:\"Spanish (Ecuador)\";s:11:\"native_name\";s:19:\"Español de Ecuador\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.6/es_EC.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_DO\";a:8:{s:8:\"language\";s:5:\"es_DO\";s:7:\"version\";s:6:\"5.8.10\";s:7:\"updated\";s:19:\"2021-10-08 14:32:50\";s:12:\"english_name\";s:28:\"Spanish (Dominican Republic)\";s:11:\"native_name\";s:33:\"Español de República Dominicana\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.8.10/es_DO.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_UY\";a:8:{s:8:\"language\";s:5:\"es_UY\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-03-31 18:33:26\";s:12:\"english_name\";s:17:\"Spanish (Uruguay)\";s:11:\"native_name\";s:19:\"Español de Uruguay\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/es_UY.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_PR\";a:8:{s:8:\"language\";s:5:\"es_PR\";s:7:\"version\";s:6:\"5.4.16\";s:7:\"updated\";s:19:\"2020-04-29 15:36:59\";s:12:\"english_name\";s:21:\"Spanish (Puerto Rico)\";s:11:\"native_name\";s:23:\"Español de Puerto Rico\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.4.16/es_PR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_GT\";a:8:{s:8:\"language\";s:5:\"es_GT\";s:7:\"version\";s:6:\"5.2.21\";s:7:\"updated\";s:19:\"2019-03-02 06:35:01\";s:12:\"english_name\";s:19:\"Spanish (Guatemala)\";s:11:\"native_name\";s:21:\"Español de Guatemala\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.2.21/es_GT.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_AR\";a:8:{s:8:\"language\";s:5:\"es_AR\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-02-05 15:56:22\";s:12:\"english_name\";s:19:\"Spanish (Argentina)\";s:11:\"native_name\";s:21:\"Español de Argentina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/es_AR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CL\";a:8:{s:8:\"language\";s:5:\"es_CL\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-02-02 23:11:20\";s:12:\"english_name\";s:15:\"Spanish (Chile)\";s:11:\"native_name\";s:17:\"Español de Chile\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/es_CL.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CO\";a:8:{s:8:\"language\";s:5:\"es_CO\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-02-01 20:26:01\";s:12:\"english_name\";s:18:\"Spanish (Colombia)\";s:11:\"native_name\";s:20:\"Español de Colombia\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/es_CO.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_MX\";a:8:{s:8:\"language\";s:5:\"es_MX\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-02-04 14:46:26\";s:12:\"english_name\";s:16:\"Spanish (Mexico)\";s:11:\"native_name\";s:19:\"Español de México\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/es_MX.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"et\";a:8:{s:8:\"language\";s:2:\"et\";s:7:\"version\";s:5:\"6.5.5\";s:7:\"updated\";s:19:\"2024-06-06 09:50:37\";s:12:\"english_name\";s:8:\"Estonian\";s:11:\"native_name\";s:5:\"Eesti\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.5.5/et.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"et\";i:2;s:3:\"est\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Jätka\";}}s:2:\"eu\";a:8:{s:8:\"language\";s:2:\"eu\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-02-26 16:06:47\";s:12:\"english_name\";s:6:\"Basque\";s:11:\"native_name\";s:7:\"Euskara\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.7.2/eu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eu\";i:2;s:3:\"eus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Jarraitu\";}}s:5:\"fa_IR\";a:8:{s:8:\"language\";s:5:\"fa_IR\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-01-30 10:07:14\";s:12:\"english_name\";s:7:\"Persian\";s:11:\"native_name\";s:10:\"فارسی\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/fa_IR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:5:\"fa_AF\";a:8:{s:8:\"language\";s:5:\"fa_AF\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-02-14 17:29:08\";s:12:\"english_name\";s:21:\"Persian (Afghanistan)\";s:11:\"native_name\";s:31:\"(فارسی (افغانستان\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/fa_AF.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:2:\"fi\";a:8:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-03-21 11:24:25\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.7.2/fi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fi\";i:2;s:3:\"fin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Jatka\";}}s:5:\"fr_CA\";a:8:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2024-12-12 22:29:22\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/fr_CA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_FR\";a:8:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-03-25 21:16:32\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/fr_FR.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"fr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_BE\";a:8:{s:8:\"language\";s:5:\"fr_BE\";s:7:\"version\";s:5:\"6.5.5\";s:7:\"updated\";s:19:\"2024-02-01 23:56:53\";s:12:\"english_name\";s:16:\"French (Belgium)\";s:11:\"native_name\";s:21:\"Français de Belgique\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.5.5/fr_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:3:\"fur\";a:8:{s:8:\"language\";s:3:\"fur\";s:7:\"version\";s:6:\"4.8.25\";s:7:\"updated\";s:19:\"2023-04-30 13:56:46\";s:12:\"english_name\";s:8:\"Friulian\";s:11:\"native_name\";s:8:\"Friulian\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.8.25/fur.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"fur\";i:3;s:3:\"fur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"fy\";a:8:{s:8:\"language\";s:2:\"fy\";s:7:\"version\";s:5:\"6.2.6\";s:7:\"updated\";s:19:\"2022-12-25 12:53:23\";s:12:\"english_name\";s:7:\"Frisian\";s:11:\"native_name\";s:5:\"Frysk\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.2.6/fy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fy\";i:2;s:3:\"fry\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Trochgean\";}}s:2:\"gd\";a:8:{s:8:\"language\";s:2:\"gd\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-08-23 17:41:37\";s:12:\"english_name\";s:15:\"Scottish Gaelic\";s:11:\"native_name\";s:9:\"Gàidhlig\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/gd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"gd\";i:2;s:3:\"gla\";i:3;s:3:\"gla\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"Lean air adhart\";}}s:5:\"gl_ES\";a:8:{s:8:\"language\";s:5:\"gl_ES\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-01-29 23:44:41\";s:12:\"english_name\";s:8:\"Galician\";s:11:\"native_name\";s:6:\"Galego\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/gl_ES.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gl\";i:2;s:3:\"glg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"gu\";a:8:{s:8:\"language\";s:2:\"gu\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-02-27 06:35:56\";s:12:\"english_name\";s:8:\"Gujarati\";s:11:\"native_name\";s:21:\"ગુજરાતી\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.7.2/gu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gu\";i:2;s:3:\"guj\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"ચાલુ રાખો\";}}s:3:\"haz\";a:8:{s:8:\"language\";s:3:\"haz\";s:7:\"version\";s:6:\"4.4.33\";s:7:\"updated\";s:19:\"2015-12-05 00:59:09\";s:12:\"english_name\";s:8:\"Hazaragi\";s:11:\"native_name\";s:15:\"هزاره گی\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.4.33/haz.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"haz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:5:\"he_IL\";a:8:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"6.2.6\";s:7:\"updated\";s:19:\"2024-05-04 18:39:24\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.6/he_IL.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"he\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"המשך\";}}s:5:\"hi_IN\";a:8:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"6.4.5\";s:7:\"updated\";s:19:\"2025-02-06 05:17:11\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.5/hi_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hi\";i:2;s:3:\"hin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"जारी रखें\";}}s:2:\"hr\";a:8:{s:8:\"language\";s:2:\"hr\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-02-01 09:14:16\";s:12:\"english_name\";s:8:\"Croatian\";s:11:\"native_name\";s:8:\"Hrvatski\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.7.2/hr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hr\";i:2;s:3:\"hrv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:3:\"hsb\";a:8:{s:8:\"language\";s:3:\"hsb\";s:7:\"version\";s:5:\"6.2.6\";s:7:\"updated\";s:19:\"2023-02-22 17:37:32\";s:12:\"english_name\";s:13:\"Upper Sorbian\";s:11:\"native_name\";s:17:\"Hornjoserbšćina\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.2.6/hsb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"hsb\";i:3;s:3:\"hsb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:4:\"Dale\";}}s:5:\"hu_HU\";a:8:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-03-13 12:24:50\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/hu_HU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hu\";i:2;s:3:\"hun\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Folytatás\";}}s:2:\"hy\";a:8:{s:8:\"language\";s:2:\"hy\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-12-03 16:21:10\";s:12:\"english_name\";s:8:\"Armenian\";s:11:\"native_name\";s:14:\"Հայերեն\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/hy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hy\";i:2;s:3:\"hye\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Շարունակել\";}}s:5:\"id_ID\";a:8:{s:8:\"language\";s:5:\"id_ID\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-01-31 11:29:26\";s:12:\"english_name\";s:10:\"Indonesian\";s:11:\"native_name\";s:16:\"Bahasa Indonesia\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/id_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"id\";i:2;s:3:\"ind\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Lanjutkan\";}}s:5:\"is_IS\";a:8:{s:8:\"language\";s:5:\"is_IS\";s:7:\"version\";s:6:\"4.9.26\";s:7:\"updated\";s:19:\"2018-12-11 10:40:02\";s:12:\"english_name\";s:9:\"Icelandic\";s:11:\"native_name\";s:9:\"Íslenska\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.9.26/is_IS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"is\";i:2;s:3:\"isl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Áfram\";}}s:5:\"it_IT\";a:8:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-03-20 11:01:52\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/it_IT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"it\";i:2;s:3:\"ita\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:2:\"ja\";a:8:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-02-07 13:30:47\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.7.2/ja.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"ja\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"次へ\";}}s:5:\"jv_ID\";a:8:{s:8:\"language\";s:5:\"jv_ID\";s:7:\"version\";s:6:\"4.9.26\";s:7:\"updated\";s:19:\"2019-02-16 23:58:56\";s:12:\"english_name\";s:8:\"Javanese\";s:11:\"native_name\";s:9:\"Basa Jawa\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.9.26/jv_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"jv\";i:2;s:3:\"jav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Nerusaké\";}}s:5:\"ka_GE\";a:8:{s:8:\"language\";s:5:\"ka_GE\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-02-01 06:53:56\";s:12:\"english_name\";s:8:\"Georgian\";s:11:\"native_name\";s:21:\"ქართული\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/ka_GE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ka\";i:2;s:3:\"kat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"გაგრძელება\";}}s:3:\"kab\";a:8:{s:8:\"language\";s:3:\"kab\";s:7:\"version\";s:5:\"6.2.6\";s:7:\"updated\";s:19:\"2023-07-05 11:40:39\";s:12:\"english_name\";s:6:\"Kabyle\";s:11:\"native_name\";s:9:\"Taqbaylit\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.2.6/kab.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"kab\";i:3;s:3:\"kab\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Kemmel\";}}s:2:\"kk\";a:8:{s:8:\"language\";s:2:\"kk\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2024-07-18 02:49:24\";s:12:\"english_name\";s:6:\"Kazakh\";s:11:\"native_name\";s:19:\"Қазақ тілі\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.7.2/kk.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"kk\";i:2;s:3:\"kaz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Жалғастыру\";}}s:2:\"km\";a:8:{s:8:\"language\";s:2:\"km\";s:7:\"version\";s:6:\"5.2.21\";s:7:\"updated\";s:19:\"2019-06-10 16:18:28\";s:12:\"english_name\";s:5:\"Khmer\";s:11:\"native_name\";s:27:\"ភាសាខ្មែរ\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.2.21/km.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"km\";i:2;s:3:\"khm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"បន្ត\";}}s:2:\"kn\";a:8:{s:8:\"language\";s:2:\"kn\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-03-11 19:32:39\";s:12:\"english_name\";s:7:\"Kannada\";s:11:\"native_name\";s:15:\"ಕನ್ನಡ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.7.2/kn.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"kn\";i:2;s:3:\"kan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"ಮುಂದುವರಿಸು\";}}s:5:\"ko_KR\";a:8:{s:8:\"language\";s:5:\"ko_KR\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-03-27 00:11:53\";s:12:\"english_name\";s:6:\"Korean\";s:11:\"native_name\";s:9:\"한국어\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/ko_KR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ko\";i:2;s:3:\"kor\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"계속\";}}s:3:\"ckb\";a:8:{s:8:\"language\";s:3:\"ckb\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-03-22 19:22:33\";s:12:\"english_name\";s:16:\"Kurdish (Sorani)\";s:11:\"native_name\";s:13:\"كوردی\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.7.2/ckb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ku\";i:3;s:3:\"ckb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"بهردهوام به\";}}s:3:\"kir\";a:8:{s:8:\"language\";s:3:\"kir\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-02-25 04:09:28\";s:12:\"english_name\";s:6:\"Kyrgyz\";s:11:\"native_name\";s:16:\"Кыргызча\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.7.2/kir.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"ky\";i:2;s:3:\"kir\";i:3;s:3:\"kir\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:14:\"Улантуу\";}}s:2:\"lo\";a:8:{s:8:\"language\";s:2:\"lo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-12 09:59:23\";s:12:\"english_name\";s:3:\"Lao\";s:11:\"native_name\";s:21:\"ພາສາລາວ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/lo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lo\";i:2;s:3:\"lao\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"ຕໍ່ໄປ\";}}s:5:\"lt_LT\";a:8:{s:8:\"language\";s:5:\"lt_LT\";s:7:\"version\";s:5:\"6.5.5\";s:7:\"updated\";s:19:\"2024-06-13 13:11:03\";s:12:\"english_name\";s:10:\"Lithuanian\";s:11:\"native_name\";s:15:\"Lietuvių kalba\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.5.5/lt_LT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lt\";i:2;s:3:\"lit\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Tęsti\";}}s:2:\"lv\";a:8:{s:8:\"language\";s:2:\"lv\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-03-13 10:34:12\";s:12:\"english_name\";s:7:\"Latvian\";s:11:\"native_name\";s:16:\"Latviešu valoda\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.7.2/lv.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lv\";i:2;s:3:\"lav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Turpināt\";}}s:5:\"mk_MK\";a:8:{s:8:\"language\";s:5:\"mk_MK\";s:7:\"version\";s:5:\"6.0.9\";s:7:\"updated\";s:19:\"2022-10-01 09:23:52\";s:12:\"english_name\";s:10:\"Macedonian\";s:11:\"native_name\";s:31:\"Македонски јазик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.0.9/mk_MK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mk\";i:2;s:3:\"mkd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Продолжи\";}}s:5:\"ml_IN\";a:8:{s:8:\"language\";s:5:\"ml_IN\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-03-20 16:41:38\";s:12:\"english_name\";s:9:\"Malayalam\";s:11:\"native_name\";s:18:\"മലയാളം\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/ml_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ml\";i:2;s:3:\"mal\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"തുടരുക\";}}s:2:\"mn\";a:8:{s:8:\"language\";s:2:\"mn\";s:7:\"version\";s:5:\"6.5.5\";s:7:\"updated\";s:19:\"2024-06-20 17:22:06\";s:12:\"english_name\";s:9:\"Mongolian\";s:11:\"native_name\";s:12:\"Монгол\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.5.5/mn.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mn\";i:2;s:3:\"mon\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"mr\";a:8:{s:8:\"language\";s:2:\"mr\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-02-15 06:59:18\";s:12:\"english_name\";s:7:\"Marathi\";s:11:\"native_name\";s:15:\"मराठी\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.7.2/mr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mr\";i:2;s:3:\"mar\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"सुरु ठेवा\";}}s:5:\"ms_MY\";a:8:{s:8:\"language\";s:5:\"ms_MY\";s:7:\"version\";s:6:\"5.5.15\";s:7:\"updated\";s:19:\"2022-03-11 13:52:22\";s:12:\"english_name\";s:5:\"Malay\";s:11:\"native_name\";s:13:\"Bahasa Melayu\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.5.15/ms_MY.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ms\";i:2;s:3:\"msa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Teruskan\";}}s:5:\"my_MM\";a:8:{s:8:\"language\";s:5:\"my_MM\";s:7:\"version\";s:6:\"4.2.38\";s:7:\"updated\";s:19:\"2017-12-26 11:57:10\";s:12:\"english_name\";s:17:\"Myanmar (Burmese)\";s:11:\"native_name\";s:15:\"ဗမာစာ\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.2.38/my_MM.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"my\";i:2;s:3:\"mya\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:54:\"ဆက်လက်လုပ်ဆောင်ပါ။\";}}s:5:\"nb_NO\";a:8:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-03-01 17:56:33\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/nb_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nb\";i:2;s:3:\"nob\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsett\";}}s:5:\"ne_NP\";a:8:{s:8:\"language\";s:5:\"ne_NP\";s:7:\"version\";s:5:\"6.6.2\";s:7:\"updated\";s:19:\"2024-08-30 11:32:23\";s:12:\"english_name\";s:6:\"Nepali\";s:11:\"native_name\";s:18:\"नेपाली\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.6.2/ne_NP.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ne\";i:2;s:3:\"nep\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:43:\"जारी राख्नुहोस्\";}}s:5:\"nl_BE\";a:8:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-03-20 09:36:13\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/nl_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nl_NL\";a:8:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-03-30 20:03:24\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/nl_NL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:12:\"nl_NL_formal\";a:8:{s:8:\"language\";s:12:\"nl_NL_formal\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-04-07 16:57:56\";s:12:\"english_name\";s:14:\"Dutch (Formal)\";s:11:\"native_name\";s:20:\"Nederlands (Formeel)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/6.7.2/nl_NL_formal.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nn_NO\";a:8:{s:8:\"language\";s:5:\"nn_NO\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-03-18 10:59:16\";s:12:\"english_name\";s:19:\"Norwegian (Nynorsk)\";s:11:\"native_name\";s:13:\"Norsk nynorsk\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/nn_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nn\";i:2;s:3:\"nno\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Hald fram\";}}s:3:\"oci\";a:8:{s:8:\"language\";s:3:\"oci\";s:7:\"version\";s:6:\"4.8.25\";s:7:\"updated\";s:19:\"2017-08-25 10:03:08\";s:12:\"english_name\";s:7:\"Occitan\";s:11:\"native_name\";s:7:\"Occitan\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.8.25/oci.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"oc\";i:2;s:3:\"oci\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Contunhar\";}}s:5:\"pa_IN\";a:8:{s:8:\"language\";s:5:\"pa_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-16 05:19:43\";s:12:\"english_name\";s:15:\"Panjabi (India)\";s:11:\"native_name\";s:18:\"ਪੰਜਾਬੀ\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/pa_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pa\";i:2;s:3:\"pan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"ਜਾਰੀ ਰੱਖੋ\";}}s:5:\"pl_PL\";a:8:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-02-15 16:20:12\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/pl_PL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pl\";i:2;s:3:\"pol\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Kontynuuj\";}}s:2:\"ps\";a:8:{s:8:\"language\";s:2:\"ps\";s:7:\"version\";s:6:\"4.3.34\";s:7:\"updated\";s:19:\"2015-12-02 21:41:29\";s:12:\"english_name\";s:6:\"Pashto\";s:11:\"native_name\";s:8:\"پښتو\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.3.34/ps.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ps\";i:2;s:3:\"pus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"دوام ورکړه\";}}s:10:\"pt_PT_ao90\";a:8:{s:8:\"language\";s:10:\"pt_PT_ao90\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2024-11-22 09:42:36\";s:12:\"english_name\";s:27:\"Portuguese (Portugal, AO90)\";s:11:\"native_name\";s:17:\"Português (AO90)\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/translation/core/6.7.2/pt_PT_ao90.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_BR\";a:8:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-02-25 12:07:35\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/pt_BR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pt\";i:2;s:3:\"por\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_PT\";a:8:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-03-06 01:20:04\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/pt_PT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_AO\";a:8:{s:8:\"language\";s:5:\"pt_AO\";s:7:\"version\";s:5:\"6.4.5\";s:7:\"updated\";s:19:\"2023-08-21 12:15:00\";s:12:\"english_name\";s:19:\"Portuguese (Angola)\";s:11:\"native_name\";s:20:\"Português de Angola\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.5/pt_AO.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:3:\"rhg\";a:8:{s:8:\"language\";s:3:\"rhg\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-16 13:03:18\";s:12:\"english_name\";s:8:\"Rohingya\";s:11:\"native_name\";s:8:\"Ruáinga\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/rhg.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"rhg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"ro_RO\";a:8:{s:8:\"language\";s:5:\"ro_RO\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-04-02 15:43:20\";s:12:\"english_name\";s:8:\"Romanian\";s:11:\"native_name\";s:8:\"Română\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/ro_RO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ro\";i:2;s:3:\"ron\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuă\";}}s:5:\"ru_RU\";a:8:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-03-24 17:37:53\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/ru_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ru\";i:2;s:3:\"rus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продолжить\";}}s:3:\"sah\";a:8:{s:8:\"language\";s:3:\"sah\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-21 02:06:41\";s:12:\"english_name\";s:5:\"Sakha\";s:11:\"native_name\";s:14:\"Сахалыы\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/sah.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"sah\";i:3;s:3:\"sah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Салҕаа\";}}s:3:\"snd\";a:8:{s:8:\"language\";s:3:\"snd\";s:7:\"version\";s:6:\"5.4.16\";s:7:\"updated\";s:19:\"2020-07-07 01:53:37\";s:12:\"english_name\";s:6:\"Sindhi\";s:11:\"native_name\";s:8:\"سنڌي\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/5.4.16/snd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"sd\";i:2;s:3:\"snd\";i:3;s:3:\"snd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"اڳتي هلو\";}}s:5:\"si_LK\";a:8:{s:8:\"language\";s:5:\"si_LK\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-12 06:00:52\";s:12:\"english_name\";s:7:\"Sinhala\";s:11:\"native_name\";s:15:\"සිංහල\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/si_LK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"si\";i:2;s:3:\"sin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:44:\"දිගටම කරගෙන යන්න\";}}s:5:\"sk_SK\";a:8:{s:8:\"language\";s:5:\"sk_SK\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-02-10 11:39:57\";s:12:\"english_name\";s:6:\"Slovak\";s:11:\"native_name\";s:11:\"Slovenčina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/sk_SK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sk\";i:2;s:3:\"slk\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Pokračovať\";}}s:3:\"skr\";a:8:{s:8:\"language\";s:3:\"skr\";s:7:\"version\";s:5:\"6.6.2\";s:7:\"updated\";s:19:\"2024-09-21 09:44:08\";s:12:\"english_name\";s:7:\"Saraiki\";s:11:\"native_name\";s:14:\"سرائیکی\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.6.2/skr.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"skr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:17:\"جاری رکھو\";}}s:5:\"sl_SI\";a:8:{s:8:\"language\";s:5:\"sl_SI\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2024-08-30 07:14:35\";s:12:\"english_name\";s:9:\"Slovenian\";s:11:\"native_name\";s:13:\"Slovenščina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/sl_SI.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sl\";i:2;s:3:\"slv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Nadaljuj\";}}s:2:\"sq\";a:8:{s:8:\"language\";s:2:\"sq\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-01-30 10:26:38\";s:12:\"english_name\";s:8:\"Albanian\";s:11:\"native_name\";s:5:\"Shqip\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.7.2/sq.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sq\";i:2;s:3:\"sqi\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Vazhdo\";}}s:5:\"sr_RS\";a:8:{s:8:\"language\";s:5:\"sr_RS\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2024-09-20 22:15:56\";s:12:\"english_name\";s:7:\"Serbian\";s:11:\"native_name\";s:23:\"Српски језик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/sr_RS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sr\";i:2;s:3:\"srp\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:14:\"Настави\";}}s:5:\"sv_SE\";a:8:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-02-03 17:00:50\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/sv_SE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sv\";i:2;s:3:\"swe\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Fortsätt\";}}s:2:\"sw\";a:8:{s:8:\"language\";s:2:\"sw\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-02-02 07:29:05\";s:12:\"english_name\";s:7:\"Swahili\";s:11:\"native_name\";s:9:\"Kiswahili\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.7.2/sw.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sw\";i:2;s:3:\"swa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Endelea\";}}s:3:\"szl\";a:8:{s:8:\"language\";s:3:\"szl\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-24 19:58:14\";s:12:\"english_name\";s:8:\"Silesian\";s:11:\"native_name\";s:17:\"Ślōnskŏ gŏdka\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/szl.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"szl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:13:\"Kōntynuować\";}}s:5:\"ta_IN\";a:8:{s:8:\"language\";s:5:\"ta_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 03:22:47\";s:12:\"english_name\";s:5:\"Tamil\";s:11:\"native_name\";s:15:\"தமிழ்\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/ta_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ta\";i:2;s:3:\"tam\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:24:\"தொடரவும்\";}}s:5:\"ta_LK\";a:8:{s:8:\"language\";s:5:\"ta_LK\";s:7:\"version\";s:6:\"4.2.38\";s:7:\"updated\";s:19:\"2015-12-03 01:07:44\";s:12:\"english_name\";s:17:\"Tamil (Sri Lanka)\";s:11:\"native_name\";s:15:\"தமிழ்\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.2.38/ta_LK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ta\";i:2;s:3:\"tam\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"தொடர்க\";}}s:2:\"te\";a:8:{s:8:\"language\";s:2:\"te\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:47:39\";s:12:\"english_name\";s:6:\"Telugu\";s:11:\"native_name\";s:18:\"తెలుగు\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/te.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"te\";i:2;s:3:\"tel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"కొనసాగించు\";}}s:2:\"th\";a:8:{s:8:\"language\";s:2:\"th\";s:7:\"version\";s:6:\"5.8.10\";s:7:\"updated\";s:19:\"2022-06-08 04:30:30\";s:12:\"english_name\";s:4:\"Thai\";s:11:\"native_name\";s:9:\"ไทย\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.8.10/th.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"th\";i:2;s:3:\"tha\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"ต่อไป\";}}s:2:\"tl\";a:8:{s:8:\"language\";s:2:\"tl\";s:7:\"version\";s:6:\"4.8.25\";s:7:\"updated\";s:19:\"2017-09-30 09:04:29\";s:12:\"english_name\";s:7:\"Tagalog\";s:11:\"native_name\";s:7:\"Tagalog\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8.25/tl.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tl\";i:2;s:3:\"tgl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Magpatuloy\";}}s:5:\"tr_TR\";a:8:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-03-14 00:21:51\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/tr_TR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tr\";i:2;s:3:\"tur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Devam\";}}s:5:\"tt_RU\";a:8:{s:8:\"language\";s:5:\"tt_RU\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-20 20:20:50\";s:12:\"english_name\";s:5:\"Tatar\";s:11:\"native_name\";s:19:\"Татар теле\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/tt_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tt\";i:2;s:3:\"tat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:17:\"дәвам итү\";}}s:3:\"tah\";a:8:{s:8:\"language\";s:3:\"tah\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-06 18:39:39\";s:12:\"english_name\";s:8:\"Tahitian\";s:11:\"native_name\";s:10:\"Reo Tahiti\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/tah.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"ty\";i:2;s:3:\"tah\";i:3;s:3:\"tah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"ug_CN\";a:8:{s:8:\"language\";s:5:\"ug_CN\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-02-03 01:12:45\";s:12:\"english_name\";s:6:\"Uighur\";s:11:\"native_name\";s:16:\"ئۇيغۇرچە\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/ug_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ug\";i:2;s:3:\"uig\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:26:\"داۋاملاشتۇرۇش\";}}s:2:\"uk\";a:8:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"6.4.5\";s:7:\"updated\";s:19:\"2025-04-06 13:26:14\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.4.5/uk.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uk\";i:2;s:3:\"ukr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продовжити\";}}s:2:\"ur\";a:8:{s:8:\"language\";s:2:\"ur\";s:7:\"version\";s:6:\"5.4.16\";s:7:\"updated\";s:19:\"2020-04-09 11:17:33\";s:12:\"english_name\";s:4:\"Urdu\";s:11:\"native_name\";s:8:\"اردو\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.4.16/ur.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ur\";i:2;s:3:\"urd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"جاری رکھیں\";}}s:5:\"uz_UZ\";a:8:{s:8:\"language\";s:5:\"uz_UZ\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-02-28 12:02:22\";s:12:\"english_name\";s:5:\"Uzbek\";s:11:\"native_name\";s:11:\"O‘zbekcha\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/uz_UZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uz\";i:2;s:3:\"uzb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Davom etish\";}}s:2:\"vi\";a:8:{s:8:\"language\";s:2:\"vi\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-03-23 02:18:04\";s:12:\"english_name\";s:10:\"Vietnamese\";s:11:\"native_name\";s:14:\"Tiếng Việt\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.7.2/vi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"vi\";i:2;s:3:\"vie\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Tiếp tục\";}}s:5:\"zh_TW\";a:8:{s:8:\"language\";s:5:\"zh_TW\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-02-12 08:54:01\";s:12:\"english_name\";s:16:\"Chinese (Taiwan)\";s:11:\"native_name\";s:12:\"繁體中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/zh_TW.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}s:5:\"zh_CN\";a:8:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-03-26 06:53:42\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/zh_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"继续\";}}s:5:\"zh_HK\";a:8:{s:8:\"language\";s:5:\"zh_HK\";s:7:\"version\";s:5:\"6.2.6\";s:7:\"updated\";s:19:\"2022-07-15 15:25:03\";s:12:\"english_name\";s:19:\"Chinese (Hong Kong)\";s:11:\"native_name\";s:12:\"香港中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.6/zh_HK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}}','off'),(8291,'_site_transient_timeout_fs_garbage_collection','1744462842','off'),(8292,'_site_transient_fs_garbage_collection','1','off'),(8293,'_transient_timeout_acf_pro_validating_license','1744377342','off'),(8294,'_transient_acf_pro_validating_license','1','off'),(8295,'_transient_timeout__omapi_validate','1744462871','off'),(8296,'_transient__omapi_validate','1','off'),(8299,'_site_transient_timeout_browser_99d149899c4f2f3d79df1f8e73f539ef','1744981245','off'),(8300,'_site_transient_browser_99d149899c4f2f3d79df1f8e73f539ef','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"135.0.0.0\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','off'),(8301,'_transient_timeout_action_scheduler_last_pastdue_actions_check','1744398045','off'),(8302,'_transient_action_scheduler_last_pastdue_actions_check','1744376445','off'),(8303,'_transient_timeout_wp_mail_smtp_error_debug_events_transient_30-days','1744380045','off'),(8304,'_transient_wp_mail_smtp_error_debug_events_transient_30-days','0','off'),(8306,'_transient_timeout_om_notification_count','1744419651','off'),(8307,'_transient_om_notification_count','0','off'),(8365,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1744411055;s:8:\"response\";a:4:{s:21:\"backwpup/backwpup.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:22:\"w.org/plugins/backwpup\";s:4:\"slug\";s:8:\"backwpup\";s:6:\"plugin\";s:21:\"backwpup/backwpup.php\";s:11:\"new_version\";s:5:\"5.1.1\";s:3:\"url\";s:39:\"https://wordpress.org/plugins/backwpup/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/plugin/backwpup.5.1.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:61:\"https://ps.w.org/backwpup/assets/icon-256x256.png?rev=3236141\";s:2:\"1x\";s:61:\"https://ps.w.org/backwpup/assets/icon-256x256.png?rev=3236141\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/backwpup/assets/banner-1544x500.jpg?rev=3236141\";s:2:\"1x\";s:63:\"https://ps.w.org/backwpup/assets/banner-772x250.jpg?rev=3236141\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.9\";s:6:\"tested\";s:5:\"6.7.2\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}}s:54:\"broken-link-checker-seo/aioseo-broken-link-checker.php\";O:8:\"stdClass\":14:{s:2:\"id\";s:37:\"w.org/plugins/broken-link-checker-seo\";s:4:\"slug\";s:23:\"broken-link-checker-seo\";s:6:\"plugin\";s:54:\"broken-link-checker-seo/aioseo-broken-link-checker.php\";s:11:\"new_version\";s:5:\"1.2.4\";s:3:\"url\";s:54:\"https://wordpress.org/plugins/broken-link-checker-seo/\";s:7:\"package\";s:72:\"https://downloads.wordpress.org/plugin/broken-link-checker-seo.1.2.4.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:68:\"https://ps.w.org/broken-link-checker-seo/assets/icon.svg?rev=2889210\";s:3:\"svg\";s:68:\"https://ps.w.org/broken-link-checker-seo/assets/icon.svg?rev=2889210\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:79:\"https://ps.w.org/broken-link-checker-seo/assets/banner-1544x500.png?rev=2889210\";s:2:\"1x\";s:78:\"https://ps.w.org/broken-link-checker-seo/assets/banner-772x250.png?rev=2889210\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.3\";s:6:\"tested\";s:5:\"6.7.2\";s:12:\"requires_php\";s:3:\"5.6\";s:16:\"requires_plugins\";a:0:{}s:14:\"upgrade_notice\";s:57:\"<p>This update adds major improvements and bug fixes.</p>\";}s:36:\"contact-form-7/wp-contact-form-7.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:28:\"w.org/plugins/contact-form-7\";s:4:\"slug\";s:14:\"contact-form-7\";s:6:\"plugin\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:11:\"new_version\";s:5:\"6.0.6\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/contact-form-7/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.6.0.6.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:59:\"https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255\";s:3:\"svg\";s:59:\"https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/contact-form-7/assets/banner-1544x500.png?rev=860901\";s:2:\"1x\";s:68:\"https://ps.w.org/contact-form-7/assets/banner-772x250.png?rev=880427\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.6\";s:6:\"tested\";s:3:\"6.8\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}}s:37:\"optinmonster/optin-monster-wp-api.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:26:\"w.org/plugins/optinmonster\";s:4:\"slug\";s:12:\"optinmonster\";s:6:\"plugin\";s:37:\"optinmonster/optin-monster-wp-api.php\";s:11:\"new_version\";s:7:\"2.16.19\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/optinmonster/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/optinmonster.2.16.19.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/optinmonster/assets/icon-256x256.png?rev=1145864\";s:2:\"1x\";s:65:\"https://ps.w.org/optinmonster/assets/icon-128x128.png?rev=1145864\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/optinmonster/assets/banner-1544x500.png?rev=2311621\";s:2:\"1x\";s:67:\"https://ps.w.org/optinmonster/assets/banner-772x250.png?rev=2311621\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.7\";s:6:\"tested\";s:5:\"6.7.2\";s:12:\"requires_php\";s:3:\"5.3\";s:16:\"requires_plugins\";a:0:{}}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:12:{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:5:\"5.3.7\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.5.3.7.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:43:\"all-in-one-seo-pack/all_in_one_seo_pack.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:33:\"w.org/plugins/all-in-one-seo-pack\";s:4:\"slug\";s:19:\"all-in-one-seo-pack\";s:6:\"plugin\";s:43:\"all-in-one-seo-pack/all_in_one_seo_pack.php\";s:11:\"new_version\";s:7:\"4.8.1.1\";s:3:\"url\";s:50:\"https://wordpress.org/plugins/all-in-one-seo-pack/\";s:7:\"package\";s:70:\"https://downloads.wordpress.org/plugin/all-in-one-seo-pack.4.8.1.1.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:64:\"https://ps.w.org/all-in-one-seo-pack/assets/icon.svg?rev=2443290\";s:3:\"svg\";s:64:\"https://ps.w.org/all-in-one-seo-pack/assets/icon.svg?rev=2443290\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:75:\"https://ps.w.org/all-in-one-seo-pack/assets/banner-1544x500.png?rev=2443290\";s:2:\"1x\";s:74:\"https://ps.w.org/all-in-one-seo-pack/assets/banner-772x250.png?rev=2443290\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.3\";}s:23:\"debug-bar/debug-bar.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:23:\"w.org/plugins/debug-bar\";s:4:\"slug\";s:9:\"debug-bar\";s:6:\"plugin\";s:23:\"debug-bar/debug-bar.php\";s:11:\"new_version\";s:5:\"1.1.6\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/debug-bar/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/debug-bar.1.1.6.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:54:\"https://ps.w.org/debug-bar/assets/icon.svg?rev=3050748\";s:3:\"svg\";s:54:\"https://ps.w.org/debug-bar/assets/icon.svg?rev=3050748\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/debug-bar/assets/banner-1544x500.png?rev=3050748\";s:2:\"1x\";s:64:\"https://ps.w.org/debug-bar/assets/banner-772x250.png?rev=3050748\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.4\";}s:45:\"ewww-image-optimizer/ewww-image-optimizer.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:34:\"w.org/plugins/ewww-image-optimizer\";s:4:\"slug\";s:20:\"ewww-image-optimizer\";s:6:\"plugin\";s:45:\"ewww-image-optimizer/ewww-image-optimizer.php\";s:11:\"new_version\";s:5:\"8.1.3\";s:3:\"url\";s:51:\"https://wordpress.org/plugins/ewww-image-optimizer/\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/plugin/ewww-image-optimizer.8.1.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/ewww-image-optimizer/assets/icon-256x256.png?rev=1582276\";s:2:\"1x\";s:73:\"https://ps.w.org/ewww-image-optimizer/assets/icon-128x128.png?rev=1582276\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:76:\"https://ps.w.org/ewww-image-optimizer/assets/banner-1544x500.jpg?rev=1582276\";s:2:\"1x\";s:75:\"https://ps.w.org/ewww-image-optimizer/assets/banner-772x250.jpg?rev=1582276\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.4\";}s:50:\"google-analytics-for-wordpress/googleanalytics.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:44:\"w.org/plugins/google-analytics-for-wordpress\";s:4:\"slug\";s:30:\"google-analytics-for-wordpress\";s:6:\"plugin\";s:50:\"google-analytics-for-wordpress/googleanalytics.php\";s:11:\"new_version\";s:5:\"9.4.1\";s:3:\"url\";s:61:\"https://wordpress.org/plugins/google-analytics-for-wordpress/\";s:7:\"package\";s:79:\"https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.9.4.1.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:75:\"https://ps.w.org/google-analytics-for-wordpress/assets/icon.svg?rev=2976619\";s:3:\"svg\";s:75:\"https://ps.w.org/google-analytics-for-wordpress/assets/icon.svg?rev=2976619\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:86:\"https://ps.w.org/google-analytics-for-wordpress/assets/banner-1544x500.png?rev=2159532\";s:2:\"1x\";s:85:\"https://ps.w.org/google-analytics-for-wordpress/assets/banner-772x250.png?rev=2159532\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:5:\"5.6.0\";}s:21:\"imsanity/imsanity.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:22:\"w.org/plugins/imsanity\";s:4:\"slug\";s:8:\"imsanity\";s:6:\"plugin\";s:21:\"imsanity/imsanity.php\";s:11:\"new_version\";s:5:\"2.8.6\";s:3:\"url\";s:39:\"https://wordpress.org/plugins/imsanity/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/plugin/imsanity.2.8.6.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:53:\"https://ps.w.org/imsanity/assets/icon.svg?rev=2420360\";s:3:\"svg\";s:53:\"https://ps.w.org/imsanity/assets/icon.svg?rev=2420360\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/imsanity/assets/banner-1544x500.png?rev=2420360\";s:2:\"1x\";s:63:\"https://ps.w.org/imsanity/assets/banner-772x250.png?rev=2420360\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.4\";}s:23:\"siteguard/siteguard.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:23:\"w.org/plugins/siteguard\";s:4:\"slug\";s:9:\"siteguard\";s:6:\"plugin\";s:23:\"siteguard/siteguard.php\";s:11:\"new_version\";s:5:\"1.7.8\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/siteguard/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/siteguard.1.7.8.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:62:\"https://ps.w.org/siteguard/assets/icon-256x256.png?rev=1011863\";s:2:\"1x\";s:62:\"https://ps.w.org/siteguard/assets/icon-128x128.png?rev=1011863\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:64:\"https://ps.w.org/siteguard/assets/banner-772x250.png?rev=1011863\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.9\";}s:35:\"google-site-kit/google-site-kit.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:29:\"w.org/plugins/google-site-kit\";s:4:\"slug\";s:15:\"google-site-kit\";s:6:\"plugin\";s:35:\"google-site-kit/google-site-kit.php\";s:11:\"new_version\";s:7:\"1.150.0\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/google-site-kit/\";s:7:\"package\";s:66:\"https://downloads.wordpress.org/plugin/google-site-kit.1.150.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/google-site-kit/assets/icon-256x256.png?rev=3141863\";s:2:\"1x\";s:68:\"https://ps.w.org/google-site-kit/assets/icon-128x128.png?rev=3141863\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/google-site-kit/assets/banner-1544x500.png?rev=3141863\";s:2:\"1x\";s:70:\"https://ps.w.org/google-site-kit/assets/banner-772x250.png?rev=3141863\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.2\";}s:29:\"wp-mail-smtp/wp_mail_smtp.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:26:\"w.org/plugins/wp-mail-smtp\";s:4:\"slug\";s:12:\"wp-mail-smtp\";s:6:\"plugin\";s:29:\"wp-mail-smtp/wp_mail_smtp.php\";s:11:\"new_version\";s:5:\"4.4.0\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/wp-mail-smtp/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/wp-mail-smtp.4.4.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/wp-mail-smtp/assets/icon-256x256.png?rev=1755440\";s:2:\"1x\";s:65:\"https://ps.w.org/wp-mail-smtp/assets/icon-128x128.png?rev=1755440\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/wp-mail-smtp/assets/banner-1544x500.png?rev=3206423\";s:2:\"1x\";s:67:\"https://ps.w.org/wp-mail-smtp/assets/banner-772x250.png?rev=3206423\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.5\";}s:25:\"zipaddr-jp/zipaddr-jp.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:24:\"w.org/plugins/zipaddr-jp\";s:4:\"slug\";s:10:\"zipaddr-jp\";s:6:\"plugin\";s:25:\"zipaddr-jp/zipaddr-jp.php\";s:11:\"new_version\";s:4:\"1.38\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/zipaddr-jp/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/zipaddr-jp.1.38.zip\";s:5:\"icons\";a:1:{s:7:\"default\";s:54:\"https://s.w.org/plugins/geopattern-icon/zipaddr-jp.svg\";}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.7\";}s:77:\"contact-form-7-multi-step-module-premium/contact-form-7-multi-step-module.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:77:\"contact-form-7-multi-step-module-premium/contact-form-7-multi-step-module.php\";s:4:\"slug\";s:32:\"contact-form-7-multi-step-module\";s:6:\"plugin\";s:77:\"contact-form-7-multi-step-module-premium/contact-form-7-multi-step-module.php\";s:11:\"new_version\";s:5:\"4.4.2\";s:3:\"url\";s:0:\"\";s:7:\"package\";s:0:\"\";s:5:\"icons\";a:0:{}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:0:\"\";s:12:\"requires_php\";s:0:\"\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:34:\"advanced-custom-fields-pro/acf.php\";O:8:\"stdClass\":12:{s:4:\"slug\";s:26:\"advanced-custom-fields-pro\";s:6:\"plugin\";s:34:\"advanced-custom-fields-pro/acf.php\";s:11:\"new_version\";s:7:\"6.4.0.1\";s:3:\"url\";s:36:\"https://www.advancedcustomfields.com\";s:6:\"tested\";s:3:\"6.8\";s:7:\"package\";s:0:\"\";s:5:\"icons\";a:1:{s:7:\"default\";s:64:\"https://connect.advancedcustomfields.com/assets/icon-256x256.png\";}s:7:\"banners\";a:2:{s:3:\"low\";s:66:\"https://connect.advancedcustomfields.com/assets/banner-772x250.jpg\";s:4:\"high\";s:67:\"https://connect.advancedcustomfields.com/assets/banner-1544x500.jpg\";}s:8:\"requires\";s:3:\"6.0\";s:12:\"requires_php\";s:3:\"7.4\";s:12:\"release_date\";s:8:\"20250408\";s:6:\"reason\";s:10:\"up_to_date\";}}s:7:\"checked\";a:16:{s:34:\"advanced-custom-fields-pro/acf.php\";s:7:\"6.4.0.1\";s:19:\"akismet/akismet.php\";s:5:\"5.3.7\";s:43:\"all-in-one-seo-pack/all_in_one_seo_pack.php\";s:7:\"4.8.1.1\";s:21:\"backwpup/backwpup.php\";s:5:\"5.0.7\";s:54:\"broken-link-checker-seo/aioseo-broken-link-checker.php\";s:5:\"1.2.3\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:5:\"6.0.4\";s:77:\"contact-form-7-multi-step-module-premium/contact-form-7-multi-step-module.php\";s:5:\"4.4.2\";s:23:\"debug-bar/debug-bar.php\";s:5:\"1.1.6\";s:45:\"ewww-image-optimizer/ewww-image-optimizer.php\";s:5:\"8.1.3\";s:50:\"google-analytics-for-wordpress/googleanalytics.php\";s:5:\"9.4.1\";s:21:\"imsanity/imsanity.php\";s:5:\"2.8.6\";s:37:\"optinmonster/optin-monster-wp-api.php\";s:7:\"2.16.16\";s:23:\"siteguard/siteguard.php\";s:5:\"1.7.8\";s:35:\"google-site-kit/google-site-kit.php\";s:7:\"1.150.0\";s:29:\"wp-mail-smtp/wp_mail_smtp.php\";s:5:\"4.4.0\";s:25:\"zipaddr-jp/zipaddr-jp.php\";s:4:\"1.38\";}}','off'),(8372,'_site_transient_timeout_theme_roots','1744413546','off'),(8373,'_site_transient_theme_roots','a:2:{s:11:\"tenjokure-n\";s:7:\"/themes\";s:16:\"twentytwentyfive\";s:7:\"/themes\";}','off'),(8403,'_site_transient_timeout_wp_theme_files_patterns-ca6f47b2fdaf86c51809898827223352','1744431653','off'),(8404,'_site_transient_wp_theme_files_patterns-ca6f47b2fdaf86c51809898827223352','a:2:{s:7:\"version\";s:5:\"1.0.0\";s:8:\"patterns\";a:0:{}}','off'),(8405,'_transient_doing_cron','1744429853.7802090644836425781250','on'); /*!40000 ALTER TABLE `wp_options` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_postmeta` -- DROP TABLE IF EXISTS `wp_postmeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `wp_postmeta` ( `meta_id` bigint unsigned NOT NULL AUTO_INCREMENT, `post_id` bigint unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_520_ci, PRIMARY KEY (`meta_id`), KEY `post_id` (`post_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB AUTO_INCREMENT=127 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_postmeta` -- LOCK TABLES `wp_postmeta` WRITE; /*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */; INSERT INTO `wp_postmeta` VALUES (1,2,'_wp_page_template','default'),(3,6,'_form','<table class=\"contact\">\n <tbody>\n <tr>\n <th><span class=\"Required\">必須</span>種別</th>\n<td>[radio radio-170 use_label_element default:1 \"無料相談\" \"お問い合わせ\"]</td>\n</tr>\n <tr>\n <th>会社名 <span class=\"Required\">必須</span></th>\n<td>[text* company id:inp-company placeholder \"例)××××××株式会社\"]</td>\n</tr>\n <tr>\n <th>お名前 <span class=\"Required\">必須</span></th>\n<td>[text* namae id:inp-namae placeholder \"例)斎藤 太郎\"]</td>\n</tr>\n <tr>\n <th>電話番号<span class=\"Required\">必須</span></th>\n<td>[tel* tel id:inp-tel placeholder \"例)0905555555\"]</td>\n</tr>\n <tr>\n <th>メールアドレス<span class=\"Required\">必須</span></th>\n<td>[email* your-email id:inp-email placeholder \"例)××××××@sample.co.jp\"]</td>\n</tr>\n <tr>\n <th>お問い合わせ内容</th>\n<td>[textarea your-message maxlength:400 id:message placeholder \"例)ご質問などを400字以内でご入力ください。\" ]<br>\n[count your-message down]</td>\n</tr>\n </tbody>\n</table>\n\n<div class=\"policy\">\n <h3 class=\"p-title\">プライバシーポリシー</h3>\n 以下のとおり、当社の提供する本サービス全般における、利用者の個人情報の取扱いについて、プライバシーポリシーを定めます。\n <h4>個人情報保護方針</h4>\n 当社は、以下のとおり個人情報保護方針を定め、個人情報保護の仕組みを構築し、全従業員に個人情報保護の重要性の認識と取組みを徹底させることにより、個人情報の保護を推進致します。\n <h4>個人情報の管理</h4>\n 当社は、お客さまの個人情報を正確かつ最新の状態に保ち、個人情報への不正アクセス・紛失・破損・改ざん・漏洩などを防止するため、セキュリティシステムの維持・管理体制の整備・社員教育の徹底等の必要な措置を講じ、安全対策を実施し個人情報の厳重な管理を行ないます。\n <h4>個人情報の利用目的</h4>\n 当社は、当社が運営するウェブサイト(以下「当社サイト」と言います。)では、お客様からのお問い合わせ時に、お名前、メールアドレス、電話番号等の個人情報をご登録いただく場合がございますが、これらの個人情報はご提供いただく際の目的以外では利用いたしません。\n お客さまからお預かりした個人情報は、当社からのご連絡や業務のご案内やご質問に対する回答として、電子メールや資料のご送付に利用いたします。\n <h4>個人情報の第三者への開示・提供の禁止</h4>\n 当社は、お客さまよりお預かりした個人情報を適切に管理し、次のいずれかに該当する場合を除き、個人情報を第三者に開示いたしません。\n <ul class=\"style decimal\">\n <li>お客さまの同意がある場合</li>\n <li>当社関係会社その他の協力会社に対し業務委託を行なうために必要な場合</li>\n <li>お客さまからのお問い合わせ内容に照らし、当社製品・サービスを提供する当社関係会社にて対応することが適当と当社で判断した場合</li>\n <li>法令に基づき開示することが必要である場合</li>\n <li>人命や人権を保護するために緊急に開示を行なう必要がある場合</li>\n <li>司法機関、警察などの公共団体などによる法令に基づく要請に協力する場合</li>\n </ul>\n <h4>個人情報の安全対策</h4>\n 当社は、当社サイトを通じてご本人から個人情報をご提供いただく際は、通信途上における第三者への情報漏えいを防止するため、SSL (Secure Sockets Layer)/TLS (Transport Layer Security)による暗号化またはこれに準ずるセキュリティ技術を使用します。\n ただし、ご本人のコンピューター環境により、まれにこれらの技術をご利用いただけない場合がございます。\n <h4>Googleアナリティクスの利用について</h4>\n 当社は、当社サイトにおいて、その利用状況を把握するために、Googleアナリティクスを利用することがあります。Googleアナリティクスは、ファーストパーティクッキーを利用して、弊社サイトへのアクセス情報を個人を特定することなく収集します。\n アクセス情報の収集方法および利用方法については、Googleアナリティクスサービス利用規約およびGoogleプライバシーポリシーによって定められています。\n Googleアナリティクスについての詳細は、次のページをご参照ください。\n <a href=\"http://www.google.com/analytics\" target=\"_blank\" rel=\"noopener\">http://www.google.com/analytics</a>\n </div>\n\n<div class=\"Check\"><span class=\"Required\">必須</span>[acceptance acceptance-132] 個人情報の取り扱いについて<br class=\"br_sp\">同意する [/acceptance]</div>\n<ul class=\"BtBox\">\n<li>[submit class:ContactBt03 \"入力内容確認へ\"]</li>\n[multistep multistep-176 first_step \"/contact-confirm\"]\n</ul>\n\n<div class=\"reCAPTCHA-txt\">\n<p>このサイトはreCAPTCHAによって保護されており<br>\nGoogleの<a href=\"https://policies.google.com/privacy\" rel=\"noopener\" target=\"_blank\">プライバシーポリシー</a>と<a href=\"https://policies.google.com/terms\" rel=\"noopener\" target=\"_blank\">利用規約</a>\nが適用されます。</p>\n</div>'),(4,6,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:58:\"[_site_title]からお問い合わせがありました。\";s:6:\"sender\";s:40:\"[_site_title] <no-reply@tenjokure-n.com>\";s:9:\"recipient\";s:22:\"info@saito-denki.co.jp\";s:4:\"body\";s:264:\"差出人: [namae] <[your-email]>\n\n種別:[radio-170]\n会社名:[company]\nお名前:[namae]\n電話番号:[tel]\nメールアドレス:[your-email]\nお問い合わせ内容:[your-message]\n\n-- \nこのメールは ([_site_title] [_site_url])から送信されました\";s:18:\"additional_headers\";s:117:\"Reply-To:info@saito-denki.co.jp\nCc:ryota-kobayashi@funaisoken.co.jp,yusuke-ohashi@funaisoken.co.jp\nBcc:cs@acsport.net\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(5,6,'_mail_2','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:64:\"[_site_title]へのお問い合わせを受け付けました。\";s:6:\"sender\";s:40:\"[_site_title] <no-reply@tenjokure-n.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:753:\"[namae]様\nこの度は天井クレーンドットコムへお問い合わせを頂き誠にありがとうございました。\n改めて担当者よりご連絡をさせていただきます。\n\n※このメールアドレスは送信専用です。このメールには返信できませんので、ご了承ください。\n\n-- ご送信内容の確認 -----------------------------------------\n\n会社名:[company]\nお名前:[namae]\n電話番号:[tel]\nメールアドレス:[your-email]\nお問い合わせ内容:[your-message]\n\n天井クレーンドットコム\n運営会社:斎藤電気商会\n〒245-0011 神奈川県横浜市泉区中田町2950-22\nTEL:045-800-5518\n-- \nこのメールは [_site_title] ([_site_url]) から送信されました\";s:18:\"additional_headers\";s:117:\"Reply-To:info@saito-denki.co.jp\nCc:ryota-kobayashi@funaisoken.co.jp,yusuke-ohashi@funaisoken.co.jp\nBcc:cs@acsport.net\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(6,6,'_messages','a:23:{s:12:\"mail_sent_ok\";s:75:\"ありがとうございます。メッセージは送信されました。\";s:12:\"mail_sent_ng\";s:84:\"メッセージの送信に失敗しました。後でまたお試しください。\";s:16:\"validation_error\";s:81:\"入力内容に問題があります。確認して再度お試しください。\";s:4:\"spam\";s:84:\"メッセージの送信に失敗しました。後でまたお試しください。\";s:12:\"accept_terms\";s:66:\"メッセージを送信する前に承諾確認が必要です。\";s:16:\"invalid_required\";s:27:\"入力してください。\";s:16:\"invalid_too_long\";s:48:\"入力されたテキストが長すぎます。\";s:17:\"invalid_too_short\";s:48:\"入力されたテキストが短すぎます。\";s:18:\"invalid_first_step\";s:46:\"Please fill out the form on the previous page.\";s:13:\"upload_failed\";s:81:\"ファイルのアップロード時に不明なエラーが発生しました。\";s:24:\"upload_file_type_invalid\";s:66:\"この形式のファイルはアップロードできません。\";s:21:\"upload_file_too_large\";s:63:\"アップロードされたファイルが大きすぎます。\";s:23:\"upload_failed_php_error\";s:72:\"ファイルのアップロード中にエラーが発生しました。\";s:12:\"invalid_date\";s:59:\"YYYY-MM-DD の形式で日付を入力してください。\";s:14:\"date_too_early\";s:42:\"入力された日付が早すぎます。\";s:13:\"date_too_late\";s:42:\"入力された日付が遅すぎます。\";s:14:\"invalid_number\";s:36:\"数値を入力してください。\";s:16:\"number_too_small\";s:45:\"入力された数値が小さすぎます。\";s:16:\"number_too_large\";s:45:\"入力された数値が大きすぎます。\";s:23:\"quiz_answer_not_correct\";s:48:\"クイズの答えが正しくありません。\";s:13:\"invalid_email\";s:51:\"メールアドレスを入力してください。\";s:11:\"invalid_url\";s:34:\"URL を入力してください。\";s:11:\"invalid_tel\";s:42:\"電話番号を入力してください。\";}'),(7,6,'_additional_settings','acceptance_as_validation: on'),(8,6,'_locale','ja'),(9,6,'_hash','64478b7c2d47bea4238a01ebb3b87f688aed60f9'),(12,2,'_edit_last','1'),(13,2,'_edit_lock','1741350601:1'),(14,2,'_aioseo_title','#site_title'),(15,2,'_aioseo_description','神奈川県を拠点に1都3県対応。天井(ホイスト)クレーンの点検メンテナンス専門店!天井(ホイスト)クレーンに関する法定点検・修理・設置まで一気通貫で対応。'),(16,2,'_aioseo_keywords','a:0:{}'),(17,2,'_aioseo_og_title',NULL),(18,2,'_aioseo_og_description',NULL),(19,2,'_aioseo_og_article_section',''),(20,2,'_aioseo_og_article_tags','a:0:{}'),(21,2,'_aioseo_twitter_title',NULL),(22,2,'_aioseo_twitter_description',NULL),(26,11,'_edit_lock','1741350469:1'),(27,11,'_edit_last','1'),(28,11,'_aioseo_title',NULL),(29,11,'_aioseo_description',NULL),(30,11,'_aioseo_keywords','a:0:{}'),(31,11,'_aioseo_og_title',NULL),(32,11,'_aioseo_og_description',NULL),(33,11,'_aioseo_og_article_section',''),(34,11,'_aioseo_og_article_tags','a:0:{}'),(35,11,'_aioseo_twitter_title',NULL),(36,11,'_aioseo_twitter_description',NULL),(37,13,'_edit_lock','1741052033:1'),(38,13,'_edit_last','1'),(39,13,'_aioseo_title',NULL),(40,13,'_aioseo_description',NULL),(41,13,'_aioseo_keywords','a:0:{}'),(42,13,'_aioseo_og_title',NULL),(43,13,'_aioseo_og_description',NULL),(44,13,'_aioseo_og_article_section',''),(45,13,'_aioseo_og_article_tags','a:0:{}'),(46,13,'_aioseo_twitter_title',NULL),(47,13,'_aioseo_twitter_description',NULL),(48,15,'_menu_item_type','custom'),(49,15,'_menu_item_menu_item_parent','0'),(50,15,'_menu_item_object_id','15'),(51,15,'_menu_item_object','custom'),(52,15,'_menu_item_target',''),(53,15,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(54,15,'_menu_item_xfn',''),(55,15,'_menu_item_url','https://tenjokure-n.com/#tenken'),(57,16,'_menu_item_type','custom'),(58,16,'_menu_item_menu_item_parent','0'),(59,16,'_menu_item_object_id','16'),(60,16,'_menu_item_object','custom'),(61,16,'_menu_item_target',''),(62,16,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(63,16,'_menu_item_xfn',''),(64,16,'_menu_item_url','https://tenjokure-n.com/#repear'),(66,17,'_menu_item_type','custom'),(67,17,'_menu_item_menu_item_parent','0'),(68,17,'_menu_item_object_id','17'),(69,17,'_menu_item_object','custom'),(70,17,'_menu_item_target',''),(71,17,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(72,17,'_menu_item_xfn',''),(73,17,'_menu_item_url','https://tenjokure-n.com/#choice'),(75,18,'_menu_item_type','custom'),(76,18,'_menu_item_menu_item_parent','0'),(77,18,'_menu_item_object_id','18'),(78,18,'_menu_item_object','custom'),(79,18,'_menu_item_target',''),(80,18,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(81,18,'_menu_item_xfn',''),(82,18,'_menu_item_url','https://tenjokure-n.com/#flow'),(84,19,'_menu_item_type','custom'),(85,19,'_menu_item_menu_item_parent','0'),(86,19,'_menu_item_object_id','19'),(87,19,'_menu_item_object','custom'),(88,19,'_menu_item_target',''),(89,19,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(90,19,'_menu_item_xfn',''),(91,19,'_menu_item_url','https://tenjokure-n.com/#contact'),(94,20,'_form','<table class=\"contact\">\n <tbody>\n <tr>\n <th><span class=\"Required\">必須</span>種別</th>\n<td>[multiform \"radio-170\"]</td>\n</tr>\n <tr>\n <th>会社名 <span class=\"Required\">必須</span></th>\n<td>[multiform \"company\"]</td>\n</tr>\n <tr>\n <th>お名前 <span class=\"Required\">必須</span></th>\n<td>[multiform \"namae\"]</td>\n</tr>\n <tr>\n <th>電話番号<span class=\"Required\">必須</span></th>\n<td>[multiform \"tel\"]</td>\n</tr>\n <tr>\n <th>メールアドレス<span class=\"Required\">必須</span></th>\n<td>[multiform \"your-email\"]</td>\n</tr>\n <tr>\n <th>お問い合わせ内容</th>\n<td>[multiform \"your-message\"]</td>\n</tr>\n </tbody>\n</table>\n\n\n<ul class=\"BtBox\">\n<li>[previous class:ContactBt02 \"戻る\"]</li>\n<li>[submit class:ContactBt01 \"送信\"]</li>\n\n[multistep multistep-779 last_step send_email \"/contact-thanks\"]\n</ul>'),(95,20,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:64:\"[namae]様|問い合わせ|天井クレーンドットコム\";s:6:\"sender\";s:40:\"[_site_title] <no-reply@tenjokure-n.com>\";s:9:\"recipient\";s:22:\"info@saito-denki.co.jp\";s:4:\"body\";s:452:\"お疲れ様です。\n只今、お客様より\n「お問い合わせ」がありました。\nご対応宜しくお願いします。\n\n-- ご送信内容の確認 -----------------------------------------\n種別:[radio-170]\n会社名:[company]\nお名前:[namae]\nメールアドレス:[your-email]\nTEL:[tel]\nお問い合わせ内容:[your-message]\n個人情報:同意する\n\n-- \nこのメールは ([_site_title] [_site_url])から送信されました\";s:18:\"additional_headers\";s:118:\"Reply-To:info@saito-denki.co.jp\nCc:ryota-kobayashi@funaisoken.co.jp,\nyusuke-ohashi@funaisoken.co.jp\nBcc:cs@acsport.net\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(96,20,'_mail_2','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:64:\"[_site_title]へのお問い合わせを受け付けました。\";s:6:\"sender\";s:40:\"[_site_title] <no-reply@tenjokure-n.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:878:\"[namae]様\nこの度は天井クレーンドットコムへお問い合わせを頂き誠にありがとうございました。\n改めて担当者よりご連絡をさせていただきます。\n\n※このメールアドレスは送信専用です。このメールには返信できませんので、ご了承ください。\n\n-- ご送信内容の確認 -----------------------------------------\n種別:[radio-170]\n会社名:[company]\nお名前:[namae]\nメールアドレス:[your-email]\nTEL:[tel]\nお問い合わせ内容:[your-message]\n個人情報:同意する\n\n-------------------------------------------------------------\n\n天井クレーンドットコム\n運営会社:斎藤電気商会\n〒245-0011 神奈川県横浜市泉区中田町2950-22\nTEL:045-800-5518\nhttps://tenjokure-n.com/\n-- \nこのメールは [_site_title] ([_site_url]) から送信されました\";s:18:\"additional_headers\";s:52:\"Reply-To:no-reply@tenjokure-n.com\nBcc:cs@acsport.net\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(97,20,'_messages','a:23:{s:12:\"mail_sent_ok\";s:75:\"ありがとうございます。メッセージは送信されました。\";s:12:\"mail_sent_ng\";s:84:\"メッセージの送信に失敗しました。後でまたお試しください。\";s:16:\"validation_error\";s:81:\"入力内容に問題があります。確認して再度お試しください。\";s:4:\"spam\";s:84:\"メッセージの送信に失敗しました。後でまたお試しください。\";s:12:\"accept_terms\";s:66:\"メッセージを送信する前に承諾確認が必要です。\";s:16:\"invalid_required\";s:27:\"入力してください。\";s:16:\"invalid_too_long\";s:48:\"入力されたテキストが長すぎます。\";s:17:\"invalid_too_short\";s:48:\"入力されたテキストが短すぎます。\";s:18:\"invalid_first_step\";s:46:\"Please fill out the form on the previous page.\";s:13:\"upload_failed\";s:81:\"ファイルのアップロード時に不明なエラーが発生しました。\";s:24:\"upload_file_type_invalid\";s:66:\"この形式のファイルはアップロードできません。\";s:21:\"upload_file_too_large\";s:63:\"アップロードされたファイルが大きすぎます。\";s:23:\"upload_failed_php_error\";s:72:\"ファイルのアップロード中にエラーが発生しました。\";s:12:\"invalid_date\";s:59:\"YYYY-MM-DD の形式で日付を入力してください。\";s:14:\"date_too_early\";s:42:\"入力された日付が早すぎます。\";s:13:\"date_too_late\";s:42:\"入力された日付が遅すぎます。\";s:14:\"invalid_number\";s:36:\"数値を入力してください。\";s:16:\"number_too_small\";s:45:\"入力された数値が小さすぎます。\";s:16:\"number_too_large\";s:45:\"入力された数値が大きすぎます。\";s:23:\"quiz_answer_not_correct\";s:48:\"クイズの答えが正しくありません。\";s:13:\"invalid_email\";s:51:\"メールアドレスを入力してください。\";s:11:\"invalid_url\";s:34:\"URL を入力してください。\";s:11:\"invalid_tel\";s:42:\"電話番号を入力してください。\";}'),(98,20,'_additional_settings','acceptance_as_validation: on'),(99,20,'_locale','ja'),(100,20,'_hash','d812cae85747c2d40f370020bdfc5275c81da179'),(102,23,'_wp_attached_file','2025/03/favicon.png'),(103,23,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:19:\"2025/03/favicon.png\";s:8:\"filesize\";i:13278;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"favicon-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11284;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"favicon-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5091;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(118,6,'_config_validation','a:1:{s:16:\"mail_2.recipient\";a:1:{i:0;a:2:{s:4:\"code\";s:31:\"unsafe_email_without_protection\";s:4:\"args\";a:3:{s:7:\"message\";s:78:\"安全でないメール設定が十分な防御策なく使われている。\";s:6:\"params\";a:0:{}s:4:\"link\";s:77:\"https://contactform7.com/configuration-errors/unsafe-email-without-protection\";}}}}'),(119,28,'_wp_attached_file','2025/03/ogp.jpg'),(120,28,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:630;s:4:\"file\";s:15:\"2025/03/ogp.jpg\";s:8:\"filesize\";i:153390;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"ogp-300x158.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:158;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14248;}s:5:\"large\";a:5:{s:4:\"file\";s:16:\"ogp-1024x538.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:538;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:77677;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"ogp-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11847;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:15:\"ogp-768x403.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53253;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(121,29,'_wp_attached_file','2025/03/ogp-2.jpg'),(122,29,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:630;s:4:\"file\";s:17:\"2025/03/ogp-2.jpg\";s:8:\"filesize\";i:268577;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"ogp-2-300x158.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:158;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14293;}s:5:\"large\";a:5:{s:4:\"file\";s:18:\"ogp-2-1024x538.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:538;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:77561;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"ogp-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11890;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:17:\"ogp-2-768x403.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53232;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(124,20,'_config_validation','a:2:{s:23:\"mail.additional_headers\";a:1:{i:0;a:2:{s:4:\"code\";s:19:\"invalid_mail_header\";s:4:\"args\";a:3:{s:7:\"message\";s:54:\"不正なメールヘッダー項目があります。\";s:6:\"params\";a:0:{}s:4:\"link\";s:65:\"https://contactform7.com/configuration-errors/invalid-mail-header\";}}}s:16:\"mail_2.recipient\";a:1:{i:0;a:2:{s:4:\"code\";s:22:\"invalid_mailbox_syntax\";s:4:\"args\";a:3:{s:7:\"message\";s:66:\"不正なメールボックス構文が使用されています。\";s:6:\"params\";a:0:{}s:4:\"link\";s:68:\"https://contactform7.com/configuration-errors/invalid-mailbox-syntax\";}}}}'),(125,30,'_wp_trash_meta_status','publish'),(126,30,'_wp_trash_meta_time','1741928373'); /*!40000 ALTER TABLE `wp_postmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_posts` -- DROP TABLE IF EXISTS `wp_posts`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `wp_posts` ( `ID` bigint unsigned NOT NULL AUTO_INCREMENT, `post_author` bigint unsigned NOT NULL DEFAULT '0', `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL, `post_title` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `post_excerpt` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `post_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'publish', `comment_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open', `ping_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open', `post_password` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `post_name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `to_ping` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `pinged` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content_filtered` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL, `post_parent` bigint unsigned NOT NULL DEFAULT '0', `guid` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `menu_order` int NOT NULL DEFAULT '0', `post_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'post', `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `comment_count` bigint NOT NULL DEFAULT '0', PRIMARY KEY (`ID`), KEY `post_name` (`post_name`(191)), KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`), KEY `post_parent` (`post_parent`), KEY `post_author` (`post_author`) ) ENGINE=InnoDB AUTO_INCREMENT=36 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_posts` -- LOCK TABLES `wp_posts` WRITE; /*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */; INSERT INTO `wp_posts` VALUES (2,1,'2025-02-24 17:38:02','2025-02-24 08:38:02','','ホーム','','publish','closed','closed','','home','','','2025-03-07 21:28:11','2025-03-07 12:28:11','',0,'https://tenjokure-n.com/?page_id=2',0,'page','',0),(4,0,'2025-02-24 17:38:05','2025-02-24 08:38:05','<!-- wp:page-list /-->','ナビゲーション','','publish','closed','closed','','navigation','','','2025-02-24 17:38:05','2025-02-24 08:38:05','',0,'https://tenjokure-n.com/2025/02/24/navigation/',0,'wp_navigation','',0),(6,1,'2025-02-26 14:13:39','2025-02-26 05:13:39','<table class=\"contact\">\r\n <tbody>\r\n <tr>\r\n <th><span class=\"Required\">必須</span>種別</th>\r\n<td>[radio radio-170 use_label_element default:1 \"無料相談\" \"お問い合わせ\"]</td>\r\n</tr>\r\n <tr>\r\n <th>会社名 <span class=\"Required\">必須</span></th>\r\n<td>[text* company id:inp-company placeholder \"例)××××××株式会社\"]</td>\r\n</tr>\r\n <tr>\r\n <th>お名前 <span class=\"Required\">必須</span></th>\r\n<td>[text* namae id:inp-namae placeholder \"例)斎藤 太郎\"]</td>\r\n</tr>\r\n <tr>\r\n <th>電話番号<span class=\"Required\">必須</span></th>\r\n<td>[tel* tel id:inp-tel placeholder \"例)0905555555\"]</td>\r\n</tr>\r\n <tr>\r\n <th>メールアドレス<span class=\"Required\">必須</span></th>\r\n<td>[email* your-email id:inp-email placeholder \"例)××××××@sample.co.jp\"]</td>\r\n</tr>\r\n <tr>\r\n <th>お問い合わせ内容</th>\r\n<td>[textarea your-message maxlength:400 id:message placeholder \"例)ご質問などを400字以内でご入力ください。\" ]<br>\r\n[count your-message down]</td>\r\n</tr>\r\n </tbody>\r\n</table>\r\n\r\n<div class=\"policy\">\r\n <h3 class=\"p-title\">プライバシーポリシー</h3>\r\n 以下のとおり、当社の提供する本サービス全般における、利用者の個人情報の取扱いについて、プライバシーポリシーを定めます。\r\n <h4>個人情報保護方針</h4>\r\n 当社は、以下のとおり個人情報保護方針を定め、個人情報保護の仕組みを構築し、全従業員に個人情報保護の重要性の認識と取組みを徹底させることにより、個人情報の保護を推進致します。\r\n <h4>個人情報の管理</h4>\r\n 当社は、お客さまの個人情報を正確かつ最新の状態に保ち、個人情報への不正アクセス・紛失・破損・改ざん・漏洩などを防止するため、セキュリティシステムの維持・管理体制の整備・社員教育の徹底等の必要な措置を講じ、安全対策を実施し個人情報の厳重な管理を行ないます。\r\n <h4>個人情報の利用目的</h4>\r\n 当社は、当社が運営するウェブサイト(以下「当社サイト」と言います。)では、お客様からのお問い合わせ時に、お名前、メールアドレス、電話番号等の個人情報をご登録いただく場合がございますが、これらの個人情報はご提供いただく際の目的以外では利用いたしません。\r\n お客さまからお預かりした個人情報は、当社からのご連絡や業務のご案内やご質問に対する回答として、電子メールや資料のご送付に利用いたします。\r\n <h4>個人情報の第三者への開示・提供の禁止</h4>\r\n 当社は、お客さまよりお預かりした個人情報を適切に管理し、次のいずれかに該当する場合を除き、個人情報を第三者に開示いたしません。\r\n <ul class=\"style decimal\">\r\n <li>お客さまの同意がある場合</li>\r\n <li>当社関係会社その他の協力会社に対し業務委託を行なうために必要な場合</li>\r\n <li>お客さまからのお問い合わせ内容に照らし、当社製品・サービスを提供する当社関係会社にて対応することが適当と当社で判断した場合</li>\r\n <li>法令に基づき開示することが必要である場合</li>\r\n <li>人命や人権を保護するために緊急に開示を行なう必要がある場合</li>\r\n <li>司法機関、警察などの公共団体などによる法令に基づく要請に協力する場合</li>\r\n </ul>\r\n <h4>個人情報の安全対策</h4>\r\n 当社は、当社サイトを通じてご本人から個人情報をご提供いただく際は、通信途上における第三者への情報漏えいを防止するため、SSL (Secure Sockets Layer)/TLS (Transport Layer Security)による暗号化またはこれに準ずるセキュリティ技術を使用します。\r\n ただし、ご本人のコンピューター環境により、まれにこれらの技術をご利用いただけない場合がございます。\r\n <h4>Googleアナリティクスの利用について</h4>\r\n 当社は、当社サイトにおいて、その利用状況を把握するために、Googleアナリティクスを利用することがあります。Googleアナリティクスは、ファーストパーティクッキーを利用して、弊社サイトへのアクセス情報を個人を特定することなく収集します。\r\n アクセス情報の収集方法および利用方法については、Googleアナリティクスサービス利用規約およびGoogleプライバシーポリシーによって定められています。\r\n Googleアナリティクスについての詳細は、次のページをご参照ください。\r\n <a href=\"http://www.google.com/analytics\" target=\"_blank\" rel=\"noopener\">http://www.google.com/analytics</a>\r\n </div>\r\n\r\n<div class=\"Check\"><span class=\"Required\">必須</span>[acceptance acceptance-132] 個人情報の取り扱いについて<br class=\"br_sp\">同意する [/acceptance]</div>\r\n<ul class=\"BtBox\">\r\n<li>[submit class:ContactBt03 \"入力内容確認へ\"]</li>\r\n[multistep multistep-176 first_step \"/contact-confirm\"]\r\n</ul>\r\n\r\n<div class=\"reCAPTCHA-txt\">\r\n<p>このサイトはreCAPTCHAによって保護されており<br>\r\nGoogleの<a href=\"https://policies.google.com/privacy\" rel=\"noopener\" target=\"_blank\">プライバシーポリシー</a>と<a href=\"https://policies.google.com/terms\" rel=\"noopener\" target=\"_blank\">利用規約</a>\r\nが適用されます。</p>\r\n</div>\n1\n[_site_title]からお問い合わせがありました。\n[_site_title] <no-reply@tenjokure-n.com>\ninfo@saito-denki.co.jp\n差出人: [namae] <[your-email]>\r\n\r\n種別:[radio-170]\r\n会社名:[company]\r\nお名前:[namae]\r\n電話番号:[tel]\r\nメールアドレス:[your-email]\r\nお問い合わせ内容:[your-message]\r\n\r\n-- \r\nこのメールは ([_site_title] [_site_url])から送信されました\nReply-To:info@saito-denki.co.jp\nCc:ryota-kobayashi@funaisoken.co.jp,yusuke-ohashi@funaisoken.co.jp\nBcc:cs@acsport.net\n\n\n\n1\n[_site_title]へのお問い合わせを受け付けました。\n[_site_title] <no-reply@tenjokure-n.com>\n[your-email]\n[namae]様\r\nこの度は天井クレーンドットコムへお問い合わせを頂き誠にありがとうございました。\r\n改めて担当者よりご連絡をさせていただきます。\r\n\r\n※このメールアドレスは送信専用です。このメールには返信できませんので、ご了承ください。\r\n\r\n-- ご送信内容の確認 -----------------------------------------\r\n\r\n会社名:[company]\r\nお名前:[namae]\r\n電話番号:[tel]\r\nメールアドレス:[your-email]\r\nお問い合わせ内容:[your-message]\r\n\r\n天井クレーンドットコム\r\n運営会社:斎藤電気商会\r\n〒245-0011 神奈川県横浜市泉区中田町2950-22\r\nTEL:045-800-5518\r\n-- \r\nこのメールは [_site_title] ([_site_url]) から送信されました\nReply-To:info@saito-denki.co.jp\nCc:ryota-kobayashi@funaisoken.co.jp,yusuke-ohashi@funaisoken.co.jp\nBcc:cs@acsport.net\n\n\n\nありがとうございます。メッセージは送信されました。\nメッセージの送信に失敗しました。後でまたお試しください。\n入力内容に問題があります。確認して再度お試しください。\nメッセージの送信に失敗しました。後でまたお試しください。\nメッセージを送信する前に承諾確認が必要です。\n入力してください。\n入力されたテキストが長すぎます。\n入力されたテキストが短すぎます。\nPlease fill out the form on the previous page.\nファイルのアップロード時に不明なエラーが発生しました。\nこの形式のファイルはアップロードできません。\nアップロードされたファイルが大きすぎます。\nファイルのアップロード中にエラーが発生しました。\nYYYY-MM-DD の形式で日付を入力してください。\n入力された日付が早すぎます。\n入力された日付が遅すぎます。\n数値を入力してください。\n入力された数値が小さすぎます。\n入力された数値が大きすぎます。\nクイズの答えが正しくありません。\nメールアドレスを入力してください。\nURL を入力してください。\n電話番号を入力してください。\nacceptance_as_validation: on','お問い合わせ','','publish','closed','closed','','%e3%82%b3%e3%83%b3%e3%82%bf%e3%82%af%e3%83%88%e3%83%95%e3%82%a9%e3%83%bc%e3%83%a0-1','','','2025-03-07 21:30:31','2025-03-07 12:30:31','',0,'https://tenjokure-n.com/?post_type=wpcf7_contact_form&p=6',0,'wpcf7_contact_form','',0),(8,1,'2025-03-02 22:46:10','2025-03-02 13:46:10','<!-- wp:paragraph -->\n<p>これはサンプルページです。同じ位置に固定され、(多くのテーマでは) サイトナビゲーションメニューに含まれる点がブログ投稿とは異なります。まずは、サイト訪問者に対して自分のことを説明する自己紹介ページを作成するのが一般的です。たとえば以下のようなものです。</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>はじめまして。昼間はバイク便のメッセンジャーとして働いていますが、俳優志望でもあります。これは僕のサイトです。ロサンゼルスに住み、ジャックという名前のかわいい犬を飼っています。好きなものはピニャコラーダ、そして通り雨に濡れること。</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>または、このようなものです。</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>XYZ 小道具株式会社は1971年の創立以来、高品質の小道具を皆様にご提供させていただいています。ゴッサム・シティに所在する当社では2,000名以上の社員が働いており、様々な形で地域のコミュニティへ貢献しています。</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>新しく WordPress ユーザーになった方は、<a href=\"https://tenjokure-n.com/wp-admin/\">ダッシュボード</a>へ行ってこのページを削除し、独自のコンテンツを含む新しいページを作成してください。それでは、お楽しみください !</p>\n<!-- /wp:paragraph -->','ホーム','','inherit','closed','closed','','2-revision-v1','','','2025-03-02 22:46:10','2025-03-02 13:46:10','',2,'https://tenjokure-n.com/?p=8',0,'revision','',0),(9,1,'2025-03-02 22:46:21','2025-03-02 13:46:21','','ホーム','','inherit','closed','closed','','2-revision-v1','','','2025-03-02 22:46:21','2025-03-02 13:46:21','',2,'https://tenjokure-n.com/?p=9',0,'revision','',0),(11,1,'2025-03-02 22:47:55','2025-03-02 13:47:55','<!-- wp:html -->\n<p class=\"el_contact_direction\">下記の内容で問題なければ送信を押してください。</p>\n<!-- /wp:html -->\n\n<!-- wp:contact-form-7/contact-form-selector {\"id\":20,\"hash\":\"d812cae\",\"title\":\"お問い合わせ(確認画面)\"} -->\n<div class=\"wp-block-contact-form-7-contact-form-selector\">[contact-form-7 id=\"d812cae\" title=\"お問い合わせ(確認画面)\"]</div>\n<!-- /wp:contact-form-7/contact-form-selector -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','お問い合わせ(確認)','','publish','closed','closed','','contact-confirm','','','2025-03-04 10:34:36','2025-03-04 01:34:36','',0,'https://tenjokure-n.com/?page_id=11',0,'page','',0),(12,1,'2025-03-02 22:47:55','2025-03-02 13:47:55','','お問い合わせ(確認)','','inherit','closed','closed','','11-revision-v1','','','2025-03-02 22:47:55','2025-03-02 13:47:55','',11,'https://tenjokure-n.com/?p=12',0,'revision','',0),(13,1,'2025-03-02 22:48:18','2025-03-02 13:48:18','<!-- wp:html -->\n<div class=\"bl_thanksMessage\">\n <h3>この度はお問合せありがとうございます。</h3>\n <p>\n 後ほど担当者よりご連絡させて頂きますので\n しばらくお待ちください。\n </p>\n</div>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','お問い合わせ完了','','publish','closed','closed','','contact-thanks','','','2025-03-04 10:33:52','2025-03-04 01:33:52','',0,'https://tenjokure-n.com/?page_id=13',0,'page','',0),(14,1,'2025-03-02 22:48:18','2025-03-02 13:48:18','','お問い合わせ(完了)','','inherit','closed','closed','','13-revision-v1','','','2025-03-02 22:48:18','2025-03-02 13:48:18','',13,'https://tenjokure-n.com/?p=14',0,'revision','',0),(15,1,'2025-03-04 10:48:07','2025-03-03 23:35:21','','点検が必要な理由','','publish','closed','closed','','%e7%82%b9%e6%a4%9c%e3%81%8c%e5%bf%85%e8%a6%81%e3%81%aa%e7%90%86%e7%94%b1','','','2025-03-04 10:48:07','2025-03-04 01:48:07','',0,'https://tenjokure-n.com/?p=15',1,'nav_menu_item','',0),(16,1,'2025-03-04 10:48:07','2025-03-03 23:35:21','','主な修理箇所','','publish','closed','closed','','%e4%b8%bb%e3%81%aa%e4%bf%ae%e7%90%86%e7%ae%87%e6%89%80','','','2025-03-04 10:48:07','2025-03-04 01:48:07','',0,'https://tenjokure-n.com/?p=16',2,'nav_menu_item','',0),(17,1,'2025-03-04 10:48:07','2025-03-03 23:35:21','','当社が選ばれる理由','','publish','closed','closed','','%e5%bd%93%e7%a4%be%e3%81%8c%e9%81%b8%e3%81%b0%e3%82%8c%e3%82%8b%e7%90%86%e7%94%b1','','','2025-03-04 10:48:07','2025-03-04 01:48:07','',0,'https://tenjokure-n.com/?p=17',3,'nav_menu_item','',0),(18,1,'2025-03-04 10:48:07','2025-03-03 23:35:21','','点検までの流れ','','publish','closed','closed','','%e7%82%b9%e6%a4%9c%e3%81%be%e3%81%a7%e3%81%ae%e6%b5%81%e3%82%8c','','','2025-03-04 10:48:07','2025-03-04 01:48:07','',0,'https://tenjokure-n.com/?p=18',4,'nav_menu_item','',0),(19,1,'2025-03-04 10:48:07','2025-03-03 23:35:21','','無料相談・お問い合わせ','','publish','closed','closed','','%e7%84%a1%e6%96%99%e7%9b%b8%e8%ab%87%e3%83%bb%e3%81%8a%e5%95%8f%e3%81%84%e5%90%88%e3%82%8f%e3%81%9b','','','2025-03-04 10:48:07','2025-03-04 01:48:07','',0,'https://tenjokure-n.com/?p=19',5,'nav_menu_item','',0),(20,1,'2025-03-04 10:28:56','2025-03-04 01:28:56','<table class=\"contact\">\r\n <tbody>\r\n <tr>\r\n <th><span class=\"Required\">必須</span>種別</th>\r\n<td>[multiform \"radio-170\"]</td>\r\n</tr>\r\n <tr>\r\n <th>会社名 <span class=\"Required\">必須</span></th>\r\n<td>[multiform \"company\"]</td>\r\n</tr>\r\n <tr>\r\n <th>お名前 <span class=\"Required\">必須</span></th>\r\n<td>[multiform \"namae\"]</td>\r\n</tr>\r\n <tr>\r\n <th>電話番号<span class=\"Required\">必須</span></th>\r\n<td>[multiform \"tel\"]</td>\r\n</tr>\r\n <tr>\r\n <th>メールアドレス<span class=\"Required\">必須</span></th>\r\n<td>[multiform \"your-email\"]</td>\r\n</tr>\r\n <tr>\r\n <th>お問い合わせ内容</th>\r\n<td>[multiform \"your-message\"]</td>\r\n</tr>\r\n </tbody>\r\n</table>\r\n\r\n\r\n<ul class=\"BtBox\">\r\n<li>[previous class:ContactBt02 \"戻る\"]</li>\r\n<li>[submit class:ContactBt01 \"送信\"]</li>\r\n\r\n[multistep multistep-779 last_step send_email \"/contact-thanks\"]\r\n</ul>\n1\n[namae]様|問い合わせ|天井クレーンドットコム\n[_site_title] <no-reply@tenjokure-n.com>\ninfo@saito-denki.co.jp\nお疲れ様です。\r\n只今、お客様より\r\n「お問い合わせ」がありました。\r\nご対応宜しくお願いします。\r\n\r\n-- ご送信内容の確認 -----------------------------------------\r\n種別:[radio-170]\r\n会社名:[company]\r\nお名前:[namae]\r\nメールアドレス:[your-email]\r\nTEL:[tel]\r\nお問い合わせ内容:[your-message]\r\n個人情報:同意する\r\n\r\n-- \r\nこのメールは ([_site_title] [_site_url])から送信されました\nReply-To:info@saito-denki.co.jp\nCc:ryota-kobayashi@funaisoken.co.jp,\nyusuke-ohashi@funaisoken.co.jp\nBcc:cs@acsport.net\n\n\n\n1\n[_site_title]へのお問い合わせを受け付けました。\n[_site_title] <no-reply@tenjokure-n.com>\n[your-email]\n[namae]様\r\nこの度は天井クレーンドットコムへお問い合わせを頂き誠にありがとうございました。\r\n改めて担当者よりご連絡をさせていただきます。\r\n\r\n※このメールアドレスは送信専用です。このメールには返信できませんので、ご了承ください。\r\n\r\n-- ご送信内容の確認 -----------------------------------------\r\n種別:[radio-170]\r\n会社名:[company]\r\nお名前:[namae]\r\nメールアドレス:[your-email]\r\nTEL:[tel]\r\nお問い合わせ内容:[your-message]\r\n個人情報:同意する\r\n\r\n-------------------------------------------------------------\r\n\r\n天井クレーンドットコム\r\n運営会社:斎藤電気商会\r\n〒245-0011 神奈川県横浜市泉区中田町2950-22\r\nTEL:045-800-5518\r\nhttps://tenjokure-n.com/\r\n-- \r\nこのメールは [_site_title] ([_site_url]) から送信されました\nReply-To:no-reply@tenjokure-n.com\nBcc:cs@acsport.net\n\n\n\nありがとうございます。メッセージは送信されました。\nメッセージの送信に失敗しました。後でまたお試しください。\n入力内容に問題があります。確認して再度お試しください。\nメッセージの送信に失敗しました。後でまたお試しください。\nメッセージを送信する前に承諾確認が必要です。\n入力してください。\n入力されたテキストが長すぎます。\n入力されたテキストが短すぎます。\nPlease fill out the form on the previous page.\nファイルのアップロード時に不明なエラーが発生しました。\nこの形式のファイルはアップロードできません。\nアップロードされたファイルが大きすぎます。\nファイルのアップロード中にエラーが発生しました。\nYYYY-MM-DD の形式で日付を入力してください。\n入力された日付が早すぎます。\n入力された日付が遅すぎます。\n数値を入力してください。\n入力された数値が小さすぎます。\n入力された数値が大きすぎます。\nクイズの答えが正しくありません。\nメールアドレスを入力してください。\nURL を入力してください。\n電話番号を入力してください。\nacceptance_as_validation: on','お問い合わせ(確認画面)','','publish','closed','closed','','%e3%81%8a%e5%95%8f%e3%81%84%e5%90%88%e3%82%8f%e3%81%9b_copy','','','2025-03-14 13:46:57','2025-03-14 04:46:57','',0,'https://tenjokure-n.com/?post_type=wpcf7_contact_form&p=20',0,'wpcf7_contact_form','',0),(21,1,'2025-03-04 10:33:52','2025-03-04 01:33:52','<!-- wp:html -->\n<div class=\"bl_thanksMessage\">\n <h3>この度はお問合せありがとうございます。</h3>\n <p>\n 後ほど担当者よりご連絡させて頂きますので\n しばらくお待ちください。\n </p>\n</div>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','お問い合わせ完了','','inherit','closed','closed','','13-revision-v1','','','2025-03-04 10:33:52','2025-03-04 01:33:52','',13,'https://tenjokure-n.com/?p=21',0,'revision','',0),(22,1,'2025-03-04 10:34:36','2025-03-04 01:34:36','<!-- wp:html -->\n<p class=\"el_contact_direction\">下記の内容で問題なければ送信を押してください。</p>\n<!-- /wp:html -->\n\n<!-- wp:contact-form-7/contact-form-selector {\"id\":20,\"hash\":\"d812cae\",\"title\":\"お問い合わせ(確認画面)\"} -->\n<div class=\"wp-block-contact-form-7-contact-form-selector\">[contact-form-7 id=\"d812cae\" title=\"お問い合わせ(確認画面)\"]</div>\n<!-- /wp:contact-form-7/contact-form-selector -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','お問い合わせ(確認)','','inherit','closed','closed','','11-revision-v1','','','2025-03-04 10:34:36','2025-03-04 01:34:36','',11,'https://tenjokure-n.com/?p=22',0,'revision','',0),(23,1,'2025-03-04 10:51:01','2025-03-04 01:51:01','','favicon','','inherit','open','closed','','favicon','','','2025-03-04 10:51:01','2025-03-04 01:51:01','',0,'https://tenjokure-n.com/wp-content/uploads/2025/03/favicon.png',0,'attachment','image/png',0),(28,1,'2025-03-12 18:57:46','2025-03-12 09:57:46','','ogp','','inherit','open','closed','','ogp','','','2025-03-12 18:57:46','2025-03-12 09:57:46','',0,'https://tenjokure-n.com/wp-content/uploads/2025/03/ogp.jpg',0,'attachment','image/jpeg',0),(29,1,'2025-03-12 20:29:59','2025-03-12 11:29:59','','ogp-2','','inherit','open','closed','','ogp-2','','','2025-03-12 20:29:59','2025-03-12 11:29:59','',0,'https://tenjokure-n.com/wp-content/uploads/2025/03/ogp-2.jpg',0,'attachment','image/jpeg',0),(30,1,'2025-03-14 13:59:33','2025-03-14 04:59:33','{\n \"custom_css[tenjokure-n]\": {\n \"value\": \".reCAPTCHA-txt{\\n\\ttext-align:center;\\n}\",\n \"type\": \"custom_css\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2025-03-14 04:59:33\"\n }\n}','','','trash','closed','closed','','ec61dfbf-f3f0-40d5-a2f5-ec54e0e875e9','','','2025-03-14 13:59:33','2025-03-14 04:59:33','',0,'https://tenjokure-n.com/2025/03/14/ec61dfbf-f3f0-40d5-a2f5-ec54e0e875e9/',0,'customize_changeset','',0),(31,1,'2025-03-14 13:59:33','2025-03-14 04:59:33','.reCAPTCHA-txt{\n text-align:center;\n}','tenjokure-n','','publish','closed','closed','','tenjokure-n','','','2025-03-14 13:59:33','2025-03-14 04:59:33','',0,'https://tenjokure-n.com/2025/03/14/tenjokure-n/',0,'custom_css','',0),(32,1,'2025-03-14 13:59:33','2025-03-14 04:59:33','.reCAPTCHA-txt{\n text-align:center;\n}','tenjokure-n','','inherit','closed','closed','','31-revision-v1','','','2025-03-14 13:59:33','2025-03-14 04:59:33','',31,'https://tenjokure-n.com/?p=32',0,'revision','',0),(35,1,'2025-04-11 22:00:45','0000-00-00 00:00:00','','自動下書き','','auto-draft','open','open','','','','','2025-04-11 22:00:45','0000-00-00 00:00:00','',0,'https://tenjokure-n.com/?p=35',0,'post','',0); /*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_siteguard_history` -- DROP TABLE IF EXISTS `wp_siteguard_history`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `wp_siteguard_history` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `login_name` varchar(40) NOT NULL DEFAULT '', `ip_address` varchar(40) NOT NULL DEFAULT '', `operation` int NOT NULL DEFAULT '0', `time` datetime DEFAULT NULL, `type` int NOT NULL DEFAULT '0', UNIQUE KEY `id` (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=40 DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_siteguard_history` -- LOCK TABLES `wp_siteguard_history` WRITE; /*!40000 ALTER TABLE `wp_siteguard_history` DISABLE KEYS */; INSERT INTO `wp_siteguard_history` VALUES (1,'admin','150.95.140.248',1,'2025-03-22 02:24:09',1),(2,'admin','133.130.103.36',1,'2025-03-22 19:43:59',1),(3,'admin','3.115.37.38',1,'2025-03-26 10:12:03',1),(4,'admin','133.242.131.226',1,'2025-03-27 04:06:56',1),(5,'acs_admin','113.36.242.229',1,'2025-03-27 22:50:07',1),(6,'acs_admin','126.220.98.229',0,'2025-03-28 11:25:51',0),(7,'acs_admin','160.16.215.164',1,'2025-03-29 04:59:13',1),(8,'acs_admin','126.220.98.229',0,'2025-03-29 15:31:48',0),(9,'acs_admin','163.44.177.19',1,'2025-03-29 20:52:31',1),(10,'admin','133.242.131.226',1,'2025-03-30 06:18:39',1),(11,'admin','160.16.215.164',1,'2025-03-30 09:20:31',1),(12,'acs_admin','163.44.177.19',1,'2025-03-31 01:16:54',1),(13,'admin','125.203.60.226',1,'2025-03-31 05:43:35',1),(14,'acs_admin','163.44.177.19',1,'2025-03-31 23:22:11',1),(15,'acs_admin','133.242.131.226',1,'2025-04-01 02:48:18',1),(16,'acs_admin','133.242.131.226',1,'2025-04-01 03:00:10',1),(17,'acs_admin','126.220.98.229',0,'2025-04-01 17:33:37',0),(18,'acs_admin','133.242.131.226',1,'2025-04-02 05:03:30',1),(19,'acs_admin','133.242.131.226',1,'2025-04-02 10:26:15',1),(20,'acs_admin','133.130.103.36',1,'2025-04-02 14:39:38',1),(21,'acs_admin','160.16.215.164',1,'2025-04-02 17:28:57',1),(22,'acs_admin','113.36.242.229',1,'2025-04-02 19:03:35',1),(23,'acs_admin','150.95.140.248',1,'2025-04-02 19:44:52',1),(24,'admin','113.36.242.229',1,'2025-04-03 08:06:34',1),(25,'acs_admin','160.16.215.164',1,'2025-04-03 08:50:56',1),(26,'acs_admin','113.36.242.229',1,'2025-04-03 11:11:59',1),(27,'acs_admin','160.16.215.164',1,'2025-04-03 12:39:29',1),(28,'acs_admin','133.242.131.226',1,'2025-04-03 13:30:39',1),(29,'acs_admin','113.36.242.229',1,'2025-04-03 14:48:26',1),(30,'acs_admin','160.16.215.164',1,'2025-04-03 15:23:14',1),(31,'acs_admin','113.36.242.229',1,'2025-04-03 19:16:49',1),(32,'acs_admin','133.242.131.226',1,'2025-04-04 18:57:07',1),(33,'acs_admin','114.189.38.69',1,'2025-04-04 22:08:11',1),(34,'acs_admin','160.16.215.164',1,'2025-04-05 16:18:57',1),(35,'acs_admin','113.36.242.229',1,'2025-04-05 21:51:51',1),(36,'admin','133.130.103.36',1,'2025-04-08 17:48:47',1),(37,'acs_admin','133.130.103.36',1,'2025-04-09 20:43:31',1),(38,'acs_admin','133.242.131.226',1,'2025-04-10 02:31:12',1),(39,'acs_admin','217.178.129.202',0,'2025-04-11 22:00:41',0); /*!40000 ALTER TABLE `wp_siteguard_history` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_siteguard_login` -- DROP TABLE IF EXISTS `wp_siteguard_login`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `wp_siteguard_login` ( `ip_address` varchar(40) NOT NULL DEFAULT '', `status` int NOT NULL DEFAULT '0', `count` int NOT NULL DEFAULT '0', `last_login_time` datetime DEFAULT NULL, UNIQUE KEY `ip_address` (`ip_address`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_siteguard_login` -- LOCK TABLES `wp_siteguard_login` WRITE; /*!40000 ALTER TABLE `wp_siteguard_login` DISABLE KEYS */; INSERT INTO `wp_siteguard_login` VALUES ('133.242.131.226',1,1,'2025-04-10 02:31:12'); /*!40000 ALTER TABLE `wp_siteguard_login` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_term_relationships` -- DROP TABLE IF EXISTS `wp_term_relationships`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `wp_term_relationships` ( `object_id` bigint unsigned NOT NULL DEFAULT '0', `term_taxonomy_id` bigint unsigned NOT NULL DEFAULT '0', `term_order` int NOT NULL DEFAULT '0', PRIMARY KEY (`object_id`,`term_taxonomy_id`), KEY `term_taxonomy_id` (`term_taxonomy_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_term_relationships` -- LOCK TABLES `wp_term_relationships` WRITE; /*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */; INSERT INTO `wp_term_relationships` VALUES (15,2,0),(16,2,0),(17,2,0),(18,2,0),(19,2,0); /*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_term_taxonomy` -- DROP TABLE IF EXISTS `wp_term_taxonomy`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `wp_term_taxonomy` ( `term_taxonomy_id` bigint unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint unsigned NOT NULL DEFAULT '0', `taxonomy` varchar(32) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `description` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL, `parent` bigint unsigned NOT NULL DEFAULT '0', `count` bigint NOT NULL DEFAULT '0', PRIMARY KEY (`term_taxonomy_id`), UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`), KEY `taxonomy` (`taxonomy`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_term_taxonomy` -- LOCK TABLES `wp_term_taxonomy` WRITE; /*!40000 ALTER TABLE `wp_term_taxonomy` DISABLE KEYS */; INSERT INTO `wp_term_taxonomy` VALUES (1,1,'category','',0,0),(2,2,'nav_menu','',0,5),(3,3,'monsterinsights_note_category','',0,0),(4,4,'monsterinsights_note_category','',0,0),(5,5,'monsterinsights_note_category','',0,0); /*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_termmeta` -- DROP TABLE IF EXISTS `wp_termmeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `wp_termmeta` ( `meta_id` bigint unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_520_ci, PRIMARY KEY (`meta_id`), KEY `term_id` (`term_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_termmeta` -- LOCK TABLES `wp_termmeta` WRITE; /*!40000 ALTER TABLE `wp_termmeta` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_termmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_terms` -- DROP TABLE IF EXISTS `wp_terms`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `wp_terms` ( `term_id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `slug` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `term_group` bigint NOT NULL DEFAULT '0', PRIMARY KEY (`term_id`), KEY `slug` (`slug`(191)), KEY `name` (`name`(191)) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_terms` -- LOCK TABLES `wp_terms` WRITE; /*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */; INSERT INTO `wp_terms` VALUES (1,'未分類','uncategorized',0),(2,'global','global',0),(3,'Website Updates','website-updates',0),(4,'Blog Post','blog-post',0),(5,'Promotion','promotion',0); /*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_usermeta` -- DROP TABLE IF EXISTS `wp_usermeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `wp_usermeta` ( `umeta_id` bigint unsigned NOT NULL AUTO_INCREMENT, `user_id` bigint unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_520_ci, PRIMARY KEY (`umeta_id`), KEY `user_id` (`user_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB AUTO_INCREMENT=80 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_usermeta` -- LOCK TABLES `wp_usermeta` WRITE; /*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */; INSERT INTO `wp_usermeta` VALUES (1,1,'nickname','acs_admin'),(2,1,'first_name',''),(3,1,'last_name',''),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'syntax_highlighting','true'),(7,1,'comment_shortcuts','false'),(8,1,'admin_color','fresh'),(9,1,'use_ssl','0'),(10,1,'show_admin_bar_front','true'),(11,1,'locale',''),(12,1,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'wp_user_level','10'),(14,1,'dismissed_wp_pointers','theme_editor_notice'),(15,1,'show_welcome_panel','0'),(16,1,'session_tokens','a:3:{s:64:\"670e0c3211ba579225a04be9b89d7794e630e4838b900a9887d905e03b91fce5\";a:4:{s:10:\"expiration\";i:1744439508;s:2:\"ip\";s:14:\"126.220.98.229\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36\";s:5:\"login\";i:1743229908;}s:64:\"7e461c2a3776134e80598ab09898ca6633ade948220dac4f4741f2684a99cdf9\";a:4:{s:10:\"expiration\";i:1744706017;s:2:\"ip\";s:14:\"126.220.98.229\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36\";s:5:\"login\";i:1743496417;}s:64:\"3f38495ee311b4ed5d8139136b1c230ce6e9855a8618d3a7e340f16bd1ae8d34\";a:4:{s:10:\"expiration\";i:1744549241;s:2:\"ip\";s:15:\"217.178.129.202\";s:2:\"ua\";s:125:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36 Edg/135.0.0.0\";s:5:\"login\";i:1744376441;}}'),(17,1,'wp_dashboard_quick_press_last_post_id','35'),(18,1,'community-events-location','a:1:{s:2:\"ip\";s:13:\"217.178.129.0\";}'),(19,1,'seoboost_user_options_1','{\"language\":\"en\",\"country\":\"US\",\"countries\":{\"AF\":\"Afghanistan\",\"AL\":\"Albania\",\"DZ\":\"Algeria\",\"AS\":\"American Samoa\",\"AD\":\"Andorra\",\"AO\":\"Angola\",\"AI\":\"Anguilla\",\"AG\":\"Antigua & Barbuda\",\"AR\":\"Argentina\",\"AM\":\"Armenia\",\"AU\":\"Australia\",\"AT\":\"Austria\",\"AZ\":\"Azerbaijan\",\"BS\":\"Bahamas\",\"BH\":\"Bahrain\",\"BD\":\"Bangladesh\",\"BY\":\"Belarus\",\"BE\":\"Belgium\",\"BZ\":\"Belize\",\"BJ\":\"Benin\",\"BT\":\"Bhutan\",\"BO\":\"Bolivia\",\"BA\":\"Bosnia & Herzegovina\",\"BW\":\"Botswana\",\"BR\":\"Brazil\",\"VG\":\"British Virgin Islands\",\"BN\":\"Brunei\",\"BG\":\"Bulgaria\",\"BF\":\"Burkina Faso\",\"BI\":\"Burundi\",\"KH\":\"Cambodia\",\"CM\":\"Cameroon\",\"CA\":\"Canada\",\"CV\":\"Cape Verde\",\"CF\":\"Central African Republic\",\"TD\":\"Chad\",\"CL\":\"Chile\",\"CO\":\"Colombia\",\"CG\":\"Congo - Brazzaville\",\"CD\":\"Congo - Kinshasa\",\"CK\":\"Cook Islands\",\"CR\":\"Costa Rica\",\"CI\":\"Cu00f4te du2019Ivoire\",\"HR\":\"Croatia\",\"CU\":\"Cuba\",\"CY\":\"Cyprus\",\"CZ\":\"Czechia\",\"DK\":\"Denmark\",\"DJ\":\"Djibouti\",\"DM\":\"Dominica\",\"DO\":\"Dominican Republic\",\"EC\":\"Ecuador\",\"EG\":\"Egypt\",\"SV\":\"El Salvador\",\"EE\":\"Estonia\",\"ET\":\"Ethiopia\",\"FJ\":\"Fiji\",\"FI\":\"Finland\",\"FR\":\"France\",\"GA\":\"Gabon\",\"GM\":\"Gambia\",\"GE\":\"Georgia\",\"DE\":\"Germany\",\"GH\":\"Ghana\",\"GI\":\"Gibraltar\",\"GR\":\"Greece\",\"GL\":\"Greenland\",\"GT\":\"Guatemala\",\"GG\":\"Guernsey\",\"GY\":\"Guyana\",\"HT\":\"Haiti\",\"HN\":\"Honduras\",\"HK\":\"Hong Kong\",\"HU\":\"Hungary\",\"IS\":\"Iceland\",\"IN\":\"India\",\"ID\":\"Indonesia\",\"IQ\":\"Iraq\",\"IE\":\"Ireland\",\"IM\":\"Isle of Man\",\"IL\":\"Israel\",\"IT\":\"Italy\",\"JM\":\"Jamaica\",\"JP\":\"Japan\",\"JE\":\"Jersey\",\"JO\":\"Jordan\",\"KZ\":\"Kazakhstan\",\"KE\":\"Kenya\",\"KI\":\"Kiribati\",\"KW\":\"Kuwait\",\"KG\":\"Kyrgyzstan\",\"LA\":\"Laos\",\"LV\":\"Latvia\",\"LB\":\"Lebanon\",\"LS\":\"Lesotho\",\"LY\":\"Libya\",\"LI\":\"Liechtenstein\",\"LT\":\"Lithuania\",\"LU\":\"Luxembourg\",\"MG\":\"Madagascar\",\"MW\":\"Malawi\",\"MY\":\"Malaysia\",\"MV\":\"Maldives\",\"ML\":\"Mali\",\"MT\":\"Malta\",\"MU\":\"Mauritius\",\"MX\":\"Mexico\",\"FM\":\"Micronesia\",\"MD\":\"Moldova\",\"MN\":\"Mongolia\",\"ME\":\"Montenegro\",\"MS\":\"Montserrat\",\"MA\":\"Morocco\",\"MZ\":\"Mozambique\",\"MM\":\"Myanmar (Burma)\",\"NA\":\"Namibia\",\"NR\":\"Nauru\",\"NP\":\"Nepal\",\"NL\":\"Netherlands\",\"NZ\":\"New Zealand\",\"NI\":\"Nicaragua\",\"NE\":\"Niger\",\"NG\":\"Nigeria\",\"NU\":\"Niue\",\"MK\":\"North Macedonia\",\"NO\":\"Norway\",\"OM\":\"Oman\",\"PK\":\"Pakistan\",\"PS\":\"Palestine\",\"PA\":\"Panama\",\"PG\":\"Papua New Guinea\",\"PY\":\"Paraguay\",\"PE\":\"Peru\",\"PH\":\"Philippines\",\"PN\":\"Pitcairn Islands\",\"PL\":\"Poland\",\"PT\":\"Portugal\",\"PR\":\"Puerto Rico\",\"QA\":\"Qatar\",\"RO\":\"Romania\",\"RU\":\"Russia\",\"RW\":\"Rwanda\",\"WS\":\"Samoa\",\"SM\":\"San Marino\",\"ST\":\"Su00e3o Tomu00e9 & Pru00edncipe\",\"SA\":\"Saudi Arabia\",\"SN\":\"Senegal\",\"RS\":\"Serbia\",\"SC\":\"Seychelles\",\"SL\":\"Sierra Leone\",\"SG\":\"Singapore\",\"SK\":\"Slovakia\",\"SI\":\"Slovenia\",\"SB\":\"Solomon Islands\",\"SO\":\"Somalia\",\"ZA\":\"South Africa\",\"KR\":\"South Korea\",\"ES\":\"Spain\",\"LK\":\"Sri Lanka\",\"SH\":\"St. Helena\",\"VC\":\"St. Vincent & Grenadines\",\"SR\":\"Suriname\",\"SE\":\"Sweden\",\"CH\":\"Switzerland\",\"TW\":\"Taiwan\",\"TJ\":\"Tajikistan\",\"TZ\":\"Tanzania\",\"TH\":\"Thailand\",\"TL\":\"Timor-Leste\",\"TG\":\"Togo\",\"TO\":\"Tonga\",\"TT\":\"Trinidad & Tobago\",\"TN\":\"Tunisia\",\"TR\":\"Turkey\",\"TM\":\"Turkmenistan\",\"VI\":\"U.S. Virgin Islands\",\"UG\":\"Uganda\",\"UA\":\"Ukraine\",\"AE\":\"United Arab Emirates\",\"GB\":\"United Kingdom\",\"US\":\"United States\",\"UY\":\"Uruguay\",\"UZ\":\"Uzbekistan\",\"VU\":\"Vanuatu\",\"VE\":\"Venezuela\",\"VN\":\"Vietnam\",\"ZM\":\"Zambia\",\"ZW\":\"Zimbabwe\"},\"languages\":{\"ca\":\"Catalan\",\"da\":\"Danish\",\"nl\":\"Dutch\",\"en\":\"English\",\"fr\":\"French\",\"de\":\"German\",\"id\":\"Indonesian\",\"it\":\"Italian\",\"no\":\"Norwegian\",\"pt\":\"Portuguese\",\"ro\":\"Romanian\",\"es\":\"Spanish\",\"sv\":\"Swedish\",\"tr\":\"Turkish\"},\"searchEngines\":{\"AF\":\"google.com.af\",\"AL\":\"google.al\",\"DZ\":\"google.dz\",\"AS\":\"google.as\",\"AD\":\"google.ad\",\"AO\":\"google.it.ao\",\"AI\":\"google.com.ai\",\"AG\":\"google.com.ag\",\"AR\":\"google.com.ar\",\"AM\":\"google.am\",\"AU\":\"google.com.au\",\"AT\":\"google.at\",\"AZ\":\"google.az\",\"BS\":\"google.bs\",\"BH\":\"google.com.bh\",\"BD\":\"google.com.bd\",\"BY\":\"google.com.by\",\"BE\":\"google.be\",\"BZ\":\"google.com.bz\",\"BJ\":\"google.bj\",\"BT\":\"google.bt\",\"BO\":\"google.com.bo\",\"BA\":\"google.ba\",\"BW\":\"google.co.bw\",\"BR\":\"google.com.br\",\"VG\":\"google.vg\",\"BN\":\"google.com.bn\",\"BG\":\"google.bg\",\"BF\":\"google.bf\",\"BI\":\"google.bi\",\"KH\":\"google.com.kh\",\"CM\":\"google.cm\",\"CA\":\"google.ca\",\"CV\":\"google.cv\",\"CF\":\"google.cf\",\"TD\":\"google.td\",\"CL\":\"google.cl\",\"CO\":\"google.com.co\",\"CG\":\"google.cg\",\"CD\":\"google.cd\",\"CK\":\"google.co.ck\",\"CR\":\"google.co.cr\",\"CI\":\"google.ci\",\"HR\":\"google.hr\",\"CU\":\"google.com.cu\",\"CY\":\"google.com.cy\",\"CZ\":\"google.cz\",\"DK\":\"google.dk\",\"DJ\":\"google.dj\",\"DM\":\"google.dm\",\"DO\":\"google.com.do\",\"EC\":\"google.com.ec\",\"EG\":\"google.com.eg\",\"SV\":\"google.com.sv\",\"EE\":\"google.ee\",\"ET\":\"google.com.et\",\"FJ\":\"google.com.fj\",\"FI\":\"google.fi\",\"FR\":\"google.fr\",\"GA\":\"google.ga\",\"GM\":\"google.gm\",\"GE\":\"google.ge\",\"DE\":\"google.de\",\"GH\":\"google.com.gh\",\"GI\":\"google.com.gi\",\"GR\":\"google.gr\",\"GL\":\"google.gl\",\"GT\":\"google.com.gt\",\"GG\":\"google.gg\",\"GY\":\"google.gy\",\"HT\":\"google.ht\",\"HN\":\"google.hn\",\"HK\":\"google.com.hk\",\"HU\":\"google.hu\",\"IS\":\"google.is\",\"IN\":\"google.co.in\",\"ID\":\"google.co.id\",\"IQ\":\"google.iq\",\"IE\":\"google.ie\",\"IM\":\"google.co.im\",\"IL\":\"google.co.il\",\"IT\":\"google.it\",\"JM\":\"google.com.jm\",\"JP\":\"google.co.jp\",\"JE\":\"google.co.je\",\"JO\":\"google.jo\",\"KZ\":\"google.kz\",\"KE\":\"google.co.ke\",\"KI\":\"google.ki\",\"KW\":\"google.com.kw\",\"KG\":\"google.com.kg\",\"LA\":\"google.la\",\"LV\":\"google.lv\",\"LB\":\"google.com.lb\",\"LS\":\"google.co.ls\",\"LY\":\"google.com.ly\",\"LI\":\"google.li\",\"LT\":\"google.lt\",\"LU\":\"google.lu\",\"MG\":\"google.mg\",\"MW\":\"google.mw\",\"MY\":\"google.com.my\",\"MV\":\"google.mv\",\"ML\":\"google.ml\",\"MT\":\"google.com.mt\",\"MU\":\"google.mu\",\"MX\":\"google.com.mx\",\"FM\":\"google.fm\",\"MD\":\"google.md\",\"MN\":\"google.mn\",\"ME\":\"google.me\",\"MS\":\"google.ms\",\"MA\":\"google.co.ma\",\"MZ\":\"google.co.mz\",\"MM\":\"google.com.mm\",\"NA\":\"google.com.na\",\"NR\":\"google.nr\",\"NP\":\"google.com.np\",\"NL\":\"google.nl\",\"NZ\":\"google.co.nz\",\"NI\":\"google.com.ni\",\"NE\":\"google.ne\",\"NG\":\"google.com.ng\",\"NU\":\"google.nu\",\"MK\":\"google.mk\",\"NO\":\"google.no\",\"OM\":\"google.com.om\",\"PK\":\"google.com.pk\",\"PS\":\"google.ps\",\"PA\":\"google.com.pa\",\"PG\":\"google.com.pg\",\"PY\":\"google.com.py\",\"PE\":\"google.com.pe\",\"PH\":\"google.com.ph\",\"PN\":\"google.pn\",\"PL\":\"google.pl\",\"PT\":\"google.pt\",\"PR\":\"google.com.pr\",\"QA\":\"google.com.qa\",\"RO\":\"google.ro\",\"RU\":\"google.ru\",\"RW\":\"google.rw\",\"WS\":\"google.as\",\"SM\":\"google.sm\",\"ST\":\"google.st\",\"SA\":\"google.com.sa\",\"SN\":\"google.sn\",\"RS\":\"google.rs\",\"SC\":\"google.sc\",\"SL\":\"google.com.sl\",\"SG\":\"google.com.sg\",\"SK\":\"google.sk\",\"SI\":\"google.si\",\"SB\":\"google.com.sb\",\"SO\":\"google.so\",\"ZA\":\"google.co.za\",\"KR\":\"google.co.kr\",\"ES\":\"google.es\",\"LK\":\"google.lk\",\"SH\":\"google.sh\",\"VC\":\"google.com.vc\",\"SR\":\"google.sr\",\"SE\":\"google.se\",\"CH\":\"google.ch\",\"TW\":\"google.com.tw\",\"TJ\":\"google.com.tj\",\"TZ\":\"google.co.tz\",\"TH\":\"google.co.th\",\"TL\":\"google.tl\",\"TG\":\"google.tg\",\"TO\":\"google.to\",\"TT\":\"google.tt\",\"TN\":\"google.tn\",\"TR\":\"google.com.tr\",\"TM\":\"google.tm\",\"VI\":\"google.co.vi\",\"UG\":\"google.co.ug\",\"UA\":\"google.com.ua\",\"AE\":\"google.ae\",\"GB\":\"google.co.uk\",\"US\":\"google.com\",\"UY\":\"google.com.uy\",\"UZ\":\"google.co.uz\",\"VU\":\"google.vu\",\"VE\":\"google.co.ve\",\"VN\":\"google.com.vn\",\"ZM\":\"google.co.zm\",\"ZW\":\"google.co.zw\"}}'),(20,1,'_aioseo_settings','a:8:{s:14:\"showUpgradeBar\";b:1;s:15:\"showSetupWizard\";b:1;s:12:\"toggledCards\";a:85:{s:17:\"dashboardOverview\";b:1;s:17:\"dashboardSeoSetup\";b:1;s:21:\"dashboardSeoSiteScore\";b:1;s:22:\"dashboardNotifications\";b:1;s:16:\"dashboardSupport\";b:1;s:7:\"license\";b:1;s:14:\"webmasterTools\";b:1;s:17:\"enableBreadcrumbs\";b:1;s:18:\"breadcrumbSettings\";b:1;s:19:\"breadcrumbTemplates\";b:1;s:8:\"advanced\";b:1;s:13:\"accessControl\";b:1;s:10:\"rssContent\";b:1;s:14:\"generalSitemap\";b:1;s:22:\"generalSitemapSettings\";b:1;s:12:\"imageSitemap\";b:1;s:12:\"videoSitemap\";b:1;s:11:\"newsSitemap\";b:1;s:10:\"rssSitemap\";b:1;s:18:\"rssSitemapSettings\";b:1;s:18:\"rssAdditionalPages\";b:1;s:19:\"rssAdvancedSettings\";b:1;s:15:\"additionalPages\";b:1;s:16:\"advancedSettings\";b:1;s:20:\"videoSitemapSettings\";b:1;s:20:\"videoAdditionalPages\";b:1;s:21:\"videoAdvancedSettings\";b:1;s:18:\"videoEmbedSettings\";b:1;s:19:\"newsSitemapSettings\";b:1;s:19:\"newsAdditionalPages\";b:1;s:20:\"newsAdvancedSettings\";b:1;s:17:\"newsEmbedSettings\";b:1;s:14:\"socialProfiles\";b:1;s:8:\"facebook\";b:1;s:24:\"facebookHomePageSettings\";b:1;s:24:\"facebookAdvancedSettings\";b:1;s:7:\"twitter\";b:1;s:23:\"twitterHomePageSettings\";b:1;s:9:\"pinterest\";b:1;s:20:\"searchTitleSeparator\";b:1;s:14:\"searchHomePage\";b:1;s:12:\"searchSchema\";b:1;s:22:\"searchMediaAttachments\";b:1;s:14:\"searchAdvanced\";b:1;s:26:\"searchAdvancedCrawlCleanup\";b:1;s:13:\"searchCleanup\";b:1;s:14:\"authorArchives\";b:1;s:12:\"dateArchives\";b:1;s:14:\"searchArchives\";b:1;s:8:\"imageSeo\";b:1;s:20:\"completeSeoChecklist\";b:1;s:17:\"localBusinessInfo\";b:1;s:25:\"localBusinessOpeningHours\";b:1;s:17:\"locationsSettings\";b:1;s:25:\"advancedLocationsSettings\";b:1;s:23:\"localBusinessMapsApiKey\";b:1;s:25:\"localBusinessMapsSettings\";b:1;s:12:\"robotsEditor\";b:1;s:13:\"badBotBlocker\";b:1;s:13:\"databaseTools\";b:1;s:14:\"htaccessEditor\";b:1;s:17:\"databaseToolsLogs\";b:1;s:16:\"systemStatusInfo\";b:1;s:17:\"addNewRedirection\";b:1;s:16:\"redirectSettings\";b:1;s:5:\"debug\";b:1;s:25:\"fullSiteRedirectsRelocate\";b:1;s:24:\"fullSiteRedirectsAliases\";b:1;s:26:\"fullSiteRedirectsCanonical\";b:1;s:28:\"fullSiteRedirectsHttpHeaders\";b:1;s:11:\"htmlSitemap\";b:1;s:19:\"htmlSitemapSettings\";b:1;s:27:\"htmlSitemapAdvancedSettings\";b:1;s:21:\"linkAssistantSettings\";b:1;s:17:\"domainActivations\";b:1;s:11:\"404Settings\";b:1;s:12:\"userProfiles\";b:1;s:12:\"queryArgLogs\";b:1;s:24:\"writingAssistantSettings\";b:1;s:19:\"writingAssistantCta\";b:1;s:6:\"postSA\";b:1;s:6:\"pageSA\";b:1;s:12:\"attachmentSA\";b:1;s:10:\"categorySA\";b:1;s:10:\"post_tagSA\";b:1;}s:12:\"toggledRadio\";a:3:{s:29:\"breadcrumbsShowMoreSeparators\";b:0;s:24:\"searchShowMoreSeparators\";b:0;s:16:\"overviewPostType\";s:4:\"post\";}s:15:\"dismissedAlerts\";a:3:{s:31:\"searchStatisticsContentRankings\";b:0;s:25:\"searchConsoleNotConnected\";b:0;s:26:\"searchConsoleSitemapErrors\";b:0;}s:12:\"internalTabs\";a:9:{s:14:\"authorArchives\";s:17:\"title-description\";s:12:\"dateArchives\";s:17:\"title-description\";s:14:\"searchArchives\";s:17:\"title-description\";s:17:\"seoAuditChecklist\";s:9:\"all-items\";s:6:\"postSA\";s:17:\"title-description\";s:6:\"pageSA\";s:17:\"title-description\";s:12:\"attachmentSA\";s:17:\"title-description\";s:10:\"categorySA\";s:17:\"title-description\";s:10:\"post_tagSA\";s:17:\"title-description\";}s:15:\"tablePagination\";a:14:{s:14:\"networkDomains\";i:20;s:9:\"redirects\";i:20;s:12:\"redirectLogs\";i:20;s:15:\"redirect404Logs\";i:20;s:22:\"sitemapAdditionalPages\";i:20;s:24:\"linkAssistantLinksReport\";i:20;s:24:\"linkAssistantPostsReport\";i:20;s:26:\"linkAssistantDomainsReport\";i:20;s:29:\"searchStatisticsSeoStatistics\";i:20;s:31:\"searchStatisticsKeywordRankings\";i:20;s:31:\"searchStatisticsContentRankings\";i:20;s:34:\"searchStatisticsPostDetailKeywords\";i:20;s:34:\"searchStatisticsKeywordRankTracker\";i:20;s:9:\"queryArgs\";i:20;}s:14:\"semrushCountry\";s:2:\"US\";}'),(21,1,'wp_persisted_preferences','a:3:{s:4:\"core\";a:1:{s:26:\"isComplementaryAreaVisible\";b:1;}s:14:\"core/edit-post\";a:1:{s:12:\"welcomeGuide\";b:0;}s:9:\"_modified\";s:24:\"2025-03-02T13:46:14.885Z\";}'),(22,1,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),(23,1,'metaboxhidden_nav-menus','a:1:{i:0;s:12:\"add-post_tag\";}'),(24,1,'nav_menu_recently_edited','2'),(25,1,'wp_user-settings','libraryContent=browse'),(26,1,'wp_user-settings-time','1741778837'),(27,1,'manageedit-acf-post-typecolumnshidden','a:1:{i:0;s:7:\"acf-key\";}'),(28,1,'acf_user_settings','a:3:{s:19:\"post-type-first-run\";b:1;s:20:\"taxonomies-first-run\";b:1;s:23:\"options-pages-first-run\";b:1;}'),(29,1,'manageedit-acf-taxonomycolumnshidden','a:1:{i:0;s:7:\"acf-key\";}'),(30,1,'manageedit-acf-ui-options-pagecolumnshidden','a:1:{i:0;s:7:\"acf-key\";}'),(31,2,'nickname','editor_saitodenki'),(32,2,'first_name',''),(33,2,'last_name',''),(34,2,'description',''),(35,2,'rich_editing','true'),(36,2,'syntax_highlighting','true'),(37,2,'comment_shortcuts','false'),(38,2,'admin_color','fresh'),(39,2,'use_ssl','0'),(40,2,'show_admin_bar_front','true'),(41,2,'locale',''),(42,2,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(43,2,'wp_user_level','0'),(44,2,'dismissed_wp_pointers',''),(45,1,'_aioseo_plugin_review_dismissed','4'),(46,1,'wp_googlesitekit_tracking_optin','1'),(48,1,'wp_googlesitekit_site_verification_file','a2ab745eb49c4701'),(49,1,'wp_googlesitekit_access_token','04CnufTzu72XZAQm2F0T61VlU3BwZytNb1ZQekpCUVVmTDM3R3IyczVhcVpJUU9MSFJFQTNBNVF1enFYdjhYQkJPT0VISmpuSjgveHlqRXRRaTNpeGk0OS9zWjdMNGl2aUlvNk1WUThIbXFMNUliWWlnUlNJQko2dTlqeW9JZ29Pam16b0F0QWUyUlI1TEtEVFM2RFp4bGUrSDc4alp6K2tiMVRVZWhVY1R5Wm5EMjU4bDBYdnkrQW9VOWNVS2NUa3N6eTNpdHJwandKRzZJNWR5d1NqZUo5dDBhQTFHWjBnc2FjU2VVd01FclkrdDA3eXlTOVFqWCtyczF5SHJZeWZzSWVqTHgyVnlXSmZFU2tDSElyektEVDhKYk1kQ2F4N0VmakhoQWs5QXpjTDk5aUROZ3gzNC8vemVsYTNwTlFYeWZMZzkvZVB3bGF5cXluWkFKNm5hZDVtdzNxM0pPUGgrNEVlOWdLbk4xRHZWaWxWVXFlUlpGRFE0N05ZRGpuUlFPVitUeDk3eDlwaCtSZWdRPT0='),(50,1,'wp_googlesitekit_access_token_expires_in','3599'),(51,1,'wp_googlesitekit_access_token_created_at','1744376444'),(52,1,'wp_googlesitekit_refresh_token','jJY3zNevEToeXEUiDWSi6VMrN0FYTGMzQ0dQU09hTGdaWVlGVUgvZGNENnN1YkxJRWN2T2JyTTAzbmhlbDZMNnhJd0JIS203T2dROXJTVGZObkl5NThPdXU1dzVBR05WNU0wMWNxNzBDZFNLRDZOOWFLWHNlVktiV3NEZ0hTT3JaYlRmb3FVTndQdE9oM1ZkblRERU4wWjM3QnVjVnU5QnZuck9pbnUxYjI0UXErVkplOE9xTGMxR2R3eFhnOElnczJ6blJDeG5zbzNzZjd3QitWU01yMzJKYlFYcTNZNnh6WHBxaEx5OEpIOFdJZGFIYjJOTUF0c0p0UUVWQzFoNGVjRkhWajI0YzBFVFdSNGgxYXJhSVAxR0JpdG9XdGxOdDVXWkM1L0JwRkdWQk1pTDYwM3VWcWF0cUl6dzFKNjcwOE5aYXI2WUthNGpOS0Qr'),(53,1,'wp_googlesitekit_auth_scopes','a:7:{i:0;s:51:\"https://www.googleapis.com/auth/tagmanager.readonly\";i:1;s:48:\"https://www.googleapis.com/auth/siteverification\";i:2;s:6:\"openid\";i:3;s:42:\"https://www.googleapis.com/auth/webmasters\";i:4;s:48:\"https://www.googleapis.com/auth/userinfo.profile\";i:5;s:50:\"https://www.googleapis.com/auth/analytics.readonly\";i:6;s:46:\"https://www.googleapis.com/auth/userinfo.email\";}'),(54,1,'wp_googlesitekit_additional_auth_scopes','a:1:{i:0;s:46:\"https://www.googleapis.com/auth/analytics.edit\";}'),(55,1,'wp_googlesitekit_profile','a:4:{s:5:\"email\";s:14:\"cs@acsport.net\";s:5:\"photo\";s:93:\"https://lh3.googleusercontent.com/a/ACg8ocJUId8ivR2E63KGyPysEcfe1PUzeCsTgvGkWyoFnFTukUep=s100\";s:9:\"full_name\";s:55:\"株式会社Acsportカスタマーサポート事業部\";s:12:\"last_updated\";i:1744376444;}'),(56,1,'wp_googlesitekitpersistent_initial_version','1.148.0'),(57,1,'wp_googlesitekit_site_verified_meta','verified'),(60,1,'wp_googlesitekitpersistent_dismissed_items','a:2:{s:53:\"enhanced-measurement-activation-banner-dismissed-item\";i:0;s:27:\"gathering-data-notification\";i:1742013767;}'),(61,1,'wp_googlesitekit_survey_timeouts','a:1:{s:14:\"view_dashboard\";i:1742013760;}'),(62,1,'closedpostboxes_dashboard','a:0:{}'),(63,1,'metaboxhidden_dashboard','a:11:{i:0;s:32:\"wp_mail_smtp_reports_widget_lite\";i:1;s:23:\"optin_monster_db_widget\";i:2;s:30:\"monsterinsights_reports_widget\";i:3;s:21:\"dashboard_site_health\";i:4;s:19:\"dashboard_right_now\";i:5;s:18:\"dashboard_activity\";i:6;s:15:\"aioseo-overview\";i:7;s:15:\"aioseo-rss-feed\";i:8;s:23:\"google_dashboard_widget\";i:9;s:21:\"dashboard_quick_press\";i:10;s:17:\"dashboard_primary\";}'),(64,1,'_aioseo_blc_not_connected','1743834916'),(65,2,'aioseo_profiles_same_username','a:3:{s:6:\"enable\";b:0;s:8:\"username\";s:0:\"\";s:8:\"included\";a:7:{i:0;s:15:\"facebookPageUrl\";i:1;s:10:\"twitterUrl\";i:2;s:9:\"tiktokUrl\";i:3;s:12:\"pinterestUrl\";i:4;s:12:\"instagramUrl\";i:5;s:10:\"youtubeUrl\";i:6;s:11:\"linkedinUrl\";}}'),(66,2,'aioseo_facebook_page_url',''),(67,2,'aioseo_twitter_url',''),(68,2,'aioseo_instagram_url',''),(69,2,'aioseo_tiktok_url',''),(70,2,'aioseo_pinterest_url',''),(71,2,'aioseo_youtube_url',''),(72,2,'aioseo_linkedin_url',''),(73,2,'aioseo_tumblr_url',''),(74,2,'aioseo_yelp_page_url',''),(75,2,'aioseo_sound_cloud_url',''),(76,2,'aioseo_wikipedia_url',''),(77,2,'aioseo_myspace_url',''),(78,2,'aioseo_word_press_url',''),(79,2,'aioseo_profiles_additional_urls',''); /*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_users` -- DROP TABLE IF EXISTS `wp_users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `wp_users` ( `ID` bigint unsigned NOT NULL AUTO_INCREMENT, `user_login` varchar(60) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `user_pass` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `user_nicename` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `user_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `user_url` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `user_activation_key` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `user_status` int NOT NULL DEFAULT '0', `display_name` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', PRIMARY KEY (`ID`), KEY `user_login_key` (`user_login`), KEY `user_nicename` (`user_nicename`), KEY `user_email` (`user_email`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_users` -- LOCK TABLES `wp_users` WRITE; /*!40000 ALTER TABLE `wp_users` DISABLE KEYS */; INSERT INTO `wp_users` VALUES (1,'acs_admin','$P$B3u/kz8JTuC9rdzqukeHmCMJEa3gBQ1','acs_admin','cs@acsport.net','https://tenjokure-n.com','2025-02-24 08:38:02','',0,'acs_admin'),(2,'editor_saitodenki','$P$BXtBTYEviHEOfZuynq.ord089T28Ee.','editor_saitodenki','info@saito-denki.co.jp','','2025-03-06 14:10:15','',0,'editor_saitodenki'); /*!40000 ALTER TABLE `wp_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wpmailsmtp_debug_events` -- DROP TABLE IF EXISTS `wp_wpmailsmtp_debug_events`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `wp_wpmailsmtp_debug_events` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `content` text COLLATE utf8mb4_unicode_520_ci, `initiator` text COLLATE utf8mb4_unicode_520_ci, `event_type` tinyint unsigned NOT NULL DEFAULT '0', `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wpmailsmtp_debug_events` -- LOCK TABLES `wp_wpmailsmtp_debug_events` WRITE; /*!40000 ALTER TABLE `wp_wpmailsmtp_debug_events` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_wpmailsmtp_debug_events` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wpmailsmtp_tasks_meta` -- DROP TABLE IF EXISTS `wp_wpmailsmtp_tasks_meta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `wp_wpmailsmtp_tasks_meta` ( `id` bigint NOT NULL AUTO_INCREMENT, `action` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL, `data` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL, `date` datetime NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wpmailsmtp_tasks_meta` -- LOCK TABLES `wp_wpmailsmtp_tasks_meta` WRITE; /*!40000 ALTER TABLE `wp_wpmailsmtp_tasks_meta` DISABLE KEYS */; INSERT INTO `wp_wpmailsmtp_tasks_meta` VALUES (1,'wp_mail_smtp_admin_notifications_update','W10=','2025-03-14 04:37:47'); /*!40000 ALTER TABLE `wp_wpmailsmtp_tasks_meta` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2025-04-12 14:12:31
Save