HEX
Server: nginx/1.18.0
System: Linux m1-ws1-ams3 5.4.0-148-generic #165-Ubuntu SMP Tue Apr 18 08:53:12 UTC 2023 x86_64
User: root (0)
PHP: 7.4.33
Disabled: NONE
Upload Files
File: /opt/aphex/sites/mortalcitiesforgottenmonuments.com/db.sql
-- MySQL dump 10.13  Distrib 8.0.32, for Linux (x86_64)
--
-- Host: localhost    Database: mortalcitiesforgottenmonuments_c
-- ------------------------------------------------------
-- Server version	8.0.32-0ubuntu0.20.04.2

/*!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_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) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`meta_id`),
  KEY `comment_id` (`comment_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_commentmeta`
--

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

--
-- Table structure for table `wp_comments`
--

DROP TABLE IF EXISTS `wp_comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!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 CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `comment_author_email` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_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 CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `comment_karma` int NOT NULL DEFAULT '0',
  `comment_approved` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_type` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_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 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_comments`
--

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

--
-- Table structure for table `wp_contact_bank`
--

DROP TABLE IF EXISTS `wp_contact_bank`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_contact_bank` (
  `id` int NOT NULL AUTO_INCREMENT,
  `type` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `parent_id` int DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_contact_bank`
--

LOCK TABLES `wp_contact_bank` WRITE;
/*!40000 ALTER TABLE `wp_contact_bank` DISABLE KEYS */;
INSERT INTO `wp_contact_bank` VALUES (1,'forms',0),(2,'custom_css',0),(3,'collation_type',0),(4,'general_settings',0),(5,'roles_and_capabilities',0),(6,'form',1);
/*!40000 ALTER TABLE `wp_contact_bank` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_contact_bank_meta`
--

DROP TABLE IF EXISTS `wp_contact_bank_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_contact_bank_meta` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `meta_id` int NOT NULL,
  `meta_key` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `meta_value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `old_form_id` int NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_contact_bank_meta`
--

LOCK TABLES `wp_contact_bank_meta` WRITE;
/*!40000 ALTER TABLE `wp_contact_bank_meta` DISABLE KEYS */;
INSERT INTO `wp_contact_bank_meta` VALUES (1,2,'custom_css','a:1:{s:10:\"custom_css\";s:0:\"\";}',2),(2,4,'general_settings','a:8:{s:26:\"remove_tables_at_uninstall\";s:6:\"enable\";s:17:\"automatic_updates\";s:7:\"disable\";s:16:\"default_currency\";s:3:\"USD\";s:18:\"language_direction\";s:13:\"left_to_right\";s:20:\"recaptcha_public_key\";s:0:\"\";s:21:\"recaptcha_private_key\";s:0:\"\";s:15:\"gdpr_compliance\";s:6:\"enable\";s:20:\"gdpr_compliance_text\";s:87:\"By using this form you agree with the storage and handling of your data by this website\";}',4),(3,5,'roles_and_capabilities','a:10:{s:22:\"roles_and_capabilities\";s:11:\"1,1,1,0,0,0\";s:30:\"show_contact_bank_top_bar_menu\";s:6:\"enable\";s:30:\"others_full_control_capability\";s:1:\"0\";s:24:\"administrator_privileges\";s:19:\"1,1,1,1,1,1,1,1,1,1\";s:17:\"author_privileges\";s:19:\"0,1,1,0,0,0,1,0,0,1\";s:17:\"editor_privileges\";s:19:\"0,0,0,1,0,1,0,0,0,0\";s:22:\"contributor_privileges\";s:19:\"0,0,0,1,0,0,1,0,0,0\";s:21:\"subscriber_privileges\";s:19:\"0,0,0,0,0,0,0,0,0,0\";s:16:\"other_privileges\";s:19:\"0,0,0,0,0,0,0,0,0,0\";s:12:\"capabilities\";a:7:{i:0;s:14:\"manage_options\";i:1;s:12:\"edit_plugins\";i:2;s:10:\"edit_posts\";i:3;s:13:\"publish_posts\";i:4;s:13:\"publish_pages\";i:5;s:10:\"edit_pages\";i:6;s:4:\"read\";}}',5),(4,6,'form_data','a:15:{s:10:\"form_title\";s:15:\"Contact Us Form\";s:16:\"form_description\";s:0:\"\";s:29:\"form_submission_limit_message\";s:7:\"disable\";s:23:\"form_submission_message\";s:36:\"Your Forms Submission Limit is Over.\";s:20:\"form_success_message\";s:42:\"Your Form has been Successfully Submitted.\";s:19:\"form_enable_tooltip\";s:4:\"show\";s:13:\"form_redirect\";s:4:\"page\";s:17:\"form_redirect_url\";s:0:\"\";s:22:\"form_redirect_page_url\";s:0:\"\";s:26:\"form_save_submission_to_db\";s:6:\"enable\";s:21:\"form_submission_limit\";s:2:\"10\";s:24:\"layout_settings_template\";s:40:\"layout_settings_contact_us_form_template\";s:8:\"controls\";a:4:{i:0;a:54:{s:12:\"control_type\";s:10:\"first_name\";s:10:\"label_name\";s:4:\"Name\";s:17:\"field_description\";s:0:\"\";s:13:\"label_tooltip\";s:55:\"In this field,you would need to provide your First Name\";s:15:\"label_placement\";s:5:\"above\";s:15:\"number_of_stars\";s:0:\"\";s:11:\"placeholder\";s:30:\"Please provide your first name\";s:25:\"custom_validation_message\";s:23:\"This field is Required!\";s:11:\"rows_number\";s:2:\"10\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:13:\"required_type\";s:6:\"enable\";s:18:\"input_limit_number\";s:0:\"\";s:11:\"text_appear\";s:0:\"\";s:15:\"input_mask_type\";s:0:\"\";s:11:\"custom_mask\";s:0:\"\";s:21:\"input_validation_type\";s:0:\"\";s:17:\"autocomplete_type\";s:6:\"enable\";s:13:\"disable_input\";s:7:\"disable\";s:11:\"date_format\";s:0:\"\";s:10:\"start_year\";s:0:\"\";s:8:\"end_year\";s:0:\"\";s:20:\"default_current_date\";s:0:\"\";s:10:\"max_number\";s:0:\"\";s:10:\"min_number\";s:0:\"\";s:4:\"step\";s:0:\"\";s:23:\"drop_down_option_values\";a:0:{}s:9:\"field_key\";s:31:\"first_name_field_key_1598705172\";s:13:\"default_value\";s:0:\"\";s:11:\"admin_label\";s:0:\"\";s:5:\"price\";s:0:\"\";s:11:\"time_format\";s:0:\"\";s:12:\"current_time\";s:0:\"\";s:12:\"product_name\";s:0:\"\";s:18:\"credit_card_number\";s:0:\"\";s:23:\"credit_card_expiry_date\";s:0:\"\";s:15:\"credit_card_cvv\";s:0:\"\";s:23:\"credit_card_placeholder\";s:0:\"\";s:30:\"credit_card_expiry_placeholder\";s:0:\"\";s:27:\"credit_card_cvv_placeholder\";s:0:\"\";s:19:\"html_editor_content\";s:0:\"\";s:16:\"html_editor_type\";s:0:\"\";s:29:\"html_editor_content_duplicate\";s:0:\"\";s:13:\"shipping_cost\";s:0:\"\";s:15:\"antispam_answer\";s:0:\"\";s:12:\"maximum_size\";s:0:\"\";s:9:\"extension\";s:0:\"\";s:15:\"multiple_upload\";s:0:\"\";s:15:\"attach_to_email\";s:0:\"\";s:9:\"timestamp\";i:1598705172;s:38:\"logical_captcha_mathmatical_operations\";s:0:\"\";s:25:\"logical_captcha_artimatic\";s:0:\"\";s:26:\"logical_captcha_relational\";s:0:\"\";s:29:\"logical_captcha_arrange_order\";s:0:\"\";}i:1;a:54:{s:12:\"control_type\";s:5:\"email\";s:10:\"label_name\";s:5:\"Email\";s:17:\"field_description\";s:0:\"\";s:13:\"label_tooltip\";s:59:\"In this field, you would need to provide your Email Address\";s:15:\"label_placement\";s:5:\"above\";s:15:\"number_of_stars\";s:0:\"\";s:11:\"placeholder\";s:33:\"Please provide your email address\";s:25:\"custom_validation_message\";s:23:\"This field is Required!\";s:11:\"rows_number\";s:2:\"10\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:13:\"required_type\";s:6:\"enable\";s:18:\"input_limit_number\";s:0:\"\";s:11:\"text_appear\";s:0:\"\";s:15:\"input_mask_type\";s:0:\"\";s:11:\"custom_mask\";s:0:\"\";s:21:\"input_validation_type\";s:0:\"\";s:17:\"autocomplete_type\";s:0:\"\";s:13:\"disable_input\";s:0:\"\";s:11:\"date_format\";s:0:\"\";s:10:\"start_year\";s:0:\"\";s:8:\"end_year\";s:0:\"\";s:20:\"default_current_date\";s:0:\"\";s:10:\"max_number\";s:0:\"\";s:10:\"min_number\";s:0:\"\";s:4:\"step\";s:0:\"\";s:23:\"drop_down_option_values\";a:0:{}s:9:\"field_key\";s:34:\"email_address_field_key_1598705173\";s:13:\"default_value\";s:0:\"\";s:11:\"admin_label\";s:0:\"\";s:5:\"price\";s:0:\"\";s:11:\"time_format\";s:0:\"\";s:12:\"current_time\";s:0:\"\";s:12:\"product_name\";s:0:\"\";s:18:\"credit_card_number\";s:0:\"\";s:23:\"credit_card_expiry_date\";s:0:\"\";s:15:\"credit_card_cvv\";s:0:\"\";s:23:\"credit_card_placeholder\";s:0:\"\";s:30:\"credit_card_expiry_placeholder\";s:0:\"\";s:27:\"credit_card_cvv_placeholder\";s:0:\"\";s:19:\"html_editor_content\";s:0:\"\";s:16:\"html_editor_type\";s:0:\"\";s:29:\"html_editor_content_duplicate\";s:0:\"\";s:13:\"shipping_cost\";s:0:\"\";s:15:\"antispam_answer\";s:0:\"\";s:12:\"maximum_size\";s:0:\"\";s:9:\"extension\";s:0:\"\";s:15:\"multiple_upload\";s:0:\"\";s:15:\"attach_to_email\";s:0:\"\";s:9:\"timestamp\";i:1598705173;s:38:\"logical_captcha_mathmatical_operations\";s:0:\"\";s:25:\"logical_captcha_artimatic\";s:0:\"\";s:26:\"logical_captcha_relational\";s:0:\"\";s:29:\"logical_captcha_arrange_order\";s:0:\"\";}i:2;a:54:{s:12:\"control_type\";s:4:\"text\";s:10:\"label_name\";s:7:\"Subject\";s:17:\"field_description\";s:0:\"\";s:13:\"label_tooltip\";s:53:\"In this field, you would need to provide your Subject\";s:15:\"label_placement\";s:5:\"above\";s:15:\"number_of_stars\";s:0:\"\";s:11:\"placeholder\";s:27:\"Please provide your subject\";s:25:\"custom_validation_message\";s:23:\"This field is Required!\";s:11:\"rows_number\";s:2:\"10\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:13:\"required_type\";s:7:\"disable\";s:18:\"input_limit_number\";s:2:\"50\";s:11:\"text_appear\";s:17:\"Character(s) left\";s:15:\"input_mask_type\";s:4:\"none\";s:11:\"custom_mask\";s:15:\"999,999,999,999\";s:21:\"input_validation_type\";s:10:\"characters\";s:17:\"autocomplete_type\";s:6:\"enable\";s:13:\"disable_input\";s:7:\"disable\";s:11:\"date_format\";s:0:\"\";s:10:\"start_year\";s:0:\"\";s:8:\"end_year\";s:0:\"\";s:20:\"default_current_date\";s:0:\"\";s:10:\"max_number\";s:0:\"\";s:10:\"min_number\";s:0:\"\";s:4:\"step\";s:0:\"\";s:23:\"drop_down_option_values\";a:0:{}s:9:\"field_key\";s:37:\"single_line_text_field_key_1598705174\";s:13:\"default_value\";s:0:\"\";s:11:\"admin_label\";s:0:\"\";s:5:\"price\";s:0:\"\";s:11:\"time_format\";s:0:\"\";s:12:\"current_time\";s:0:\"\";s:12:\"product_name\";s:0:\"\";s:18:\"credit_card_number\";s:0:\"\";s:23:\"credit_card_expiry_date\";s:0:\"\";s:15:\"credit_card_cvv\";s:0:\"\";s:23:\"credit_card_placeholder\";s:0:\"\";s:30:\"credit_card_expiry_placeholder\";s:0:\"\";s:27:\"credit_card_cvv_placeholder\";s:0:\"\";s:19:\"html_editor_content\";s:0:\"\";s:16:\"html_editor_type\";s:0:\"\";s:29:\"html_editor_content_duplicate\";s:0:\"\";s:13:\"shipping_cost\";s:0:\"\";s:15:\"antispam_answer\";s:0:\"\";s:12:\"maximum_size\";s:0:\"\";s:9:\"extension\";s:0:\"\";s:15:\"multiple_upload\";s:0:\"\";s:15:\"attach_to_email\";s:0:\"\";s:9:\"timestamp\";i:1598705174;s:38:\"logical_captcha_mathmatical_operations\";s:0:\"\";s:25:\"logical_captcha_artimatic\";s:0:\"\";s:26:\"logical_captcha_relational\";s:0:\"\";s:29:\"logical_captcha_arrange_order\";s:0:\"\";}i:3;a:54:{s:12:\"control_type\";s:9:\"paragraph\";s:10:\"label_name\";s:7:\"Message\";s:17:\"field_description\";s:0:\"\";s:13:\"label_tooltip\";s:53:\"In this field, you would need to provide your Message\";s:15:\"label_placement\";s:5:\"above\";s:15:\"number_of_stars\";s:0:\"\";s:11:\"placeholder\";s:32:\"Please provide your message here\";s:25:\"custom_validation_message\";s:23:\"This field is Required!\";s:11:\"rows_number\";s:2:\"10\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:13:\"required_type\";s:7:\"disable\";s:18:\"input_limit_number\";s:3:\"255\";s:11:\"text_appear\";s:17:\"Character(s) left\";s:15:\"input_mask_type\";s:4:\"none\";s:11:\"custom_mask\";s:15:\"999,999,999,999\";s:21:\"input_validation_type\";s:10:\"characters\";s:17:\"autocomplete_type\";s:6:\"enable\";s:13:\"disable_input\";s:7:\"disable\";s:11:\"date_format\";s:0:\"\";s:10:\"start_year\";s:0:\"\";s:8:\"end_year\";s:0:\"\";s:20:\"default_current_date\";s:0:\"\";s:10:\"max_number\";s:0:\"\";s:10:\"min_number\";s:0:\"\";s:4:\"step\";s:0:\"\";s:23:\"drop_down_option_values\";a:0:{}s:9:\"field_key\";s:35:\"paragraph_text_field_key_1598705175\";s:13:\"default_value\";s:0:\"\";s:11:\"admin_label\";s:0:\"\";s:5:\"price\";s:0:\"\";s:11:\"time_format\";s:0:\"\";s:12:\"current_time\";s:0:\"\";s:12:\"product_name\";s:0:\"\";s:18:\"credit_card_number\";s:0:\"\";s:23:\"credit_card_expiry_date\";s:0:\"\";s:15:\"credit_card_cvv\";s:0:\"\";s:23:\"credit_card_placeholder\";s:0:\"\";s:30:\"credit_card_expiry_placeholder\";s:0:\"\";s:27:\"credit_card_cvv_placeholder\";s:0:\"\";s:19:\"html_editor_content\";s:0:\"\";s:16:\"html_editor_type\";s:0:\"\";s:29:\"html_editor_content_duplicate\";s:0:\"\";s:13:\"shipping_cost\";s:0:\"\";s:15:\"antispam_answer\";s:0:\"\";s:12:\"maximum_size\";s:0:\"\";s:9:\"extension\";s:0:\"\";s:15:\"multiple_upload\";s:0:\"\";s:15:\"attach_to_email\";s:0:\"\";s:9:\"timestamp\";i:1598705175;s:38:\"logical_captcha_mathmatical_operations\";s:0:\"\";s:25:\"logical_captcha_artimatic\";s:0:\"\";s:26:\"logical_captcha_relational\";s:0:\"\";s:29:\"logical_captcha_arrange_order\";s:0:\"\";}}s:29:\"form_admin_notification_email\";a:10:{s:22:\"template_send_to_email\";s:39:\"[email protected]\";s:16:\"template_send_to\";s:13:\"send_to_email\";s:22:\"template_send_to_field\";s:0:\"\";s:11:\"template_cc\";s:0:\"\";s:12:\"template_bcc\";s:0:\"\";s:18:\"template_from_name\";s:19:\"Site Administration\";s:19:\"template_from_email\";s:39:\"[email protected]\";s:17:\"template_reply_to\";s:0:\"\";s:16:\"template_subject\";s:33:\"New Contact received from Website\";s:16:\"template_message\";s:411:\"<p>Hello Admin,</p><p>A new user visited your website.</p><p>Here are the details :</p><p><strong>Name</strong>: [control_1598705172]</p><p><strong>Email</strong>: [control_1598705173]</p><p><strong>Subject</strong>: [control_1598705174]</p><p><strong>Message</strong>: [control_1598705175]</p><p>Thanks,</p><p><strong>Technical Support Team</strong></p><p><strong>Mortal Cities Forgotten Monuments</strong></p>\";}s:30:\"form_client_notification_email\";a:10:{s:22:\"template_send_to_email\";s:39:\"[email protected]\";s:16:\"template_send_to\";s:13:\"send_to_email\";s:22:\"template_send_to_field\";s:0:\"\";s:11:\"template_cc\";s:0:\"\";s:12:\"template_bcc\";s:0:\"\";s:18:\"template_from_name\";s:19:\"Site Administration\";s:19:\"template_from_email\";s:39:\"[email protected]\";s:17:\"template_reply_to\";s:0:\"\";s:16:\"template_subject\";s:31:\"Thanks for visiting our Website\";s:16:\"template_message\";s:208:\"<p>Hi,</p><p>Thanks for visiting our website. We will Contact you within next 24 hours.</p><p>Thanks,</p><p><strong>Technical Support Team</strong></p><p><strong>Mortal Cities Forgotten Monuments</strong></p>\";}}',6),(5,6,'layout_settings','a:65:{s:33:\"layout_settings_form_design_width\";s:4:\"100%\";s:36:\"layout_settings_form_design_position\";s:4:\"left\";s:44:\"layout_settings_form_design_background_color\";s:7:\"#ffffff\";s:51:\"layout_settings_form_design_background_transparency\";s:3:\"100\";s:42:\"layout_settings_form_design_title_html_tag\";s:2:\"h1\";s:43:\"layout_settings_form_design_title_alignment\";s:4:\"left\";s:44:\"layout_settings_form_design_title_font_style\";s:10:\"24,#000000\";s:45:\"layout_settings_form_design_title_font_family\";s:15:\"Roboto Slab:700\";s:48:\"layout_settings_form_design_description_html_tag\";s:1:\"p\";s:49:\"layout_settings_form_design_description_alignment\";s:4:\"left\";s:50:\"layout_settings_form_design_description_font_style\";s:10:\"12,#000000\";s:51:\"layout_settings_form_design_description_font_family\";s:15:\"Roboto Slab:300\";s:39:\"layout_settings_form_design_form_margin\";s:7:\"0,0,0,0\";s:40:\"layout_settings_form_design_form_padding\";s:11:\"10,10,10,10\";s:40:\"layout_settings_form_design_title_margin\";s:7:\"0,0,5,0\";s:41:\"layout_settings_form_design_title_padding\";s:7:\"5,0,0,0\";s:46:\"layout_settings_form_design_description_margin\";s:7:\"0,0,5,0\";s:47:\"layout_settings_form_design_description_padding\";s:7:\"0,0,5,0\";s:33:\"layout_settings_input_field_width\";s:3:\"90%\";s:34:\"layout_settings_input_field_height\";s:4:\"100%\";s:42:\"layout_settings_input_field_text_alignment\";s:4:\"left\";s:50:\"layout_settings_input_field_radio_button_alignment\";s:10:\"single_row\";s:46:\"layout_settings_input_field_checkbox_alignment\";s:10:\"single_row\";s:38:\"layout_settings_input_field_font_style\";s:10:\"14,#000000\";s:39:\"layout_settings_input_field_font_family\";s:16:\"Roboto Condensed\";s:57:\"layout_settings_input_field_background_color_transparency\";s:11:\"#f7f7f7,100\";s:40:\"layout_settings_input_field_border_style\";s:15:\"1,solid,#d1d1d1\";s:41:\"layout_settings_input_field_border_radius\";s:1:\"2\";s:34:\"layout_settings_input_field_margin\";s:7:\"5,0,5,0\";s:35:\"layout_settings_input_field_padding\";s:11:\"10,10,10,10\";s:42:\"layout_settings_label_field_text_alignment\";s:4:\"left\";s:33:\"layout_settings_label_field_width\";s:4:\"100%\";s:34:\"layout_settings_label_field_height\";s:4:\"100%\";s:38:\"layout_settings_label_field_font_style\";s:10:\"16,#000000\";s:39:\"layout_settings_label_field_font_family\";s:16:\"Roboto Condensed\";s:57:\"layout_settings_label_field_background_color_transparency\";s:9:\"#ffffff,0\";s:34:\"layout_settings_label_field_margin\";s:7:\"0,0,0,0\";s:35:\"layout_settings_label_field_padding\";s:10:\"10,10,10,0\";s:37:\"layout_settings_button_text_alignment\";s:6:\"center\";s:27:\"layout_settings_button_text\";s:6:\"Submit\";s:28:\"layout_settings_button_width\";s:5:\"100px\";s:29:\"layout_settings_button_height\";s:4:\"100%\";s:33:\"layout_settings_button_font_style\";s:10:\"16,#ffffff\";s:34:\"layout_settings_button_font_family\";s:11:\"Roboto Slab\";s:39:\"layout_settings_button_background_color\";s:7:\"#524c52\";s:46:\"layout_settings_button_background_transparency\";s:3:\"100\";s:45:\"layout_settings_button_hover_background_color\";s:7:\"#706c70\";s:52:\"layout_settings_button_hover_background_transparency\";s:3:\"100\";s:35:\"layout_settings_button_border_style\";s:15:\"1,solid,#524c52\";s:36:\"layout_settings_button_border_radius\";s:1:\"4\";s:41:\"layout_settings_button_hover_border_color\";s:7:\"#706c70\";s:29:\"layout_settings_button_margin\";s:8:\"10,0,0,0\";s:30:\"layout_settings_button_padding\";s:11:\"10,10,10,10\";s:39:\"layout_settings_messages_text_alignment\";s:4:\"left\";s:54:\"layout_settings_messages_background_color_transparency\";s:10:\"#e5ffd5,50\";s:35:\"layout_settings_messages_font_style\";s:10:\"18,#6aa500\";s:36:\"layout_settings_messages_font_family\";s:11:\"Roboto Slab\";s:31:\"layout_settings_messages_margin\";s:7:\"0,0,0,0\";s:32:\"layout_settings_messages_padding\";s:7:\"0,0,0,0\";s:47:\"layout_settings_error_messages_background_color\";s:7:\"#ffffff\";s:54:\"layout_settings_error_messages_background_transparency\";s:2:\"50\";s:41:\"layout_settings_error_messages_font_style\";s:10:\"12,#ff2c38\";s:42:\"layout_settings_error_messages_font_family\";s:11:\"Roboto Slab\";s:37:\"layout_settings_error_messages_margin\";s:7:\"0,0,0,0\";s:38:\"layout_settings_error_messages_padding\";s:15:\"5px,0px,0px,0px\";}',6);
/*!40000 ALTER TABLE `wp_contact_bank_meta` 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) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_image` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_target` varchar(25) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_description` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_visible` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_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) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_notes` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `link_rss` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`link_id`),
  KEY `link_visible` (`link_visible`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_links`
--

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

--
-- Table structure for table `wp_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) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `option_value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `autoload` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes',
  PRIMARY KEY (`option_id`),
  UNIQUE KEY `option_name` (`option_name`),
  KEY `autoload` (`autoload`)
) ENGINE=InnoDB AUTO_INCREMENT=15315 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_options`
--

LOCK TABLES `wp_options` WRITE;
/*!40000 ALTER TABLE `wp_options` DISABLE KEYS */;
INSERT INTO `wp_options` VALUES (1,'siteurl','http://mortalcitiesforgottenmonuments.com','yes'),(2,'home','http://mortalcitiesforgottenmonuments.com','yes'),(3,'blogname','MCFM','yes'),(4,'blogdescription','Life Is A One-time Offer, Use It Well','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','[email protected]','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','','yes'),(11,'comments_notify','','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','[email protected]','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','2','yes'),(19,'default_comment_status','closed','yes'),(20,'default_ping_status','closed','yes'),(21,'default_pingback_flag','','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','','yes'),(27,'moderation_notify','','yes'),(28,'permalink_structure','/%postname%/','yes'),(29,'rewrite_rules','a:92:{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:14:\"^sitemaps.xml$\";s:28:\"index.php?seopress_sitemap=1\";s:18:\"^sitemaps_xsl.xsl$\";s:32:\"index.php?seopress_sitemap_xsl=1\";s:24:\"^sitemaps_video_xsl.xsl$\";s:38:\"index.php?seopress_sitemap_video_xsl=1\";s:40:\"sitemaps/([^/]+?)-sitemap([0-9]+)?\\.xml$\";s:61:\"index.php?seopress_cpt=$matches[1]&seopress_paged=$matches[2]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"([^/]+)/embed/?$\";s:37:\"index.php?name=$matches[1]&embed=true\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:24:\"([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:22:\"[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:15:{i:0;s:43:\"wp-sheet-editor-premium/wp-sheet-editor.php\";i:1;s:35:\"404-to-homepage/404-to-homepage.php\";i:2;s:91:\"all-in-one-wp-migration-multisite-extension/all-in-one-wp-migration-multisite-extension.php\";i:3;s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";i:4;s:31:\"cache-enabler/cache-enabler.php\";i:5;s:33:\"classic-editor/classic-editor.php\";i:6;s:29:\"contact-bank/contact-bank.php\";i:7;s:37:\"link-whisper-premium/link-whisper.php\";i:8;s:45:\"remove-footer-credit/remove-footer-credit.php\";i:9;s:49:\"scheduled-post-trigger/scheduled-post-trigger.php\";i:10;s:23:\"spiderblocker/index.php\";i:11;s:37:\"wordpress-autoblogging/basic-auth.php\";i:12;s:23:\"wp-insert/wp-insert.php\";i:13;s:24:\"wp-seopress/seopress.php\";i:14;s:41:\"xml-sitemaps-for-videos/video-sitemap.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','0','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','','no'),(40,'template','tourable','yes'),(41,'stylesheet','tourable','yes'),(44,'comment_registration','','yes'),(45,'html_type','text/html','yes'),(46,'use_trackback','0','yes'),(47,'default_role','subscriber','yes'),(48,'db_version','51917','yes'),(49,'uploads_use_yearmonth_folders','1','yes'),(50,'upload_path','','yes'),(51,'blog_public','1','yes'),(52,'default_link_category','2','yes'),(53,'show_on_front','posts','yes'),(54,'tag_base','','yes'),(55,'show_avatars','','yes'),(56,'avatar_rating','G','yes'),(57,'upload_url_path','','yes'),(58,'thumbnail_size_w','150','yes'),(59,'thumbnail_size_h','150','yes'),(60,'thumbnail_crop','1','yes'),(61,'medium_size_w','300','yes'),(62,'medium_size_h','300','yes'),(63,'avatar_default','mystery','yes'),(64,'large_size_w','1024','yes'),(65,'large_size_h','1024','yes'),(66,'image_default_link_type','none','yes'),(67,'image_default_size','','yes'),(68,'image_default_align','','yes'),(69,'close_comments_for_old_posts','','yes'),(70,'close_comments_days_old','14','yes'),(71,'thread_comments','','yes'),(72,'thread_comments_depth','5','yes'),(73,'page_comments','','yes'),(74,'comments_per_page','50','yes'),(75,'default_comments_page','newest','yes'),(76,'comment_order','asc','yes'),(77,'sticky_posts','a:4:{i:0;i:47;i:1;i:54;i:2;i:58;i:3;i:63;}','yes'),(78,'widget_categories','a:3:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}i:3;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(79,'widget_text','a:4:{i:1;a:0:{}i:2;a:4:{s:5:\"title\";s:7:\"Creator\";s:4:\"text\";s:350:\"<img class=\"aligncenter wp-image-33 size-full\" src=\"http://mortalcitiesforgottenmonuments.com/wp-content/uploads/2020/08/Roxanne-Belisle-1.jpg\" alt=\"\" width=\"465\" height=\"295\" />\r\n\r\nHello! I\'m <strong>Roxanne Belisle</strong>, creator of this website. We must be willing to let go of the life we planned so as to have the life that is waiting for us.\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}i:3;a:4:{s:5:\"title\";s:3:\"Ads\";s:4:\"text\";s:335:\"<a href=\"https://www.lifehack.org/articles/lifestyle/25-awesome-clothing-tips-woman-should-ever-miss.html\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-34 size-full\" src=\"http://mortalcitiesforgottenmonuments.com/wp-content/uploads/2020/08/d94ff7aeb6eeb9bd762164bb23284473.jpg\" alt=\"\" width=\"300\" height=\"250\" /></a>\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}s:12:\"_multiwidget\";i:1;}','yes'),(80,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(81,'uninstall_plugins','a:2:{s:33:\"classic-editor/classic-editor.php\";a:2:{i:0;s:14:\"Classic_Editor\";i:1;s:9:\"uninstall\";}s:31:\"cache-enabler/cache-enabler.php\";a:2:{i:0;s:13:\"Cache_Enabler\";i:1;s:12:\"on_uninstall\";}}','no'),(82,'timezone_string','','yes'),(83,'page_for_posts','0','yes'),(84,'page_on_front','0','yes'),(85,'default_post_format','0','yes'),(86,'link_manager_enabled','0','yes'),(87,'finished_splitting_shared_terms','1','yes'),(88,'site_icon','23','yes'),(89,'medium_large_size_w','768','yes'),(90,'medium_large_size_h','0','yes'),(91,'wp_page_for_privacy_policy','3','yes'),(92,'show_comments_cookies_opt_in','','yes'),(93,'admin_email_lifespan','1611086242','yes'),(94,'initial_db_version','47018','yes'),(95,'wp_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:73:{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:25:\"seopress_manage_dashboard\";b:1;s:28:\"seopress_manage_titles_metas\";b:1;s:32:\"seopress_manage_xml_html_sitemap\";b:1;s:31:\"seopress_manage_social_networks\";b:1;s:25:\"seopress_manage_analytics\";b:1;s:24:\"seopress_manage_advanced\";b:1;s:21:\"seopress_manage_tools\";b:1;s:19:\"seopress_manage_pro\";b:1;s:23:\"seopress_manage_schemas\";b:1;s:19:\"seopress_manage_bot\";b:1;s:23:\"seopress_manage_license\";b:1;s:32:\"seopress_manage_instant_indexing\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','yes'),(96,'fresh_site','0','yes'),(97,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(98,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(99,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(100,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(101,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(102,'sidebars_widgets','a:8:{s:19:\"wp_inactive_widgets\";a:3:{i:0;s:10:\"archives-2\";i:1;s:6:\"meta-2\";i:2;s:17:\"recent-comments-2\";}s:9:\"sidebar-1\";a:4:{i:0;s:8:\"search-2\";i:1;s:6:\"text-2\";i:2;s:12:\"categories-2\";i:3;s:14:\"recent-posts-2\";}s:16:\"optional-sidebar\";a:0:{}s:8:\"footer-1\";a:1:{i:0;s:10:\"calendar-2\";}s:8:\"footer-2\";a:1:{i:0;s:10:\"nav_menu-2\";}s:8:\"footer-3\";a:1:{i:0;s:12:\"categories-3\";}s:8:\"footer-4\";a:1:{i:0;s:6:\"text-3\";}s:13:\"array_version\";i:3;}','yes'),(103,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(104,'db-version-secure','N4R2noWQ7a','yes'),(105,'tagline','','yes'),(107,'auth_key','6l,m])qs.0GDG)Rz&1l*)k_BWc#S+77j*eU(rRR]CH<I+SwC?d}@V.&VR|4Or|$n','no'),(108,'auth_salt','JtH[q5Xdga>R[rCN&Q13,b@ydn<-{q~3ws45FcFP)u9LBlw&i[N(}+`&h!>YZ~9?','no'),(109,'logged_in_key','1V^SU7{Xi`SvruvFGK8z4o_oYR@=hC oi5?Yvf%r.$?z}]/:Y7TzcJL~!aBTI/oc','no'),(110,'logged_in_salt','7*d#g5(uLP1-tp_)<ycq9OJNsjDX2y9{j3f;,`QW=r@hDCRJ34}]S[!AK:0Jd2%&','no'),(111,'cron','a:9:{i:1653818244;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:1653821120;a:1:{s:21:\"wp_update_user_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1653828167;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:1653848599;a:1:{s:18:\"wp_https_detection\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1653854243;a:1:{s:15:\"ebn_optimize_db\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1653854244;a:6:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s: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:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1653894944;a:1:{s:31:\"seopress_xml_sitemaps_ping_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1654286244;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}s:7:\"version\";i:2;}','yes'),(112,'update_day','5','yes'),(113,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(114,'widget_calendar','a:2:{i:2;a:1:{s:5:\"title\";s:8:\"Calender\";}s:12:\"_multiwidget\";i:1;}','yes'),(115,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(116,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(117,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(118,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(119,'widget_nav_menu','a:2:{i:2;a:2:{s:5:\"title\";s:11:\"Quick Links\";s:8:\"nav_menu\";i:4;}s:12:\"_multiwidget\";i:1;}','yes'),(120,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(122,'nonce_key','i)U44F&r^6^sh}Kay|QM;oajX$_s_iEP{A9I+z$fxl%Z`$%y*(dmB<S8b<I|oN1-','no'),(123,'nonce_salt','6PlS/cW4JXu#v#5EGN&A%;]28L3ulv]#G^-(J_Oz9@1Fx@znSd~i908{}NT]tuSI','no'),(124,'widget_akismet_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(130,'Niteoweb.SpiderBlocker.Bots','a:39:{i:0;a:4:{s:4:\"name\";s:10:\"Ahrefs Bot\";s:2:\"re\";s:9:\"AhrefsBot\";s:4:\"desc\";s:25:\"https://ahrefs.com/robot/\";s:5:\"state\";b:1;}i:1;a:4:{s:4:\"name\";s:8:\"MJ12 bot\";s:2:\"re\";s:7:\"MJ12bot\";s:4:\"desc\";s:56:\"http://www.majestic12.co.uk/projects/dsearch/mj12bot.php\";s:5:\"state\";b:1;}i:2;a:4:{s:4:\"name\";s:9:\"Roger Bot\";s:2:\"re\";s:8:\"Rogerbot\";s:4:\"desc\";s:40:\"http://moz.com/help/pro/rogerbot-crawler\";s:5:\"state\";b:1;}i:3;a:4:{s:4:\"name\";s:11:\"Semrush Bot\";s:2:\"re\";s:10:\"SemrushBot\";s:4:\"desc\";s:31:\"http://www.semrush.com/bot.html\";s:5:\"state\";b:1;}i:4;a:4:{s:4:\"name\";s:11:\"ia_archiver\";s:2:\"re\";s:11:\"ia_archiver\";s:4:\"desc\";s:36:\"http://archive.org/about/exclude.php\";s:5:\"state\";b:1;}i:5;a:4:{s:4:\"name\";s:8:\"ScoutJet\";s:2:\"re\";s:8:\"ScoutJet\";s:4:\"desc\";s:19:\"http://scoutjet.com\";s:5:\"state\";b:1;}i:6;a:4:{s:4:\"name\";s:7:\"sistrix\";s:2:\"re\";s:7:\"sistrix\";s:4:\"desc\";s:26:\"http://crawler.sistrix.net\";s:5:\"state\";b:1;}i:7;a:4:{s:4:\"name\";s:16:\"SearchmetricsBot\";s:2:\"re\";s:16:\"SearchmetricsBot\";s:4:\"desc\";s:50:\"http://www.searchmetrics.com/en/searchmetrics-bot/\";s:5:\"state\";b:1;}i:8;a:4:{s:4:\"name\";s:14:\"SEOkicks-Robot\";s:2:\"re\";s:14:\"SEOkicks-Robot\";s:4:\"desc\";s:33:\"http://www.seokicks.de/robot.html\";s:5:\"state\";b:1;}i:9;a:4:{s:4:\"name\";s:16:\"Lipperhey Spider\";s:2:\"re\";s:16:\"Lipperhey Spider\";s:4:\"desc\";s:43:\"http://www.lipperhey.com/en/website-spider/\";s:5:\"state\";b:1;}i:10;a:4:{s:4:\"name\";s:6:\"Exabot\";s:2:\"re\";s:6:\"Exabot\";s:4:\"desc\";s:44:\"http://www.exalead.com/search/webmasterguide\";s:5:\"state\";b:1;}i:11;a:4:{s:4:\"name\";s:6:\"NC Bot\";s:2:\"re\";s:5:\"NCBot\";s:4:\"desc\";s:55:\"https://twitter.com/NetComber/status/334476871691550721\";s:5:\"state\";b:1;}i:12;a:4:{s:4:\"name\";s:15:\"BacklinkCrawler\";s:2:\"re\";s:15:\"BacklinkCrawler\";s:4:\"desc\";s:40:\"http://www.backlinktest.com/crawler.html\";s:5:\"state\";b:1;}i:13;a:4:{s:4:\"name\";s:15:\"archive.org Bot\";s:2:\"re\";s:15:\"archive.org_bot\";s:4:\"desc\";s:42:\"http://archive.org/details/archive.org_bot\";s:5:\"state\";b:1;}i:14;a:4:{s:4:\"name\";s:12:\"MeanPath Bot\";s:2:\"re\";s:11:\"meanpathbot\";s:4:\"desc\";s:37:\"https://meanpath.com/meanpathbot.html\";s:5:\"state\";b:1;}i:15;a:4:{s:4:\"name\";s:18:\"PagesInventory Bot\";s:2:\"re\";s:14:\"PagesInventory\";s:4:\"desc\";s:56:\"http://www.botsvsbrowsers.com/details/1002332/index.html\";s:5:\"state\";b:1;}i:16;a:4:{s:4:\"name\";s:12:\"Aboundex Bot\";s:2:\"re\";s:11:\"Aboundexbot\";s:4:\"desc\";s:32:\"http://www.aboundex.com/crawler/\";s:5:\"state\";b:1;}i:17;a:4:{s:4:\"name\";s:15:\"SeoProfiler Bot\";s:2:\"re\";s:5:\"spbot\";s:4:\"desc\";s:31:\"http://www.seoprofiler.com/bot/\";s:5:\"state\";b:1;}i:18;a:4:{s:4:\"name\";s:11:\"Linkdex Bot\";s:2:\"re\";s:10:\"linkdexbot\";s:4:\"desc\";s:34:\"http://www.linkdex.com/about/bots/\";s:5:\"state\";b:1;}i:19;a:4:{s:4:\"name\";s:7:\"Gigabot\";s:2:\"re\";s:7:\"Gigabot\";s:4:\"desc\";s:45:\"http://www.useragentstring.com/pages/Gigabot/\";s:5:\"state\";b:1;}i:20;a:4:{s:4:\"name\";s:6:\"DotBot\";s:2:\"re\";s:6:\"dotbot\";s:4:\"desc\";s:35:\"http://en.wikipedia.org/wiki/DotBot\";s:5:\"state\";b:1;}i:21;a:4:{s:4:\"name\";s:5:\"Nutch\";s:2:\"re\";s:5:\"Nutch\";s:4:\"desc\";s:32:\"http://nutch.apache.org/bot.html\";s:5:\"state\";b:1;}i:22;a:4:{s:4:\"name\";s:8:\"BLEX Bot\";s:2:\"re\";s:7:\"BLEXBot\";s:4:\"desc\";s:27:\"http://webmeup-crawler.com/\";s:5:\"state\";b:1;}i:23;a:4:{s:4:\"name\";s:6:\"Ezooms\";s:2:\"re\";s:6:\"Ezooms\";s:4:\"desc\";s:49:\"http://graphicline.co.za/blogs/what-is-ezooms-bot\";s:5:\"state\";b:1;}i:24;a:4:{s:4:\"name\";s:11:\"Majestic 12\";s:2:\"re\";s:11:\"Majestic-12\";s:4:\"desc\";s:56:\"http://www.majestic12.co.uk/projects/dsearch/mj12bot.php\";s:5:\"state\";b:1;}i:25;a:4:{s:4:\"name\";s:12:\"Majestic SEO\";s:2:\"re\";s:12:\"Majestic-SEO\";s:4:\"desc\";s:56:\"http://www.majestic12.co.uk/projects/dsearch/mj12bot.php\";s:5:\"state\";b:1;}i:26;a:4:{s:4:\"name\";s:7:\"DSearch\";s:2:\"re\";s:7:\"DSearch\";s:4:\"desc\";s:56:\"http://www.majestic12.co.uk/projects/dsearch/mj12bot.php\";s:5:\"state\";b:1;}i:27;a:4:{s:4:\"name\";s:4:\"MJ12\";s:2:\"re\";s:4:\"MJ12\";s:4:\"desc\";s:56:\"http://www.majestic12.co.uk/projects/dsearch/mj12bot.php\";s:5:\"state\";b:1;}i:28;a:4:{s:4:\"name\";s:10:\"Blekko Bot\";s:2:\"re\";s:9:\"BlekkoBot\";s:4:\"desc\";s:33:\"http://blekko.com/about/blekkobot\";s:5:\"state\";b:1;}i:29;a:4:{s:4:\"name\";s:6:\"Yandex\";s:2:\"re\";s:6:\"Yandex\";s:4:\"desc\";s:41:\"http://help.yandex.com/search/?id=1112030\";s:5:\"state\";b:0;}i:30;a:4:{s:4:\"name\";s:10:\"Google Bot\";s:2:\"re\";s:9:\"googlebot\";s:4:\"desc\";s:57:\"https://support.google.com/webmasters/answer/182072?hl=en\";s:5:\"state\";b:0;}i:31;a:4:{s:4:\"name\";s:18:\"Feedfetcher Google\";s:2:\"re\";s:18:\"Feedfetcher-Google\";s:4:\"desc\";s:51:\"https://support.google.com/webmasters/answer/178852\";s:5:\"state\";b:0;}i:32;a:4:{s:4:\"name\";s:8:\"Bing Bot\";s:2:\"re\";s:7:\"BingBot\";s:4:\"desc\";s:36:\"http://en.wikipedia.org/wiki/Bingbot\";s:5:\"state\";b:0;}i:33;a:4:{s:4:\"name\";s:9:\"Nerdy Bot\";s:2:\"re\";s:8:\"NerdyBot\";s:4:\"desc\";s:20:\"http://nerdybot.com/\";s:5:\"state\";b:1;}i:34;a:4:{s:4:\"name\";s:9:\"James BOT\";s:2:\"re\";s:8:\"JamesBOT\";s:4:\"desc\";s:32:\"http://cognitiveseo.com/bot.html\";s:5:\"state\";b:1;}i:35;a:4:{s:4:\"name\";s:7:\"Tin Eye\";s:2:\"re\";s:6:\"TinEye\";s:4:\"desc\";s:34:\"http://www.tineye.com/crawler.html\";s:5:\"state\";b:1;}i:36;a:4:{s:5:\"state\";b:1;s:2:\"re\";s:11:\"Baiduspider\";s:4:\"name\";s:5:\"Baidu\";s:4:\"desc\";s:47:\"http://www.baidu.com/search/robots_english.html\";}i:37;a:4:{s:5:\"state\";b:1;s:2:\"re\";s:8:\"serpstat\";s:4:\"name\";s:8:\"Serpstat\";s:4:\"desc\";s:21:\"https://serpstat.com/\";}i:38;a:4:{s:5:\"state\";b:1;s:4:\"desc\";s:22:\"https://www.spyfu.com/\";s:2:\"re\";s:5:\"spyfu\";s:4:\"name\";s:5:\"SpyFu\";}}','yes'),(133,'current_theme','Tourable','yes'),(136,'widget_call-to-action','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(137,'widget_button','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(138,'widget_headline','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(139,'widget_icon-text','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(140,'theme_mods_origami','a:3:{s:18:\"custom_css_post_id\";i:-1;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:4;}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1598706296;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:4:{i:0;s:8:\"search-2\";i:1;s:12:\"categories-2\";i:2;s:14:\"recent-posts-2\";i:3;s:11:\"tag_cloud-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}}}}','yes'),(141,'crawl-delay-value','4','yes'),(165,'WPLANG','','yes'),(166,'new_admin_email','[email protected]','yes'),(169,'recently_activated','a:0:{}','yes'),(180,'cb_admin_notice','a:1:{s:15:\"two_week_review\";a:3:{s:5:\"start\";s:10:\"09/05/2020\";s:3:\"int\";i:7;s:9:\"dismissed\";i:0;}}','yes'),(181,'contact-bank-version-number','3.0.1','yes'),(183,'seopress_activated','yes','yes'),(184,'wp_insert_legalpages','a:4:{s:14:\"privacy_policy\";a:2:{s:7:\"content\";s:2668:\"<p>At [sitename], the privacy of our visitors is of extreme importance to us. This privacy policy document outlines the types of personal information is received and collected by [sitename] and how it is used.</p><p><b>Log Files</b></p><p>Like many other Web sites, [sitename] makes use of log files. The information inside the log files includes internet protocol (IP) addresses, type of browser, Internet Service Provider (ISP), date/time stamp, referring/exit pages, and number of clicks to analyze trends, administer the site, track user\\\'s movement around the site, and gather demographic information. IP addresses, and other such information are not linked to any information that is personally identifiable.</p><p><b>Cookies and Web Beacons</b></p><p>[sitename] does use cookies to store information about visitors preferences, record user-specific information on which pages the user access or visit, customize Web page content based on visitors browser type or other information that the visitor sends via their browser.</p><p><b>DoubleClick DART Cookie</b></p><ul><li>Google, as a third party vendor, uses cookies to serve ads on [sitename].</li><li>Google\\\'s use of the DART cookie enables it to serve ads to users based on their visit to [sitename] and other sites on the Internet.</li><li>Users may opt out of the use of the DART cookie by visiting the Google ad and content network privacy policy at the following URL - <a href=\\\"https://www.google.com/policies/privacy/\\\" rel=\\\"nofollow\\\">https://www.google.com/policies/privacy/</a>.</li></ul><p>These third-party ad servers or ad networks use technology to the advertisements and links that appear on [sitename] send directly to your browsers. They automatically receive your IP address when this occurs. Other technologies ( such as cookies, JavaScript, or Web Beacons ) may also be used by the third-party ad networks to measure the effectiveness of their advertisements and / or to personalize the advertising content that you see.</p><p>[sitename] has no access to or control over these cookies that are used by third-party advertisers.</p><p>You should consult the respective privacy policies of these third-party ad servers for more detailed information on their practices as well as for instructions about how to opt-out of certain practices. [sitename]\\\'s privacy policy does not apply to, and we cannot control the activities of, such other advertisers or web sites.</p><p>If you wish to disable cookies, you may do so through your individual browser options. More detailed information about cookie management with specific web browsers can be found at the browser\\\'s respective websites.</p>\";s:13:\"assigned_page\";s:1:\"6\";}s:16:\"terms_conditions\";a:2:{s:7:\"content\";s:2315:\"<p>Welcome to [sitename]. If you continue to browse and use this website you are agreeing to comply with and be bound by the following terms and conditions of use, which together with our privacy policy govern [sitename]\\\'s relationship with you in relation to this website.</p><p>The term [sitename] or \\\'us\\\' or \\\'we\\\' refers to the owner of the website. The term \\\'you\\\' refers to the user or viewer of our website.  The use of this website is subject to the following terms of use:</p><ul><li>The content of the pages of this website is for your general information and use only. It is subject to change without notice.</li><li>Neither we nor any third parties provide any warranty or guarantee as to the accuracy, timeliness, performance, completeness or suitability of the information and materials found or offered on this website for any particular purpose. You acknowledge that such information and materials may contain inaccuracies or errors and we expressly exclude liability for any such inaccuracies or errors to the fullest extent permitted by law.</li><li>Your use of any information or materials on this website is entirely at your own risk, for which we shall not be liable. It shall be your own responsibility to ensure that any products, services or information available through this website meet your specific requirements.</li><li>This website contains material which is owned by or licensed to us. This material includes, but is not limited to, the design, layout, look, appearance and graphics. Reproduction is prohibited other than in accordance with the copyright notice, which forms part of these terms and conditions.</li><li>All trademarks reproduced in this website, which are not the property of, or licensed to the operator, are acknowledged on the website.</li><li>Unauthorized use of this website may give rise to a claim for damages and/or be a criminal offense.</li><li>From time to time this website may also include links to other websites. These links are provided for your convenience to provide further information. They do not signify that we endorse the website(s). We have no responsibility for the content of the linked website(s).</li><li>You may not create a link to this website from another website or document without [sitename]\\\'s prior written consent.</li></ul>\";s:13:\"assigned_page\";s:1:\"7\";}s:10:\"disclaimer\";a:2:{s:7:\"content\";s:0:\"\";s:13:\"assigned_page\";s:0:\"\";}s:9:\"copyright\";a:2:{s:7:\"content\";s:0:\"\";s:13:\"assigned_page\";s:0:\"\";}}','yes'),(185,'wp_insert_version','2.5','yes'),(186,'widget_contact_bank_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(187,'widget_wp_insert_ad_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(188,'seopress_versions','a:1:{s:4:\"free\";s:5:\"5.7.2\";}','no'),(189,'seopress_toggle','a:12:{s:13:\"toggle-titles\";s:1:\"1\";s:18:\"toggle-xml-sitemap\";s:1:\"1\";s:13:\"toggle-social\";s:1:\"1\";s:23:\"toggle-google-analytics\";s:1:\"1\";s:15:\"toggle-advanced\";s:1:\"1\";s:18:\"toggle-dublin-core\";s:1:\"1\";s:21:\"toggle-local-business\";s:1:\"1\";s:20:\"toggle-rich-snippets\";s:1:\"1\";s:18:\"toggle-breadcrumbs\";s:1:\"1\";s:13:\"toggle-robots\";s:1:\"1\";s:10:\"toggle-404\";s:1:\"1\";s:10:\"toggle-bot\";s:1:\"1\";}','yes'),(190,'seopress_titles_option_name','a:12:{s:31:\"seopress_titles_home_site_title\";s:13:\"%%sitetitle%%\";s:30:\"seopress_titles_home_site_desc\";s:11:\"%%tagline%%\";s:29:\"seopress_titles_single_titles\";a:2:{s:4:\"post\";a:2:{s:5:\"title\";s:36:\"%%post_title%% %%sep%% %%sitetitle%%\";s:11:\"description\";s:16:\"%%post_excerpt%%\";}s:4:\"page\";a:2:{s:5:\"title\";s:36:\"%%post_title%% %%sep%% %%sitetitle%%\";s:11:\"description\";s:16:\"%%post_excerpt%%\";}}s:26:\"seopress_titles_tax_titles\";a:2:{s:8:\"category\";a:2:{s:5:\"title\";s:64:\"%%_category_title%% %%current_pagination%% %%sep%% %%sitetitle%%\";s:11:\"description\";s:25:\"%%_category_description%%\";}s:8:\"post_tag\";a:2:{s:5:\"title\";s:58:\"%%tag_title%% %%current_pagination%% %%sep%% %%sitetitle%%\";s:11:\"description\";s:19:\"%%tag_description%%\";}}s:30:\"seopress_titles_archive_titles\";a:2:{s:4:\"post\";a:1:{s:5:\"title\";s:59:\"%%cpt_plural%% %%current_pagination%% %%sep%% %%sitetitle%%\";}s:4:\"page\";a:1:{s:5:\"title\";s:59:\"%%cpt_plural%% %%current_pagination%% %%sep%% %%sitetitle%%\";}}s:37:\"seopress_titles_archives_author_title\";s:37:\"%%post_author%% %%sep%% %%sitetitle%%\";s:39:\"seopress_titles_archives_author_noindex\";s:1:\"1\";s:35:\"seopress_titles_archives_date_title\";s:38:\"%%archive_date%% %%sep%% %%sitetitle%%\";s:37:\"seopress_titles_archives_date_noindex\";s:1:\"1\";s:37:\"seopress_titles_archives_search_title\";s:41:\"%%search_keywords%% %%sep%% %%sitetitle%%\";s:34:\"seopress_titles_archives_404_title\";s:42:\"404 - Page not found %%sep%% %%sitetitle%%\";s:25:\"seopress_titles_paged_rel\";s:1:\"1\";}','yes'),(191,'seopress_xml_sitemap_option_name','a:4:{s:35:\"seopress_xml_sitemap_general_enable\";s:1:\"1\";s:31:\"seopress_xml_sitemap_img_enable\";s:1:\"1\";s:36:\"seopress_xml_sitemap_post_types_list\";a:2:{s:4:\"post\";a:1:{s:7:\"include\";s:1:\"1\";}s:4:\"page\";a:1:{s:7:\"include\";s:1:\"1\";}}s:36:\"seopress_xml_sitemap_taxonomies_list\";a:2:{s:8:\"category\";a:1:{s:7:\"include\";s:1:\"1\";}s:8:\"post_tag\";a:1:{s:7:\"include\";s:1:\"1\";}}}','yes'),(192,'seopress_social_option_name','a:2:{s:27:\"seopress_social_facebook_og\";s:1:\"1\";s:28:\"seopress_social_twitter_card\";s:1:\"1\";}','yes'),(193,'seopress_advanced_option_name','a:4:{s:38:\"seopress_advanced_advanced_attachments\";s:1:\"1\";s:42:\"seopress_advanced_advanced_tax_desc_editor\";s:1:\"1\";s:38:\"seopress_advanced_appearance_title_col\";s:1:\"1\";s:42:\"seopress_advanced_appearance_meta_desc_col\";s:1:\"1\";}','yes'),(196,'contact-bank-wizard-set-up','skip','yes'),(197,'contact-bank-admin-email','[email protected]','yes'),(199,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(204,'disallowed_keys','','no'),(205,'comment_previously_approved','','yes'),(206,'auto_plugin_theme_update_emails','a:0:{}','no'),(207,'finished_updating_comment_type','1','yes'),(208,'db_upgraded','','yes'),(216,'theme_mods_tourable','a:8:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:4;}s:18:\"custom_css_post_id\";i:30;s:12:\"header_image\";s:100:\"http://mortalcitiesforgottenmonuments.com/wp-content/uploads/2020/08/cropped-lifestyle-brand-web.jpg\";s:17:\"header_image_data\";O:8:\"stdClass\":5:{s:13:\"attachment_id\";i:26;s:3:\"url\";s:100:\"http://mortalcitiesforgottenmonuments.com/wp-content/uploads/2020/08/cropped-lifestyle-brand-web.jpg\";s:13:\"thumbnail_url\";s:100:\"http://mortalcitiesforgottenmonuments.com/wp-content/uploads/2020/08/cropped-lifestyle-brand-web.jpg\";s:6:\"height\";i:528;s:5:\"width\";i:1200;}s:22:\"tourable_theme_options\";a:3:{s:17:\"breadcrumb_enable\";b:0;s:23:\"your_latest_posts_title\";s:44:\"Welcome To Mortal Cities Forgotten Monuments\";s:15:\"pagination_type\";s:7:\"numeric\";}s:11:\"custom_logo\";i:36;s:16:\"header_textcolor\";s:5:\"blank\";}','yes'),(217,'theme_switched','','yes'),(218,'widget_tourable_latest_post','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(219,'widget_tourable_social_link','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(239,'jabrfc_text','a:4:{s:4:\"find\";a:1:{i:0;s:123:\"<span>All Rights Reserved | Tourable&nbsp;by&nbsp;<a target=\"_blank\" href=\"https://themepalace.com\">Theme Palace</a></span>\";}s:7:\"replace\";a:1:{i:0;s:0:\"\";}s:12:\"willLinkback\";s:2:\"no\";s:14:\"linkbackPostId\";s:2:\"13\";}','yes'),(309,'secure_auth_key','duG6S$d~]}((z#,3m)j{@WZ8BX9Bg }ebsuV]_ni1#R-T_~Y+MV) }atQq?Y<`pc','no'),(310,'secure_auth_salt','ljn7V!^5.%7?-,)kyQD_f#-(yQ<iGM&&#WPn/b7F%Z)6i.DK#^T)11,o xH7dhw$','no'),(337,'mainwp_child_update_version','1.5','yes'),(338,'mainwp_child_plugin_version','4.1.10','yes'),(339,'mainwp_child_auth','a:7:{i:5;s:32:\"0125ffde788e355272160344780b924c\";s:4:\"last\";i:1649377321;i:4;s:32:\"2ea373349b2b1a5a90c472ddec5b41a4\";i:3;s:32:\"8f5fbea8b8dfc6fe37ad97d80a87d0c2\";i:2;s:32:\"bebbd0840c89296742ffbf4448b691f7\";i:1;s:32:\"5a3a3f87f22cec917ab3a120f26cfa9e\";i:0;s:32:\"1631afbdb826c7f49e51ef4b4311ce73\";}','yes'),(340,'mainwp_child_branding_settings','a:4:{s:13:\"contact_label\";s:15:\"Contact Support\";s:18:\"cancelled_branding\";b:0;s:23:\"branding_preserve_title\";s:0:\"\";s:21:\"branding_disconnected\";s:0:\"\";}','no'),(341,'mainwp_child_activated_once','1','no'),(342,'mainwp_child_pubkey','LS0tLS1CRUdJTiBQVUJMSUMgS0VZLS0tLS0KTUlJQklqQU5CZ2txaGtpRzl3MEJBUUVGQUFPQ0FROEFNSUlCQ2dLQ0FRRUEyWXFySU9jZmQ4Nmo1SG5nbWo2RwpOMEhkZFlyNzRtdWFJcjJ2YUkrNGhaTmJCQXNJSUNGcEdLU2E1MWQrQnJzQXdBa1ZqdGwyR2ZRK0ZXcGcrV2h5Ck4rM21sR2dicVVEQkZTa3FuZUprRHRieFFWYXRlVmhDL2s5aFBsZnhkUURBMmxFYjVnWDdiZlN3TEJmOE5VZGMKQUM5SkpDaVVBZDhSKzNXSDllVGFoUitUNExaQVFNb2tjVXBMRkY4QXk2OFBWTDhDSG5ManVDRnpQZGhCWCtrTAo2SlozVURKMU5DRmtrd3JZZVdsT2t0dnBXQ3JaZ3VQb1ZINVdSRjl5M0FnanBNeDJ1RFdwUGRXa284eGxESWQyCmc0bHJNSzlqUk82aXlRZFEySEZFNXBCaTdXUHpOM1JQbHF6bXA5WVJBMjJ3UWs4cG41SVVIem5HemJEeFJNaW0KRXdJREFRQUIKLS0tLS1FTkQgUFVCTElDIEtFWS0tLS0tCg==','yes'),(343,'mainwp_child_server','https://dashboard.comparrot.nl/wp-admin/','no'),(344,'mainwp_child_nonce','0','no'),(345,'mainwp_child_nossl','0','yes'),(346,'mainwp_child_nossl_key','6141c11bb0a38c4f0df548f6045128f3c0b85255ea24776cbd1e72d82da063b1','yes'),(347,'mainwp_premium_updates','a:0:{}','no'),(350,'mainwp_child_clone_sites','0','no'),(351,'mainwp_child_siteid','412','no'),(355,'recovery_keys','a:0:{}','yes'),(513,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:39:\"[email protected]\";s:7:\"version\";s:3:\"6.0\";s:9:\"timestamp\";i:1653638815;}','no'),(517,'https_detection_errors','a:1:{s:20:\"https_request_failed\";a:1:{i:0;s:21:\"HTTPS request failed.\";}}','yes'),(650,'auto_update_core_dev','enabled','yes'),(651,'auto_update_core_minor','enabled','yes'),(652,'auto_update_core_major','unset','yes'),(923,'widget_block','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1249,'wp_force_deactivated_plugins','a:0:{}','yes'),(1264,'category_children','a:0:{}','yes'),(14821,'user_count','1','no'),(15280,'ai1wm_secret_key','3nd5VOTWfcwS','yes'),(15281,'ai1wm_backups_labels','a:0:{}','yes'),(15282,'ai1wm_sites_links','a:0:{}','yes'),(15283,'swift_performance_plugin_organizer','a:0:{}','yes'),(15284,'jetpack_active_modules','a:0:{}','yes'),(15285,'_transient_doing_cron','1660732596.8073840141296386718750','yes'),(15287,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:4:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.1.1.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.1.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.1.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.1.1-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.1.1\";s:7:\"version\";s:5:\"6.1.1\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.1\";s:15:\"partial_version\";s:0:\"\";}i:1;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.1.1.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.1.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.1.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.1.1-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.1.1\";s:7:\"version\";s:5:\"6.1.1\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.1\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:2;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:57:\"https://downloads.wordpress.org/release/wordpress-6.1.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:57:\"https://downloads.wordpress.org/release/wordpress-6.1.zip\";s:10:\"no_content\";s:68:\"https://downloads.wordpress.org/release/wordpress-6.1-no-content.zip\";s:11:\"new_bundled\";s:69:\"https://downloads.wordpress.org/release/wordpress-6.1-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:3:\"6.1\";s:7:\"version\";s:3:\"6.1\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.1\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:3;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.0.3.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.0.3.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.0.3-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.0.3-new-bundled.zip\";s:7:\"partial\";s:69:\"https://downloads.wordpress.org/release/wordpress-6.0.3-partial-0.zip\";s:8:\"rollback\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.0.3-rollback-0.zip\";}s:7:\"current\";s:5:\"6.0.3\";s:7:\"version\";s:5:\"6.0.3\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.1\";s:15:\"partial_version\";s:3:\"6.0\";s:9:\"new_files\";s:0:\"\";}}s:12:\"last_checked\";i:1676577193;s:15:\"version_checked\";s:3:\"6.0\";s:12:\"translations\";a:0:{}}','no'),(15291,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1676577196;s:7:\"checked\";a:5:{s:7:\"origami\";s:6:\"1.10.0\";s:8:\"tourable\";s:5:\"1.2.2\";s:12:\"twentytwenty\";s:3:\"2.0\";s:15:\"twentytwentyone\";s:3:\"1.6\";s:15:\"twentytwentytwo\";s:3:\"1.2\";}s:8:\"response\";a:5:{s:7:\"origami\";a:6:{s:5:\"theme\";s:7:\"origami\";s:11:\"new_version\";s:6:\"1.10.1\";s:3:\"url\";s:37:\"https://wordpress.org/themes/origami/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/theme/origami.1.10.1.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:6:\"5.6.20\";}s:8:\"tourable\";a:6:{s:5:\"theme\";s:8:\"tourable\";s:11:\"new_version\";s:5:\"1.2.4\";s:3:\"url\";s:38:\"https://wordpress.org/themes/tourable/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/theme/tourable.1.2.4.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:3:\"5.6\";}s:12:\"twentytwenty\";a:6:{s:5:\"theme\";s:12:\"twentytwenty\";s:11:\"new_version\";s:3:\"2.1\";s:3:\"url\";s:42:\"https://wordpress.org/themes/twentytwenty/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/twentytwenty.2.1.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:15:\"twentytwentyone\";a:6:{s:5:\"theme\";s:15:\"twentytwentyone\";s:11:\"new_version\";s:3:\"1.7\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentyone/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentyone.1.7.zip\";s:8:\"requires\";s:3:\"5.3\";s:12:\"requires_php\";s:3:\"5.6\";}s:15:\"twentytwentytwo\";a:6:{s:5:\"theme\";s:15:\"twentytwentytwo\";s:11:\"new_version\";s:3:\"1.3\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentytwo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentytwo.1.3.zip\";s:8:\"requires\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"5.6\";}}s:9:\"no_update\";a:0:{}s:12:\"translations\";a:0:{}}','no'),(15292,'cache_enabler','a:19:{s:7:\"version\";s:5:\"1.8.7\";s:20:\"use_trailing_slashes\";i:1;s:19:\"permalink_structure\";s:18:\"has_trailing_slash\";s:13:\"cache_expires\";i:0;s:17:\"cache_expiry_time\";i:0;s:30:\"clear_site_cache_on_saved_post\";i:0;s:33:\"clear_site_cache_on_saved_comment\";i:0;s:30:\"clear_site_cache_on_saved_term\";i:0;s:30:\"clear_site_cache_on_saved_user\";i:0;s:34:\"clear_site_cache_on_changed_plugin\";i:0;s:26:\"convert_image_urls_to_webp\";i:0;s:12:\"mobile_cache\";i:0;s:14:\"compress_cache\";i:0;s:11:\"minify_html\";i:0;s:20:\"minify_inline_css_js\";i:0;s:17:\"excluded_post_ids\";s:0:\"\";s:19:\"excluded_page_paths\";s:0:\"\";s:22:\"excluded_query_strings\";s:0:\"\";s:16:\"excluded_cookies\";s:0:\"\";}','yes'),(15294,'_site_transient_timeout_theme_roots','1676578994','no'),(15295,'_site_transient_theme_roots','a:5:{s:7:\"origami\";s:7:\"/themes\";s:8:\"tourable\";s:7:\"/themes\";s:12:\"twentytwenty\";s:7:\"/themes\";s:15:\"twentytwentyone\";s:7:\"/themes\";s:15:\"twentytwentytwo\";s:7:\"/themes\";}','no'),(15296,'wpil_2_license_status','','yes'),(15297,'wpil_2_license_key','','yes'),(15298,'wpil_2_license_data','','yes'),(15299,'wpil_2_ignore_numbers','1','yes'),(15300,'wpil_2_post_types','a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}','yes'),(15301,'wpil_2_links_open_new_tab','0','yes'),(15302,'wpil_2_debug_mode','0','yes'),(15303,'wpil_option_update_reporting_data_on_save','0','yes'),(15304,'wpil_2_ignore_words','-\r\n-\r\na\r\nabout\r\nabove\r\nactually\r\nadd\r\nafter\r\nagain\r\nagainst\r\nago\r\nall\r\nam\r\nan\r\nand\r\nanother\r\nanswer\r\nany\r\nare\r\naren\'t\r\nas\r\nat\r\nbase\r\nbe\r\nbecause\r\nbeen\r\nbefore\r\nbeing\r\nbelow\r\nbest\r\nbetter\r\nbetween\r\nboth\r\nbut\r\nby\r\ncan\r\ncan\'t\r\ncannot\r\ncons\r\ncould\r\ncouldn\'t\r\ndid\r\ndidn\'t\r\ndifference\r\ndifferent\r\ndo\r\ndoes\r\ndoesn\'t\r\ndoing\r\ndon\'t\r\ndone\r\ndown\r\nduring\r\neach\r\neasier\r\neasy\r\neight\r\neven\r\nfar\r\nfew\r\nfind\r\nfirst\r\nfive\r\nfor\r\nfour\r\nfree\r\nfrom\r\nfurther\r\ngeneral\r\nget\r\ngett\r\ngetting\r\ngo\r\ngood\r\ngot\r\ngreat\r\nhad\r\nhadn\'t\r\nhas\r\nhasn\'t\r\nhave\r\nhaven\'t\r\nhaver\r\nhaving\r\nhe\r\nhe\'d\r\nhe\'ll\r\nhe\'s\r\nhelp\r\nher\r\nhere\r\nhere\'s\r\nhers\r\nherself\r\nhigh\r\nhim\r\nhimself\r\nhis\r\nhow\r\nhow\'s\r\ni\r\ni\'d\r\ni\'ll\r\ni\'m\r\ni\'ve\r\nif\r\nin\r\ninto\r\nis\r\nisn\'t\r\nit\r\nit\'s\r\nits\r\nitself\r\njust\r\nless\r\nlet\'s\r\nlike\r\nlong\r\nlook\r\nlove\r\nmake\r\nmany\r\nmatt\r\nmatter\r\nmay\r\nme\r\nmore\r\nmost\r\nmuch\r\nmustn\'t\r\nmy\r\nmyself\r\nnever\r\nnew\r\nnine\r\nno\r\nnor\r\nnot\r\nnow\r\nof\r\noff\r\non\r\nonce\r\none\r\nonly\r\nor\r\nother\r\nought\r\nour\r\nours\r\nourselves\r\nout\r\nover\r\noverall\r\nown\r\nper\r\npros\r\nquestion\r\nreview\r\nright\r\nsame\r\nseven\r\nshan\'t\r\nshe\r\nshe\'d\r\nshe\'ll\r\nshe\'s\r\nshock\r\nshocking\r\nshould\r\nshouldn\'t\r\nshow\r\nsimple\r\nsix\r\nso\r\nsome\r\nstart\r\nstill\r\nsuch\r\ntake\r\nten\r\nthan\r\nthat\r\nthat\'s\r\nthe\r\ntheir\r\ntheirs\r\nthem\r\nthemselves\r\nthen\r\nthere\r\nthere\'s\r\nthese\r\nthey\r\nthey\'d\r\nthey\'ll\r\nthey\'re\r\nthey\'ve\r\nthis\r\nthose\r\nthree\r\nthrough\r\nto\r\ntoo\r\ntool\r\ntwo\r\nunder\r\nuntil\r\nup\r\nuse\r\nusing\r\nvery\r\nwant\r\nwas\r\nwasn\'t\r\nwe\r\nwe\'d\r\nwe\'ll\r\nwe\'re\r\nwe\'ve\r\nwere\r\nweren\'t\r\nwhat\r\nwhat\'s\r\nwhen\r\nwhen\'s\r\nwhere\r\nwhere\'s\r\nwhich\r\nwhile\r\nwho\r\nwho\'s\r\nwhom\r\nwhy\r\nwhy\'s\r\nwill\r\nwith\r\nwithin\r\nwithout\r\nwon\'t\r\nwould\r\nwouldn\'t\r\nyou\r\nyou\'d\r\nyou\'ll\r\nyou\'re\r\nyou\'ve\r\nyour\r\nyours\r\nyourself\r\nyourselves\r\nzero\'\r\n-','yes'),(15305,'wpil_has_run_initial_scan','1','yes'),(15306,'wpil_site_db_version','1.22','yes'),(15307,'wpil_link_table_is_created','1','yes'),(15308,'wpil_fresh_install','','yes'),(15309,'wpil_install_date','2023-02-16 19:53:14','yes'),(15312,'fs_active_plugins','O:8:\"stdClass\":3:{s:7:\"plugins\";a:1:{s:39:\"wp-sheet-editor-premium/vendor/freemius\";O:8:\"stdClass\":4:{s:7:\"version\";s:5:\"2.5.3\";s:4:\"type\";s:6:\"plugin\";s:9:\"timestamp\";i:1676577196;s:11:\"plugin_path\";s:43:\"wp-sheet-editor-premium/wp-sheet-editor.php\";}}s:7:\"abspath\";s:52:\"/opt/aphex/sites/mortalcitiesforgottenmonuments.com/\";s:6:\"newest\";O:8:\"stdClass\":5:{s:11:\"plugin_path\";s:43:\"wp-sheet-editor-premium/wp-sheet-editor.php\";s:8:\"sdk_path\";s:39:\"wp-sheet-editor-premium/vendor/freemius\";s:7:\"version\";s:5:\"2.5.3\";s:13:\"in_activation\";b:0;s:9:\"timestamp\";i:1676577196;}}','yes'),(15313,'fs_debug_mode','','yes'),(15314,'fs_accounts','a:4:{s:21:\"id_slug_type_path_map\";a:1:{i:1010;a:3:{s:4:\"slug\";s:59:\"wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\";s:4:\"type\";s:6:\"plugin\";s:4:\"path\";s:43:\"wp-sheet-editor-premium/wp-sheet-editor.php\";}}s:11:\"plugin_data\";a:1:{s:59:\"wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\";a:11:{s:16:\"plugin_main_file\";O:8:\"stdClass\":1:{s:4:\"path\";s:43:\"wp-sheet-editor-premium/wp-sheet-editor.php\";}s:20:\"is_network_activated\";b:0;s:17:\"install_timestamp\";i:1676577196;s:16:\"sdk_last_version\";N;s:11:\"sdk_version\";s:5:\"2.5.3\";s:16:\"sdk_upgrade_mode\";b:1;s:18:\"sdk_downgrade_mode\";b:0;s:19:\"plugin_last_version\";N;s:14:\"plugin_version\";s:13:\"2.25.2-beta.1\";s:19:\"plugin_upgrade_mode\";b:1;s:21:\"plugin_downgrade_mode\";b:0;}}s:13:\"file_slug_map\";a:1:{s:43:\"wp-sheet-editor-premium/wp-sheet-editor.php\";s:59:\"wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\";}s:7:\"plugins\";a:1:{s:59:\"wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\";O:9:\"FS_Plugin\":23:{s:16:\"parent_plugin_id\";N;s:5:\"title\";s:28:\"WP Sheet Editor - Post Types\";s:4:\"slug\";s:59:\"wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\";s:12:\"premium_slug\";s:23:\"wp-sheet-editor-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:43:\"wp-sheet-editor-premium/wp-sheet-editor.php\";s:7:\"version\";s:13:\"2.25.2-beta.1\";s:11:\"auto_update\";N;s:4:\"info\";N;s:10:\"is_premium\";b:1;s:14:\"premium_suffix\";s:9:\"(Premium)\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:10:\"public_key\";s:32:\"pk_ec1c7da603c0772f1bfe276efb715\";s:10:\"secret_key\";N;s:2:\"id\";s:4:\"1010\";s:7:\"updated\";N;s:7:\"created\";N;s:22:\"\0FS_Entity\0_is_updated\";b:1;}}}','yes');
/*!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) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`meta_id`),
  KEY `post_id` (`post_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=294 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_postmeta`
--

LOCK TABLES `wp_postmeta` WRITE;
/*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */;
INSERT INTO `wp_postmeta` VALUES (6,8,'_edit_last','1'),(7,8,'_wp_page_template','default'),(8,8,'_seopress_titles_title',''),(9,8,'_seopress_titles_desc',''),(10,8,'_seopress_robots_canonical',''),(11,8,'_seopress_social_fb_title',''),(12,8,'_seopress_social_fb_desc',''),(13,8,'_seopress_social_fb_img',''),(14,8,'_seopress_social_twitter_title',''),(15,8,'_seopress_social_twitter_desc',''),(16,8,'_seopress_social_twitter_img',''),(17,8,'_seopress_redirections_type','301'),(18,8,'_seopress_redirections_value',''),(20,8,'content_columns','1'),(21,8,'_edit_lock','1598705097:1'),(22,8,'_seopress_analysis_target_kw',''),(24,10,'_edit_last','1'),(25,10,'_edit_lock','1598705300:1'),(26,8,'_seopress_analysis_data','a:1:{s:5:\"title\";s:54:\"To get your Google snippet preview, publish your post!\";}'),(27,10,'_seopress_analysis_data','a:2:{s:5:\"title\";s:54:\"To get your Google snippet preview, publish your post!\";s:5:\"score\";b:0;}'),(28,10,'_wp_page_template','default'),(29,10,'_seopress_titles_title',''),(30,10,'_seopress_titles_desc',''),(31,10,'_seopress_robots_canonical',''),(32,10,'_seopress_social_fb_title',''),(33,10,'_seopress_social_fb_desc',''),(34,10,'_seopress_social_fb_img',''),(35,10,'_seopress_social_twitter_title',''),(36,10,'_seopress_social_twitter_desc',''),(37,10,'_seopress_social_twitter_img',''),(38,10,'_seopress_redirections_type','301'),(39,10,'_seopress_redirections_value',''),(40,10,'content_columns','1'),(41,10,'_seopress_analysis_target_kw',''),(43,13,'_seopress_analysis_data','a:1:{s:5:\"title\";s:54:\"To get your Google snippet preview, publish your post!\";}'),(44,13,'_edit_last','1'),(45,13,'_edit_lock','1600611605:1'),(46,15,'_wp_attached_file','2020/08/maxresdefault-1.jpg'),(47,15,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:720;s:4:\"file\";s:27:\"2020/08/maxresdefault-1.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"maxresdefault-1-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"maxresdefault-1-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"maxresdefault-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"maxresdefault-1-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:27:\"maxresdefault-1-904x400.jpg\";s:5:\"width\";i:904;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"post-thumbnail-mobile\";a:4:{s:4:\"file\";s:27:\"maxresdefault-1-480x420.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:420;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"post-thumbnail-full\";a:4:{s:4:\"file\";s:27:\"maxresdefault-1-904x509.jpg\";s:5:\"width\";i:904;s:6:\"height\";i:509;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"origami-slider\";a:4:{s:4:\"file\";s:27:\"maxresdefault-1-904x500.jpg\";s:5:\"width\";i:904;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(48,13,'_thumbnail_id','15'),(50,13,'_seopress_titles_title',''),(51,13,'_seopress_titles_desc',''),(52,13,'_seopress_robots_canonical',''),(53,13,'_seopress_social_fb_title',''),(54,13,'_seopress_social_fb_desc',''),(55,13,'_seopress_social_fb_img',''),(56,13,'_seopress_social_twitter_title',''),(57,13,'_seopress_social_twitter_desc',''),(58,13,'_seopress_social_twitter_img',''),(59,13,'_seopress_redirections_type','301'),(60,13,'_seopress_redirections_value',''),(61,13,'content_columns','1'),(63,17,'_menu_item_type','custom'),(64,17,'_menu_item_menu_item_parent','0'),(65,17,'_menu_item_object_id','17'),(66,17,'_menu_item_object','custom'),(67,17,'_menu_item_target',''),(68,17,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(69,17,'_menu_item_xfn',''),(70,17,'_menu_item_url','http://mortalcitiesforgottenmonuments.com/'),(72,18,'_menu_item_type','post_type'),(73,18,'_menu_item_menu_item_parent','0'),(74,18,'_menu_item_object_id','6'),(75,18,'_menu_item_object','page'),(76,18,'_menu_item_target',''),(77,18,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(78,18,'_menu_item_xfn',''),(79,18,'_menu_item_url',''),(81,19,'_menu_item_type','post_type'),(82,19,'_menu_item_menu_item_parent','0'),(83,19,'_menu_item_object_id','10'),(84,19,'_menu_item_object','page'),(85,19,'_menu_item_target',''),(86,19,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(87,19,'_menu_item_xfn',''),(88,19,'_menu_item_url',''),(90,20,'_menu_item_type','post_type'),(91,20,'_menu_item_menu_item_parent','0'),(92,20,'_menu_item_object_id','7'),(93,20,'_menu_item_object','page'),(94,20,'_menu_item_target',''),(95,20,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(96,20,'_menu_item_xfn',''),(97,20,'_menu_item_url',''),(99,21,'_menu_item_type','post_type'),(100,21,'_menu_item_menu_item_parent','0'),(101,21,'_menu_item_object_id','8'),(102,21,'_menu_item_object','page'),(103,21,'_menu_item_target',''),(104,21,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(105,21,'_menu_item_xfn',''),(106,21,'_menu_item_url',''),(108,22,'_menu_item_type','taxonomy'),(109,22,'_menu_item_menu_item_parent','0'),(110,22,'_menu_item_object_id','3'),(111,22,'_menu_item_object','category'),(112,22,'_menu_item_target',''),(113,22,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(114,22,'_menu_item_xfn',''),(115,22,'_menu_item_url',''),(117,23,'_wp_attached_file','2020/08/truckinglifestyleicon-opt.png'),(118,23,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:270;s:6:\"height\";i:270;s:4:\"file\";s:37:\"2020/08/truckinglifestyleicon-opt.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"truckinglifestyleicon-opt-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(120,25,'_wp_attached_file','2020/08/lifestyle-brand-web.jpg'),(121,25,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1800;s:6:\"height\";i:900;s:4:\"file\";s:31:\"2020/08/lifestyle-brand-web.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"lifestyle-brand-web-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"lifestyle-brand-web-1024x512.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"lifestyle-brand-web-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"lifestyle-brand-web-768x384.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:32:\"lifestyle-brand-web-1536x768.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:31:\"lifestyle-brand-web-450x450.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(122,26,'_wp_attached_file','2020/08/cropped-lifestyle-brand-web.jpg'),(123,26,'_wp_attachment_context','custom-header'),(124,26,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:528;s:4:\"file\";s:39:\"2020/08/cropped-lifestyle-brand-web.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"cropped-lifestyle-brand-web-300x132.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:132;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:40:\"cropped-lifestyle-brand-web-1024x451.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:451;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"cropped-lifestyle-brand-web-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:39:\"cropped-lifestyle-brand-web-768x338.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:39:\"cropped-lifestyle-brand-web-450x450.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:17:\"attachment_parent\";i:25;}'),(125,26,'_wp_attachment_custom_header_last_used_tourable','1598706495'),(126,26,'_wp_attachment_is_custom_header','tourable'),(139,33,'_wp_attached_file','2020/08/Roxanne-Belisle-1.jpg'),(140,33,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:465;s:6:\"height\";i:295;s:4:\"file\";s:29:\"2020/08/Roxanne-Belisle-1.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"Roxanne-Belisle-1-300x190.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:190;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Roxanne-Belisle-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:29:\"Roxanne-Belisle-1-450x295.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(141,34,'_wp_attached_file','2020/08/d94ff7aeb6eeb9bd762164bb23284473.jpg'),(142,34,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:250;s:4:\"file\";s:44:\"2020/08/d94ff7aeb6eeb9bd762164bb23284473.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"d94ff7aeb6eeb9bd762164bb23284473-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(144,13,'_seopress_robots_primary_cat','none'),(145,13,'tourable-selected-sidebar','sidebar-1'),(146,13,'_seopress_analysis_target_kw',''),(147,36,'_wp_attached_file','2020/09/cover-e1600843407102.png'),(148,36,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:150;s:6:\"height\";i:33;s:4:\"file\";s:32:\"2020/09/cover-e1600843407102.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"cover-e1600674272848-300x66.png\";s:5:\"width\";i:300;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"cover-e1600674121688-1024x259.png\";s:5:\"width\";i:1024;s:6:\"height\";i:259;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"cover-e1600674272848-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"cover-e1600674272848-768x169.png\";s:5:\"width\";i:768;s:6:\"height\";i:169;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:33:\"cover-e1600674121688-1536x388.png\";s:5:\"width\";i:1536;s:6:\"height\";i:388;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:33:\"cover-e1600674121688-2048x517.png\";s:5:\"width\";i:2048;s:6:\"height\";i:517;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:32:\"cover-e1600674272848-450x220.png\";s:5:\"width\";i:450;s:6:\"height\";i:220;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(149,37,'_wp_attached_file','2020/09/cropped-cover.png'),(150,37,'_wp_attachment_context','custom-logo'),(151,37,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2466;s:6:\"height\";i:550;s:4:\"file\";s:25:\"2020/09/cropped-cover.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"cropped-cover-300x67.png\";s:5:\"width\";i:300;s:6:\"height\";i:67;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"cropped-cover-1024x228.png\";s:5:\"width\";i:1024;s:6:\"height\";i:228;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"cropped-cover-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"cropped-cover-768x171.png\";s:5:\"width\";i:768;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:26:\"cropped-cover-1536x343.png\";s:5:\"width\";i:1536;s:6:\"height\";i:343;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:26:\"cropped-cover-2048x457.png\";s:5:\"width\";i:2048;s:6:\"height\";i:457;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"cropped-cover-450x450.png\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(152,36,'_edit_lock','1600843301:1'),(154,36,'_wp_attachment_backup_sizes','a:22:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:3500;s:6:\"height\";i:1440;s:4:\"file\";s:9:\"cover.png\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:17:\"cover-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:17:\"cover-300x123.png\";s:5:\"width\";i:300;s:6:\"height\";i:123;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"medium_large-orig\";a:4:{s:4:\"file\";s:17:\"cover-768x316.png\";s:5:\"width\";i:768;s:6:\"height\";i:316;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"large-orig\";a:4:{s:4:\"file\";s:18:\"cover-1024x421.png\";s:5:\"width\";i:1024;s:6:\"height\";i:421;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"1536x1536-orig\";a:4:{s:4:\"file\";s:18:\"cover-1536x632.png\";s:5:\"width\";i:1536;s:6:\"height\";i:632;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"2048x2048-orig\";a:4:{s:4:\"file\";s:18:\"cover-2048x843.png\";s:5:\"width\";i:2048;s:6:\"height\";i:843;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"post-thumbnail-orig\";a:4:{s:4:\"file\";s:17:\"cover-450x450.png\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"full-1600674142791\";a:3:{s:5:\"width\";i:2423;s:6:\"height\";i:612;s:4:\"file\";s:24:\"cover-e1600674121688.png\";}s:18:\"full-1600674192692\";a:3:{s:5:\"width\";i:2000;s:6:\"height\";i:505;s:4:\"file\";s:24:\"cover-e1600674142791.png\";}s:18:\"full-1600674256632\";a:3:{s:5:\"width\";i:1500;s:6:\"height\";i:379;s:4:\"file\";s:24:\"cover-e1600674192692.png\";}s:18:\"full-1600674272848\";a:3:{s:5:\"width\";i:1000;s:6:\"height\";i:253;s:4:\"file\";s:24:\"cover-e1600674256632.png\";}s:23:\"thumbnail-1600674272848\";a:4:{s:4:\"file\";s:32:\"cover-e1600674121688-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"medium-1600674272848\";a:4:{s:4:\"file\";s:31:\"cover-e1600674121688-300x76.png\";s:5:\"width\";i:300;s:6:\"height\";i:76;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"medium_large-1600674272848\";a:4:{s:4:\"file\";s:32:\"cover-e1600674121688-768x194.png\";s:5:\"width\";i:768;s:6:\"height\";i:194;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"large-1600674272848\";a:4:{s:4:\"file\";s:33:\"cover-e1600674121688-1024x259.png\";s:5:\"width\";i:1024;s:6:\"height\";i:259;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"1536x1536-1600674272848\";a:4:{s:4:\"file\";s:33:\"cover-e1600674121688-1536x388.png\";s:5:\"width\";i:1536;s:6:\"height\";i:388;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"2048x2048-1600674272848\";a:4:{s:4:\"file\";s:33:\"cover-e1600674121688-2048x517.png\";s:5:\"width\";i:2048;s:6:\"height\";i:517;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"post-thumbnail-1600674272848\";a:4:{s:4:\"file\";s:32:\"cover-e1600674121688-450x450.png\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"full-1600674321653\";a:3:{s:5:\"width\";i:1000;s:6:\"height\";i:220;s:4:\"file\";s:24:\"cover-e1600674272848.png\";}s:18:\"full-1600674397807\";a:3:{s:5:\"width\";i:500;s:6:\"height\";i:110;s:4:\"file\";s:24:\"cover-e1600674321653.png\";}s:18:\"full-1600843407102\";a:3:{s:5:\"width\";i:300;s:6:\"height\";i:66;s:4:\"file\";s:24:\"cover-e1600674397807.png\";}}'),(155,36,'_edit_last','1'),(161,40,'_wp_attached_file','2020/09/cropped-cover-e1600674321653.png'),(162,40,'_wp_attachment_context','custom-logo'),(163,40,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:110;s:4:\"file\";s:40:\"2020/09/cropped-cover-e1600674321653.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"cropped-cover-e1600674321653-300x66.png\";s:5:\"width\";i:300;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"cropped-cover-e1600674321653-150x110.png\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:40:\"cropped-cover-e1600674321653-450x110.png\";s:5:\"width\";i:450;s:6:\"height\";i:110;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(166,42,'_wp_attached_file','2020/09/cropped-cover-e1600674397807.png'),(167,42,'_wp_attachment_context','custom-logo'),(168,42,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:66;s:4:\"file\";s:40:\"2020/09/cropped-cover-e1600674397807.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"cropped-cover-e1600674397807-150x66.png\";s:5:\"width\";i:150;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(173,42,'_oembed_011271f49daabf56bf2592b2258edeb9','{{unknown}}'),(174,40,'_oembed_05581397dc76a63adcd50a076ff1545d','{{unknown}}'),(175,37,'_oembed_0c45fe6f18e52c1a658db3d87351883d','{{unknown}}'),(179,47,'_seopress_analysis_data','a:1:{s:5:\"title\";s:54:\"To get your Google snippet preview, publish your post!\";}'),(180,47,'_edit_last','1'),(181,47,'_edit_lock','1623861196:1'),(182,47,'_seopress_titles_title',''),(183,47,'_seopress_titles_desc',''),(184,47,'_seopress_robots_canonical',''),(185,47,'_seopress_robots_primary_cat','none'),(186,47,'_seopress_social_fb_title',''),(187,47,'_seopress_social_fb_desc',''),(188,47,'_seopress_social_fb_img',''),(189,47,'_seopress_social_twitter_title',''),(190,47,'_seopress_social_twitter_desc',''),(191,47,'_seopress_social_twitter_img',''),(192,47,'_seopress_redirections_type','301'),(193,47,'_seopress_redirections_value',''),(194,47,'tourable-selected-sidebar','sidebar-1'),(196,51,'_wp_attached_file','2021/06/iaojsfajs.jpg'),(197,51,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:900;s:6:\"height\";i:607;s:4:\"file\";s:21:\"2021/06/iaojsfajs.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"iaojsfajs-300x202.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"iaojsfajs-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"iaojsfajs-768x518.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:518;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"iaojsfajs-450x450.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(198,47,'_oembed_d4db3fbb035bb9cb0657ed73849241be','<iframe title=\"Top 5 Reasons You Need a VPN!\" width=\"525\" height=\"295\" src=\"https://www.youtube.com/embed/txajL_CwXwg?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(199,47,'_oembed_time_d4db3fbb035bb9cb0657ed73849241be','1623861327'),(200,47,'_thumbnail_id','51'),(201,47,'_seopress_analysis_target_kw',''),(203,47,'_oembed_a8d0ef8f5b701e0291f2800991339e7c','<iframe title=\"Top 5 Reasons You Need a VPN!\" width=\"819\" height=\"461\" src=\"https://www.youtube.com/embed/txajL_CwXwg?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(204,47,'_oembed_time_a8d0ef8f5b701e0291f2800991339e7c','1624712639'),(206,54,'_seopress_analysis_data','a:1:{s:5:\"title\";s:54:\"To get your Google snippet preview, publish your post!\";}'),(207,54,'_edit_last','1'),(208,54,'_edit_lock','1633008094:1'),(209,56,'_wp_attached_file','2021/09/pexels-olya-kobruseva-8358041-scaled.jpg'),(210,56,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:48:\"2021/09/pexels-olya-kobruseva-8358041-scaled.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"pexels-olya-kobruseva-8358041-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"pexels-olya-kobruseva-8358041-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"pexels-olya-kobruseva-8358041-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:41:\"pexels-olya-kobruseva-8358041-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:43:\"pexels-olya-kobruseva-8358041-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:43:\"pexels-olya-kobruseva-8358041-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:41:\"pexels-olya-kobruseva-8358041-450x450.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:33:\"pexels-olya-kobruseva-8358041.jpg\";}'),(211,54,'_oembed_325c2061ab3f3b6d7df9cda287c2e5cd','<iframe title=\"TOP 7 ALTCOINS KLAAR OM TE EXPLODEREN (moeten nog x10)\" width=\"525\" height=\"295\" src=\"https://www.youtube.com/embed/xcGsJDf5KO0?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(212,54,'_oembed_time_325c2061ab3f3b6d7df9cda287c2e5cd','1633008230'),(213,54,'_thumbnail_id','56'),(214,54,'_seopress_titles_title',''),(215,54,'_seopress_titles_desc',''),(216,54,'_seopress_robots_canonical',''),(217,54,'_seopress_robots_primary_cat','none'),(218,54,'_seopress_social_fb_title',''),(219,54,'_seopress_social_fb_desc',''),(220,54,'_seopress_social_fb_img',''),(221,54,'_seopress_social_twitter_title',''),(222,54,'_seopress_social_twitter_desc',''),(223,54,'_seopress_social_twitter_img',''),(224,54,'_seopress_redirections_type','301'),(225,54,'_seopress_redirections_value',''),(226,54,'tourable-selected-sidebar','sidebar-1'),(228,54,'_oembed_9f7f11b0fb4becbe27b6903d9cd8d7c1','<iframe title=\"TOP 7 ALTCOINS KLAAR OM TE EXPLODEREN (moeten nog x10)\" width=\"819\" height=\"461\" src=\"https://www.youtube.com/embed/xcGsJDf5KO0?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(229,54,'_oembed_time_9f7f11b0fb4becbe27b6903d9cd8d7c1','1632228106'),(231,58,'_seopress_analysis_data','a:2:{s:5:\"title\";s:54:\"To get your Google snippet preview, publish your post!\";s:5:\"score\";b:0;}'),(232,58,'_oembed_6ff9eba418ef75ee77f06b4757cc856b','<iframe title=\"5 COINS TO 1 MILLION?!! (TOP COINS FOR BULL RUN 2021!)\" width=\"525\" height=\"295\" src=\"https://www.youtube.com/embed/MZuDJ4lOQyI?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(233,58,'_oembed_time_6ff9eba418ef75ee77f06b4757cc856b','1632836406'),(234,58,'_edit_last','1'),(235,58,'_edit_lock','1633959878:1'),(236,60,'_wp_attached_file','2021/09/thought-catalog-bj8U389A9N8-unsplash-1-scaled.jpg'),(237,60,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:57:\"2021/09/thought-catalog-bj8U389A9N8-unsplash-1-scaled.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:50:\"thought-catalog-bj8U389A9N8-unsplash-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:51:\"thought-catalog-bj8U389A9N8-unsplash-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"thought-catalog-bj8U389A9N8-unsplash-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:50:\"thought-catalog-bj8U389A9N8-unsplash-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:52:\"thought-catalog-bj8U389A9N8-unsplash-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:52:\"thought-catalog-bj8U389A9N8-unsplash-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:50:\"thought-catalog-bj8U389A9N8-unsplash-1-450x450.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:42:\"thought-catalog-bj8U389A9N8-unsplash-1.jpg\";}'),(238,58,'_thumbnail_id','60'),(239,58,'_seopress_titles_title',''),(240,58,'_seopress_titles_desc',''),(241,58,'_seopress_robots_canonical',''),(242,58,'_seopress_robots_primary_cat','none'),(243,58,'_seopress_social_fb_title',''),(244,58,'_seopress_social_fb_desc',''),(245,58,'_seopress_social_fb_img',''),(246,58,'_seopress_social_twitter_title',''),(247,58,'_seopress_social_twitter_desc',''),(248,58,'_seopress_social_twitter_img',''),(249,58,'_seopress_redirections_type','301'),(250,58,'_seopress_redirections_value',''),(251,58,'tourable-selected-sidebar','sidebar-1'),(253,58,'_oembed_6a1d89e7bf592adc7f335f8522588fbe','<iframe title=\"5 COINS TO 1 MILLION?!! (TOP COINS FOR BULL RUN 2021!)\" width=\"819\" height=\"461\" src=\"https://www.youtube.com/embed/MZuDJ4lOQyI?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(254,58,'_oembed_time_6a1d89e7bf592adc7f335f8522588fbe','1632836515'),(259,54,'_seopress_analysis_target_kw',''),(260,58,'_seopress_analysis_target_kw',''),(262,63,'_oembed_27c8e970619278366e32fb256df45096','<iframe title=\"Why cryptocurrency is crashing (Bitcoin down 12%!)\" width=\"525\" height=\"295\" src=\"https://www.youtube.com/embed/ZiS1_GuecKY?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(263,63,'_oembed_time_27c8e970619278366e32fb256df45096','1638952622'),(264,63,'_seopress_analysis_data','a:2:{s:5:\"title\";s:54:\"To get your Google snippet preview, publish your post!\";s:5:\"score\";b:0;}'),(265,65,'_wp_attached_file','2021/12/pexels-olya-kobruseva-8358032.jpg'),(266,65,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:41:\"2021/12/pexels-olya-kobruseva-8358032.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"pexels-olya-kobruseva-8358032-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"pexels-olya-kobruseva-8358032-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:41:\"pexels-olya-kobruseva-8358032-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:41:\"pexels-olya-kobruseva-8358032-450x450.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(267,63,'_edit_last','1'),(268,63,'_thumbnail_id','65'),(270,63,'_seopress_titles_title',''),(271,63,'_seopress_titles_desc',''),(272,63,'_seopress_robots_canonical',''),(273,63,'_seopress_robots_primary_cat','none'),(274,63,'_seopress_social_fb_title',''),(275,63,'_seopress_social_fb_desc',''),(276,63,'_seopress_social_fb_img',''),(277,63,'_seopress_social_fb_img_attachment_id',''),(278,63,'_seopress_social_fb_img_width',''),(279,63,'_seopress_social_fb_img_height',''),(280,63,'_seopress_social_twitter_title',''),(281,63,'_seopress_social_twitter_desc',''),(282,63,'_seopress_social_twitter_img',''),(283,63,'_seopress_social_twitter_img_attachment_id',''),(284,63,'_seopress_social_twitter_img_width',''),(285,63,'_seopress_social_twitter_img_height',''),(286,63,'_seopress_redirections_type','301'),(287,63,'_seopress_redirections_value',''),(288,63,'_wp_old_date','2021-12-08'),(289,63,'tourable-selected-sidebar','sidebar-1'),(290,63,'_edit_lock','1638952659:1'),(291,63,'_seopress_analysis_target_kw',''),(292,63,'_oembed_8bf9d3763ba1c37f5cccfbe6839c2a54','<iframe title=\"Why cryptocurrency is crashing (Bitcoin down 12%!)\" width=\"819\" height=\"461\" src=\"https://www.youtube.com/embed/ZiS1_GuecKY?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(293,63,'_oembed_time_8bf9d3763ba1c37f5cccfbe6839c2a54','1638957637');
/*!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 CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_title` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_excerpt` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_status` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish',
  `comment_status` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
  `ping_status` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
  `post_password` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `post_name` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `to_ping` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `pinged` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_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 CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_parent` bigint unsigned NOT NULL DEFAULT '0',
  `guid` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `menu_order` int NOT NULL DEFAULT '0',
  `post_type` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post',
  `post_mime_type` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_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=67 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_posts`
--

LOCK TABLES `wp_posts` WRITE;
/*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */;
INSERT INTO `wp_posts` VALUES (6,1,'2020-08-29 12:46:52','2020-08-29 12:46:52','','Privacy Policy','','publish','closed','closed','','privacy-policy','','','2020-08-29 12:46:52','2020-08-29 12:46:52','',0,'http://mortalcitiesforgottenmonuments.com/privacy-policy/',0,'page','',0),(7,1,'2020-08-29 12:46:59','2020-08-29 12:46:59','','Terms and Conditions','','publish','closed','closed','','terms-and-conditions','','','2020-08-29 12:46:59','2020-08-29 12:46:59','',0,'http://mortalcitiesforgottenmonuments.com/terms-and-conditions/',0,'page','',0),(8,1,'2020-08-29 12:47:16','2020-08-29 12:47:16','','Welcome','','publish','closed','closed','','welcome','','','2020-08-29 12:47:16','2020-08-29 12:47:16','',0,'http://mortalcitiesforgottenmonuments.com/?page_id=8',0,'page','',0),(9,1,'2020-08-29 12:47:16','2020-08-29 12:47:16','','Welcome','','inherit','closed','closed','','8-revision-v1','','','2020-08-29 12:47:16','2020-08-29 12:47:16','',8,'http://mortalcitiesforgottenmonuments.com/8-revision-v1/',0,'revision','',0),(10,1,'2020-08-29 12:48:04','2020-08-29 12:48:04','[contact_bank form_id=\"6\"][/contact_bank]','Reach Us','','publish','closed','closed','','reach-us','','','2020-08-29 12:48:04','2020-08-29 12:48:04','',0,'http://mortalcitiesforgottenmonuments.com/?page_id=10',0,'page','',0),(12,1,'2020-08-29 12:48:04','2020-08-29 12:48:04','[contact_bank form_id=\"6\"][/contact_bank]','Reach Us','','inherit','closed','closed','','10-revision-v1','','','2020-08-29 12:48:04','2020-08-29 12:48:04','',10,'http://mortalcitiesforgottenmonuments.com/10-revision-v1/',0,'revision','',0),(13,1,'2020-08-29 12:52:14','2020-08-29 12:52:14','Miami, the city of luxury, supercars, yachts, incredible properties, and the Billionaire lifestyle. If you want to <a href=\"https://www.funx.nl/news/funx/17189-help-hulpverleners-film-de-daders?q=&amp;start=0&amp;end=\">stay</a> motivated during these hard <a href=\"https://www.perssupport.nl/persbericht/88591/hulpverleners-vrezen-financieel-nadeel\">times</a>, experience this Billionaire luxury lifestyle of Miami, Florida.\r\n<div style=\"text-align: center;\"><iframe src=\"https://www.youtube.com/embed/8lNHOhJn5kw\" width=\"720\" height=\"405\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\"></span></iframe></div>','Billionaire Lifestyle In Miami - Luxury Lifestyle Motivation','','publish','closed','closed','','billionaire-lifestyle-in-miami-luxury-lifestyle-motivation','','','2020-09-20 14:22:22','2020-09-20 14:22:22','',0,'http://mortalcitiesforgottenmonuments.com/?p=13',0,'post','',0),(15,1,'2020-08-29 12:52:05','2020-08-29 12:52:05','','maxresdefault (1)','','inherit','closed','closed','','maxresdefault-1','','','2020-08-29 12:52:05','2020-08-29 12:52:05','',13,'http://mortalcitiesforgottenmonuments.com/wp-content/uploads/2020/08/maxresdefault-1.jpg',0,'attachment','image/jpeg',0),(16,1,'2020-08-29 12:52:14','2020-08-29 12:52:14','Miami, the city of luxury, supercars, yachts, incredible properties, and the Billionaire lifestyle. If you want to stay motivated during these hard times, experience this Billionaire luxury lifestyle of Miami, Florida.\r\n<div style=\"text-align: center;\"><iframe src=\"https://www.youtube.com/embed/8lNHOhJn5kw\" width=\"720\" height=\"405\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\"></span></iframe></div>','Billionaire Lifestyle In Miami - Luxury Lifestyle Motivation','','inherit','closed','closed','','13-revision-v1','','','2020-08-29 12:52:14','2020-08-29 12:52:14','',13,'http://mortalcitiesforgottenmonuments.com/13-revision-v1/',0,'revision','',0),(17,1,'2020-08-29 12:52:48','2020-08-29 12:52:48','','Home','','publish','closed','closed','','home','','','2020-08-29 12:52:56','2020-08-29 12:52:56','',0,'http://mortalcitiesforgottenmonuments.com/?p=17',1,'nav_menu_item','',0),(18,1,'2020-08-29 12:52:48','2020-08-29 12:52:48',' ','','','publish','closed','closed','','18','','','2020-08-29 12:52:56','2020-08-29 12:52:56','',0,'http://mortalcitiesforgottenmonuments.com/?p=18',4,'nav_menu_item','',0),(19,1,'2020-08-29 12:52:48','2020-08-29 12:52:48',' ','','','publish','closed','closed','','19','','','2020-08-29 12:52:56','2020-08-29 12:52:56','',0,'http://mortalcitiesforgottenmonuments.com/?p=19',6,'nav_menu_item','',0),(20,1,'2020-08-29 12:52:48','2020-08-29 12:52:48',' ','','','publish','closed','closed','','20','','','2020-08-29 12:52:56','2020-08-29 12:52:56','',0,'http://mortalcitiesforgottenmonuments.com/?p=20',5,'nav_menu_item','',0),(21,1,'2020-08-29 12:52:48','2020-08-29 12:52:48',' ','','','publish','closed','closed','','21','','','2020-08-29 12:52:56','2020-08-29 12:52:56','',0,'http://mortalcitiesforgottenmonuments.com/?p=21',2,'nav_menu_item','',0),(22,1,'2020-08-29 12:52:48','2020-08-29 12:52:48',' ','','','publish','closed','closed','','22','','','2020-08-29 12:52:56','2020-08-29 12:52:56','',0,'http://mortalcitiesforgottenmonuments.com/?p=22',3,'nav_menu_item','',0),(23,1,'2020-08-29 13:06:49','2020-08-29 13:06:49','','truckinglifestyleicon-opt','','inherit','closed','closed','','truckinglifestyleicon-opt','','','2020-08-29 13:06:49','2020-08-29 13:06:49','',0,'http://mortalcitiesforgottenmonuments.com/wp-content/uploads/2020/08/truckinglifestyleicon-opt.png',0,'attachment','image/png',0),(25,1,'2020-08-29 13:07:54','2020-08-29 13:07:54','','lifestyle-brand-web','','inherit','closed','closed','','lifestyle-brand-web','','','2020-08-29 13:07:54','2020-08-29 13:07:54','',0,'http://mortalcitiesforgottenmonuments.com/wp-content/uploads/2020/08/lifestyle-brand-web.jpg',0,'attachment','image/jpeg',0),(26,1,'2020-08-29 13:08:07','2020-08-29 13:08:07','','cropped-lifestyle-brand-web.jpg','','inherit','closed','closed','','cropped-lifestyle-brand-web-jpg','','','2020-08-29 13:08:07','2020-08-29 13:08:07','',0,'http://mortalcitiesforgottenmonuments.com/wp-content/uploads/2020/08/cropped-lifestyle-brand-web.jpg',0,'attachment','image/jpeg',0),(30,1,'2020-08-29 13:12:25','2020-08-29 13:12:25','#page-site-header .page-title {\n	font-size: 50px;\n}','tourable','','publish','closed','closed','','tourable','','','2020-08-29 13:12:25','2020-08-29 13:12:25','',0,'http://mortalcitiesforgottenmonuments.com/tourable/',0,'custom_css','',0),(31,1,'2020-08-29 13:12:25','2020-08-29 13:12:25','#page-site-header .page-title {\n	font-size: 50px;\n}','tourable','','inherit','closed','closed','','30-revision-v1','','','2020-08-29 13:12:25','2020-08-29 13:12:25','',30,'http://mortalcitiesforgottenmonuments.com/30-revision-v1/',0,'revision','',0),(33,1,'2020-08-29 13:23:17','2020-08-29 13:23:17','','Roxanne Belisle','','inherit','closed','closed','','roxanne-belisle-2','','','2020-08-29 13:23:17','2020-08-29 13:23:17','',0,'http://mortalcitiesforgottenmonuments.com/wp-content/uploads/2020/08/Roxanne-Belisle-1.jpg',0,'attachment','image/jpeg',0),(34,1,'2020-08-29 13:24:45','2020-08-29 13:24:45','','d94ff7aeb6eeb9bd762164bb23284473','','inherit','closed','closed','','d94ff7aeb6eeb9bd762164bb23284473','','','2020-08-29 13:24:45','2020-08-29 13:24:45','',0,'http://mortalcitiesforgottenmonuments.com/wp-content/uploads/2020/08/d94ff7aeb6eeb9bd762164bb23284473.jpg',0,'attachment','image/jpeg',0),(35,1,'2020-09-20 14:22:22','2020-09-20 14:22:22','Miami, the city of luxury, supercars, yachts, incredible properties, and the Billionaire lifestyle. If you want to <a href=\"https://www.funx.nl/news/funx/17189-help-hulpverleners-film-de-daders?q=&amp;start=0&amp;end=\">stay</a> motivated during these hard <a href=\"https://www.perssupport.nl/persbericht/88591/hulpverleners-vrezen-financieel-nadeel\">times</a>, experience this Billionaire luxury lifestyle of Miami, Florida.\r\n<div style=\"text-align: center;\"><iframe src=\"https://www.youtube.com/embed/8lNHOhJn5kw\" width=\"720\" height=\"405\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\"></span></iframe></div>','Billionaire Lifestyle In Miami - Luxury Lifestyle Motivation','','inherit','closed','closed','','13-revision-v1','','','2020-09-20 14:22:22','2020-09-20 14:22:22','',13,'http://mortalcitiesforgottenmonuments.com/13-revision-v1/',0,'revision','',0),(36,1,'2020-09-21 07:40:47','2020-09-21 07:40:47','','cover','','inherit','closed','closed','','cover','','','2020-09-23 06:43:35','2020-09-23 06:43:35','',0,'http://mortalcitiesforgottenmonuments.com/wp-content/uploads/2020/09/cover.png',0,'attachment','image/png',0),(37,1,'2020-09-21 07:41:09','2020-09-21 07:41:09','http://mortalcitiesforgottenmonuments.com/wp-content/uploads/2020/09/cropped-cover.png','cropped-cover.png','','inherit','closed','closed','','cropped-cover-png','','','2020-09-21 07:41:09','2020-09-21 07:41:09','',0,'http://mortalcitiesforgottenmonuments.com/wp-content/uploads/2020/09/cropped-cover.png',0,'attachment','image/png',0),(40,1,'2020-09-21 07:46:20','2020-09-21 07:46:20','http://mortalcitiesforgottenmonuments.com/wp-content/uploads/2020/09/cropped-cover-e1600674321653.png','cropped-cover-e1600674321653.png','','inherit','closed','closed','','cropped-cover-e1600674321653-png','','','2020-09-21 07:46:20','2020-09-21 07:46:20','',0,'http://mortalcitiesforgottenmonuments.com/wp-content/uploads/2020/09/cropped-cover-e1600674321653.png',0,'attachment','image/png',0),(42,1,'2020-09-21 07:47:47','2020-09-21 07:47:47','http://mortalcitiesforgottenmonuments.com/wp-content/uploads/2020/09/cropped-cover-e1600674397807.png','cropped-cover-e1600674397807.png','','inherit','closed','closed','','cropped-cover-e1600674397807-png','','','2020-09-21 07:47:47','2020-09-21 07:47:47','',0,'http://mortalcitiesforgottenmonuments.com/wp-content/uploads/2020/09/cropped-cover-e1600674397807.png',0,'attachment','image/png',0),(47,1,'2021-06-26 11:42:43','2021-06-26 11:42:43','PIA announced last week that it would immediately stop offering Hong Kong locations for its VPN server network. The VPN provider says it did this in response to the new Chinese national security law, which Hong Kong has imposed. With this law, it is no longer possible for VPN providers to guarantee a no-logs policy, as the government could request information from internet providers about its user with <a href=\"https://www.globalwatchonline.com/da/vpn/guide/netflix-vpn/\">VPN til Netflix @ Globalwatchonline.DK</a>\r\n<h2>New Security Law of China</h2>\r\nThe new security law in China is causing a lot of commotion in the VPN world. We previously reported that CyberGhost is sticking to its guns and leaving its servers in Hong Kong, but is continuing to monitor developments. PIA is taking precautions and has removed all locations in and around Hong Kong from its server network. “Private Internet Access, ’the world\'s leading log-free VPN service, is removing its physical Hong Kong servers because new national security laws in the region put the privacy of our users and all Hong Kong residents at risk”, reads the reason according to PIA.\r\n<blockquote>“PIA is removing its physical Hong Kong servers because new national security laws in the region put the privacy of our users and all Hong Kong residents at risk”</blockquote>\r\n<h3>Solution by PIA: new exit gateway in Hong Kong</h3>\r\nIn order to still allow users to continue enjoying a Hong Kong Ip address, PIA comes up with an interesting – alternative – solution: an exit gateway in Hong Kong. With this, users will be able to connect tightly as usual. This is possible thanks to the use of a geo-localized server in another country: with this, there is a VPN server in a more favorable country in terms of privacy, but it uses an IP address from servers of <a href=\"https://www.globalwatchonline.com/tr/vpn/reviews/expressvpn/\">ExpressVPN Turkiye.</a>\r\n<ul>\r\n 	<li>So it écht only involves physical servers removed from Hong Kong: “It is important to note that we are not blocking users from this region’s, but only removing physical servers, so that more than ever, Internet users can maintain the privacy they need”, said Chris Miller, Chief Marketing Officer of PIA.</li>\r\n</ul>\r\nhttps://www.youtube.com/watch?v=txajL_CwXwg','Who had specifically chosen Private Internet Access because of the possibility of VPN servers in Hong Kong, can now whistle for this location','','publish','closed','closed','','who-had-specifically-chosen-private-internet-access-because-of-the-possibility-of-vpn-servers-in-hong-kong-can-now-whistle-for-this-location','','','2021-06-16 16:35:32','2021-06-16 16:35:32','',0,'http://mortalcitiesforgottenmonuments.com/?p=47',0,'post','',0),(49,1,'2021-06-16 05:23:54','2021-06-16 05:23:54','PIA announced last week that it would immediately stop offering Hong Kong locations for its VPN server network. The VPN provider says it did this in response to the new Chinese national security law, which Hong Kong has imposed. With this law, it is no longer possible for VPN providers to guarantee a no-logs policy, as the government could request information from internet providers about its user.\r\n<h2>New Security Law of China</h2>\r\nThe new security law in China is causing a lot of commotion in the VPN world. We previously reported that CyberGhost is sticking to its guns and leaving its servers in Hong Kong, but is continuing to monitor developments. PIA is taking precautions and has removed all locations in and around Hong Kong from its server network. “Private Internet Access, ’the world\'s leading log-free VPN service, is removing its physical Hong Kong servers because new national security laws in the region put the privacy of our users and all Hong Kong residents at risk”, reads the reason according to PIA.\r\n<blockquote>“PIA is removing its physical Hong Kong servers because new national security laws in the region put the privacy of our users and all Hong Kong residents at risk”</blockquote>\r\n<h3>Solution by PIA: new exit gateway in Hong Kong</h3>\r\nIn order to still allow users to continue enjoying a Hong Kong Ip address, PIA comes up with an interesting – alternative – solution: an exit gateway in Hong Kong. With this, users will be able to connect tightly as usual. This is possible thanks to the use of a geo-localized server in another country: with this, there is a VPN server in a more favorable country in terms of privacy, but it uses an IP address from Hong Kong.\r\n<ul>\r\n 	<li>So it écht only involves physical servers removed from Hong Kong: “It is important to note that we are not blocking users from this region’s, but only removing physical servers, so that more than ever, Internet users can maintain the privacy they need”, said Chris Miller, Chief Marketing Officer of PIA.</li>\r\n</ul>','Who had specifically chosen Private Internet Access because of the possibility of VPN servers in Hong Kong, can now whistle for this location','','inherit','closed','closed','','47-revision-v1','','','2021-06-16 05:23:54','2021-06-16 05:23:54','',47,'http://mortalcitiesforgottenmonuments.com/?p=49',0,'revision','',0),(50,1,'2021-06-16 16:33:01','2021-06-16 16:33:01','PIA announced last week that it would immediately stop offering Hong Kong locations for its VPN server network. The VPN provider says it did this in response to the new Chinese national security law, which Hong Kong has imposed. With this law, it is no longer possible for VPN providers to guarantee a no-logs policy, as the government could request information from internet providers about its user with <a href=\"https://www.globalwatchonline.com/da/vpn/guide/netflix-vpn/\">VPN til Netflix @ Globalwatchonline.DK</a>\n<h2>New Security Law of China</h2>\nThe new security law in China is causing a lot of commotion in the VPN world. We previously reported that CyberGhost is sticking to its guns and leaving its servers in Hong Kong, but is continuing to monitor developments. PIA is taking precautions and has removed all locations in and around Hong Kong from its server network. “Private Internet Access, ’the world\'s leading log-free VPN service, is removing its physical Hong Kong servers because new national security laws in the region put the privacy of our users and all Hong Kong residents at risk”, reads the reason according to PIA.\n<blockquote>“PIA is removing its physical Hong Kong servers because new national security laws in the region put the privacy of our users and all Hong Kong residents at risk”</blockquote>\n<h3>Solution by PIA: new exit gateway in Hong Kong</h3>\nIn order to still allow users to continue enjoying a Hong Kong Ip address, PIA comes up with an interesting – alternative – solution: an exit gateway in Hong Kong. With this, users will be able to connect tightly as usual. This is possible thanks to the use of a geo-localized server in another country: with this, there is a VPN server in a more favorable country in terms of privacy, but it uses an IP address from Hong Kong.\n<ul>\n 	<li>So it écht only involves physical servers removed from Hong Kong: “It is important to note that we are not blocking users from this region’s, but only removing physical servers, so that more than ever, Internet users can maintain the privacy they need”, said Chris Miller, Chief Marketing Officer of PIA.</li>\n</ul>','Who had specifically chosen Private Internet Access because of the possibility of VPN servers in Hong Kong, can now whistle for this location','','inherit','closed','closed','','47-autosave-v1','','','2021-06-16 16:33:01','2021-06-16 16:33:01','',47,'http://mortalcitiesforgottenmonuments.com/?p=50',0,'revision','',0),(51,1,'2021-06-16 16:34:13','2021-06-16 16:34:13','','iaojsfajs','','inherit','closed','closed','','iaojsfajs','','','2021-06-16 16:34:13','2021-06-16 16:34:13','',47,'http://mortalcitiesforgottenmonuments.com/wp-content/uploads/2021/06/iaojsfajs.jpg',0,'attachment','image/jpeg',0),(52,1,'2021-06-16 16:35:32','2021-06-16 16:35:32','PIA announced last week that it would immediately stop offering Hong Kong locations for its VPN server network. The VPN provider says it did this in response to the new Chinese national security law, which Hong Kong has imposed. With this law, it is no longer possible for VPN providers to guarantee a no-logs policy, as the government could request information from internet providers about its user with <a href=\"https://www.globalwatchonline.com/da/vpn/guide/netflix-vpn/\">VPN til Netflix @ Globalwatchonline.DK</a>\r\n<h2>New Security Law of China</h2>\r\nThe new security law in China is causing a lot of commotion in the VPN world. We previously reported that CyberGhost is sticking to its guns and leaving its servers in Hong Kong, but is continuing to monitor developments. PIA is taking precautions and has removed all locations in and around Hong Kong from its server network. “Private Internet Access, ’the world\'s leading log-free VPN service, is removing its physical Hong Kong servers because new national security laws in the region put the privacy of our users and all Hong Kong residents at risk”, reads the reason according to PIA.\r\n<blockquote>“PIA is removing its physical Hong Kong servers because new national security laws in the region put the privacy of our users and all Hong Kong residents at risk”</blockquote>\r\n<h3>Solution by PIA: new exit gateway in Hong Kong</h3>\r\nIn order to still allow users to continue enjoying a Hong Kong Ip address, PIA comes up with an interesting – alternative – solution: an exit gateway in Hong Kong. With this, users will be able to connect tightly as usual. This is possible thanks to the use of a geo-localized server in another country: with this, there is a VPN server in a more favorable country in terms of privacy, but it uses an IP address from servers of <a href=\"https://www.globalwatchonline.com/tr/vpn/reviews/expressvpn/\">ExpressVPN Turkiye.</a>\r\n<ul>\r\n 	<li>So it écht only involves physical servers removed from Hong Kong: “It is important to note that we are not blocking users from this region’s, but only removing physical servers, so that more than ever, Internet users can maintain the privacy they need”, said Chris Miller, Chief Marketing Officer of PIA.</li>\r\n</ul>\r\nhttps://www.youtube.com/watch?v=txajL_CwXwg','Who had specifically chosen Private Internet Access because of the possibility of VPN servers in Hong Kong, can now whistle for this location','','inherit','closed','closed','','47-revision-v1','','','2021-06-16 16:35:32','2021-06-16 16:35:32','',47,'http://mortalcitiesforgottenmonuments.com/?p=52',0,'revision','',0),(54,1,'2021-09-30 12:39:53','2021-09-30 12:39:53','National fast food chain Quiznos is set to accept bitcoin payments at select locations through a new partnership with Bakkt. National fast food chain Quiznos plans to accept bitcoin payments in select locations through a new partnership with digital payments provider Bakkt.\r\n\r\nPaying with bitcoin in-store pilot will debut later this month at select Quiznos locations in Denver, according to a press release. Quiznos\' bitcoin payment solution is powered by a partnership with Bakkt Holdings, a digital marketplace with its own digital asset app.\r\n\r\nThe president of REGO Restaurant Group, which owns Quiznos and other national fast-food restaurant chains, Mark Lohmann commented: “Collaborating with an innovative platform like Bakkt is attractive to us for a number of reasons, mainly because it allows us to buy bitcoin directly. at the point of sale as part of a quick and seamless transaction.\" <a href=\"https://www.bitcoinexchangenederland.nl/ethereum/\">Ethereum ETH</a> has started to rise.\r\n\r\nhttps://youtu.be/xcGsJDf5KO0\r\n<h2>Customers who use the Bakkt app to purchase their meal with bitcoin will receive a reward of $15 worth of bitcoin</h2>\r\nLohmann continued, “As we continue our digital transformation and respond to mobile and millennial demand for alternative and cryptocurrency payment options, we are excited to offer customers yet another accessible way to purchase a meal, in this case through the Bakkt digital asset wallet.”\r\n\r\nQuiznos and Bakkt Holdings are the latest in a series of partnerships enabling bitcoin payment solutions. Bakkt Holdings is just one of many companies whose current mission is to make bitcoin and other cryptocurrencies as liquid and ubiquitous to consumers as fiat.\r\n\r\nZemlin continued, “Through this partnership, we are introducing unique experiences to Quiznos customers by enabling them to take advantage of new ways to interact with digital assets and bring bitcoin tools to the mainstream consumer market. We will be closely following how this pilot is performing, with the potential to expand the partnership to additional Quiznos locations across the country.” <a href=\"https://www.bitcoinexchangenederland.nl/safemoon/\">Safemoon (SAFEMOON)</a> has taken off.\r\n\r\nBakkt Chief Revenue Officer Sheela Zemlin commented: “We will be closely monitoring how this pilot is performing, with the potential to expand the partnership to additional Quiznos locations across the country.','FAST FOOD CHAIN QUIZNOS TO START BITCOIN PAYMENTS THIS MONTH','','publish','closed','closed','','fast-food-chain-quiznos-to-start-bitcoin-payments-this-month','','','2021-09-30 13:23:48','2021-09-30 13:23:48','',0,'http://mortalcitiesforgottenmonuments.com/?p=54',0,'post','',0),(56,1,'2021-09-21 12:40:33','2021-09-21 12:40:33','','pexels-olya-kobruseva-8358041','','inherit','closed','closed','','pexels-olya-kobruseva-8358041','','','2021-09-21 12:40:33','2021-09-21 12:40:33','',54,'http://mortalcitiesforgottenmonuments.com/wp-content/uploads/2021/09/pexels-olya-kobruseva-8358041.jpg',0,'attachment','image/jpeg',0),(57,1,'2021-09-21 12:41:35','2021-09-21 12:41:35','National fast food chain Quiznos is set to accept bitcoin payments at select locations through a new partnership with Bakkt. National fast food chain Quiznos plans to accept bitcoin payments in select locations through a new partnership with digital payments provider Bakkt.\r\n\r\nPaying with bitcoin in-store pilot will debut later this month at select Quiznos locations in Denver, according to a press release. Quiznos\' bitcoin payment solution is powered by a partnership with Bakkt Holdings, a digital marketplace with its own digital asset app.\r\n\r\nThe president of REGO Restaurant Group, which owns Quiznos and other national fast-food restaurant chains, Mark Lohmann commented: “Collaborating with an innovative platform like Bakkt is attractive to us for a number of reasons, mainly because it allows us to buy bitcoin directly. at the point of sale as part of a quick and seamless transaction.\" <a href=\"https://www.bitcoinexchangenederland.nl/ethereum/\">Ethereum ETH</a> has started to rise.\r\n\r\nhttps://youtu.be/xcGsJDf5KO0\r\n<h2>Customers who use the Bakkt app to purchase their meal with bitcoin will receive a reward of $15 worth of bitcoin</h2>\r\nLohmann continued, “As we continue our digital transformation and respond to mobile and millennial demand for alternative and cryptocurrency payment options, we are excited to offer customers yet another accessible way to purchase a meal, in this case through the Bakkt digital asset wallet.”\r\n\r\nQuiznos and Bakkt Holdings are the latest in a series of partnerships enabling bitcoin payment solutions. Bakkt Holdings is just one of many companies whose current mission is to make bitcoin and other cryptocurrencies as liquid and ubiquitous to consumers as fiat.\r\n\r\nZemlin continued, “Through this partnership, we are introducing unique experiences to Quiznos customers by enabling them to take advantage of new ways to interact with digital assets and bring bitcoin tools to the mainstream consumer market. We will be closely following how this pilot is performing, with the potential to expand the partnership to additional Quiznos locations across the country.” <a href=\"https://www.bitcoinexchangenederland.nl/safemoon/\">Safemoon (SAFEMOON)</a> has taken off.\r\n\r\nBakkt Chief Revenue Officer Sheela Zemlin commented: “We will be closely monitoring how this pilot is performing, with the potential to expand the partnership to additional Quiznos locations across the country.','FAST FOOD CHAIN QUIZNOS TO START BITCOIN PAYMENTS THIS MONTH','','inherit','closed','closed','','54-revision-v1','','','2021-09-21 12:41:35','2021-09-21 12:41:35','',54,'http://mortalcitiesforgottenmonuments.com/?p=57',0,'revision','',0),(58,1,'2021-10-27 13:39:05','2021-10-27 13:39:05','The cryptocurrency market has grown significantly again last night. The two largest cryptos on the market have been looking for support for almost a week and seem to have finally found it. Nearly all prices today are 5% or more in the plus. The increase is accompanied by a significant drop in copper, iron and steel prices as China cuts steel production to reduce CO2 emissions. A new announcement from Coinbase may also give prices a boost, but more about that later on Crypto Insiders. The total market cap of crypto reaches $2.1 trillion this morning.\r\n<h2>Bitcoin (BTC)</h2>\r\nBitcoin (BTC) has been searching for a new bottom for the past few days and was eventually able to hold out above USD 44,000. Yesterday afternoon, bitcoin started to rise sharply again, initially encountering resistance around USD 46,000, but then immediately shot through. The BTC price peaked at $47,380 last night, then corrected slightly lower and has since hovered around $47,000. <a href=\"https://moveco.io/\">https://moveco.io/</a> has enough information. Bitcoin is therefore almost 7% in the plus since yesterday afternoon and we may see another test of the infamous $50,000 this weekend. However, the volume is currently low, so that a correction down is also possible first.\r\n\r\nhttps://youtu.be/MZuDJ4lOQyI\r\n<h2>altcoins</h2>\r\nEthereum (ETH) held around $3,000 and followed bitcoin up yesterday. The ether price first encountered resistance at $3,050, then again around $3,130, but broke through each time. Ether eventually peaked at USD 3,240 and has since hovered around USD 3,210. This means that ether is up 7% today, but we certainly do not see any increase in the volume of ether.\r\n\r\nCardano (ADA) steals the show again today. The ADA rate held around $2.10 yesterday and started to rise sharply around the same time as the above two cryptos. ADA first encountered significant resistance around USD 2.30, then again around USD 2.40, but continued to break through. In fact, ADA reached a new all-time high (ATH) of $2.54 this morning after rising a staggering 21%. At the time of writing, ADA is falling slightly again and the price is back below $2.50. <a href=\"https://folm.io/\">Visit folm.io</a> has enough information. Trading volume is on the rise and should ADA find support soon, further gains may be on the horizon this weekend.\r\n<h2>Largest crypto</h2>\r\nOf the top 10 largest crypto, binance coin (BNB) is now 7% in the plus and ripple (XRP) and polkadot (DOT) even 10.5%. Only solana (SOL) is lagging today, but it already had a massive rally earlier this week. The only prices that are deep red today are terra (LUNA) and audius (AUDIO), but both prices also rose sharply earlier this week. Furthermore, vechain (VET) is 11% in the plus, polygon (MATIC) and ftx (FTT) 12%, safemoon (SAFEMOON) and helium (HNT) 14% and finally the graph (GRT) is the hardest riser on the market today. market and is almost 20% in the plus.','Bitcoin and Ethereum find support and rise sharply, cardano price breaks out and sets new record!','','publish','closed','closed','','bitcoin-and-ethereum-find-support-and-rise-sharply-cardano-price-breaks-out-and-sets-new-record','','','2021-09-28 13:43:50','2021-09-28 13:43:50','',0,'http://mortalcitiesforgottenmonuments.com/?p=58',0,'post','',0),(60,1,'2021-09-28 13:40:52','2021-09-28 13:40:52','','thought-catalog-bj8U389A9N8-unsplash (1)','','inherit','closed','closed','','thought-catalog-bj8u389a9n8-unsplash-1','','','2021-09-28 13:40:52','2021-09-28 13:40:52','',58,'http://mortalcitiesforgottenmonuments.com/wp-content/uploads/2021/09/thought-catalog-bj8U389A9N8-unsplash-1.jpg',0,'attachment','image/jpeg',0),(61,1,'2021-09-28 13:41:27','2021-09-28 13:41:27','The cryptocurrency market has grown significantly again last night. The two largest cryptos on the market have been looking for support for almost a week and seem to have finally found it. Nearly all prices today are 5% or more in the plus. The increase is accompanied by a significant drop in copper, iron and steel prices as China cuts steel production to reduce CO2 emissions. A new announcement from Coinbase may also give prices a boost, but more about that later on Crypto Insiders. The total market cap of crypto reaches $2.1 trillion this morning.\r\n<h2>Bitcoin (BTC)</h2>\r\nBitcoin (BTC) has been searching for a new bottom for the past few days and was eventually able to hold out above USD 44,000. Yesterday afternoon, bitcoin started to rise sharply again, initially encountering resistance around USD 46,000, but then immediately shot through. The BTC price peaked at $47,380 last night, then corrected slightly lower and has since hovered around $47,000. <a href=\"https://moveco.io/\">https://moveco.io/</a> has enough information. Bitcoin is therefore almost 7% in the plus since yesterday afternoon and we may see another test of the infamous $50,000 this weekend. However, the volume is currently low, so that a correction down is also possible first.\r\n\r\nhttps://youtu.be/MZuDJ4lOQyI\r\n<h2>altcoins</h2>\r\nEthereum (ETH) held around $3,000 and followed bitcoin up yesterday. The ether price first encountered resistance at $3,050, then again around $3,130, but broke through each time. Ether eventually peaked at USD 3,240 and has since hovered around USD 3,210. This means that ether is up 7% today, but we certainly do not see any increase in the volume of ether.\r\n\r\nCardano (ADA) steals the show again today. The ADA rate held around $2.10 yesterday and started to rise sharply around the same time as the above two cryptos. ADA first encountered significant resistance around USD 2.30, then again around USD 2.40, but continued to break through. In fact, ADA reached a new all-time high (ATH) of $2.54 this morning after rising a staggering 21%. At the time of writing, ADA is falling slightly again and the price is back below $2.50. <a href=\"https://folm.io/\">Visit folm.io</a> has enough information. Trading volume is on the rise and should ADA find support soon, further gains may be on the horizon this weekend.\r\n<h2>Largest crypto</h2>\r\nOf the top 10 largest crypto, binance coin (BNB) is now 7% in the plus and ripple (XRP) and polkadot (DOT) even 10.5%. Only solana (SOL) is lagging today, but it already had a massive rally earlier this week. The only prices that are deep red today are terra (LUNA) and audius (AUDIO), but both prices also rose sharply earlier this week. Furthermore, vechain (VET) is 11% in the plus, polygon (MATIC) and ftx (FTT) 12%, safemoon (SAFEMOON) and helium (HNT) 14% and finally the graph (GRT) is the hardest riser on the market today. market and is almost 20% in the plus.','Bitcoin and Ethereum find support and rise sharply, cardano price breaks out and sets new record!','','inherit','closed','closed','','58-revision-v1','','','2021-09-28 13:41:27','2021-09-28 13:41:27','',58,'http://mortalcitiesforgottenmonuments.com/?p=61',0,'revision','',0),(63,1,'2021-11-26 14:59:47','2021-11-26 14:59:47','Billionaire hedge fund manager Stanley Druckenmiller thinks a cryptocurrency could overtake the US dollar as a global reserve currency.\r\n<h2>Students can substitute dollars</h2>\r\nThe hedge fund boss noted that if the US dollar were to be replaced, it \"would be some kind of ledger system invented by some kids at MIT or Stanford or some other tech school. Then the dollar can be replaced. Worldwide.\' <a href=\"https://currencyconverters.org/de/cryptocurrencies\">Crypto Germany</a> is popular.\r\n\r\n\"5-6 years ago I said #crypto was a solution in search of a problem,\" Stan Druckenmiller says. \"The problem has been clearly identified. It is Jerome Powell and the rest of the world\'s central bankers. There is a lack of trust.\"\r\n\r\nhttps://youtu.be/ZiS1_GuecKY\r\n<h2>Solution looking for problem</h2>\r\nHe was a guest on CNBC\'s Squawk Box program. Druckenmiller said during the interview that crypto is often mentioned as a hedge against inflation, which has become more relevant in recent times:\r\n\r\n\"Well, you probably don\'t remember this joke, but five or six years ago I said that cryptocurrency was a solution looking for a problem. And that\'s why I didn\'t play the first wave of crypto, because we already have the dollar. What should we look for? \"\r\n<h2>Lack of confidence in Central Banks</h2>\r\nBut he added that persistent financial stimulus packages are becoming problematic: \"Well, the problem has been clearly identified. It\'s Jerome Powell and the rest of the global central bankers. There is a lack of confidence. So sort of looking for an answer to a central issue. \"\r\n<h2>Bitcoin dominates</h2>\r\nDruckenmiller invested in BTC earlier this year and does not believe bitcoin will be overtaken by other cryptocurrencies:\r\n\r\n\"It will be very difficult to catch up with Bitcoin, as a valuable asset, because it has a 13-year-old brand, it has been around long enough, and it is clear that there is a finite supply.\" <a href=\"https://currencyconverters.org/it/cryptocurrencies\">Crypto Italy</a> is popular.\r\n<h2>Winner not a foregone conclusion</h2>\r\nDruckenmiller noted that while Ethereum is at the forefront of building smart contracts, he doesn\'t see it dominating day-to-day transactions. He believes the next generation of developers will likely improve current blockchain technology and leave current solutions behind.\r\n\r\n\"The quality of competition that will come against the incumbents in this space will be brutal. That\'s why I think it\'s just too early to tell who is going to be the winner when it comes to the payment system, trading, that sort of thing. \"','This billionaire explains why cryptocurrency can replace the dollar as a world currency','','publish','closed','closed','','this-billionaire-explains-why-cryptocurrency-can-replace-the-dollar-as-a-world-currency','','','2021-12-08 08:37:26','2021-12-08 08:37:26','',0,'http://mortalcitiesforgottenmonuments.com/?p=63',0,'post','',0),(65,1,'2021-12-08 08:37:07','2021-12-08 08:37:07','','pexels-olya-kobruseva-8358032','','inherit','closed','closed','','pexels-olya-kobruseva-8358032','','','2021-12-08 08:37:07','2021-12-08 08:37:07','',63,'http://mortalcitiesforgottenmonuments.com/wp-content/uploads/2021/12/pexels-olya-kobruseva-8358032.jpg',0,'attachment','image/jpeg',0),(66,1,'2021-12-08 08:37:26','2021-12-08 08:37:26','Billionaire hedge fund manager Stanley Druckenmiller thinks a cryptocurrency could overtake the US dollar as a global reserve currency.\r\n<h2>Students can substitute dollars</h2>\r\nThe hedge fund boss noted that if the US dollar were to be replaced, it \"would be some kind of ledger system invented by some kids at MIT or Stanford or some other tech school. Then the dollar can be replaced. Worldwide.\' <a href=\"https://currencyconverters.org/de/cryptocurrencies\">Crypto Germany</a> is popular.\r\n\r\n\"5-6 years ago I said #crypto was a solution in search of a problem,\" Stan Druckenmiller says. \"The problem has been clearly identified. It is Jerome Powell and the rest of the world\'s central bankers. There is a lack of trust.\"\r\n\r\nhttps://youtu.be/ZiS1_GuecKY\r\n<h2>Solution looking for problem</h2>\r\nHe was a guest on CNBC\'s Squawk Box program. Druckenmiller said during the interview that crypto is often mentioned as a hedge against inflation, which has become more relevant in recent times:\r\n\r\n\"Well, you probably don\'t remember this joke, but five or six years ago I said that cryptocurrency was a solution looking for a problem. And that\'s why I didn\'t play the first wave of crypto, because we already have the dollar. What should we look for? \"\r\n<h2>Lack of confidence in Central Banks</h2>\r\nBut he added that persistent financial stimulus packages are becoming problematic: \"Well, the problem has been clearly identified. It\'s Jerome Powell and the rest of the global central bankers. There is a lack of confidence. So sort of looking for an answer to a central issue. \"\r\n<h2>Bitcoin dominates</h2>\r\nDruckenmiller invested in BTC earlier this year and does not believe bitcoin will be overtaken by other cryptocurrencies:\r\n\r\n\"It will be very difficult to catch up with Bitcoin, as a valuable asset, because it has a 13-year-old brand, it has been around long enough, and it is clear that there is a finite supply.\" <a href=\"https://currencyconverters.org/it/cryptocurrencies\">Crypto Italy</a> is popular.\r\n<h2>Winner not a foregone conclusion</h2>\r\nDruckenmiller noted that while Ethereum is at the forefront of building smart contracts, he doesn\'t see it dominating day-to-day transactions. He believes the next generation of developers will likely improve current blockchain technology and leave current solutions behind.\r\n\r\n\"The quality of competition that will come against the incumbents in this space will be brutal. That\'s why I think it\'s just too early to tell who is going to be the winner when it comes to the payment system, trading, that sort of thing. \"','This billionaire explains why cryptocurrency can replace the dollar as a world currency','','inherit','closed','closed','','63-revision-v1','','','2021-12-08 08:37:26','2021-12-08 08:37:26','',63,'http://mortalcitiesforgottenmonuments.com/?p=66',0,'revision','',0);
/*!40000 ALTER TABLE `wp_posts` 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_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 (13,3,0),(17,4,0),(18,4,0),(19,4,0),(20,4,0),(21,4,0),(22,4,0),(47,5,0),(54,6,0),(58,6,0),(63,6,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) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `description` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_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=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_term_taxonomy`
--

LOCK TABLES `wp_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wp_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wp_term_taxonomy` VALUES (1,1,'category','',0,0),(2,2,'category','',0,0),(3,3,'category','',0,1),(4,4,'nav_menu','',0,6),(5,5,'category','',0,1),(6,6,'category','',0,3);
/*!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) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`meta_id`),
  KEY `term_id` (`term_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_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) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `slug` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_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=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_terms`
--

LOCK TABLES `wp_terms` WRITE;
/*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */;
INSERT INTO `wp_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'My Blog','my-blog',0),(3,'Lifestyle','lifestyle',0),(4,'Main Menu','main-menu',0),(5,'China and VPN','china-and-vpn',0),(6,'Cryptocurrencies','cryptocurrencies',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) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`umeta_id`),
  KEY `user_id` (`user_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=28 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_usermeta`
--

LOCK TABLES `wp_usermeta` WRITE;
/*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */;
INSERT INTO `wp_usermeta` VALUES (1,1,'nickname','Roxanne'),(2,1,'first_name','Roxanne'),(3,1,'last_name','Belisle'),(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',''),(15,1,'show_welcome_panel','1'),(17,1,'wp_dashboard_quick_press_last_post_id','62'),(18,1,'community-events-location','a:1:{s:2:\"ip\";s:12:\"77.168.162.0\";}'),(20,1,'closedpostboxes_post','a:0:{}'),(21,1,'metaboxhidden_post','a:11:{i:0;s:9:\"formatdiv\";i:1;s:16:\"tagsdiv-post_tag\";i:2;s:12:\"post-columns\";i:3;s:11:\"postexcerpt\";i:4;s:13:\"trackbacksdiv\";i:5;s:10:\"postcustom\";i:6;s:16:\"commentstatusdiv\";i:7;s:7:\"slugdiv\";i:8;s:9:\"authordiv\";i:9;s:25:\"seopress_content_analysis\";i:10;s:24:\"contact_bank_add_metabox\";}'),(22,1,'wp_user-settings','editor=tinymce&libraryContent=browse&advImgDetails=show'),(23,1,'wp_user-settings-time','1598707677'),(24,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\";}'),(25,1,'metaboxhidden_nav-menus','a:2:{i:0;s:12:\"add-post_tag\";i:1;s:15:\"add-post_format\";}'),(26,1,'tgmpa_dismissed_notice_tourable','1'),(27,1,'session_tokens','a:2:{s:64:\"b6d7e0772bb45da0f9dafffdc9ef30ed425599910c1a7e773601199bc106615f\";a:4:{s:10:\"expiration\";i:1647135513;s:2:\"ip\";s:13:\"185.104.29.32\";s:2:\"ua\";s:60:\"Mozilla/5.0 (compatible; MainWP/4.1.5.1; +http://mainwp.com)\";s:5:\"login\";i:1646962713;}s:64:\"af19b25c5da0c01ec527f97be98e481f8b333124694a5c8ce34427095b0953f6\";a:4:{s:10:\"expiration\";i:1647135513;s:2:\"ip\";s:13:\"185.104.29.32\";s:2:\"ua\";s:60:\"Mozilla/5.0 (compatible; MainWP/4.1.5.1; +http://mainwp.com)\";s:5:\"login\";i:1646962713;}}');
/*!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) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_pass` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_nicename` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_email` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_url` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `user_activation_key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_status` int NOT NULL DEFAULT '0',
  `display_name` varchar(250) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_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=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_users`
--

LOCK TABLES `wp_users` WRITE;
/*!40000 ALTER TABLE `wp_users` DISABLE KEYS */;
INSERT INTO `wp_users` VALUES (1,'administrator','$P$BQwsM5eIHuKAMu9CGI/WrEvLmLH7hb.','administrator','[email protected]','http://mortalcitiesforgottenmonuments.com','2020-07-23 19:57:22','',0,'Roxanne Belisle');
/*!40000 ALTER TABLE `wp_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wpil_keyword_select_links`
--

DROP TABLE IF EXISTS `wp_wpil_keyword_select_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_wpil_keyword_select_links` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `keyword_id` int unsigned NOT NULL,
  `post_id` int unsigned NOT NULL,
  `post_type` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL,
  `sentence_text` text COLLATE utf8mb4_unicode_ci,
  `case_keyword` text COLLATE utf8mb4_unicode_ci,
  `meta_data` text COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`id`),
  KEY `keyword_id` (`keyword_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wpil_keyword_select_links`
--

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

--
-- Table structure for table `wp_wpil_report_links`
--

DROP TABLE IF EXISTS `wp_wpil_report_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_wpil_report_links` (
  `link_id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `post_id` bigint unsigned NOT NULL,
  `clean_url` text COLLATE utf8mb4_unicode_ci,
  `raw_url` text COLLATE utf8mb4_unicode_ci,
  `host` text COLLATE utf8mb4_unicode_ci,
  `anchor` text COLLATE utf8mb4_unicode_ci,
  `internal` tinyint(1) DEFAULT '0',
  `has_links` tinyint(1) NOT NULL DEFAULT '0',
  `post_type` text COLLATE utf8mb4_unicode_ci,
  `location` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`link_id`),
  KEY `post_id` (`post_id`),
  KEY `clean_url` (`clean_url`(500))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wpil_report_links`
--

LOCK TABLES `wp_wpil_report_links` WRITE;
/*!40000 ALTER TABLE `wp_wpil_report_links` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wpil_report_links` 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 2023-03-29  8:21:03