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/andoenredando.es/db.sql
-- MySQL dump 10.13  Distrib 8.0.32, for Linux (x86_64)
--
-- Host: localhost    Database: andoenredando_es
-- ------------------------------------------------------
-- 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_actionscheduler_actions`
--

DROP TABLE IF EXISTS `wp_actionscheduler_actions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_actionscheduler_actions` (
  `action_id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `hook` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `status` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `scheduled_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `scheduled_date_local` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `args` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `schedule` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `group_id` bigint unsigned NOT NULL DEFAULT '0',
  `attempts` int NOT NULL DEFAULT '0',
  `last_attempt_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `last_attempt_local` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `claim_id` bigint unsigned NOT NULL DEFAULT '0',
  `extended_args` varchar(8000) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`action_id`),
  KEY `hook` (`hook`),
  KEY `status` (`status`),
  KEY `scheduled_date_gmt` (`scheduled_date_gmt`),
  KEY `args` (`args`),
  KEY `group_id` (`group_id`),
  KEY `last_attempt_gmt` (`last_attempt_gmt`),
  KEY `claim_id` (`claim_id`)
) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_actionscheduler_actions`
--

LOCK TABLES `wp_actionscheduler_actions` WRITE;
/*!40000 ALTER TABLE `wp_actionscheduler_actions` DISABLE KEYS */;
INSERT INTO `wp_actionscheduler_actions` VALUES (15,'wpforms_process_entry_emails_meta_cleanup','complete','2020-09-22 00:01:21','2020-09-22 00:01:21','{\"tasks_meta_id\":1}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1600732881;s:18:\"\0*\0first_timestamp\";i:1600646400;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1600732881;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2021-04-15 15:19:33','2021-04-15 15:19:33',0,NULL),(16,'wpforms_admin_notifications_update','complete','0000-00-00 00:00:00','0000-00-00 00:00:00','{\"tasks_meta_id\":2}','O:28:\"ActionScheduler_NullSchedule\":0:{}',2,1,'2021-04-15 15:19:34','2021-04-15 15:19:34',0,NULL),(17,'wpforms_process_entry_emails_meta_cleanup','pending','2021-04-16 15:19:33','2021-04-16 15:19:33','{\"tasks_meta_id\":1}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1618586373;s:18:\"\0*\0first_timestamp\";i:1600646400;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1618586373;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL);
/*!40000 ALTER TABLE `wp_actionscheduler_actions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_actionscheduler_claims`
--

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

--
-- Dumping data for table `wp_actionscheduler_claims`
--

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

--
-- Table structure for table `wp_actionscheduler_groups`
--

DROP TABLE IF EXISTS `wp_actionscheduler_groups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_actionscheduler_groups` (
  `group_id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `slug` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`group_id`),
  KEY `slug` (`slug`(191))
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_actionscheduler_groups`
--

LOCK TABLES `wp_actionscheduler_groups` WRITE;
/*!40000 ALTER TABLE `wp_actionscheduler_groups` DISABLE KEYS */;
INSERT INTO `wp_actionscheduler_groups` VALUES (1,'action-scheduler-migration'),(2,'wpforms');
/*!40000 ALTER TABLE `wp_actionscheduler_groups` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_actionscheduler_logs`
--

DROP TABLE IF EXISTS `wp_actionscheduler_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_actionscheduler_logs` (
  `log_id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `action_id` bigint unsigned NOT NULL,
  `message` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `log_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `log_date_local` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`log_id`),
  KEY `action_id` (`action_id`),
  KEY `log_date_gmt` (`log_date_gmt`)
) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_actionscheduler_logs`
--

LOCK TABLES `wp_actionscheduler_logs` WRITE;
/*!40000 ALTER TABLE `wp_actionscheduler_logs` DISABLE KEYS */;
INSERT INTO `wp_actionscheduler_logs` VALUES (7,15,'action created','2020-09-21 00:01:21','2020-09-21 00:01:21'),(8,16,'action created','2021-04-15 09:03:11','2021-04-15 09:03:11'),(9,15,'action started via WP Cron','2021-04-15 15:19:33','2021-04-15 15:19:33'),(10,15,'action complete via WP Cron','2021-04-15 15:19:33','2021-04-15 15:19:33'),(11,17,'action created','2021-04-15 15:19:33','2021-04-15 15:19:33'),(12,16,'action started via WP Cron','2021-04-15 15:19:33','2021-04-15 15:19:33'),(13,16,'action complete via WP Cron','2021-04-15 15:19:34','2021-04-15 15:19:34');
/*!40000 ALTER TABLE `wp_actionscheduler_logs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_commentmeta`
--

DROP TABLE IF EXISTS `wp_commentmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_commentmeta` (
  `meta_id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `comment_id` bigint unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) 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_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=31205 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://andoenredando.es','yes'),(2,'home','http://andoenredando.es','yes'),(3,'blogname','www.andoenredando.es','yes'),(4,'blogdescription','','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','1','yes'),(11,'comments_notify','0','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','1','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','0','yes'),(28,'permalink_structure','/%postname%/','yes'),(29,'rewrite_rules','a:110:{s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:14:\"wpautoterms/?$\";s:36:\"index.php?post_type=wpautoterms_page\";s:44:\"wpautoterms/feed/(feed|rdf|rss|rss2|atom)/?$\";s:53:\"index.php?post_type=wpautoterms_page&feed=$matches[1]\";s:39:\"wpautoterms/(feed|rdf|rss|rss2|atom)/?$\";s:53:\"index.php?post_type=wpautoterms_page&feed=$matches[1]\";s:31:\"wpautoterms/page/([0-9]{1,})/?$\";s:54:\"index.php?post_type=wpautoterms_page&paged=$matches[1]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:37:\"wpautoterms/.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:47:\"wpautoterms/.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:67:\"wpautoterms/.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"wpautoterms/.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"wpautoterms/.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:43:\"wpautoterms/.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:26:\"wpautoterms/(.+?)/embed/?$\";s:49:\"index.php?wpautoterms_page=$matches[1]&embed=true\";s:30:\"wpautoterms/(.+?)/trackback/?$\";s:43:\"index.php?wpautoterms_page=$matches[1]&tb=1\";s:50:\"wpautoterms/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?wpautoterms_page=$matches[1]&feed=$matches[2]\";s:45:\"wpautoterms/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?wpautoterms_page=$matches[1]&feed=$matches[2]\";s:38:\"wpautoterms/(.+?)/page/?([0-9]{1,})/?$\";s:56:\"index.php?wpautoterms_page=$matches[1]&paged=$matches[2]\";s:45:\"wpautoterms/(.+?)/comment-page-([0-9]{1,})/?$\";s:56:\"index.php?wpautoterms_page=$matches[1]&cpage=$matches[2]\";s:34:\"wpautoterms/(.+?)(?:/([0-9]+))?/?$\";s:55:\"index.php?wpautoterms_page=$matches[1]&page=$matches[2]\";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:16:{i:0;s:43:\"wp-sheet-editor-premium/wp-sheet-editor.php\";i:1;s:19:\"akismet/akismet.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:81:\"auto-terms-of-service-and-privacy-policy/auto-terms-of-service-privacy-policy.php\";i:5;s:31:\"cache-enabler/cache-enabler.php\";i:6;s:33:\"classic-editor/classic-editor.php\";i:7;s:37:\"link-whisper-premium/link-whisper.php\";i:8;s:29:\"mainwp-child/mainwp-child.php\";i:9;s:75:\"recent-posts-widget-with-thumbnails/recent-posts-widget-with-thumbnails.php\";i:10;s:75:\"redirect-404-error-page-to-homepage/redirect-404-error-page-to-homepage.php\";i:11;s:49:\"scheduled-post-trigger/scheduled-post-trigger.php\";i:12;s:47:\"simple-social-buttons/simple-social-buttons.php\";i:13;s:23:\"spiderblocker/index.php\";i:14;s:29:\"theme-editor/theme_editor.php\";i:15;s:37:\"wordpress-autoblogging/basic-auth.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','mags','yes'),(41,'stylesheet','mags','yes'),(44,'comment_registration','0','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','1','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','0','yes'),(70,'close_comments_days_old','14','yes'),(71,'thread_comments','1','yes'),(72,'thread_comments_depth','5','yes'),(73,'page_comments','0','yes'),(74,'comments_per_page','50','yes'),(75,'default_comments_page','newest','yes'),(76,'comment_order','asc','yes'),(77,'sticky_posts','a:3:{i:0;i:54;i:1;i:59;i:2;i:68;}','yes'),(78,'widget_categories','a:2:{i:2;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:2:{i:1;a:0:{}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','57','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','1','yes'),(93,'admin_email_lifespan','1602832892','yes'),(94,'initial_db_version','47018','yes'),(95,'wp_user_roles','a:7:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:61:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}s:24:\"manage_wpautoterms_pages\";a:2:{s:4:\"name\";s:37:\"WPAutoTerms Pages Editor (additional)\";s:12:\"capabilities\";a:10:{s:22:\"edit_wpautoterms_pages\";b:1;s:29:\"edit_others_wpautoterms_pages\";b:1;s:30:\"edit_private_wpautoterms_pages\";b:1;s:32:\"edit_published_wpautoterms_pages\";b:1;s:30:\"read_private_wpautoterms_pages\";b:1;s:24:\"delete_wpautoterms_pages\";b:1;s:31:\"delete_others_wpautoterms_pages\";b:1;s:32:\"delete_private_wpautoterms_pages\";b:1;s:34:\"delete_published_wpautoterms_pages\";b:1;s:25:\"publish_wpautoterms_pages\";b:1;}}s:31:\"manage_wpautoterms_pages_editor\";a:2:{s:4:\"name\";s:33:\"Editor + WPAutoTerms Pages Editor\";s:12:\"capabilities\";a:44:{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:22:\"edit_wpautoterms_pages\";b:1;s:29:\"edit_others_wpautoterms_pages\";b:1;s:30:\"edit_private_wpautoterms_pages\";b:1;s:32:\"edit_published_wpautoterms_pages\";b:1;s:30:\"read_private_wpautoterms_pages\";b:1;s:24:\"delete_wpautoterms_pages\";b:1;s:31:\"delete_others_wpautoterms_pages\";b:1;s:32:\"delete_private_wpautoterms_pages\";b:1;s:34:\"delete_published_wpautoterms_pages\";b:1;s:25:\"publish_wpautoterms_pages\";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:1:{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:18:\"mags_right_sidebar\";a:5:{i:0;s:8:\"search-2\";i:1;s:37:\"recent-posts-widget-with-thumbnails-2\";i:2;s:12:\"categories-2\";i:3;s:10:\"calendar-2\";i:4;s:13:\"media_image-2\";}s:17:\"mags_left_sidebar\";a:0:{}s:31:\"mags_front_page_content_section\";a:0:{}s:19:\"mags_footer_sidebar\";a:1:{i:0;s:13:\"media_image-3\";}s:19:\"mags_footer_column2\";a:1:{i:0;s:16:\"wpforms-widget-2\";}s:19:\"mags_footer_column3\";a:1:{i:0;s:13:\"media_video-2\";}s:13:\"array_version\";i:3;}','yes'),(103,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(104,'db-version-secure','RkOPQqsho5','yes'),(105,'tagline','','yes'),(107,'auth_key','#^9yN/3m!)+D0#mDR;n78fh!vKE47F8t|o*|v=5lq:co~Rh3oBUWTBRk|yc$Vx;W','no'),(108,'auth_salt','uACID$J,^/JIB*Rr/ZK}BK8O#Fp Ro<8uABaqn_-,oIH,V}m!h10A*FE 8zBrrUH','no'),(109,'logged_in_key','[(=,;%5l~4,V|6MEwv ph{qG<+$]=Uc[~E3ou%VtIj9CjUbM]6z9<3zq6.?e5a_l','no'),(110,'logged_in_salt','yNeBzmO09Y==xxd(9;P8vBd_8aJ_1 2,W&R&NC98+r*>E5t4zd#Y&bi1Zyqhr=G0','no'),(111,'cron','a:7:{i:1651125571;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:1651126893;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:1651127863;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:1651130493;a:5:{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: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;}}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:1651130494;a:2:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1651476093;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:\"Calendar\";}s:12:\"_multiwidget\";i:1;}','yes'),(115,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(116,'widget_media_image','a:3:{i:2;a:15:{s:4:\"size\";s:4:\"full\";s:5:\"width\";i:500;s:6:\"height\";i:749;s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:9:\"link_type\";s:6:\"custom\";s:8:\"link_url\";s:1:\"#\";s:13:\"image_classes\";s:0:\"\";s:12:\"link_classes\";s:0:\"\";s:8:\"link_rel\";s:0:\"\";s:17:\"link_target_blank\";b:0;s:11:\"image_title\";s:0:\"\";s:13:\"attachment_id\";i:45;s:3:\"url\";s:57:\"http://andoenredando.es/wp-content/uploads/2020/06/53.jpg\";s:5:\"title\";s:8:\"Festival\";}i:3;a:15:{s:4:\"size\";s:4:\"full\";s:5:\"width\";i:2560;s:6:\"height\";i:1709;s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:9:\"link_type\";s:6:\"custom\";s:8:\"link_url\";s:1:\"#\";s:13:\"image_classes\";s:0:\"\";s:12:\"link_classes\";s:0:\"\";s:8:\"link_rel\";s:0:\"\";s:17:\"link_target_blank\";b:0;s:11:\"image_title\";s:7:\"Look At\";s:13:\"attachment_id\";i:46;s:3:\"url\";s:64:\"http://andoenredando.es/wp-content/uploads/2020/06/54-scaled.jpg\";s:5:\"title\";s:7:\"Look At\";}s:12:\"_multiwidget\";i:1;}','yes'),(117,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(118,'widget_media_video','a:2:{i:2;a:11:{s:7:\"preload\";s:8:\"metadata\";s:4:\"loop\";b:0;s:7:\"content\";s:0:\"\";s:3:\"mp4\";s:0:\"\";s:3:\"m4v\";s:0:\"\";s:4:\"webm\";s:0:\"\";s:3:\"ogv\";s:0:\"\";s:3:\"flv\";s:0:\"\";s:13:\"attachment_id\";i:0;s:3:\"url\";s:43:\"https://www.youtube.com/watch?v=h6S9ZIjegaY\";s:5:\"title\";s:8:\"See More\";}s:12:\"_multiwidget\";i:1;}','yes'),(119,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(120,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(122,'nonce_key','em$GU}}c~SQw.P3oe`(Kn1Q:Y*3A:X)KpsY`ikLqLRwZc#C+y/[eV5wx#TI4sWar','no'),(123,'nonce_salt','d={nf&u#.([3T#vFFjuYi7@w[XS IqrBb2^|_]C|`>)/63.bfQ.xv:hjIC!Dbj@|','no'),(124,'widget_akismet_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(132,'current_theme','Mags','yes'),(135,'widget_primer-hero-text','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(136,'theme_mods_primer','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1592213505;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'),(138,'crawl-delay-value','5','yes'),(139,'secure_auth_key','p<+&OWShdhX]`!fC?| ?5DD^9s%Zjj1.C|b8~.JoAmOG#le7@,VY`HK|LV#OZiH2','no'),(140,'secure_auth_salt','UL0;t=x:%~p{Ktw78svp6IBqP:]~4;!hjfFuPOe<z93z|6kt[*uroD*X4@|/]qQ}','no'),(169,'recently_activated','a:0:{}','yes'),(176,'ssb_networks','a:1:{s:14:\"icon_selection\";s:34:\"fbshare,twitter,pinterest,linkedin\";}','yes'),(177,'ssb_themes','a:1:{s:10:\"icon_style\";s:10:\"round-icon\";}','yes'),(178,'ssb_positions','a:1:{s:8:\"position\";a:2:{s:7:\"sidebar\";s:7:\"sidebar\";s:6:\"inline\";s:6:\"inline\";}}','yes'),(179,'ssb_inline','a:14:{s:8:\"location\";s:5:\"below\";s:14:\"icon_alignment\";s:4:\"left\";s:9:\"animation\";s:12:\"no-animation\";s:12:\"share_counts\";s:1:\"0\";s:11:\"total_share\";s:1:\"0\";s:10:\"icon_space\";s:1:\"0\";s:16:\"icon_space_value\";s:0:\"\";s:11:\"hide_mobile\";s:1:\"0\";s:16:\"show_on_category\";s:1:\"0\";s:15:\"show_on_archive\";s:1:\"0\";s:11:\"show_on_tag\";s:1:\"0\";s:14:\"show_on_search\";s:1:\"0\";s:11:\"share_title\";s:0:\"\";s:5:\"posts\";a:3:{s:4:\"home\";s:4:\"home\";s:4:\"post\";s:4:\"post\";s:4:\"page\";s:4:\"page\";}}','yes'),(180,'ssb_advanced','a:1:{s:11:\"ssb_og_tags\";s:1:\"1\";}','yes'),(181,'ssb_pr_version','3.1.1','yes'),(182,'widget_ssb_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(183,'ssb_sidebar','a:8:{s:11:\"orientation\";s:4:\"left\";s:9:\"animation\";s:12:\"no-animation\";s:12:\"share_counts\";s:1:\"0\";s:11:\"total_share\";s:1:\"0\";s:10:\"icon_space\";s:1:\"0\";s:16:\"icon_space_value\";s:0:\"\";s:11:\"hide_mobile\";s:1:\"0\";s:5:\"posts\";a:3:{s:4:\"home\";s:4:\"home\";s:4:\"post\";s:4:\"post\";s:4:\"page\";s:4:\"page\";}}','yes'),(184,'ssb_media','','yes'),(185,'ssb_popup','','yes'),(186,'ssb_flyin','','yes'),(187,'ssb_active_time','1592206029','no'),(190,'mk_te_settings_options','a:5:{s:7:\"e_d_t_e\";s:3:\"yes\";s:17:\"code_editor_theme\";s:6:\"cobalt\";s:9:\"e_w_d_t_e\";s:3:\"yes\";s:7:\"e_d_p_e\";s:3:\"yes\";s:9:\"e_w_d_p_e\";s:3:\"yes\";}','yes'),(193,'widget_recent-posts-widget-with-thumbnails','a:2:{i:2;a:36:{s:5:\"title\";s:12:\"Recent Posts\";s:11:\"default_url\";s:96:\"http://andoenredando.es/wp-content/plugins/recent-posts-widget-with-thumbnails/default_thumb.gif\";s:16:\"thumb_dimensions\";s:6:\"custom\";s:12:\"category_ids\";a:1:{i:0;i:0;}s:14:\"excerpt_length\";i:55;s:12:\"number_posts\";i:10;s:17:\"post_title_length\";i:1000;s:12:\"thumb_height\";i:75;s:11:\"thumb_width\";i:75;s:17:\"hide_current_post\";b:0;s:17:\"only_sticky_posts\";b:0;s:17:\"hide_sticky_posts\";b:0;s:10:\"hide_title\";b:0;s:17:\"keep_aspect_ratio\";b:0;s:11:\"keep_sticky\";b:0;s:12:\"only_1st_img\";b:0;s:12:\"random_order\";b:0;s:11:\"show_author\";b:0;s:15:\"show_categories\";b:0;s:20:\"show_comments_number\";b:0;s:9:\"show_date\";b:0;s:12:\"show_excerpt\";b:0;s:14:\"ignore_excerpt\";b:0;s:27:\"ignore_post_content_excerpt\";b:0;s:16:\"set_more_as_link\";b:0;s:11:\"try_1st_img\";b:0;s:11:\"use_default\";b:0;s:16:\"use_default_only\";b:0;s:15:\"open_new_window\";b:0;s:21:\"print_post_categories\";b:0;s:17:\"set_cats_as_links\";b:0;s:14:\"use_inline_css\";b:0;s:10:\"use_no_css\";b:0;s:10:\"show_thumb\";b:1;s:12:\"excerpt_more\";s:6:\" […]\";s:14:\"category_label\";s:2:\"In\";}s:12:\"_multiwidget\";i:1;}','yes'),(196,'action_scheduler_hybrid_store_demarkation','12','yes'),(197,'schema-ActionScheduler_StoreSchema','3.0.1592206108','yes'),(198,'schema-ActionScheduler_LoggerSchema','2.0.1592206108','yes'),(199,'wpforms_version','1.6.0.2','yes'),(200,'wpforms_activated','a:1:{s:4:\"lite\";i:1592206108;}','yes'),(203,'action_scheduler_lock_async-request-runner','1618493820','yes'),(204,'wpforms_version_lite','1.6.0.2','yes'),(205,'widget_wpforms-widget','a:2:{i:2;a:4:{s:5:\"title\";s:14:\"Subscribe Here\";s:7:\"form_id\";i:22;s:10:\"show_title\";b:0;s:9:\"show_desc\";b:0;}s:12:\"_multiwidget\";i:1;}','yes'),(208,'wpforms_review','a:2:{s:4:\"time\";i:1592206111;s:9:\"dismissed\";b:0;}','yes'),(211,'wpautoterms_activated','1','yes'),(212,'wpautoterms_legal_pages_slug','wpautoterms','yes'),(213,'wpautoterms_version','2.4.9','yes'),(214,'widget_wpautoterms_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(215,'wpautoterms_links','1','yes'),(216,'wpautoterms_links_bg_color','#ffffff','yes'),(217,'wpautoterms_links_font','Arial, sans-serif','yes'),(218,'wpautoterms_links_font_size','14px','yes'),(219,'wpautoterms_links_text_color','#cccccc','yes'),(220,'wpautoterms_links_text_align','center','yes'),(221,'wpautoterms_links_links_color','#000000','yes'),(222,'wpautoterms_links_separator','-','yes'),(223,'wpautoterms_links_target_blank','','yes'),(224,'wpautoterms_update_notice','','yes'),(225,'wpautoterms_update_notice_bar_position','top','yes'),(226,'wpautoterms_update_notice_bar_type','static','yes'),(227,'wpautoterms_update_notice_disable_logged','yes','yes'),(228,'wpautoterms_update_notice_duration','3','yes'),(229,'wpautoterms_update_notice_message','Our <a href=\"[wpautoterms page_link]\">[wpautoterms page_title]</a> has been updated on [wpautoterms last_updated_date].','yes'),(230,'wpautoterms_update_notice_message_multiple','Our [wpautoterms page_links] have been updated on [wpautoterms last_updated_date].','yes'),(231,'wpautoterms_update_notice_close_message','Close','yes'),(232,'wpautoterms_update_notice_bg_color','','yes'),(233,'wpautoterms_update_notice_font','','yes'),(234,'wpautoterms_update_notice_font_size','','yes'),(235,'wpautoterms_update_notice_text_color','','yes'),(236,'wpautoterms_update_notice_links_color','','yes'),(237,'wpautoterms_cookies_notice','','yes'),(238,'wpautoterms_cookies_notice_bar_position','top','yes'),(239,'wpautoterms_cookies_notice_bar_type','static','yes'),(240,'wpautoterms_cookies_notice_disable_logged','yes','yes'),(241,'wpautoterms_cookies_notice_message','We use cookies to ensure that we give you the best experience on our website','yes'),(242,'wpautoterms_cookies_notice_close_message','Close','yes'),(243,'wpautoterms_cookies_notice_bg_color','','yes'),(244,'wpautoterms_cookies_notice_font','','yes'),(245,'wpautoterms_cookies_notice_font_size','','yes'),(246,'wpautoterms_cookies_notice_text_color','','yes'),(247,'wpautoterms_cookies_notice_links_color','','yes'),(248,'wpautoterms_endorsements','','yes'),(249,'wpautoterms_endorsements_message','<p>Some of the links in this article are \"affiliate links\", a link with a special tracking code. This means if you click on an affiliate link and purchase the item, we will receive an affiliate commission.</p> <p>The price of the item is the same whether it is an affiliate link or not. Regardless, we only recommend products or services we believe will add value to our readers.</p> <p>By using the affiliate links, you are helping support our Website, and we genuinely appreciate your support.</p>','yes'),(250,'wpautoterms_endorsements_when','','yes'),(251,'wpautoterms_endorsements_tag','','yes'),(252,'wpautoterms_site_name','www.andoenredando.es','yes'),(253,'wpautoterms_site_url','http://andoenredando.es','yes'),(254,'wpautoterms_company_name','www.andoenredando.es','yes'),(255,'wpautoterms_country','','yes'),(256,'wpautoterms_state','','yes'),(257,'wpautoterms_show_in_pages_widget','','yes'),(258,'wpautoterms_cache_plugins_compat','','yes'),(259,'wpautoterms_license','','yes'),(260,'wpautoterms_ob_total','1','yes'),(261,'wpautoterms_ob_not_intercepted','0','yes'),(263,'wpautoterms_cache_plugins_detected','1','yes'),(267,'wpforms_lite_settings_upgrade','1592213019','yes'),(274,'wpautoterms_cache_plugins_detection','','yes'),(280,'theme_mods_mags','a:13:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:7;}s:18:\"custom_css_post_id\";i:-1;s:35:\"mags_header_social_profile_facebook\";s:25:\"https://www.facebook.com/\";s:34:\"mags_header_social_profile_twitter\";s:20:\"https://twitter.com/\";s:36:\"mags_header_social_profile_instagram\";s:32:\"https://www.instagram.com/?hl=en\";s:34:\"mags_header_social_profile_youtube\";s:24:\"https://www.youtube.com/\";s:26:\"mags_featured_image_single\";i:1;s:24:\"mags_featured_image_page\";i:1;s:31:\"mags_footer_featured_posts_hide\";i:1;s:11:\"custom_logo\";i:52;s:16:\"header_textcolor\";s:5:\"blank\";s:31:\"mags_header_sitebranding_center\";i:0;}','yes'),(281,'theme_switched','','yes'),(282,'widget_mags_horizontal_vertical_posts','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(283,'widget_mags_card_block_posts','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(284,'widget_mags_recent_posts','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(285,'widget_mags_multiple_layout_posts','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(290,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(301,'theme_editor_email_verified_1','yes','yes'),(350,'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'),(551,'recovery_keys','a:0:{}','yes'),(562,'action_scheduler_migration_status','complete','yes'),(933,'mainwp_child_update_version','1.5','yes'),(934,'mainwp_child_plugin_version','4.2.1','yes'),(935,'mainwp_child_auth','a:7:{i:5;s:32:\"308ba43e03aff37f9bfe5578d3a7e596\";s:4:\"last\";i:1677751617;i:4;s:32:\"cf93a368ac4da2f4e5b366ab2c049ecc\";i:3;s:32:\"b94184499c16475784e0e8893de2df51\";i:2;s:32:\"49d87f6190e4ad5a0e38cf4c931d399c\";i:1;s:32:\"9f5a3dce47962b95f821d09427bbbe46\";i:0;s:32:\"f990b090975a953a69c6bc9ef0469b35\";}','yes'),(936,'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'),(937,'mainwp_child_activated_once','1','no'),(938,'mainwp_child_pubkey','LS0tLS1CRUdJTiBQVUJMSUMgS0VZLS0tLS0KTUlJQklqQU5CZ2txaGtpRzl3MEJBUUVGQUFPQ0FROEFNSUlCQ2dLQ0FRRUE2SFlaWit2djl1anA1QlU5SGovdApPRm5nRnJ4dGJDQVY3RzR2ZVllcGtLbmFYeW92U243NlZWbkhGRzl5QjNKMHA1OTU2QjJLaDIvQWQyOUlMVmk3CkdaZHBmY1h3ZE9tZkZoQ2tGclFsek9uYzI3QnJTZkJxblZnLytNSnYva1dGYTIzWDVlZTNHdFZINUx4eFlBL0QKU2lpZ3VjOE55ajkvdVJaK1kzUUJEdEFpVWk0YWRLa2ZVZ0dxMUJDaWN3NFZaQlQxSjIrUXpSbmNPcXAzS0tBKwpyWUVEdXcrYWQ5R2lLK2V1bkRheFZMdWlmM0c5VURmcXJqdFBaQzNwRDJWRkhJQ1F2Y0lteXVrMDZzQU1FS3IzClczOFR4UGpLWkVhcjN0TitOYVdzb0JwUGpGTVEwai92WlJHeVhSSjVJdE5nRm16T3VrV0JIampwOEcrU3ltMG8KcHdJREFRQUIKLS0tLS1FTkQgUFVCTElDIEtFWS0tLS0tCg==','yes'),(939,'mainwp_child_server','https://dashboard.comparrot.nl/wp-admin/','no'),(940,'mainwp_child_nonce','0','no'),(941,'mainwp_child_nossl','0','yes'),(942,'mainwp_child_nossl_key','aa8c32956ec05a6380b41fc9c84edb1af372602465da33e922e13305fde9f299','yes'),(943,'mainwp_premium_updates','a:0:{}','no'),(946,'mainwp_child_clone_sites','0','no'),(947,'mainwp_child_siteid','115','no'),(949,'wpforms_notifications','a:4:{s:6:\"update\";i:1618499974;s:4:\"feed\";a:1:{i:0;a:6:{s:5:\"title\";s:47:\"Get Deeper Insights with the User Journey Addon\";s:7:\"content\";s:258:\"Discover the steps your visitors take before they submit your forms, without all the complicated analytics. With our new User Journey addon you can easily see the content that’s driving the most valuable form conversions, right in your WordPress dashboard.\";s:4:\"type\";a:1:{i:0;s:4:\"lite\";}s:2:\"id\";i:41;s:4:\"btns\";a:2:{s:4:\"main\";a:2:{s:3:\"url\";s:166:\"https://wpforms.com/introducing-user-journey-addon-wpforms/?utm_source=WordPress&utm_campaign=liteplugin&utm_medium=Plugin Notification&utm_content=UJ Lite Learn More\";s:4:\"text\";s:10:\"Learn More\";}s:3:\"alt\";a:2:{s:3:\"url\";s:153:\"https://wpforms.com/wpforms-lite-upgrade/?utm_source=WordPress&utm_campaign=liteplugin&utm_medium=Plugin Notification&utm_content=UJ Lite Get WPForms Pro\";s:4:\"text\";s:15:\"Get WPForms Pro\";}}s:5:\"start\";s:19:\"2020-11-12 11:21:36\";}}s:6:\"events\";a:0:{}s:9:\"dismissed\";a:0:{}}','yes'),(965,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:21:\"[email protected]\";s:7:\"version\";s:5:\"5.9.3\";s:9:\"timestamp\";i:1649402573;}','no'),(976,'https_detection_errors','a:1:{s:20:\"https_request_failed\";a:1:{i:0;s:21:\"HTTPS request failed.\";}}','yes'),(989,'finished_updating_comment_type','1','yes'),(1236,'disallowed_keys','','no'),(1237,'comment_previously_approved','1','yes'),(1238,'auto_plugin_theme_update_emails','a:0:{}','no'),(1239,'auto_update_core_dev','enabled','yes'),(1240,'auto_update_core_minor','enabled','yes'),(1241,'auto_update_core_major','unset','yes'),(1242,'db_upgraded','','yes'),(3011,'widget_block','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(5057,'wp_force_deactivated_plugins','a:0:{}','yes'),(5070,'category_children','a:0:{}','yes'),(26571,'mainwp_cache_control_cache_solution','Cache Enabler','yes'),(31156,'ai1wm_secret_key','8HHe0u7EU107','yes'),(31157,'ai1wm_backups_labels','a:0:{}','yes'),(31158,'ai1wm_sites_links','a:0:{}','yes'),(31159,'swift_performance_plugin_organizer','a:0:{}','yes'),(31160,'jetpack_active_modules','a:0:{}','yes'),(31161,'_transient_doing_cron','1660729571.1392250061035156250000','yes'),(31163,'_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:1676618151;s:15:\"version_checked\";s:3:\"6.0\";s:12:\"translations\";a:0:{}}','no'),(31167,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1676618154;s:7:\"checked\";a:4:{s:4:\"mags\";s:5:\"1.1.4\";s:12:\"twentytwenty\";s:3:\"2.0\";s:15:\"twentytwentyone\";s:3:\"1.5\";s:15:\"twentytwentytwo\";s:3:\"1.1\";}s:8:\"response\";a:3:{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:1:{s:4:\"mags\";a:6:{s:5:\"theme\";s:4:\"mags\";s:11:\"new_version\";s:5:\"1.1.4\";s:3:\"url\";s:34:\"https://wordpress.org/themes/mags/\";s:7:\"package\";s:52:\"https://downloads.wordpress.org/theme/mags.1.1.4.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";s:3:\"5.2\";}}s:12:\"translations\";a:0:{}}','no'),(31168,'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'),(31172,'wpil_2_license_status','','yes'),(31173,'wpil_2_license_key','','yes'),(31174,'wpil_2_license_data','','yes'),(31175,'wpil_2_ignore_numbers','1','yes'),(31176,'wpil_2_post_types','a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}','yes'),(31177,'wpil_2_links_open_new_tab','0','yes'),(31178,'wpil_2_debug_mode','0','yes'),(31179,'wpil_option_update_reporting_data_on_save','0','yes'),(31180,'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'),(31181,'wpil_has_run_initial_scan','1','yes'),(31182,'wpil_site_db_version','1.22','yes'),(31183,'wpil_link_table_is_created','1','yes'),(31184,'wpil_fresh_install','','yes'),(31185,'wpil_install_date','2023-02-16 09:55:54','yes'),(31188,'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:1676541356;s:11:\"plugin_path\";s:43:\"wp-sheet-editor-premium/wp-sheet-editor.php\";}}s:7:\"abspath\";s:34:\"/opt/aphex/sites/andoenredando.es/\";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:1676541356;}}','yes'),(31189,'fs_debug_mode','','yes'),(31190,'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:1676541356;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'),(31200,'_site_transient_timeout_theme_roots','1676619952','no'),(31201,'_site_transient_theme_roots','a:4:{s:4:\"mags\";s:7:\"/themes\";s:12:\"twentytwenty\";s:7:\"/themes\";s:15:\"twentytwentyone\";s:7:\"/themes\";s:15:\"twentytwentytwo\";s:7:\"/themes\";}','no'),(31203,'_site_transient_update_plugins','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1676618153;s:8:\"response\";a:7:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:5:\"5.0.2\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.5.0.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:60:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=2818463\";s:2:\"1x\";s:60:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=2818463\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:61:\"https://ps.w.org/akismet/assets/banner-772x250.jpg?rev=479904\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"6.1.1\";s:12:\"requires_php\";s:3:\"5.2\";}s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:37:\"w.org/plugins/all-in-one-wp-migration\";s:4:\"slug\";s:23:\"all-in-one-wp-migration\";s:6:\"plugin\";s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";s:11:\"new_version\";s:4:\"7.70\";s:3:\"url\";s:54:\"https://wordpress.org/plugins/all-in-one-wp-migration/\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/plugin/all-in-one-wp-migration.7.70.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:76:\"https://ps.w.org/all-in-one-wp-migration/assets/icon-256x256.png?rev=2458334\";s:2:\"1x\";s:76:\"https://ps.w.org/all-in-one-wp-migration/assets/icon-128x128.png?rev=2458334\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:79:\"https://ps.w.org/all-in-one-wp-migration/assets/banner-1544x500.png?rev=2837281\";s:2:\"1x\";s:78:\"https://ps.w.org/all-in-one-wp-migration/assets/banner-772x250.png?rev=2837281\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.3\";s:6:\"tested\";s:5:\"6.1.1\";s:12:\"requires_php\";s:3:\"5.3\";}s:29:\"mainwp-child/mainwp-child.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:26:\"w.org/plugins/mainwp-child\";s:4:\"slug\";s:12:\"mainwp-child\";s:6:\"plugin\";s:29:\"mainwp-child/mainwp-child.php\";s:11:\"new_version\";s:5:\"4.3.1\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/mainwp-child/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/mainwp-child.4.3.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/mainwp-child/assets/icon-256x256.png?rev=2734948\";s:2:\"1x\";s:65:\"https://ps.w.org/mainwp-child/assets/icon-128x128.png?rev=2734948\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/mainwp-child/assets/banner-1544x500.jpg?rev=2734948\";s:2:\"1x\";s:67:\"https://ps.w.org/mainwp-child/assets/banner-772x250.jpg?rev=2734948\";}s:11:\"banners_rtl\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/mainwp-child/assets/banner-1544x500-rtl.jpg?rev=2712922\";s:2:\"1x\";s:71:\"https://ps.w.org/mainwp-child/assets/banner-772x250-rtl.jpg?rev=2712922\";}s:8:\"requires\";s:3:\"5.4\";s:6:\"tested\";s:5:\"6.1.1\";s:12:\"requires_php\";s:3:\"7.0\";}s:47:\"simple-social-buttons/simple-social-buttons.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:35:\"w.org/plugins/simple-social-buttons\";s:4:\"slug\";s:21:\"simple-social-buttons\";s:6:\"plugin\";s:47:\"simple-social-buttons/simple-social-buttons.php\";s:11:\"new_version\";s:5:\"4.0.3\";s:3:\"url\";s:52:\"https://wordpress.org/plugins/simple-social-buttons/\";s:7:\"package\";s:70:\"https://downloads.wordpress.org/plugin/simple-social-buttons.4.0.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:74:\"https://ps.w.org/simple-social-buttons/assets/icon-256x256.png?rev=2439696\";s:2:\"1x\";s:74:\"https://ps.w.org/simple-social-buttons/assets/icon-128x128.png?rev=2439696\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:77:\"https://ps.w.org/simple-social-buttons/assets/banner-1544x500.png?rev=2439696\";s:2:\"1x\";s:76:\"https://ps.w.org/simple-social-buttons/assets/banner-772x250.png?rev=2439696\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.0\";s:6:\"tested\";s:5:\"6.1.1\";s:12:\"requires_php\";b:0;s:14:\"upgrade_notice\";s:47:\"<ul>\n<li>Please upgrade immediately.</li>\n</ul>\";}s:23:\"spiderblocker/index.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:27:\"w.org/plugins/spiderblocker\";s:4:\"slug\";s:13:\"spiderblocker\";s:6:\"plugin\";s:23:\"spiderblocker/index.php\";s:11:\"new_version\";s:5:\"1.3.3\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/spiderblocker/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/spiderblocker.1.3.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/spiderblocker/assets/icon-256x256.jpg?rev=2476085\";s:2:\"1x\";s:66:\"https://ps.w.org/spiderblocker/assets/icon-128x128.jpg?rev=2476085\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/spiderblocker/assets/banner-1544x500.jpg?rev=2476085\";s:2:\"1x\";s:68:\"https://ps.w.org/spiderblocker/assets/banner-772x250.jpg?rev=2476085\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.0\";s:6:\"tested\";s:5:\"6.1.1\";s:12:\"requires_php\";b:0;}s:81:\"auto-terms-of-service-and-privacy-policy/auto-terms-of-service-privacy-policy.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:54:\"w.org/plugins/auto-terms-of-service-and-privacy-policy\";s:4:\"slug\";s:40:\"auto-terms-of-service-and-privacy-policy\";s:6:\"plugin\";s:81:\"auto-terms-of-service-and-privacy-policy/auto-terms-of-service-privacy-policy.php\";s:11:\"new_version\";s:5:\"2.5.0\";s:3:\"url\";s:71:\"https://wordpress.org/plugins/auto-terms-of-service-and-privacy-policy/\";s:7:\"package\";s:89:\"https://downloads.wordpress.org/plugin/auto-terms-of-service-and-privacy-policy.2.5.0.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:85:\"https://ps.w.org/auto-terms-of-service-and-privacy-policy/assets/icon.svg?rev=2292425\";s:3:\"svg\";s:85:\"https://ps.w.org/auto-terms-of-service-and-privacy-policy/assets/icon.svg?rev=2292425\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:95:\"https://ps.w.org/auto-terms-of-service-and-privacy-policy/assets/banner-772x250.png?rev=2292425\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.2\";s:6:\"tested\";s:5:\"6.1.1\";s:12:\"requires_php\";s:3:\"5.3\";}s:24:\"wpforms-lite/wpforms.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:26:\"w.org/plugins/wpforms-lite\";s:4:\"slug\";s:12:\"wpforms-lite\";s:6:\"plugin\";s:24:\"wpforms-lite/wpforms.php\";s:11:\"new_version\";s:7:\"1.8.0.1\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/wpforms-lite/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/wpforms-lite.1.8.0.1.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:65:\"https://ps.w.org/wpforms-lite/assets/icon-256x256.png?rev=2574201\";s:2:\"1x\";s:57:\"https://ps.w.org/wpforms-lite/assets/icon.svg?rev=2574198\";s:3:\"svg\";s:57:\"https://ps.w.org/wpforms-lite/assets/icon.svg?rev=2574198\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/wpforms-lite/assets/banner-1544x500.png?rev=2602491\";s:2:\"1x\";s:67:\"https://ps.w.org/wpforms-lite/assets/banner-772x250.png?rev=2602491\";}s:11:\"banners_rtl\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/wpforms-lite/assets/banner-1544x500-rtl.png?rev=2602491\";s:2:\"1x\";s:71:\"https://ps.w.org/wpforms-lite/assets/banner-772x250-rtl.png?rev=2602491\";}s:8:\"requires\";s:3:\"5.2\";s:6:\"tested\";s:5:\"6.1.1\";s:12:\"requires_php\";s:3:\"5.6\";}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:6:{s:33:\"classic-editor/classic-editor.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:28:\"w.org/plugins/classic-editor\";s:4:\"slug\";s:14:\"classic-editor\";s:6:\"plugin\";s:33:\"classic-editor/classic-editor.php\";s:11:\"new_version\";s:5:\"1.6.2\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/classic-editor/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/classic-editor.1.6.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/classic-editor/assets/icon-256x256.png?rev=1998671\";s:2:\"1x\";s:67:\"https://ps.w.org/classic-editor/assets/icon-128x128.png?rev=1998671\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/classic-editor/assets/banner-1544x500.png?rev=1998671\";s:2:\"1x\";s:69:\"https://ps.w.org/classic-editor/assets/banner-772x250.png?rev=1998676\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.9\";}s:9:\"hello.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/hello-dolly\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:5:\"1.7.2\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/hello-dolly.1.7.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=2052855\";s:2:\"1x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=2052855\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/hello-dolly/assets/banner-1544x500.jpg?rev=2645582\";s:2:\"1x\";s:66:\"https://ps.w.org/hello-dolly/assets/banner-772x250.jpg?rev=2052855\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";}s:75:\"recent-posts-widget-with-thumbnails/recent-posts-widget-with-thumbnails.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:49:\"w.org/plugins/recent-posts-widget-with-thumbnails\";s:4:\"slug\";s:35:\"recent-posts-widget-with-thumbnails\";s:6:\"plugin\";s:75:\"recent-posts-widget-with-thumbnails/recent-posts-widget-with-thumbnails.php\";s:11:\"new_version\";s:5:\"7.1.1\";s:3:\"url\";s:66:\"https://wordpress.org/plugins/recent-posts-widget-with-thumbnails/\";s:7:\"package\";s:84:\"https://downloads.wordpress.org/plugin/recent-posts-widget-with-thumbnails.7.1.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:88:\"https://ps.w.org/recent-posts-widget-with-thumbnails/assets/icon-256x256.png?rev=2478511\";s:2:\"1x\";s:88:\"https://ps.w.org/recent-posts-widget-with-thumbnails/assets/icon-128x128.png?rev=2478511\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:91:\"https://ps.w.org/recent-posts-widget-with-thumbnails/assets/banner-1544x500.jpg?rev=2480188\";s:2:\"1x\";s:90:\"https://ps.w.org/recent-posts-widget-with-thumbnails/assets/banner-772x250.jpg?rev=2480188\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";}s:75:\"redirect-404-error-page-to-homepage/redirect-404-error-page-to-homepage.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:49:\"w.org/plugins/redirect-404-error-page-to-homepage\";s:4:\"slug\";s:35:\"redirect-404-error-page-to-homepage\";s:6:\"plugin\";s:75:\"redirect-404-error-page-to-homepage/redirect-404-error-page-to-homepage.php\";s:11:\"new_version\";s:3:\"1.1\";s:3:\"url\";s:66:\"https://wordpress.org/plugins/redirect-404-error-page-to-homepage/\";s:7:\"package\";s:78:\"https://downloads.wordpress.org/plugin/redirect-404-error-page-to-homepage.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:88:\"https://ps.w.org/redirect-404-error-page-to-homepage/assets/icon-256x256.png?rev=2475278\";s:2:\"1x\";s:88:\"https://ps.w.org/redirect-404-error-page-to-homepage/assets/icon-128x128.png?rev=1409260\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:91:\"https://ps.w.org/redirect-404-error-page-to-homepage/assets/banner-1544x500.png?rev=1398666\";s:2:\"1x\";s:90:\"https://ps.w.org/redirect-404-error-page-to-homepage/assets/banner-772x250.png?rev=2475283\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.0\";}s:49:\"scheduled-post-trigger/scheduled-post-trigger.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:36:\"w.org/plugins/scheduled-post-trigger\";s:4:\"slug\";s:22:\"scheduled-post-trigger\";s:6:\"plugin\";s:49:\"scheduled-post-trigger/scheduled-post-trigger.php\";s:11:\"new_version\";s:3:\"3.0\";s:3:\"url\";s:53:\"https://wordpress.org/plugins/scheduled-post-trigger/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/scheduled-post-trigger.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:75:\"https://ps.w.org/scheduled-post-trigger/assets/icon-128x128.jpg?rev=1492075\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:77:\"https://ps.w.org/scheduled-post-trigger/assets/banner-772x250.jpg?rev=1492080\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.2\";}s:29:\"theme-editor/theme_editor.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:26:\"w.org/plugins/theme-editor\";s:4:\"slug\";s:12:\"theme-editor\";s:6:\"plugin\";s:29:\"theme-editor/theme_editor.php\";s:11:\"new_version\";s:3:\"2.7\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/theme-editor/\";s:7:\"package\";s:55:\"https://downloads.wordpress.org/plugin/theme-editor.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:65:\"https://ps.w.org/theme-editor/assets/icon-128x128.png?rev=1644634\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:67:\"https://ps.w.org/theme-editor/assets/banner-772x250.jpg?rev=1644636\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.4\";}}}','no'),(31204,'user_count','1','no');
/*!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=225 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 (3,5,'_edit_lock','1592203802:1'),(4,6,'_wp_attached_file','2020/06/47.jpg'),(5,6,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:14:\"2020/06/47.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"47-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:15:\"47-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"47-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:14:\"47-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:16:\"47-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:16:\"47-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"primer-featured\";a:4:{s:4:\"file\";s:16:\"47-1600x1067.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:1067;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"primer-hero\";a:4:{s:4:\"file\";s:16:\"47-2400x1300.jpg\";s:5:\"width\";i:2400;s:6:\"height\";i:1300;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:{}}}'),(8,5,'_thumbnail_id','6'),(9,5,'_edit_last','1'),(10,8,'_edit_lock','1592203948:1'),(11,9,'_wp_attached_file','2020/06/48.jpg'),(12,9,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2507;s:6:\"height\";i:1673;s:4:\"file\";s:14:\"2020/06/48.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"48-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:15:\"48-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"48-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:14:\"48-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:16:\"48-1536x1025.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1025;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:16:\"48-2048x1367.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1367;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"primer-featured\";a:4:{s:4:\"file\";s:16:\"48-1600x1068.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:1068;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"primer-hero\";a:4:{s:4:\"file\";s:16:\"48-2400x1300.jpg\";s:5:\"width\";i:2400;s:6:\"height\";i:1300;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:{}}}'),(15,8,'_thumbnail_id','9'),(20,14,'_edit_lock','1592212741:1'),(21,14,'_edit_last','1'),(22,16,'_edit_lock','1592212887:1'),(23,16,'_edit_last','1'),(24,18,'_edit_lock','1592213137:1'),(25,18,'_edit_last','1'),(26,21,'_edit_lock','1592213251:1'),(29,21,'_edit_last','1'),(30,28,'_edit_lock','1592213369:1'),(33,28,'_edit_last','1'),(34,34,'_edit_lock','1592213398:1'),(35,34,'_edit_last','1'),(42,36,'_menu_item_type','custom'),(43,36,'_menu_item_menu_item_parent','0'),(44,36,'_menu_item_object_id','36'),(45,36,'_menu_item_object','custom'),(46,36,'_menu_item_target',''),(47,36,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(48,36,'_menu_item_xfn',''),(49,36,'_menu_item_url','http://andoenredando.es/'),(50,36,'_menu_item_orphaned','1592213652'),(51,37,'_menu_item_type','post_type'),(52,37,'_menu_item_menu_item_parent','0'),(53,37,'_menu_item_object_id','16'),(54,37,'_menu_item_object','page'),(55,37,'_menu_item_target',''),(56,37,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57,37,'_menu_item_xfn',''),(58,37,'_menu_item_url',''),(60,38,'_menu_item_type','post_type'),(61,38,'_menu_item_menu_item_parent','0'),(62,38,'_menu_item_object_id','18'),(63,38,'_menu_item_object','page'),(64,38,'_menu_item_target',''),(65,38,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(66,38,'_menu_item_xfn',''),(67,38,'_menu_item_url',''),(69,39,'_menu_item_type','post_type'),(70,39,'_menu_item_menu_item_parent','0'),(71,39,'_menu_item_object_id','34'),(72,39,'_menu_item_object','page'),(73,39,'_menu_item_target',''),(74,39,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(75,39,'_menu_item_xfn',''),(76,39,'_menu_item_url',''),(78,40,'_menu_item_type','post_type'),(79,40,'_menu_item_menu_item_parent','0'),(80,40,'_menu_item_object_id','14'),(81,40,'_menu_item_object','page'),(82,40,'_menu_item_target',''),(83,40,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(84,40,'_menu_item_xfn',''),(85,40,'_menu_item_url',''),(87,41,'_menu_item_type','post_type'),(88,41,'_menu_item_menu_item_parent','0'),(89,41,'_menu_item_object_id','21'),(90,41,'_menu_item_object','page'),(91,41,'_menu_item_target',''),(92,41,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(93,41,'_menu_item_xfn',''),(94,41,'_menu_item_url',''),(96,42,'_menu_item_type','post_type'),(97,42,'_menu_item_menu_item_parent','0'),(98,42,'_menu_item_object_id','28'),(99,42,'_menu_item_object','page'),(100,42,'_menu_item_target',''),(101,42,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(102,42,'_menu_item_xfn',''),(103,42,'_menu_item_url',''),(110,45,'_wp_attached_file','2020/06/53.jpg'),(111,45,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:749;s:4:\"file\";s:14:\"2020/06/53.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"53-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"53-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:\"1\";s:8:\"keywords\";a:0:{}}}'),(112,46,'_wp_attached_file','2020/06/54-scaled-e1592214748447.jpg'),(113,46,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1593;s:4:\"file\";s:36:\"2020/06/54-scaled-e1592214748447.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"54-scaled-e1592214748447-300x187.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:187;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"54-scaled-e1592214748447-1024x637.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:637;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"54-scaled-e1592214748447-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:36:\"54-scaled-e1592214748447-768x478.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:478;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:37:\"54-scaled-e1592214748447-1536x956.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:956;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:38:\"54-scaled-e1592214748447-2048x1274.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1274;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:6:\"54.jpg\";}'),(114,46,'_wp_attachment_backup_sizes','a:7:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:2560;s:6:\"height\";i:1709;s:4:\"file\";s:13:\"54-scaled.jpg\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:14:\"54-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:14:\"54-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"medium_large-orig\";a:4:{s:4:\"file\";s:14:\"54-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"large-orig\";a:4:{s:4:\"file\";s:15:\"54-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"1536x1536-orig\";a:4:{s:4:\"file\";s:16:\"54-1536x1025.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1025;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"2048x2048-orig\";a:4:{s:4:\"file\";s:16:\"54-2048x1367.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1367;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(118,48,'_wp_attached_file','2020/06/logo13.png'),(119,48,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:256;s:6:\"height\";i:111;s:4:\"file\";s:18:\"2020/06/logo13.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"logo13-150x111.png\";s:5:\"width\";i:150;s:6:\"height\";i:111;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,49,'_wp_attached_file','2020/06/cropped-logo13.png'),(121,49,'_wp_attachment_context','custom-logo'),(122,49,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:256;s:6:\"height\";i:111;s:4:\"file\";s:26:\"2020/06/cropped-logo13.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"cropped-logo13-150x111.png\";s:5:\"width\";i:150;s:6:\"height\";i:111;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:{}}}'),(125,51,'_wp_attached_file','2020/06/logo14.png'),(126,51,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:99;s:4:\"file\";s:18:\"2020/06/logo14.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"logo14-150x99.png\";s:5:\"width\";i:150;s:6:\"height\";i:99;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:{}}}'),(127,52,'_wp_attached_file','2020/06/cropped-logo14.png'),(128,52,'_wp_attachment_context','custom-logo'),(129,52,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:99;s:4:\"file\";s:26:\"2020/06/cropped-logo14.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"cropped-logo14-150x99.png\";s:5:\"width\";i:150;s:6:\"height\";i:99;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:{}}}'),(133,54,'_edit_last','1'),(134,54,'_edit_lock','1592587262:1'),(135,54,'_oembed_6ff62ad82e9ae98aa0f951d3d4b02f13','<iframe title=\"Comparación de precio: Los autos más caros de 2020 | El Comparometro.\" width=\"995\" height=\"560\" src=\"https://www.youtube.com/embed/FRbn4ImaHwc?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(136,54,'_oembed_time_6ff62ad82e9ae98aa0f951d3d4b02f13','1592584957'),(137,55,'_wp_attached_file','2020/06/8383mbke.png'),(138,55,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:735;s:6:\"height\";i:385;s:4:\"file\";s:20:\"2020/06/8383mbke.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"8383mbke-300x157.png\";s:5:\"width\";i:300;s:6:\"height\";i:157;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"8383mbke-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:{}}}'),(139,54,'_thumbnail_id','55'),(140,54,'_ssb_hide','false'),(141,54,'mags_sidebarlayout','default'),(142,54,'_oembed_8cad3c774f92bc74a6a5c88b4b3b6ebd','<iframe title=\"Comparación de precio: Los autos más caros de 2020 | El Comparometro.\" width=\"1110\" height=\"624\" src=\"https://www.youtube.com/embed/FRbn4ImaHwc?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(143,54,'_oembed_time_8cad3c774f92bc74a6a5c88b4b3b6ebd','1592585008'),(144,54,'_oembed_68efac4bf8801c35f4f708637e04c1f5','<iframe title=\"Comparación de precio: Los autos más caros de 2020 | El Comparometro.\" width=\"999\" height=\"562\" src=\"https://www.youtube.com/embed/FRbn4ImaHwc?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(145,54,'_oembed_time_68efac4bf8801c35f4f708637e04c1f5','1592585009'),(146,57,'_wp_attached_file','2020/06/cropped-logo14-1.png'),(147,57,'_wp_attachment_context','site-icon'),(148,57,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:28:\"2020/06/cropped-logo14-1.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"cropped-logo14-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"cropped-logo14-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-270\";a:4:{s:4:\"file\";s:28:\"cropped-logo14-1-270x270.png\";s:5:\"width\";i:270;s:6:\"height\";i:270;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-192\";a:4:{s:4:\"file\";s:28:\"cropped-logo14-1-192x192.png\";s:5:\"width\";i:192;s:6:\"height\";i:192;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-180\";a:4:{s:4:\"file\";s:28:\"cropped-logo14-1-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"site_icon-32\";a:4:{s:4:\"file\";s:26:\"cropped-logo14-1-32x32.png\";s:5:\"width\";i:32;s:6:\"height\";i:32;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:{}}}'),(151,59,'_edit_last','1'),(152,59,'_edit_lock','1592587246:1'),(153,60,'_wp_attached_file','2020/06/b7usj.jpg'),(154,60,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:720;s:4:\"file\";s:17:\"2020/06/b7usj.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"b7usj-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:18:\"b7usj-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:17:\"b7usj-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:17:\"b7usj-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;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:{}}}'),(155,59,'_thumbnail_id','60'),(156,59,'_ssb_hide','false'),(157,59,'mags_sidebarlayout','default'),(158,19,'wpforms_entries_count','128'),(159,22,'wpforms_entries_count','58'),(164,16,'ssb_old_counts','a:5:{s:7:\"twitter\";i:0;s:9:\"pinterest\";i:0;s:7:\"fbshare\";i:0;s:6:\"reddit\";i:0;s:6:\"tumblr\";i:0;}'),(165,16,'ssb_total_counts','0'),(166,16,'ssb_cache_timestamp','456502'),(167,18,'ssb_old_counts','a:5:{s:7:\"twitter\";i:0;s:9:\"pinterest\";i:0;s:7:\"fbshare\";i:0;s:6:\"reddit\";i:0;s:6:\"tumblr\";i:0;}'),(168,18,'ssb_total_counts','0'),(169,18,'ssb_cache_timestamp','458341'),(170,21,'ssb_old_counts','a:5:{s:7:\"twitter\";i:0;s:9:\"pinterest\";i:0;s:7:\"fbshare\";i:0;s:6:\"reddit\";i:0;s:6:\"tumblr\";i:0;}'),(171,21,'ssb_total_counts','0'),(172,21,'ssb_cache_timestamp','456502'),(173,28,'ssb_old_counts','a:5:{s:7:\"twitter\";i:0;s:9:\"pinterest\";i:0;s:7:\"fbshare\";i:0;s:6:\"reddit\";i:0;s:6:\"tumblr\";i:0;}'),(174,28,'ssb_total_counts','0'),(175,28,'ssb_cache_timestamp','456502'),(176,14,'ssb_old_counts','a:5:{s:7:\"twitter\";i:0;s:9:\"pinterest\";i:0;s:7:\"fbshare\";i:0;s:6:\"reddit\";i:0;s:6:\"tumblr\";i:0;}'),(177,14,'ssb_total_counts','0'),(178,14,'ssb_cache_timestamp','456502'),(179,34,'ssb_old_counts','a:5:{s:7:\"twitter\";i:0;s:9:\"pinterest\";i:0;s:7:\"fbshare\";i:0;s:6:\"reddit\";i:0;s:6:\"tumblr\";i:0;}'),(180,34,'ssb_total_counts','0'),(181,34,'ssb_cache_timestamp','457094'),(182,5,'ssb_old_counts','a:5:{s:7:\"twitter\";i:0;s:9:\"pinterest\";i:0;s:7:\"fbshare\";i:0;s:6:\"reddit\";i:0;s:6:\"tumblr\";i:0;}'),(183,5,'ssb_total_counts','0'),(184,5,'ssb_cache_timestamp','456502'),(185,8,'ssb_old_counts','a:5:{s:7:\"twitter\";i:0;s:9:\"pinterest\";i:0;s:7:\"fbshare\";i:0;s:6:\"reddit\";i:0;s:6:\"tumblr\";i:0;}'),(186,8,'ssb_total_counts','0'),(187,8,'ssb_cache_timestamp','456502'),(188,54,'ssb_old_counts','a:5:{s:7:\"twitter\";i:0;s:9:\"pinterest\";i:0;s:7:\"fbshare\";i:0;s:6:\"reddit\";i:0;s:6:\"tumblr\";i:0;}'),(189,54,'ssb_total_counts','0'),(190,54,'ssb_cache_timestamp','456502'),(191,59,'ssb_old_counts','a:5:{s:7:\"twitter\";i:0;s:9:\"pinterest\";i:0;s:7:\"fbshare\";i:0;s:6:\"reddit\";i:0;s:6:\"tumblr\";i:0;}'),(192,59,'ssb_total_counts','0'),(193,59,'ssb_cache_timestamp','449581'),(194,57,'_oembed_c18fea4df78b3c05c3aa4eeed765afd9','{{unknown}}'),(195,52,'_oembed_0e0011abbfc8eefc7ef73f6bca195215','{{unknown}}'),(196,49,'_oembed_75a8ac22e971d490e9290e541f8d6871','{{unknown}}'),(199,65,'_oembed_16835465e8db4acc759c9484d663ddf0','<iframe title=\"👉 Cómo COMPRAR y VENDER CRIPTOMONEDAS en BINANCE 💥 Tutorial Binance 2021 💥\" width=\"1110\" height=\"624\" src=\"https://www.youtube.com/embed/m_F-Lb81Lo4?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(200,65,'_oembed_time_16835465e8db4acc759c9484d663ddf0','1622731512'),(201,65,'_edit_last','1'),(202,65,'_edit_lock','1622882090:1'),(203,65,'_ssb_hide','false'),(204,65,'mags_sidebarlayout','default'),(207,69,'_wp_attached_file','2021/09/pexels-alesia-kozik-6765706.jpg'),(208,69,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:39:\"2021/09/pexels-alesia-kozik-6765706.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"pexels-alesia-kozik-6765706-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:39:\"pexels-alesia-kozik-6765706-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:\"pexels-alesia-kozik-6765706-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;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:{}}}'),(209,68,'_edit_last','1'),(210,68,'_thumbnail_id','69'),(213,68,'_ssb_hide','false'),(214,68,'mags_sidebarlayout','default'),(215,68,'_wp_old_date','2021-09-22'),(216,68,'_edit_lock','1632296918:1'),(217,68,'_oembed_d39a5a98a7248143967445352aaff581','<iframe title=\"QUE SON LAS CRIPTOMONEDAS? LA VERDAD SOBRE BITCOIN\" width=\"1110\" height=\"624\" src=\"https://www.youtube.com/embed/Xe8DBuBRj4o?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(218,68,'_oembed_time_d39a5a98a7248143967445352aaff581','1632297047'),(219,68,'ssb_old_counts','a:5:{s:7:\"twitter\";i:0;s:9:\"pinterest\";i:0;s:7:\"fbshare\";i:0;s:6:\"reddit\";i:0;s:6:\"tumblr\";N;}'),(220,68,'ssb_total_counts','0'),(221,68,'ssb_cache_timestamp','456502'),(222,65,'ssb_old_counts','a:5:{s:7:\"twitter\";i:0;s:9:\"pinterest\";i:0;s:7:\"fbshare\";i:0;s:6:\"reddit\";i:0;s:6:\"tumblr\";N;}'),(223,65,'ssb_total_counts','0'),(224,65,'ssb_cache_timestamp','456502');
/*!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=71 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 (5,1,'2020-06-15 06:49:59','2020-06-15 06:49:59','<!-- wp:paragraph -->\n<p>At the point when you go to a performance this year make certain to interface with history as you sit back in the sun and appreciate the characteristic blend of music, move and nature, for the advanced concert has its roots in Ancient Greece when open air celebrations were a mix of rivalries in music and move of extraordinary greatness in their day. Clutch your seats while we impact forward from that time through 25 centuries (plus or minus a century or two) to today. While I am certain the celebration goers of Ancient Greece had as a very remarkable ball as celebration goers do today, I presume that the difficulties of web fights for tickets, transport, stopping and outdoors offices had a relative spot in their reality too. All things considered, the standards are the equivalent in that you need to get to the setting, discover a vantage point and maybe even remain for the time being on the off chance that you have gone far. What\'s more, the toilets at celebrations? Well I surmise that is presumably the part of the two where we share most for all intents and purpose with Ancient Greece, yet no more latrine represent this article</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As a prepared celebration camper I am going to impart some counsel to you according to your decision of celebration tent which I expectation will make your experience a more lovely one than it would some way or another be and set aside you cash. As spring quickly moves toward I am certain that huge numbers of you, similar to me, will have a portion of your celebrations booked and the buzz will be beginning to work among you and your loved ones for the warm climate to show up (fingers crossed) and for the celebrations to start. I figure you will concur with me that celebrations don\'t come modest nowadays, however when you consider exactly what amount unrecorded music, diversion, food, drink and FUN you can pack into a couple of days, they do give stunning an incentive for cash. On the off chance that you are going to go to your first celebration, at that point good karma, take as much counsel as possible and you will have the best time and I am sure that you will be lining up for tickets for your next celebration after a short time.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As winter closes and spring begins it is the ideal opportunity to begin making arrangements for your celebration outdoors season, as everything that you do now will be a little weight off your psyche and will permit you to deal with your spending much better for the weeks paving the way to the celebration. First of all, start a rundown. It doesn\'t need to remember everything for the main example however you do need to make a beginning and the best beginning stage I find is with the bigger and most clear bits of hardware which may incorporate things which you have as of now. The littler things can be purchased later and you can settle on choices on what to purchase dependent on the measure of pressing space which you have left accessible to you. Beginning with the greater things will permit you to appraise exactly what amount conveying pack (sacks and so forth) you will require. With the scope of things accessible in the field of celebration outdoors at present in any event, kitting yourself out without any preparation need not end up being excessively costly.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The most evident thing to consider first is the tent. There are numerous factors accessible to you comparable to this key bit of hardware and it is on this that I am going to center in the rest of this article.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Think about these choices:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>One individual making a trip to a celebration alone - a one man tent or a two man tent with space to save?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Two people venturing out to a celebration - two one man tents, a two man tent or a three man tent?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Six people venturing out to a celebration - 6 one man tents, two three man tents or a six man tent?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>I trust that you can see the essential stages, and there are some more. My own experience is that as the quality and size of the tent expands, the expense per occupant diminishes. I find that you can really accomplish more noteworthy room and solace all the more monetarily by sharing the expense of a tent between a gathering. The drawback obviously is that you don\'t have a lot of protection or some place to withdraw to when you need some close to home space. It merits examining the choices with your voyaging party at a beginning period all together that you can concur a heading and on the off chance that it is to be a mutual tent, you can concur money related commitments and afterward share the heap of the tent between individuals from your gathering and continue ahead with the remainder of your arranging.</p>\n<!-- /wp:paragraph -->','Festival Camping - Choose a Tent Wisely to Make Your Experience One to Remember','','publish','closed','closed','','festival-camping-choose-a-tent-wisely-to-make-your-experience-one-to-remember','','','2020-06-15 06:50:01','2020-06-15 06:50:01','',0,'http://andoenredando.es/?p=5',0,'post','',0),(6,1,'2020-06-15 06:49:24','2020-06-15 06:49:24','','47','','inherit','closed','closed','','47','','','2020-06-15 06:49:24','2020-06-15 06:49:24','',5,'http://andoenredando.es/wp-content/uploads/2020/06/47.jpg',0,'attachment','image/jpeg',0),(7,1,'2020-06-15 06:49:59','2020-06-15 06:49:59','<!-- wp:paragraph -->\n<p>At the point when you go to a performance this year make certain to interface with history as you sit back in the sun and appreciate the characteristic blend of music, move and nature, for the advanced concert has its roots in Ancient Greece when open air celebrations were a mix of rivalries in music and move of extraordinary greatness in their day. Clutch your seats while we impact forward from that time through 25 centuries (plus or minus a century or two) to today. While I am certain the celebration goers of Ancient Greece had as a very remarkable ball as celebration goers do today, I presume that the difficulties of web fights for tickets, transport, stopping and outdoors offices had a relative spot in their reality too. All things considered, the standards are the equivalent in that you need to get to the setting, discover a vantage point and maybe even remain for the time being on the off chance that you have gone far. What\'s more, the toilets at celebrations? Well I surmise that is presumably the part of the two where we share most for all intents and purpose with Ancient Greece, yet no more latrine represent this article</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As a prepared celebration camper I am going to impart some counsel to you according to your decision of celebration tent which I expectation will make your experience a more lovely one than it would some way or another be and set aside you cash. As spring quickly moves toward I am certain that huge numbers of you, similar to me, will have a portion of your celebrations booked and the buzz will be beginning to work among you and your loved ones for the warm climate to show up (fingers crossed) and for the celebrations to start. I figure you will concur with me that celebrations don\'t come modest nowadays, however when you consider exactly what amount unrecorded music, diversion, food, drink and FUN you can pack into a couple of days, they do give stunning an incentive for cash. On the off chance that you are going to go to your first celebration, at that point good karma, take as much counsel as possible and you will have the best time and I am sure that you will be lining up for tickets for your next celebration after a short time.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As winter closes and spring begins it is the ideal opportunity to begin making arrangements for your celebration outdoors season, as everything that you do now will be a little weight off your psyche and will permit you to deal with your spending much better for the weeks paving the way to the celebration. First of all, start a rundown. It doesn\'t need to remember everything for the main example however you do need to make a beginning and the best beginning stage I find is with the bigger and most clear bits of hardware which may incorporate things which you have as of now. The littler things can be purchased later and you can settle on choices on what to purchase dependent on the measure of pressing space which you have left accessible to you. Beginning with the greater things will permit you to appraise exactly what amount conveying pack (sacks and so forth) you will require. With the scope of things accessible in the field of celebration outdoors at present in any event, kitting yourself out without any preparation need not end up being excessively costly.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The most evident thing to consider first is the tent. There are numerous factors accessible to you comparable to this key bit of hardware and it is on this that I am going to center in the rest of this article.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Think about these choices:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>One individual making a trip to a celebration alone - a one man tent or a two man tent with space to save?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Two people venturing out to a celebration - two one man tents, a two man tent or a three man tent?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Six people venturing out to a celebration - 6 one man tents, two three man tents or a six man tent?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>I trust that you can see the essential stages, and there are some more. My own experience is that as the quality and size of the tent expands, the expense per occupant diminishes. I find that you can really accomplish more noteworthy room and solace all the more monetarily by sharing the expense of a tent between a gathering. The drawback obviously is that you don\'t have a lot of protection or some place to withdraw to when you need some close to home space. It merits examining the choices with your voyaging party at a beginning period all together that you can concur a heading and on the off chance that it is to be a mutual tent, you can concur money related commitments and afterward share the heap of the tent between individuals from your gathering and continue ahead with the remainder of your arranging.</p>\n<!-- /wp:paragraph -->','Festival Camping - Choose a Tent Wisely to Make Your Experience One to Remember','','inherit','closed','closed','','5-revision-v1','','','2020-06-15 06:49:59','2020-06-15 06:49:59','',5,'http://andoenredando.es/5-revision-v1/',0,'revision','',0),(8,1,'2020-06-15 06:54:51','2020-06-15 06:54:51','<!-- wp:paragraph -->\n<p>On the off chance that you concur that nothing could be better than being outside, making new companions, and bringing in some cash as your own manager then you are prepared to turn into a celebration merchant. Turning into a celebration merchant can be simple or troublesome; it truly relies upon the celebration you need to sell your products at. The following are some valuable tips on the most proficient method to get your foot in the celebration entryway. There are a wide range of approaches to begin as a celebration merchant. In the event that you can\'t get in the first run through around, at that point look at a portion of these extra indications to assist you with making sense of a way.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Join Fairs And Festival Events</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>On the off chance that you\'ve been to a couple of celebrations, swap meets, or specialty show and need to take part in the activity then you\'ll need to get going - early. It\'s hard to believe, but it\'s true, a large portion of the celebration merchants you see at your neighborhood celebrations have pursued their spot as long as a year ahead of time. A few celebrations are more serious than others. In the event that you have some related knowledge being a celebration merchant, however you\'d prefer to join a notable or voyaging celebration than you realize how hard it very well may be to get a pined for space to sell your products.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Need to Pay Anything to become Festival Vendor?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The primary activity regardless of what celebration you need to be a celebration merchant at is to discover who is in control. Attempt to talk legitimately with them about joining. On the off chance that you are fortunate you will simply need to settle in advance to save your spot and afterward appear on the principal day of the celebration. Here and there you won\'t need to join until the day of the celebration, however most will expect you to put down a store early. This implies regardless of whether you are pursuing a hot celebration a year ahead of time you despite everything may need to set out a robust store now. This additionally implies on the off chance that you can\'t make it ultimately it you will likely lose your whole store. Sadly, this is exactly how things go in the celebration circuit and in the event that you need to turn into a celebration merchant you should dish out some money before you\'ve made a penny.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Things to know in Fairs and Festival Events</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>On the off chance that you have decided to turn into a celebration merchant at an increasingly serious show and there are no accessible spots left, at that point you can attempt a couple of things. You can generally request to impart a space to a set up merchant. This is a particularly decent move for a celebration seller that has a little set up or somebody simply beginning. On the off chance that the corner charges are high, another celebration merchant may be glad to let you set up inside their stall. Ask whoever is in control or approach an inviting celebration merchant yourself. You can likewise check whether there are any retractions that day or the day preceding. This can be a genuine agony since you have no assurance, yet things occur and this could get you in. Haggling with another celebration merchant to hold their spot for them in the event that they should be away for a day or two is another approach to get in on an impermanent premise. In the event that you need to be a celebration merchant, at that point you are most likely an innovative sort, so utilize those abilities and make sense of an approach to get in there.</p>\n<!-- /wp:paragraph -->','Becoming a Festival Vendor','','publish','closed','closed','','becoming-a-festival-vendor','','','2020-06-15 06:54:51','2020-06-15 06:54:51','',0,'http://andoenredando.es/?p=8',0,'post','',0),(9,1,'2020-06-15 06:54:34','2020-06-15 06:54:34','','48','','inherit','closed','closed','','48','','','2020-06-15 06:54:34','2020-06-15 06:54:34','',8,'http://andoenredando.es/wp-content/uploads/2020/06/48.jpg',0,'attachment','image/jpeg',0),(10,1,'2020-06-15 06:54:51','2020-06-15 06:54:51','<!-- wp:paragraph -->\n<p>On the off chance that you concur that nothing could be better than being outside, making new companions, and bringing in some cash as your own manager then you are prepared to turn into a celebration merchant. Turning into a celebration merchant can be simple or troublesome; it truly relies upon the celebration you need to sell your products at. The following are some valuable tips on the most proficient method to get your foot in the celebration entryway. There are a wide range of approaches to begin as a celebration merchant. In the event that you can\'t get in the first run through around, at that point look at a portion of these extra indications to assist you with making sense of a way.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Join Fairs And Festival Events</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>On the off chance that you\'ve been to a couple of celebrations, swap meets, or specialty show and need to take part in the activity then you\'ll need to get going - early. It\'s hard to believe, but it\'s true, a large portion of the celebration merchants you see at your neighborhood celebrations have pursued their spot as long as a year ahead of time. A few celebrations are more serious than others. In the event that you have some related knowledge being a celebration merchant, however you\'d prefer to join a notable or voyaging celebration than you realize how hard it very well may be to get a pined for space to sell your products.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Need to Pay Anything to become Festival Vendor?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The primary activity regardless of what celebration you need to be a celebration merchant at is to discover who is in control. Attempt to talk legitimately with them about joining. On the off chance that you are fortunate you will simply need to settle in advance to save your spot and afterward appear on the principal day of the celebration. Here and there you won\'t need to join until the day of the celebration, however most will expect you to put down a store early. This implies regardless of whether you are pursuing a hot celebration a year ahead of time you despite everything may need to set out a robust store now. This additionally implies on the off chance that you can\'t make it ultimately it you will likely lose your whole store. Sadly, this is exactly how things go in the celebration circuit and in the event that you need to turn into a celebration merchant you should dish out some money before you\'ve made a penny.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Things to know in Fairs and Festival Events</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>On the off chance that you have decided to turn into a celebration merchant at an increasingly serious show and there are no accessible spots left, at that point you can attempt a couple of things. You can generally request to impart a space to a set up merchant. This is a particularly decent move for a celebration seller that has a little set up or somebody simply beginning. On the off chance that the corner charges are high, another celebration merchant may be glad to let you set up inside their stall. Ask whoever is in control or approach an inviting celebration merchant yourself. You can likewise check whether there are any retractions that day or the day preceding. This can be a genuine agony since you have no assurance, yet things occur and this could get you in. Haggling with another celebration merchant to hold their spot for them in the event that they should be away for a day or two is another approach to get in on an impermanent premise. In the event that you need to be a celebration merchant, at that point you are most likely an innovative sort, so utilize those abilities and make sense of an approach to get in there.</p>\n<!-- /wp:paragraph -->','Becoming a Festival Vendor','','inherit','closed','closed','','8-revision-v1','','','2020-06-15 06:54:51','2020-06-15 06:54:51','',8,'http://andoenredando.es/8-revision-v1/',0,'revision','',0),(12,1,'2020-06-15 07:29:02','2020-06-15 07:29:02','{\"id\":\"12\",\"field_id\":2,\"fields\":[{\"id\":\"0\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"simple\",\"description\":\"\",\"required\":\"1\",\"size\":\"large\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},{\"id\":\"1\",\"type\":\"email\",\"label\":\"Email\",\"description\":\"\",\"required\":\"1\",\"size\":\"large\",\"placeholder\":\"\",\"confirmation_placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"}],\"settings\":{\"form_title\":\"Newsletter Signup Form\",\"form_desc\":\"\",\"form_class\":\"\",\"submit_text\":\"Submit\",\"submit_text_processing\":\"Sending...\",\"submit_class\":\"\",\"honeypot\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"New Newsletter Signup Form Entry\",\"sender_name\":\"www.andoenredando.es\",\"sender_address\":\"{admin_email}\",\"replyto\":\"\",\"message\":\"{all_fields}\"}},\"confirmations\":{\"1\":{\"type\":\"message\",\"message\":\"<p>Thanks for contacting us! We will be in touch with you shortly.<\\/p>\",\"message_scroll\":\"1\",\"redirect\":\"\"}}},\"meta\":{\"template\":\"subscribe\"}}','Newsletter Signup Form','','publish','closed','closed','','newsletter-signup-form','','','2020-06-15 07:30:30','2020-06-15 07:30:30','',0,'http://andoenredando.es/?post_type=wpforms&#038;p=12',0,'wpforms','',0),(14,1,'2020-06-15 09:18:58','2020-06-15 09:18:58','','Home','','publish','closed','closed','','home','','','2020-06-15 09:19:00','2020-06-15 09:19:00','',0,'http://andoenredando.es/?page_id=14',0,'page','',0),(15,1,'2020-06-15 09:18:58','2020-06-15 09:18:58','','Home','','inherit','closed','closed','','14-revision-v1','','','2020-06-15 09:18:58','2020-06-15 09:18:58','',14,'http://andoenredando.es/14-revision-v1/',0,'revision','',0),(16,1,'2020-06-15 09:21:25','2020-06-15 09:21:25','<!-- wp:paragraph -->\n<p>Celebrations are the best an ideal opportunity to visit a place of interest, particularly energetic urban communities like Madrid. It resembles venturing into a universe of social practices and novel convictions. The superb thing about visiting Madrid during celebrations is that you can cooperate at an individual level with local people. Celebrations of Madrid mirror the genuine substance of its kin with their bubbly soul.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>During celebrations, Madrid is about energy and dynamic support of individuals as they appreciate in joy. Local people crowd the niches and corners of the city, drawing out the substance of their customs.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Mainstream Festivals of Madrid</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>With a considerable lot of celebrations spread consistently, there is consistently a celebration that you can appreciate while visiting Madrid. Celebrations add zest and amusement to your days off.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Here is a fast rundown of most famous celebrations of Madrid:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>January</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>January 5: Three Kings\' parade through Madrid is a thrilling celebration. During this celebration, kids get desserts and endowments from the lords. The celebration conveys forward the force of Christmas into the current year. January 6, for the most part, is an occasion.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>February</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Festival Flamenco: A melodic celebration that safeguards the quintessence of Spanish music and runs discontinuously consistently.</li><li>La Candaleria: This is commended on February 2-3. It is a well known celebration in Madrid that is commended as a result of Jesus\' first visit to a sanctuary in Jerusalem.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>April</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>*Madrid en Danza: This move celebration traverses April 15 to April 30. It has different move shapes and composes various move workshops and shows.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>May</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>*The celebration of San Isodro, Madrid\'s benefactor holy person: This celebration is commended on May 15, with heaps of alcohol and shows. The celebration finishes up with substantial drinking in parks around the city. .</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>June</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No celebration of significant importance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>July</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Bullfighting: This happens on July 14. La Puebla de Montalban and Alvila have bullfighting and melodic celebrations for a huge scope.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Eminent</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Local celebrations in La Latina and Lavapies.</li><li>Bull-running in Cuellar, close to Madrid.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>September</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Fiesta de la Virgen de la Vega: This celebration remembers the Virgin Mary.</li><li>Toro de la Vega: During this celebration, a bull is yielded and it originates before the genuine bullfighting season.</li><li>Noche en Blanco: This is where every single social movement are sorted out together around the same time.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>October</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Festival de Otoño: This celebration is hung on Oct 11 as a mixture of all the performing expressions. It is a much anticipated celebration of Madrid.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>November</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Todos los Santos: This is additionally called All Saints\' Day, as families visit the graves of their friends and family and leave blossoms in their memory.</li><li>Almudena Day: This celebration honors Almudena, a supporter holy person of Madrid.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>December</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Noche Buena (Christmas Eve): This is an exciting family night when the relatives celebrate together. Most eateries are shut during this time.</li><li>Christmas Day: This day is brimming with joy and festivities.</li><li>New Year\'s Eve: Another family night where a custom of eating 12 grapes is seen at the stroke of 12 PM.</li></ul>\n<!-- /wp:list -->','About Us','','publish','closed','closed','','about-us','','','2020-06-15 09:21:27','2020-06-15 09:21:27','',0,'http://andoenredando.es/?page_id=16',0,'page','',0),(17,1,'2020-06-15 09:21:25','2020-06-15 09:21:25','<!-- wp:paragraph -->\n<p>Celebrations are the best an ideal opportunity to visit a place of interest, particularly energetic urban communities like Madrid. It resembles venturing into a universe of social practices and novel convictions. The superb thing about visiting Madrid during celebrations is that you can cooperate at an individual level with local people. Celebrations of Madrid mirror the genuine substance of its kin with their bubbly soul.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>During celebrations, Madrid is about energy and dynamic support of individuals as they appreciate in joy. Local people crowd the niches and corners of the city, drawing out the substance of their customs.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Mainstream Festivals of Madrid</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>With a considerable lot of celebrations spread consistently, there is consistently a celebration that you can appreciate while visiting Madrid. Celebrations add zest and amusement to your days off.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Here is a fast rundown of most famous celebrations of Madrid:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>January</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>January 5: Three Kings\' parade through Madrid is a thrilling celebration. During this celebration, kids get desserts and endowments from the lords. The celebration conveys forward the force of Christmas into the current year. January 6, for the most part, is an occasion.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>February</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Festival Flamenco: A melodic celebration that safeguards the quintessence of Spanish music and runs discontinuously consistently.</li><li>La Candaleria: This is commended on February 2-3. It is a well known celebration in Madrid that is commended as a result of Jesus\' first visit to a sanctuary in Jerusalem.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>April</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>*Madrid en Danza: This move celebration traverses April 15 to April 30. It has different move shapes and composes various move workshops and shows.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>May</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>*The celebration of San Isodro, Madrid\'s benefactor holy person: This celebration is commended on May 15, with heaps of alcohol and shows. The celebration finishes up with substantial drinking in parks around the city. .</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>June</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No celebration of significant importance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>July</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Bullfighting: This happens on July 14. La Puebla de Montalban and Alvila have bullfighting and melodic celebrations for a huge scope.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Eminent</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Local celebrations in La Latina and Lavapies.</li><li>Bull-running in Cuellar, close to Madrid.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>September</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Fiesta de la Virgen de la Vega: This celebration remembers the Virgin Mary.</li><li>Toro de la Vega: During this celebration, a bull is yielded and it originates before the genuine bullfighting season.</li><li>Noche en Blanco: This is where every single social movement are sorted out together around the same time.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>October</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Festival de Otoño: This celebration is hung on Oct 11 as a mixture of all the performing expressions. It is a much anticipated celebration of Madrid.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>November</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Todos los Santos: This is additionally called All Saints\' Day, as families visit the graves of their friends and family and leave blossoms in their memory.</li><li>Almudena Day: This celebration honors Almudena, a supporter holy person of Madrid.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>December</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Noche Buena (Christmas Eve): This is an exciting family night when the relatives celebrate together. Most eateries are shut during this time.</li><li>Christmas Day: This day is brimming with joy and festivities.</li><li>New Year\'s Eve: Another family night where a custom of eating 12 grapes is seen at the stroke of 12 PM.</li></ul>\n<!-- /wp:list -->','About Us','','inherit','closed','closed','','16-revision-v1','','','2020-06-15 09:21:25','2020-06-15 09:21:25','',16,'http://andoenredando.es/16-revision-v1/',0,'revision','',0),(18,1,'2020-06-15 09:25:34','2020-06-15 09:25:34','<!-- wp:paragraph -->\n<p>[wpforms id=\"19\" title=\"false\" description=\"false\"]</p>\n<!-- /wp:paragraph -->','Contact Us','','publish','closed','closed','','contact-us','','','2020-06-15 09:25:37','2020-06-15 09:25:37','',0,'http://andoenredando.es/?page_id=18',0,'page','',0),(19,1,'2020-06-15 09:24:49','2020-06-15 09:24:49','{\"id\":\"19\",\"field_id\":3,\"fields\":[{\"id\":\"0\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"required\":\"1\",\"size\":\"large\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},{\"id\":\"1\",\"type\":\"email\",\"label\":\"Email\",\"description\":\"\",\"required\":\"1\",\"size\":\"large\",\"placeholder\":\"\",\"confirmation_placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},{\"id\":\"2\",\"type\":\"textarea\",\"label\":\"Comment or Message\",\"description\":\"\",\"required\":\"1\",\"size\":\"large\",\"placeholder\":\"\",\"limit_count\":\"1\",\"limit_mode\":\"characters\",\"default_value\":\"\",\"css\":\"\"}],\"settings\":{\"form_title\":\"Simple Contact Form\",\"form_desc\":\"\",\"form_class\":\"\",\"submit_text\":\"Submit\",\"submit_text_processing\":\"Sending...\",\"submit_class\":\"\",\"honeypot\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"New Entry: Simple Contact Form\",\"sender_name\":\"www.andoenredando.es\",\"sender_address\":\"{admin_email}\",\"replyto\":\"{field_id=\\\"1\\\"}\",\"message\":\"{all_fields}\"}},\"confirmations\":{\"1\":{\"type\":\"message\",\"message\":\"<p>Thanks for contacting us! We will be in touch with you shortly.<\\/p>\",\"message_scroll\":\"1\",\"page\":\"16\",\"redirect\":\"\"}}},\"meta\":{\"template\":\"contact\"}}','Simple Contact Form','','publish','closed','closed','','simple-contact-form','','','2020-06-15 09:25:20','2020-06-15 09:25:20','',0,'http://andoenredando.es/?post_type=wpforms&#038;p=19',0,'wpforms','',0),(20,1,'2020-06-15 09:25:34','2020-06-15 09:25:34','<!-- wp:paragraph -->\n<p>[wpforms id=\"19\" title=\"false\" description=\"false\"]</p>\n<!-- /wp:paragraph -->','Contact Us','','inherit','closed','closed','','18-revision-v1','','','2020-06-15 09:25:34','2020-06-15 09:25:34','',18,'http://andoenredando.es/18-revision-v1/',0,'revision','',0),(21,1,'2020-06-15 09:27:29','2020-06-15 09:27:29','<!-- wp:paragraph -->\n<p>[wpautoterms company_name] (\"us\", \"we\", or \"our\") operates the [wpautoterms site_name] website (the \"Service\").</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This page informs you of our policies regarding the collection, use and disclosure of Personal Information when you use our Service.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We will not use or share your information with anyone except as described in this Privacy Policy.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We use your Personal Information for providing and improving the Service. By using the Service, you agree to the collection and use of information in accordance with this policy. Unless otherwise defined in this Privacy Policy, terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, accessible at [wpautoterms site_url]</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Information Collection And Use</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>While using our Service, we may ask you to provide us with certain personally identifiable information that can be used to contact or identify you. Personally identifiable information (\"Personal Information\") may include, but is not limited to:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Name</li><li>Email address</li><li>Telephone number</li><li>Address</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2>Log Data</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We collect information that your browser sends whenever you visit our Service (\"Log Data\"). This Log Data may include information such as your computer\'s Internet Protocol (\"IP\") address, browser type, browser version, the pages of our Service that you visit, the time and date of your visit, the time spent on those pages and other statistics.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Cookies</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Cookies are files with small amount of data, which may include an anonymous unique identifier. Cookies are sent to your browser from a web site and stored on your computer\'s hard drive.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We use \"cookies\" to collect information. You can instruct your browser to refuse all cookies or to indicate when a cookie is being sent. However, if you do not accept cookies, you may not be able to use some portions of our Service.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Service Providers</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We may employ third party companies and individuals to facilitate our Service, to provide the Service on our behalf, to perform Service-related services or to assist us in analyzing how our Service is used.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>These third parties have access to your Personal Information only to perform these tasks on our behalf and are obligated not to disclose or use it for any other purpose.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Security</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The security of your Personal Information is important to us, but remember that no method of transmission over the Internet, or method of electronic storage is 100% secure. While we strive to use commercially acceptable means to protect your Personal Information, we cannot guarantee its absolute security.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Links To Other Sites</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Our Service may contain links to other sites that are not operated by us. If you click on a third party link, you will be directed to that third party\'s site. We strongly advise you to review the Privacy Policy of every site you visit.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We have no control over, and assume no responsibility for the content, privacy policies or practices of any third party sites or services.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Children\'s Privacy</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Our Service does not address anyone under the age of 18 (\"Children\").</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We do not knowingly collect personally identifiable information from children under 18. If you are a parent or guardian and you are aware that your child has provided us with Personal Information, please contact us. If we discover that a child under 18 has provided us with Personal Information, we will delete such information from our servers immediately.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Compliance With Laws</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We will disclose your Personal Information where required to do so by law or subpoena.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Changes To This Privacy Policy</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We may update our Privacy Policy from time to time. We will notify you of any changes by posting the new Privacy Policy on this page.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You are advised to review this Privacy Policy periodically for any changes. Changes to this Privacy Policy are effective when they are posted on this page.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Contact Us</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>If you have any questions about this Privacy Policy, please contact us.</p>\n<!-- /wp:paragraph -->','Privacy Policy','','publish','closed','closed','','privacy-policy','','','2020-06-15 09:27:30','2020-06-15 09:27:30','',0,'http://andoenredando.es/?page_id=21',0,'page','',0),(22,1,'2020-06-15 09:26:08','2020-06-15 09:26:08','{\"id\":\"22\",\"field_id\":2,\"fields\":[{\"id\":\"0\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"simple\",\"description\":\"\",\"required\":\"1\",\"size\":\"large\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},{\"id\":\"1\",\"type\":\"email\",\"label\":\"Email\",\"description\":\"\",\"required\":\"1\",\"size\":\"large\",\"placeholder\":\"\",\"confirmation_placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"}],\"settings\":{\"form_title\":\"Newsletter Signup Form (ID #22)\",\"form_desc\":\"\",\"form_class\":\"\",\"submit_text\":\"Submit\",\"submit_text_processing\":\"Sending...\",\"submit_class\":\"\",\"honeypot\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"New Newsletter Signup Form (ID #22) Entry\",\"sender_name\":\"www.andoenredando.es\",\"sender_address\":\"{admin_email}\",\"replyto\":\"\",\"message\":\"{all_fields}\"}},\"confirmations\":{\"1\":{\"type\":\"message\",\"message\":\"<p>Thanks for contacting us! We will be in touch with you shortly.<\\/p>\",\"message_scroll\":\"1\",\"page\":\"16\",\"redirect\":\"\"}}},\"meta\":{\"template\":\"subscribe\"}}','Newsletter Signup Form (ID #22)','','publish','closed','closed','','newsletter-signup-form-2','','','2020-06-15 09:26:30','2020-06-15 09:26:30','',0,'http://andoenredando.es/?post_type=wpforms&#038;p=22',0,'wpforms','',0),(27,1,'2020-06-15 09:27:29','2020-06-15 09:27:29','<!-- wp:paragraph -->\n<p>[wpautoterms company_name] (\"us\", \"we\", or \"our\") operates the [wpautoterms site_name] website (the \"Service\").</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This page informs you of our policies regarding the collection, use and disclosure of Personal Information when you use our Service.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We will not use or share your information with anyone except as described in this Privacy Policy.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We use your Personal Information for providing and improving the Service. By using the Service, you agree to the collection and use of information in accordance with this policy. Unless otherwise defined in this Privacy Policy, terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, accessible at [wpautoterms site_url]</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Information Collection And Use</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>While using our Service, we may ask you to provide us with certain personally identifiable information that can be used to contact or identify you. Personally identifiable information (\"Personal Information\") may include, but is not limited to:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Name</li><li>Email address</li><li>Telephone number</li><li>Address</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2>Log Data</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We collect information that your browser sends whenever you visit our Service (\"Log Data\"). This Log Data may include information such as your computer\'s Internet Protocol (\"IP\") address, browser type, browser version, the pages of our Service that you visit, the time and date of your visit, the time spent on those pages and other statistics.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Cookies</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Cookies are files with small amount of data, which may include an anonymous unique identifier. Cookies are sent to your browser from a web site and stored on your computer\'s hard drive.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We use \"cookies\" to collect information. You can instruct your browser to refuse all cookies or to indicate when a cookie is being sent. However, if you do not accept cookies, you may not be able to use some portions of our Service.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Service Providers</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We may employ third party companies and individuals to facilitate our Service, to provide the Service on our behalf, to perform Service-related services or to assist us in analyzing how our Service is used.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>These third parties have access to your Personal Information only to perform these tasks on our behalf and are obligated not to disclose or use it for any other purpose.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Security</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The security of your Personal Information is important to us, but remember that no method of transmission over the Internet, or method of electronic storage is 100% secure. While we strive to use commercially acceptable means to protect your Personal Information, we cannot guarantee its absolute security.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Links To Other Sites</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Our Service may contain links to other sites that are not operated by us. If you click on a third party link, you will be directed to that third party\'s site. We strongly advise you to review the Privacy Policy of every site you visit.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We have no control over, and assume no responsibility for the content, privacy policies or practices of any third party sites or services.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Children\'s Privacy</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Our Service does not address anyone under the age of 18 (\"Children\").</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We do not knowingly collect personally identifiable information from children under 18. If you are a parent or guardian and you are aware that your child has provided us with Personal Information, please contact us. If we discover that a child under 18 has provided us with Personal Information, we will delete such information from our servers immediately.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Compliance With Laws</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We will disclose your Personal Information where required to do so by law or subpoena.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Changes To This Privacy Policy</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We may update our Privacy Policy from time to time. We will notify you of any changes by posting the new Privacy Policy on this page.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You are advised to review this Privacy Policy periodically for any changes. Changes to this Privacy Policy are effective when they are posted on this page.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Contact Us</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>If you have any questions about this Privacy Policy, please contact us.</p>\n<!-- /wp:paragraph -->','Privacy Policy','','inherit','closed','closed','','21-revision-v1','','','2020-06-15 09:27:29','2020-06-15 09:27:29','',21,'http://andoenredando.es/21-revision-v1/',0,'revision','',0),(28,1,'2020-06-15 09:29:25','2020-06-15 09:29:25','<!-- wp:paragraph -->\n<p>Please read these Terms of Use (\"Terms\", \"Terms of Use\") carefully before using the [wpautoterms site_url] website (the \"Service\") operated by [wpautoterms company_name] (\"us\", \"we\", or \"our\").</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Your access to and use of the Service is conditioned on your acceptance of and compliance with these Terms. These Terms apply to all visitors, users and others who access or use the Service.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>By accessing or using the Service you agree to be bound by these Terms. If you disagree with any part of the terms then you may not access the Service.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Intellectual Property</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The Service and its original content, features and functionality are and will remain the exclusive property of [wpautoterms company_name] and its licensors.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Links To Other Web Sites</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Our Service may contain links to third-party web sites or services that are not owned or controlled by [wpautoterms company_name].</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>[wpautoterms company_name] has no control over, and assumes no responsibility for, the content, privacy policies, or practices of any third party web sites or services. You further acknowledge and agree that [wpautoterms company_name] shall not be responsible or liable, directly or indirectly, for any damage or loss caused or alleged to be caused by or in connection with use of or reliance on any such content, goods or services available on or through any such web sites or services.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We strongly advise you to read the terms and conditions and privacy policies of any third-party web sites or services that you visit.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Disclaimer</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Your use of the Service is at your sole risk. The Service is provided on an \"AS IS\" and \"AS AVAILABLE\" basis. The Service is provided without warranties of any kind, whether express or implied, including, but not limited to, implied warranties of merchantability, fitness for a particular purpose, non-infringement or course of performance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Governing Law</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>These Terms shall be governed and construed in accordance with the laws of Spain without regard to its conflict of law provisions.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Our failure to enforce any right or provision of these Terms will not be considered a waiver of those rights. If any provision of these Terms is held to be invalid or unenforceable by a court, the remaining provisions of these Terms will remain in effect. These Terms constitute the entire agreement between us regarding our Service, and supersede and replace any prior agreements we might have between us regarding the Service.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Changes</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We reserve the right, at our sole discretion, to modify or replace these Terms at any time. If a revision is material we will try to provide at least 30 days notice prior to any new terms taking effect. What constitutes a material change will be determined at our sole discretion.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>By continuing to access or use our Service after those revisions become effective, you agree to be bound by the revised terms. If you do not agree to the new terms, please stop using the Service.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Contact Us</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>If you have any questions about these Terms, please contact us.</p>\n<!-- /wp:paragraph -->','Terms and Conditions','','publish','closed','closed','','terms-and-conditions','','','2020-06-15 09:29:27','2020-06-15 09:29:27','',0,'http://andoenredando.es/?page_id=28',0,'page','',0),(33,1,'2020-06-15 09:29:25','2020-06-15 09:29:25','<!-- wp:paragraph -->\n<p>Please read these Terms of Use (\"Terms\", \"Terms of Use\") carefully before using the [wpautoterms site_url] website (the \"Service\") operated by [wpautoterms company_name] (\"us\", \"we\", or \"our\").</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Your access to and use of the Service is conditioned on your acceptance of and compliance with these Terms. These Terms apply to all visitors, users and others who access or use the Service.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>By accessing or using the Service you agree to be bound by these Terms. If you disagree with any part of the terms then you may not access the Service.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Intellectual Property</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The Service and its original content, features and functionality are and will remain the exclusive property of [wpautoterms company_name] and its licensors.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Links To Other Web Sites</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Our Service may contain links to third-party web sites or services that are not owned or controlled by [wpautoterms company_name].</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>[wpautoterms company_name] has no control over, and assumes no responsibility for, the content, privacy policies, or practices of any third party web sites or services. You further acknowledge and agree that [wpautoterms company_name] shall not be responsible or liable, directly or indirectly, for any damage or loss caused or alleged to be caused by or in connection with use of or reliance on any such content, goods or services available on or through any such web sites or services.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We strongly advise you to read the terms and conditions and privacy policies of any third-party web sites or services that you visit.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Disclaimer</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Your use of the Service is at your sole risk. The Service is provided on an \"AS IS\" and \"AS AVAILABLE\" basis. The Service is provided without warranties of any kind, whether express or implied, including, but not limited to, implied warranties of merchantability, fitness for a particular purpose, non-infringement or course of performance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Governing Law</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>These Terms shall be governed and construed in accordance with the laws of Spain without regard to its conflict of law provisions.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Our failure to enforce any right or provision of these Terms will not be considered a waiver of those rights. If any provision of these Terms is held to be invalid or unenforceable by a court, the remaining provisions of these Terms will remain in effect. These Terms constitute the entire agreement between us regarding our Service, and supersede and replace any prior agreements we might have between us regarding the Service.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Changes</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We reserve the right, at our sole discretion, to modify or replace these Terms at any time. If a revision is material we will try to provide at least 30 days notice prior to any new terms taking effect. What constitutes a material change will be determined at our sole discretion.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>By continuing to access or use our Service after those revisions become effective, you agree to be bound by the revised terms. If you do not agree to the new terms, please stop using the Service.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Contact Us</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>If you have any questions about these Terms, please contact us.</p>\n<!-- /wp:paragraph -->','Terms and Conditions','','inherit','closed','closed','','28-revision-v1','','','2020-06-15 09:29:25','2020-06-15 09:29:25','',28,'http://andoenredando.es/28-revision-v1/',0,'revision','',0),(34,1,'2020-06-15 09:29:56','2020-06-15 09:29:56','','Festival','','publish','closed','closed','','festival','','','2020-06-15 09:29:58','2020-06-15 09:29:58','',0,'http://andoenredando.es/?page_id=34',0,'page','',0),(35,1,'2020-06-15 09:29:56','2020-06-15 09:29:56','','Festival','','inherit','closed','closed','','34-revision-v1','','','2020-06-15 09:29:56','2020-06-15 09:29:56','',34,'http://andoenredando.es/34-revision-v1/',0,'revision','',0),(36,1,'2020-06-15 09:34:12','0000-00-00 00:00:00','','Home','','draft','closed','closed','','','','','2020-06-15 09:34:12','0000-00-00 00:00:00','',0,'http://andoenredando.es/?p=36',1,'nav_menu_item','',0),(37,1,'2020-06-15 09:34:25','2020-06-15 09:34:25',' ','','','publish','closed','closed','','37','','','2020-06-15 09:34:25','2020-06-15 09:34:25','',0,'http://andoenredando.es/?p=37',2,'nav_menu_item','',0),(38,1,'2020-06-15 09:34:25','2020-06-15 09:34:25',' ','','','publish','closed','closed','','38','','','2020-06-15 09:34:25','2020-06-15 09:34:25','',0,'http://andoenredando.es/?p=38',3,'nav_menu_item','',0),(39,1,'2020-06-15 09:34:25','2020-06-15 09:34:25',' ','','','publish','closed','closed','','39','','','2020-06-15 09:34:25','2020-06-15 09:34:25','',0,'http://andoenredando.es/?p=39',4,'nav_menu_item','',0),(40,1,'2020-06-15 09:34:25','2020-06-15 09:34:25',' ','','','publish','closed','closed','','40','','','2020-06-15 09:34:25','2020-06-15 09:34:25','',0,'http://andoenredando.es/?p=40',1,'nav_menu_item','',0),(41,1,'2020-06-15 09:34:25','2020-06-15 09:34:25',' ','','','publish','closed','closed','','41','','','2020-06-15 09:34:25','2020-06-15 09:34:25','',0,'http://andoenredando.es/?p=41',5,'nav_menu_item','',0),(42,1,'2020-06-15 09:34:25','2020-06-15 09:34:25',' ','','','publish','closed','closed','','42','','','2020-06-15 09:34:25','2020-06-15 09:34:25','',0,'http://andoenredando.es/?p=42',6,'nav_menu_item','',0),(45,1,'2020-06-15 09:43:27','2020-06-15 09:43:27','','53','','inherit','closed','closed','','53','','','2020-06-15 09:43:27','2020-06-15 09:43:27','',0,'http://andoenredando.es/wp-content/uploads/2020/06/53.jpg',0,'attachment','image/jpeg',0),(46,1,'2020-06-15 09:46:25','2020-06-15 09:46:25','','54','','inherit','closed','closed','','54','','','2020-06-15 09:46:25','2020-06-15 09:46:25','',0,'http://andoenredando.es/wp-content/uploads/2020/06/54.jpg',0,'attachment','image/jpeg',0),(48,1,'2020-06-15 10:31:09','2020-06-15 10:31:09','','logo13','','inherit','closed','closed','','logo13','','','2020-06-15 10:31:09','2020-06-15 10:31:09','',0,'http://andoenredando.es/wp-content/uploads/2020/06/logo13.png',0,'attachment','image/png',0),(49,1,'2020-06-15 10:31:30','2020-06-15 10:31:30','http://andoenredando.es/wp-content/uploads/2020/06/cropped-logo13.png','cropped-logo13.png','','inherit','closed','closed','','cropped-logo13-png','','','2020-06-15 10:31:30','2020-06-15 10:31:30','',0,'http://andoenredando.es/wp-content/uploads/2020/06/cropped-logo13.png',0,'attachment','image/png',0),(51,1,'2020-06-15 10:40:32','2020-06-15 10:40:32','','logo14','','inherit','closed','closed','','logo14','','','2020-06-15 10:40:32','2020-06-15 10:40:32','',0,'http://andoenredando.es/wp-content/uploads/2020/06/logo14.png',0,'attachment','image/png',0),(52,1,'2020-06-15 10:40:44','2020-06-15 10:40:44','http://andoenredando.es/wp-content/uploads/2020/06/cropped-logo14.png','cropped-logo14.png','','inherit','closed','closed','','cropped-logo14-png','','','2020-06-15 10:40:44','2020-06-15 10:40:44','',0,'http://andoenredando.es/wp-content/uploads/2020/06/cropped-logo14.png',0,'attachment','image/png',0),(54,1,'2020-07-24 08:23:38','2020-07-24 08:23:38','Sin embargo, todos estamos trabajando con un presupuesto, en un sentido u otro y a todos nos gusta pensar que estamos obteniendo el mejor trato posible. Por lo tanto, muchos de nosotros utilizamos los servicios <a href=\"https://www.touchatag.com/es/\">de comparación de precios para Touchatag.es</a> encontrar el mejor precio, pero esta lógica prudente suele desaparecer cuando se trata de empresas que compran en línea.\r\n<h2>Estos sitios web le permiten cumplir las tres reglas de la eficiencia empresarial:</h2>\r\nPor lo tanto, en este artículo voy a investigar el papel que los sitios web de comparación de precios de alta calidad pueden tener cuando se trata de ahorrar dinero a las empresas. En esta nueva era de austeridad y recortes, cada centavo cuenta. Así es como puedes hacer que el dinero de tu negocio vaya un poco más allá.\r\n<ul>\r\n 	<li>Cuando su negocio está buscando comprar cualquier cosa, desde clips hasta impresoras, usted podría encontrarse pensando \"cualquier precio servirá\". Esta forma de pensar cuesta a las empresas 7 mil millones de libras esterlinas al año sólo.</li>\r\n 	<li>Es probable que este sea un cálculo prudente - la realidad es que las empresas de todo el mundo están gastando más de la cuenta cuando hay precios más baratos disponibles.</li>\r\n 	<li>Es poco probable que tenga un proveedor para todo lo que su negocio necesita, todas las compras pequeñas e irregulares, como bolígrafos, papel, calculadoras, posavasos para la sala de reuniones. Estas pequeñas compras se suman a lo largo de los años, y con una planificación cuidadosa, y compras inteligentes, se ahorrará una fortuna.</li>\r\n</ul>\r\nhttps://www.youtube.com/watch?v=FRbn4ImaHwc\r\n<h2>El primer paso es comprar en línea, si no lo necesitas inmediatamente, no pagues la prima.</h2>\r\nAl comprar en línea se reduce la prima de inmediatez y su donación al personal de la tienda, a la calefacción y a una elegante ubicación en la calle principal. Ambas partes están más contentas, el minorista en línea puede controlar las existencias mucho más fácilmente, y usted ahorra dinero.\r\n<h2>El siguiente problema que enfrentas es encontrar la tienda que te pueda dar el mejor precio.</h2>\r\nTodos sabemos que Google no muestra los resultados en orden de precio. Google se rige por complejos algoritmos, relacionados con el número de enlaces que tiene tu sitio web y el volumen de contenido sustantivo único. En el caso de las tiendas online, ambos factores de clasificación son difíciles de encontrar: los sitios de comercio electrónico no están intrínsecamente estructurados para ofrecer un cebo de enlaces para obtener enlaces fáciles y no suelen tener grandes cantidades de contenido único.','Internet está inundada de sitios web de comercio electrónico, lo que significa que cuando se trata de comprar en línea','','publish','closed','closed','','internet-esta-inundada-de-sitios-web-de-comercio-electronico-lo-que-significa-que-cuando-se-trata-de-comprar-en-linea','','','2020-06-19 16:43:24','2020-06-19 16:43:24','',0,'http://andoenredando.es/?p=54',0,'post','',0),(55,1,'2020-06-19 16:42:58','2020-06-19 16:42:58','','8383mbke','','inherit','closed','closed','','8383mbke','','','2020-06-19 16:42:58','2020-06-19 16:42:58','',54,'http://andoenredando.es/wp-content/uploads/2020/06/8383mbke.png',0,'attachment','image/png',0),(56,1,'2020-06-19 16:43:24','2020-06-19 16:43:24','Sin embargo, todos estamos trabajando con un presupuesto, en un sentido u otro y a todos nos gusta pensar que estamos obteniendo el mejor trato posible. Por lo tanto, muchos de nosotros utilizamos los servicios <a href=\"https://www.touchatag.com/es/\">de comparación de precios para Touchatag.es</a> encontrar el mejor precio, pero esta lógica prudente suele desaparecer cuando se trata de empresas que compran en línea.\r\n<h2>Estos sitios web le permiten cumplir las tres reglas de la eficiencia empresarial:</h2>\r\nPor lo tanto, en este artículo voy a investigar el papel que los sitios web de comparación de precios de alta calidad pueden tener cuando se trata de ahorrar dinero a las empresas. En esta nueva era de austeridad y recortes, cada centavo cuenta. Así es como puedes hacer que el dinero de tu negocio vaya un poco más allá.\r\n<ul>\r\n 	<li>Cuando su negocio está buscando comprar cualquier cosa, desde clips hasta impresoras, usted podría encontrarse pensando \"cualquier precio servirá\". Esta forma de pensar cuesta a las empresas 7 mil millones de libras esterlinas al año sólo.</li>\r\n 	<li>Es probable que este sea un cálculo prudente - la realidad es que las empresas de todo el mundo están gastando más de la cuenta cuando hay precios más baratos disponibles.</li>\r\n 	<li>Es poco probable que tenga un proveedor para todo lo que su negocio necesita, todas las compras pequeñas e irregulares, como bolígrafos, papel, calculadoras, posavasos para la sala de reuniones. Estas pequeñas compras se suman a lo largo de los años, y con una planificación cuidadosa, y compras inteligentes, se ahorrará una fortuna.</li>\r\n</ul>\r\nhttps://www.youtube.com/watch?v=FRbn4ImaHwc\r\n<h2>El primer paso es comprar en línea, si no lo necesitas inmediatamente, no pagues la prima.</h2>\r\nAl comprar en línea se reduce la prima de inmediatez y su donación al personal de la tienda, a la calefacción y a una elegante ubicación en la calle principal. Ambas partes están más contentas, el minorista en línea puede controlar las existencias mucho más fácilmente, y usted ahorra dinero.\r\n<h2>El siguiente problema que enfrentas es encontrar la tienda que te pueda dar el mejor precio.</h2>\r\nTodos sabemos que Google no muestra los resultados en orden de precio. Google se rige por complejos algoritmos, relacionados con el número de enlaces que tiene tu sitio web y el volumen de contenido sustantivo único. En el caso de las tiendas online, ambos factores de clasificación son difíciles de encontrar: los sitios de comercio electrónico no están intrínsecamente estructurados para ofrecer un cebo de enlaces para obtener enlaces fáciles y no suelen tener grandes cantidades de contenido único.','Internet está inundada de sitios web de comercio electrónico, lo que significa que cuando se trata de comprar en línea','','inherit','closed','closed','','54-revision-v1','','','2020-06-19 16:43:24','2020-06-19 16:43:24','',54,'http://andoenredando.es/54-revision-v1/',0,'revision','',0),(57,1,'2020-06-19 16:59:03','2020-06-19 16:59:03','http://andoenredando.es/wp-content/uploads/2020/06/cropped-logo14-1.png','cropped-logo14-1.png','','inherit','closed','closed','','cropped-logo14-1-png','','','2020-06-19 16:59:03','2020-06-19 16:59:03','',0,'http://andoenredando.es/wp-content/uploads/2020/06/cropped-logo14-1.png',0,'attachment','image/png',0),(59,1,'2020-07-12 17:01:26','2020-07-12 17:01:26','Pero ha crecido en los últimos diez años a medida que más gente ha accedido a Internet. La razón principal del crecimiento se debe a la velocidad y a la constante mejora de Internet, el almacenamiento de datos y la tecnología de transferencia. Los sitios de comparación pueden ahora recoger datos directamente de una selección de diferentes sitios web de vendedores al mismo tiempo y mostrarlos para que usted encuentre el <a href=\"https://www.p4r.es\">mejor precio de mini prestamos instante.</a>\r\n<h2>Las compras en línea ofrecen a los clientes la comodidad de comprar desde la comodidad de su casa a un ritmo que les conviene.</h2>\r\nLe permite hacer todo lo necesario sin sentirse presionado por el personal de ventas. Cuando haya encontrado el precio más bajo, tendrá que comparar todos los artículos en base a sus gastos de envío y precio. Sólo porque cualquier artículo parezca barato puede ser más caro cuando se le añaden los gastos de envío. Necesitas considerar estos cargos para encontrar el mejor <a href=\"https://www.p4r.es/minicreditos/prestamo-100-euros/\">precio de prestamos 100 euros en linea.</a>\r\n<h2>Los productos que se comparan en estos sitios abarcan una enorme gama de productos y servicios para el consumidor,</h2>\r\ncomo proveedores de servicios públicos, los mejores prestamistas hipotecarios, vacaciones, préstamos personales, seguro médico, seguro de coche, seguro de vida, ofertas de tarjetas de crédito más bajas, productos de uso diario de su supermercado, artículos eléctricos, artículos para el hogar, etc.\r\n<ul>\r\n 	<li>Las estadísticas actuales sugieren que gastamos más de mil millones de libras al año y estiman que más de seis millones de visitantes utilizan regularmente los sitios de comparación de precios cada mes.</li>\r\n 	<li>Los sitios de comparación de precios le permiten ver muchos artículos o servicios diferentes juntos. Esto le ahorra tiempo y dinero ya que puede buscar la oferta más barata al precio más bajo.</li>\r\n 	<li>No tienes que comprar nada de los sitios de comparación que te muestran. Lo mejor de todo es que puedes tomarte tu tiempo para buscar el producto o servicio que estás buscando y recordar que estos sitios son una forma de ahorrar dinero.</li>\r\n</ul>','La industria de comparación de precios ha existido por cerca de dos décadas','','publish','closed','closed','','la-industria-de-comparacion-de-precios-ha-existido-por-cerca-de-dos-decadas','','','2020-06-19 17:23:04','2020-06-19 17:23:04','',0,'http://andoenredando.es/?p=59',0,'post','',0),(60,1,'2020-06-19 17:22:59','2020-06-19 17:22:59','','b7usj','','inherit','closed','closed','','b7usj','','','2020-06-19 17:22:59','2020-06-19 17:22:59','',59,'http://andoenredando.es/wp-content/uploads/2020/06/b7usj.jpg',0,'attachment','image/jpeg',0),(61,1,'2020-06-19 17:23:04','2020-06-19 17:23:04','Pero ha crecido en los últimos diez años a medida que más gente ha accedido a Internet. La razón principal del crecimiento se debe a la velocidad y a la constante mejora de Internet, el almacenamiento de datos y la tecnología de transferencia. Los sitios de comparación pueden ahora recoger datos directamente de una selección de diferentes sitios web de vendedores al mismo tiempo y mostrarlos para que usted encuentre el <a href=\"https://www.p4r.es\">mejor precio de mini prestamos instante.</a>\r\n<h2>Las compras en línea ofrecen a los clientes la comodidad de comprar desde la comodidad de su casa a un ritmo que les conviene.</h2>\r\nLe permite hacer todo lo necesario sin sentirse presionado por el personal de ventas. Cuando haya encontrado el precio más bajo, tendrá que comparar todos los artículos en base a sus gastos de envío y precio. Sólo porque cualquier artículo parezca barato puede ser más caro cuando se le añaden los gastos de envío. Necesitas considerar estos cargos para encontrar el mejor <a href=\"https://www.p4r.es/minicreditos/prestamo-100-euros/\">precio de prestamos 100 euros en linea.</a>\r\n<h2>Los productos que se comparan en estos sitios abarcan una enorme gama de productos y servicios para el consumidor,</h2>\r\ncomo proveedores de servicios públicos, los mejores prestamistas hipotecarios, vacaciones, préstamos personales, seguro médico, seguro de coche, seguro de vida, ofertas de tarjetas de crédito más bajas, productos de uso diario de su supermercado, artículos eléctricos, artículos para el hogar, etc.\r\n<ul>\r\n 	<li>Las estadísticas actuales sugieren que gastamos más de mil millones de libras al año y estiman que más de seis millones de visitantes utilizan regularmente los sitios de comparación de precios cada mes.</li>\r\n 	<li>Los sitios de comparación de precios le permiten ver muchos artículos o servicios diferentes juntos. Esto le ahorra tiempo y dinero ya que puede buscar la oferta más barata al precio más bajo.</li>\r\n 	<li>No tienes que comprar nada de los sitios de comparación que te muestran. Lo mejor de todo es que puedes tomarte tu tiempo para buscar el producto o servicio que estás buscando y recordar que estos sitios son una forma de ahorrar dinero.</li>\r\n</ul>','La industria de comparación de precios ha existido por cerca de dos décadas','','inherit','closed','closed','','59-revision-v1','','','2020-06-19 17:23:04','2020-06-19 17:23:04','',59,'http://andoenredando.es/59-revision-v1/',0,'revision','',0),(65,1,'2021-06-23 11:45:02','2021-06-23 11:45:02','Las finanzas descentralizadas (DeFi) y los activos relacionados con ellas han aumentado no solo en precio sino también en la actividad del mercado, incluidas las cotizaciones y el volumen en algunas de las bolsas centralizadas más líquidas y establecidas. El volumen en algunos de los intercambios descentralizados más grandes ha crecido en un momento en que la actividad de los tokens nativos de estos intercambios y servicios de préstamo ha aumentado en sus contrapartes más centralizadas.\r\n<ul>\r\n 	<li>Esto los ha colocado en la zona de captación de CoinDesk 20, que clasifica los activos más negociados en criptografía, medidos por el volumen en dólares en intercambios confiables. Los principales activos de DeFi por volumen están remodelando la lista de abajo hacia arriba. <a href=\"https://www.prasm.io/es/prevision-ripple/\">prediccion precio ripple</a> son positivos.</li>\r\n</ul>\r\nhttps://youtu.be/m_F-Lb81Lo4\r\n<h3>Gráfico de barras del CoinDesk 20 recientemente actualizado por volumen Q4 + Q1.</h3>\r\nLa última actualización trimestral de la lista, que se puso en marcha el lunes 26 de abril, según los datos de volumen del primer y cuarto trimestre, incorpora siete nuevos activos: aave (+ 10,11%), filecoin (FIL, + 2,7%), el gráfico (GRT , + 5.82%), nucypher (NU, + 18.87%), polkadot (DOT, + 4.55%), uniswap (UNI, + 10.45%) e YFI (+ 11.24%) (yearn.finance) en la lista de 20 líderes de volumen. Seis de los siete son aplicaciones DeFi o servicios relacionados.\r\n<h2>Aave es el token nativo de un servicio de préstamos descentralizado.</h2>\r\nFilecoin es el token nativo de una aplicación de almacenamiento de datos descentralizada.\r\n<ul>\r\n 	<li>Graph es el token nativo de un servicio de datos blockchain que comercializa su oferta para proyectos DeFi.</li>\r\n 	<li>NuCypher es una aplicación de privacidad, diseñada para permitir a los usuarios cifrar los datos compartidos a través de aplicaciones descentralizadas.</li>\r\n 	<li>Polkadot es una plataforma de contrato inteligente diseñada para integrar múltiples cadenas de bloques subsidiarias.</li>\r\n 	<li>Uniswap es el token nativo de un intercambio descentralizado y un creador de mercado automatizado.</li>\r\n 	<li>Yearn.finance es el token nativo de un servicio de préstamos descentralizado.</li>\r\n</ul>\r\nAave, the graph, nucypher, uniswap y yearn.finance son tokens ERC-20 que se ejecutan en la cadena de bloques Ethereum. Filecoin y Polkadot ejecutan sus tokens y sus servicios en sus respectivas cadenas de bloques. <a href=\"https://www.prasm.io/es/prevision-ethereum/\">Ethereum prevision</a> son positivos.\r\n\r\nMuchos de estos activos, especialmente los de la categoría DeFi, son adiciones relativamente nuevas a los intercambios de componentes utilizados para clasificar la lista CoinDesk 20. No obstante, su volumen ha crecido rápidamente. Algunos están ingresando tarde a la lista, excluidos anteriormente debido a un error en los cálculos. (Vea abajo.)\r\n\r\nLos siete nuevos activos reemplazan a ATOM de Cardano (+ 3.42%), dai (-0.01%), ethereum classic (ETC, + 5.66%), kyber network (KNC, + 19.38%), omg network (OMG, + 7.06%), orquídea (OXT, + 7,54%) y 0x (ZRX, + 19,32%).\r\n<h3>CoinDesk 20 es una lista de activos digitales centrales que constituyen aproximadamente el 99% del mercado por volumen, no un índice.</h3>\r\nSu metodología utiliza datos de volumen de ocho intercambios, compilados por Nomics. Los ocho intercambios fueron seleccionados, examinados y verificados por los tres de un trío de estudios sobre volumen falso y verificable, publicados en 2019 y 2020. Son: Bitfinex, bitFlyer, Bitstamp, Coinbase, Gemini, itBit, Kraken y Poloniex. Puede encontrar información sobre los índices de CoinDesk aquí. Nota: Polkadot, uniswap y yearn.finance deberían haberse incluido en la actualización del primer trimestre de 2021 de CoinDesk 20, pero se omitieron debido a un error en el cálculo del último trimestre.','DeFi cambia la forma de CoinDesk 20, El reciente aumento en la actividad de DeFi está alterando el mercado de las criptomonedas.','','publish','closed','closed','','defi-cambia-la-forma-de-coindesk-20-el-reciente-aumento-en-la-actividad-de-defi-esta-alterando-el-mercado-de-las-criptomonedas','','','2021-06-03 14:45:55','2021-06-03 14:45:55','',0,'http://andoenredando.es/?p=65',0,'post','',0),(66,1,'2021-06-03 14:45:55','2021-06-03 14:45:55','Las finanzas descentralizadas (DeFi) y los activos relacionados con ellas han aumentado no solo en precio sino también en la actividad del mercado, incluidas las cotizaciones y el volumen en algunas de las bolsas centralizadas más líquidas y establecidas. El volumen en algunos de los intercambios descentralizados más grandes ha crecido en un momento en que la actividad de los tokens nativos de estos intercambios y servicios de préstamo ha aumentado en sus contrapartes más centralizadas.\r\n<ul>\r\n 	<li>Esto los ha colocado en la zona de captación de CoinDesk 20, que clasifica los activos más negociados en criptografía, medidos por el volumen en dólares en intercambios confiables. Los principales activos de DeFi por volumen están remodelando la lista de abajo hacia arriba. <a href=\"https://www.prasm.io/es/prevision-ripple/\">prediccion precio ripple</a> son positivos.</li>\r\n</ul>\r\nhttps://youtu.be/m_F-Lb81Lo4\r\n<h3>Gráfico de barras del CoinDesk 20 recientemente actualizado por volumen Q4 + Q1.</h3>\r\nLa última actualización trimestral de la lista, que se puso en marcha el lunes 26 de abril, según los datos de volumen del primer y cuarto trimestre, incorpora siete nuevos activos: aave (+ 10,11%), filecoin (FIL, + 2,7%), el gráfico (GRT , + 5.82%), nucypher (NU, + 18.87%), polkadot (DOT, + 4.55%), uniswap (UNI, + 10.45%) e YFI (+ 11.24%) (yearn.finance) en la lista de 20 líderes de volumen. Seis de los siete son aplicaciones DeFi o servicios relacionados.\r\n<h2>Aave es el token nativo de un servicio de préstamos descentralizado.</h2>\r\nFilecoin es el token nativo de una aplicación de almacenamiento de datos descentralizada.\r\n<ul>\r\n 	<li>Graph es el token nativo de un servicio de datos blockchain que comercializa su oferta para proyectos DeFi.</li>\r\n 	<li>NuCypher es una aplicación de privacidad, diseñada para permitir a los usuarios cifrar los datos compartidos a través de aplicaciones descentralizadas.</li>\r\n 	<li>Polkadot es una plataforma de contrato inteligente diseñada para integrar múltiples cadenas de bloques subsidiarias.</li>\r\n 	<li>Uniswap es el token nativo de un intercambio descentralizado y un creador de mercado automatizado.</li>\r\n 	<li>Yearn.finance es el token nativo de un servicio de préstamos descentralizado.</li>\r\n</ul>\r\nAave, the graph, nucypher, uniswap y yearn.finance son tokens ERC-20 que se ejecutan en la cadena de bloques Ethereum. Filecoin y Polkadot ejecutan sus tokens y sus servicios en sus respectivas cadenas de bloques. <a href=\"https://www.prasm.io/es/prevision-ethereum/\">Ethereum prevision</a> son positivos.\r\n\r\nMuchos de estos activos, especialmente los de la categoría DeFi, son adiciones relativamente nuevas a los intercambios de componentes utilizados para clasificar la lista CoinDesk 20. No obstante, su volumen ha crecido rápidamente. Algunos están ingresando tarde a la lista, excluidos anteriormente debido a un error en los cálculos. (Vea abajo.)\r\n\r\nLos siete nuevos activos reemplazan a ATOM de Cardano (+ 3.42%), dai (-0.01%), ethereum classic (ETC, + 5.66%), kyber network (KNC, + 19.38%), omg network (OMG, + 7.06%), orquídea (OXT, + 7,54%) y 0x (ZRX, + 19,32%).\r\n<h3>CoinDesk 20 es una lista de activos digitales centrales que constituyen aproximadamente el 99% del mercado por volumen, no un índice.</h3>\r\nSu metodología utiliza datos de volumen de ocho intercambios, compilados por Nomics. Los ocho intercambios fueron seleccionados, examinados y verificados por los tres de un trío de estudios sobre volumen falso y verificable, publicados en 2019 y 2020. Son: Bitfinex, bitFlyer, Bitstamp, Coinbase, Gemini, itBit, Kraken y Poloniex. Puede encontrar información sobre los índices de CoinDesk aquí. Nota: Polkadot, uniswap y yearn.finance deberían haberse incluido en la actualización del primer trimestre de 2021 de CoinDesk 20, pero se omitieron debido a un error en el cálculo del último trimestre.','DeFi cambia la forma de CoinDesk 20, El reciente aumento en la actividad de DeFi está alterando el mercado de las criptomonedas.','','inherit','closed','closed','','65-revision-v1','','','2021-06-03 14:45:55','2021-06-03 14:45:55','',65,'http://andoenredando.es/?p=66',0,'revision','',0),(68,1,'2021-08-27 11:59:39','2021-08-27 11:59:39','<p>Muchas veces, cuando un piloto de NASCAR en realidad no est&aacute; compitiendo, se puede encontrar al aire libre en alg&uacute;n lugar; caza, pesca, carreras en otra serie, quiz&aacute;s trabajando en una granja.</p>\r\n<h2>El piloto de NASCAR Landon Cassill es un poco diferente.</h2>\r\n<p>Cuando no est&aacute; compitiendo en una pista real, se puede encontrar a Iowan de 31 a&ntilde;os compitiendo en l&iacute;nea entre quienes decidan unirse a &eacute;l, la mayor&iacute;a de las veces transmiti&eacute;ndose &eacute;l mismo en \"Twitch\", una plataforma en l&iacute;nea que permite que otros lo vean.</p>\r\n<p>El caso es que Cassill es parte de una generaci&oacute;n de gente m&aacute;s joven que vive gran parte de su vida en la superautopista de la informaci&oacute;n, tambi&eacute;n conocida como Internet. No deber&iacute;a sorprendernos entonces que Cassill sepa mucho sobre las criptomonedas, la alguna vez misteriosa forma de dinero que para muchos de nosotros no es m&aacute;s que \"dinero m&aacute;gico\". Las criptomonedas se componen de un grupo de n&uacute;meros que viven en \"billeteras digitales\" en bloques en una \"cadena de bloques\" en un \"nodo\" y se pueden \"extraer\".</p>\r\n<h2>Y Cassill lo sabe todo</h2>\r\n<p>Ha estado incursionando en las criptomonedas durante bastante tiempo e incluso las ha \"explotado\". Recientemente, sin embargo, ha comenzado a hacer algo m&aacute;s con las criptomonedas. Ver&aacute;, Landon Cassill es el primer piloto de NASCAR en obtener una plataforma de criptomonedas para patrocinar el autom&oacute;vil que compite en la serie Xfinity de NASCAR para JD Motorsports utilizando criptomonedas para pagar el patrocinio. Y eso es algo muy importante.</p>\r\n<p>&ldquo;Lo he cambiado. Lo compr&eacute;, lo sostuve, lo extraje &rdquo;, dijo Cassill. \"Pero hace un par de a&ntilde;os, realmente decid&iacute; que, adem&aacute;s de ser parte de mi cartera personal, quer&iacute;a construir una red en el espacio\".</p>\r\n<p>https://youtu.be/Xe8DBuBRj4o</p>\r\n<p>El patrocinio es con Voyager Digital, que opera una plataforma de comercio de criptoactivos. Cassill conoci&oacute; al CEO Steve Ehrlich hace un par de a&ntilde;os en una conferencia de cifrado y los dos se hicieron amigos. Fue esta amistad la que condujo a la asociaci&oacute;n.</p>\r\n<p>&ldquo;Parece que el espacio se ha vuelto cada vez m&aacute;s grande y cada vez m&aacute;s activo&rdquo;, dijo Cassill. \"Y ha madurado hasta un punto en el que las empresas est&aacute;n preparadas para algo como el patrocinio general de un equipo deportivo o una carrera\". <a href=\"https://cryptofriends.io/es/tron-precio\">Tron precio</a> es positivo.</p>\r\n<h2>\"El momento es perfecto para ello\".</h2>\r\n<p>Sin bancos centralizados que se aferren a las criptomonedas, ha sido el Salvaje Oeste en el espacio de las criptomonedas en los &uacute;ltimos a&ntilde;os. Pero ese espacio est&aacute; empezando a ser domesticado. Voyager es una de las plataformas m&aacute;s nuevas, b&aacute;sicamente una firma de corretaje, que permite a los usuarios construir una cartera de diferentes formas de criptomonedas. Est&aacute; abriendo el mundo una vez misterioso a m&aacute;s y m&aacute;s personas, incluidas aquellas que quiz&aacute;s no se sientan muy c&oacute;modas intercambiando \"dinero m&aacute;gico\".</p>\r\n<p>\"Es f&aacute;cil para alguien que no sabe mucho entenderlo\", dijo Cassill. &ldquo;Para que yo les diga a mis padres o ya sabes, mi abuela, quien la &uacute;ltima vez que Bitcoin estaba en $ 60,000 me llam&oacute; y me pregunt&oacute;, \'&iquest;C&oacute;mo le fue a mi Bitcoin?\' Me toma dos segundos copiar y pegar un enlace de invitaci&oacute;n a Voyager y ella est&aacute; en la plataforma en un segundo \".</p>\r\n<p>Y esa plataforma trae algo que Cassill ha estado haciendo en Internet en un c&iacute;rculo completo, como en el c&iacute;rculo que es una pista de carreras.</p>\r\n<p>&nbsp;\"Para m&iacute;, esa es una alineaci&oacute;n perfecta para algo en lo que ya he invertido, pero tambi&eacute;n complementa mi carrera como piloto de carreras\".</p>\r\n<p>Sin embargo, una cosa por la que se conoce el mercado de las criptomonedas es la volatilidad, el valor puede variar enormemente. Eso es algo que Cassill dice que no es un problema con Voyager y plataformas similares.</p>\r\n<p>\"S&iacute;, es un mercado activo\", dijo Cassill. Pero agrega: \"Al igual que si tiene una acci&oacute;n o cualquier otra cosa, cripto, Bitcoin, moneda ligera, Ethereum, todos van hacia arriba y hacia abajo\".</p>\r\n<h2>Ganar intereses sobre participaciones</h2>\r\n<p>\"Una cosa que es realmente asombrosa acerca de la Voyager es que usted gana intereses sobre sus propiedades\", dijo. &ldquo;Y no solo como un poco de inter&eacute;s, como tener efectivo en el banco. Creo que con Bitcoin, ganas como un seis y cuarto por ciento de inter&eacute;s. Y si tienes su token nativo, el token Voyager, una cierta cantidad, te dar&aacute;n una bonificaci&oacute;n del 1%. Puede ganar entre un seis y un 9% de inter&eacute;s, un 10% de inter&eacute;s, de hecho, creo que en algunos tokens simplemente manteni&eacute;ndolo en su cuenta. Eso es bastante asombroso \".</p>\r\n<p>&ldquo;Me refiero a un chico criptogr&aacute;fico; Sostengo mi carpeta personal. Mucha gente retrasa los intercambios. Entonces, para aquellos de ustedes que est&eacute;n dispuestos a mantener unintercambiar o querer ver que su criptomoneda obtenga alg&uacute;n rendimiento, incluso cuando el mercado est&aacute; subiendo y bajando, es una excelente manera de, supongo, cubrir el mercado \". <a href=\"https://cryptofriends.io/es\">Cryptofriends.io</a> es positivo.</p>\r\n<p>Aferrarse entonces es la mejor manera de que las criptomonedas valgan la pena.</p>\r\n<p>\"Hemos visto el cambio de precio, oscila entre un 10 y un 15% a la vez\", dijo Cassill. &ldquo;Definitivamente puede ser un mercado vol&aacute;til. Pero quiero decir, si tiene un Bitcoin en su cuenta Voyager, ese Bitcoin est&aacute; ganando una tasa de inter&eacute;s anual de seis y un cuarto por ciento, eso no es nada para estornudar \".</p>\r\n<p>Es obvio que Cassill es un apasionado del mercado de las criptomonedas y disfruta educar a otros sobre el mundo que alguna vez fue misterioso. Cassill ha visto c&oacute;mo ha crecido el inter&eacute;s en el mercado de las criptomonedas y es una gran parte del patrocinio.</p>\r\n<h2>Algo que no le importa en absoluto.</h2>\r\n<p>\"Es divertido vincular cosas de otros aspectos de mi vida a las carreras\", dijo Cassill. &ldquo;Y creo que realmente lo que hace es fortalecer mi comunidad y fortalecer la comunidad de Voyager. Porque eso es algo realmente fuerte sobre las criptomonedas: la comunidad. Y Voyager, creo que una gran parte del patrocinio es esa comunidad y c&oacute;mo pueden aprovechar la comunidad de NASCAR y realmente simplemente brindar un buen servicio \".</p>\r\n<p>Si bien el patrocinio puede ser algo nuevo en el deporte, los contratos no fueron diferentes a cualquier otro acuerdo de patrocinio. Y el proceso de convertir la criptomoneda en el efectivo necesario para pagar las facturas del equipo de carreras no es tan dif&iacute;cil, dijo Cassill.</p>\r\n<p>\"Afortunadamente, en la plataforma de corretaje de Voyager puedo liquidar la criptograf&iacute;a que necesito y enviarla directamente a mi cuenta bancaria\", dijo Cassill. &ldquo;El patrocinio se paga &iacute;ntegramente en criptomonedas. Eso es parte de este patrocinio. Y a partir de ese momento puedo guardar lo que quiero guardar, guardarlo en mi cuenta Voyager. Pero tambi&eacute;n podr&iacute;a venderlo y tallarme lo que necesito para pagar las facturas. Y, obviamente, ve a correr con &eacute;l \".</p>\r\n<h2>Pit Boss 250 de la serie NASCAR Xfinity</h2>\r\n<p>El auto JD Motorsports de Cassill que est&aacute; compitiendo en Nashville Superspeedway (y corri&oacute; en el Circuito de las Am&eacute;ricas hace varias semanas) no es el primero en tener un patrocinador criptogr&aacute;fico en el cap&oacute; y obtener su financiamiento de la criptomoneda, Stefan Parsons tiene un patrocinio parcial para el misma carrera con Dogecoin. Y Josh Wise tuvo el patrocinio de Dogecoin para una carrera en 2014. Pero el patrocinio de la Voyager no es solo un trato de una o dos carreras; de hecho, es un trato que lo ver&aacute; como patrocinador principal durante el resto de la temporada, con ese patrocinio pagado completamente en criptomonedas; eso es una novedad para NASCAR.</p>\r\n<p>\"He sido un NASCAR el tiempo suficiente, supongo que no cuento nada en este deporte\", dijo Cassill. &ldquo;Pero creo que lo &uacute;nico que probablemente no imagin&eacute; cuando entr&eacute; por primera vez en las criptomonedas; el nivel de profesionalismo con el que lidiar&iacute;a cuando hiciera un patrocinio con una bolsa de corretaje como Voyager, ya sabes, Steve, o como Pam Kramer y todo el equipo all&iacute;. Estas personas son muy buenas personas y son profesionales y estoy emocionado de trabajar con ellos. Porque creo que es una gran marca \".</p>\r\n<p>De hecho, la criptomoneda se est&aacute; volviendo menos misteriosa. Est&aacute; saliendo de la superautopista de la informaci&oacute;n y, gracias a entusiastas, como el piloto de carreras Landon Cassill, va a competir en NASCAR.</p>\r\n','La criptomoneda llega a Nascar a lo grande gracias a Driver','','publish','closed','closed','','la-criptomoneda-llega-a-nascar-a-lo-grande-gracias-a-driver','','','2021-09-22 07:50:36','2021-09-22 07:50:36','',0,'http://andoenredando.es/?p=68',0,'post','',0),(69,1,'2021-09-22 07:50:30','2021-09-22 07:50:30','','pexels-alesia-kozik-6765706','','inherit','closed','closed','','pexels-alesia-kozik-6765706','','','2021-09-22 07:50:30','2021-09-22 07:50:30','',68,'http://andoenredando.es/wp-content/uploads/2021/09/pexels-alesia-kozik-6765706.jpg',0,'attachment','image/jpeg',0),(70,1,'2021-09-22 07:50:36','2021-09-22 07:50:36','<p>Muchas veces, cuando un piloto de NASCAR en realidad no est&aacute; compitiendo, se puede encontrar al aire libre en alg&uacute;n lugar; caza, pesca, carreras en otra serie, quiz&aacute;s trabajando en una granja.</p>\r\n<h2>El piloto de NASCAR Landon Cassill es un poco diferente.</h2>\r\n<p>Cuando no est&aacute; compitiendo en una pista real, se puede encontrar a Iowan de 31 a&ntilde;os compitiendo en l&iacute;nea entre quienes decidan unirse a &eacute;l, la mayor&iacute;a de las veces transmiti&eacute;ndose &eacute;l mismo en \"Twitch\", una plataforma en l&iacute;nea que permite que otros lo vean.</p>\r\n<p>El caso es que Cassill es parte de una generaci&oacute;n de gente m&aacute;s joven que vive gran parte de su vida en la superautopista de la informaci&oacute;n, tambi&eacute;n conocida como Internet. No deber&iacute;a sorprendernos entonces que Cassill sepa mucho sobre las criptomonedas, la alguna vez misteriosa forma de dinero que para muchos de nosotros no es m&aacute;s que \"dinero m&aacute;gico\". Las criptomonedas se componen de un grupo de n&uacute;meros que viven en \"billeteras digitales\" en bloques en una \"cadena de bloques\" en un \"nodo\" y se pueden \"extraer\".</p>\r\n<h2>Y Cassill lo sabe todo</h2>\r\n<p>Ha estado incursionando en las criptomonedas durante bastante tiempo e incluso las ha \"explotado\". Recientemente, sin embargo, ha comenzado a hacer algo m&aacute;s con las criptomonedas. Ver&aacute;, Landon Cassill es el primer piloto de NASCAR en obtener una plataforma de criptomonedas para patrocinar el autom&oacute;vil que compite en la serie Xfinity de NASCAR para JD Motorsports utilizando criptomonedas para pagar el patrocinio. Y eso es algo muy importante.</p>\r\n<p>&ldquo;Lo he cambiado. Lo compr&eacute;, lo sostuve, lo extraje &rdquo;, dijo Cassill. \"Pero hace un par de a&ntilde;os, realmente decid&iacute; que, adem&aacute;s de ser parte de mi cartera personal, quer&iacute;a construir una red en el espacio\".</p>\r\n<p>https://youtu.be/Xe8DBuBRj4o</p>\r\n<p>El patrocinio es con Voyager Digital, que opera una plataforma de comercio de criptoactivos. Cassill conoci&oacute; al CEO Steve Ehrlich hace un par de a&ntilde;os en una conferencia de cifrado y los dos se hicieron amigos. Fue esta amistad la que condujo a la asociaci&oacute;n.</p>\r\n<p>&ldquo;Parece que el espacio se ha vuelto cada vez m&aacute;s grande y cada vez m&aacute;s activo&rdquo;, dijo Cassill. \"Y ha madurado hasta un punto en el que las empresas est&aacute;n preparadas para algo como el patrocinio general de un equipo deportivo o una carrera\". <a href=\"https://cryptofriends.io/es/tron-precio\">Tron precio</a> es positivo.</p>\r\n<h2>\"El momento es perfecto para ello\".</h2>\r\n<p>Sin bancos centralizados que se aferren a las criptomonedas, ha sido el Salvaje Oeste en el espacio de las criptomonedas en los &uacute;ltimos a&ntilde;os. Pero ese espacio est&aacute; empezando a ser domesticado. Voyager es una de las plataformas m&aacute;s nuevas, b&aacute;sicamente una firma de corretaje, que permite a los usuarios construir una cartera de diferentes formas de criptomonedas. Est&aacute; abriendo el mundo una vez misterioso a m&aacute;s y m&aacute;s personas, incluidas aquellas que quiz&aacute;s no se sientan muy c&oacute;modas intercambiando \"dinero m&aacute;gico\".</p>\r\n<p>\"Es f&aacute;cil para alguien que no sabe mucho entenderlo\", dijo Cassill. &ldquo;Para que yo les diga a mis padres o ya sabes, mi abuela, quien la &uacute;ltima vez que Bitcoin estaba en $ 60,000 me llam&oacute; y me pregunt&oacute;, \'&iquest;C&oacute;mo le fue a mi Bitcoin?\' Me toma dos segundos copiar y pegar un enlace de invitaci&oacute;n a Voyager y ella est&aacute; en la plataforma en un segundo \".</p>\r\n<p>Y esa plataforma trae algo que Cassill ha estado haciendo en Internet en un c&iacute;rculo completo, como en el c&iacute;rculo que es una pista de carreras.</p>\r\n<p>&nbsp;\"Para m&iacute;, esa es una alineaci&oacute;n perfecta para algo en lo que ya he invertido, pero tambi&eacute;n complementa mi carrera como piloto de carreras\".</p>\r\n<p>Sin embargo, una cosa por la que se conoce el mercado de las criptomonedas es la volatilidad, el valor puede variar enormemente. Eso es algo que Cassill dice que no es un problema con Voyager y plataformas similares.</p>\r\n<p>\"S&iacute;, es un mercado activo\", dijo Cassill. Pero agrega: \"Al igual que si tiene una acci&oacute;n o cualquier otra cosa, cripto, Bitcoin, moneda ligera, Ethereum, todos van hacia arriba y hacia abajo\".</p>\r\n<h2>Ganar intereses sobre participaciones</h2>\r\n<p>\"Una cosa que es realmente asombrosa acerca de la Voyager es que usted gana intereses sobre sus propiedades\", dijo. &ldquo;Y no solo como un poco de inter&eacute;s, como tener efectivo en el banco. Creo que con Bitcoin, ganas como un seis y cuarto por ciento de inter&eacute;s. Y si tienes su token nativo, el token Voyager, una cierta cantidad, te dar&aacute;n una bonificaci&oacute;n del 1%. Puede ganar entre un seis y un 9% de inter&eacute;s, un 10% de inter&eacute;s, de hecho, creo que en algunos tokens simplemente manteni&eacute;ndolo en su cuenta. Eso es bastante asombroso \".</p>\r\n<p>&ldquo;Me refiero a un chico criptogr&aacute;fico; Sostengo mi carpeta personal. Mucha gente retrasa los intercambios. Entonces, para aquellos de ustedes que est&eacute;n dispuestos a mantener unintercambiar o querer ver que su criptomoneda obtenga alg&uacute;n rendimiento, incluso cuando el mercado est&aacute; subiendo y bajando, es una excelente manera de, supongo, cubrir el mercado \". <a href=\"https://cryptofriends.io/es\">Cryptofriends.io</a> es positivo.</p>\r\n<p>Aferrarse entonces es la mejor manera de que las criptomonedas valgan la pena.</p>\r\n<p>\"Hemos visto el cambio de precio, oscila entre un 10 y un 15% a la vez\", dijo Cassill. &ldquo;Definitivamente puede ser un mercado vol&aacute;til. Pero quiero decir, si tiene un Bitcoin en su cuenta Voyager, ese Bitcoin est&aacute; ganando una tasa de inter&eacute;s anual de seis y un cuarto por ciento, eso no es nada para estornudar \".</p>\r\n<p>Es obvio que Cassill es un apasionado del mercado de las criptomonedas y disfruta educar a otros sobre el mundo que alguna vez fue misterioso. Cassill ha visto c&oacute;mo ha crecido el inter&eacute;s en el mercado de las criptomonedas y es una gran parte del patrocinio.</p>\r\n<h2>Algo que no le importa en absoluto.</h2>\r\n<p>\"Es divertido vincular cosas de otros aspectos de mi vida a las carreras\", dijo Cassill. &ldquo;Y creo que realmente lo que hace es fortalecer mi comunidad y fortalecer la comunidad de Voyager. Porque eso es algo realmente fuerte sobre las criptomonedas: la comunidad. Y Voyager, creo que una gran parte del patrocinio es esa comunidad y c&oacute;mo pueden aprovechar la comunidad de NASCAR y realmente simplemente brindar un buen servicio \".</p>\r\n<p>Si bien el patrocinio puede ser algo nuevo en el deporte, los contratos no fueron diferentes a cualquier otro acuerdo de patrocinio. Y el proceso de convertir la criptomoneda en el efectivo necesario para pagar las facturas del equipo de carreras no es tan dif&iacute;cil, dijo Cassill.</p>\r\n<p>\"Afortunadamente, en la plataforma de corretaje de Voyager puedo liquidar la criptograf&iacute;a que necesito y enviarla directamente a mi cuenta bancaria\", dijo Cassill. &ldquo;El patrocinio se paga &iacute;ntegramente en criptomonedas. Eso es parte de este patrocinio. Y a partir de ese momento puedo guardar lo que quiero guardar, guardarlo en mi cuenta Voyager. Pero tambi&eacute;n podr&iacute;a venderlo y tallarme lo que necesito para pagar las facturas. Y, obviamente, ve a correr con &eacute;l \".</p>\r\n<h2>Pit Boss 250 de la serie NASCAR Xfinity</h2>\r\n<p>El auto JD Motorsports de Cassill que est&aacute; compitiendo en Nashville Superspeedway (y corri&oacute; en el Circuito de las Am&eacute;ricas hace varias semanas) no es el primero en tener un patrocinador criptogr&aacute;fico en el cap&oacute; y obtener su financiamiento de la criptomoneda, Stefan Parsons tiene un patrocinio parcial para el misma carrera con Dogecoin. Y Josh Wise tuvo el patrocinio de Dogecoin para una carrera en 2014. Pero el patrocinio de la Voyager no es solo un trato de una o dos carreras; de hecho, es un trato que lo ver&aacute; como patrocinador principal durante el resto de la temporada, con ese patrocinio pagado completamente en criptomonedas; eso es una novedad para NASCAR.</p>\r\n<p>\"He sido un NASCAR el tiempo suficiente, supongo que no cuento nada en este deporte\", dijo Cassill. &ldquo;Pero creo que lo &uacute;nico que probablemente no imagin&eacute; cuando entr&eacute; por primera vez en las criptomonedas; el nivel de profesionalismo con el que lidiar&iacute;a cuando hiciera un patrocinio con una bolsa de corretaje como Voyager, ya sabes, Steve, o como Pam Kramer y todo el equipo all&iacute;. Estas personas son muy buenas personas y son profesionales y estoy emocionado de trabajar con ellos. Porque creo que es una gran marca \".</p>\r\n<p>De hecho, la criptomoneda se est&aacute; volviendo menos misteriosa. Est&aacute; saliendo de la superautopista de la informaci&oacute;n y, gracias a entusiastas, como el piloto de carreras Landon Cassill, va a competir en NASCAR.</p>\r\n','La criptomoneda llega a Nascar a lo grande gracias a Driver','','inherit','closed','closed','','68-revision-v1','','','2021-09-22 07:50:36','2021-09-22 07:50:36','',68,'http://andoenredando.es/?p=70',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 (5,3,0),(5,4,0),(5,5,0),(5,6,0),(8,3,0),(8,4,0),(8,5,0),(8,6,0),(37,7,0),(38,7,0),(39,7,0),(40,7,0),(41,7,0),(42,7,0),(54,8,0),(59,9,0),(65,8,0),(68,10,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=11 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,2),(4,4,'category','',0,2),(5,5,'category','',0,2),(6,6,'category','',0,2),(7,7,'nav_menu','',0,6),(8,8,'category','',0,2),(9,9,'category','',0,1),(10,10,'category','',0,1);
/*!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=11 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,'Default','default',0),(3,'Blog','blog',0),(4,'News','news',0),(5,'Festival','festival',0),(6,'Entertainment','entertainment',0),(7,'Main menu','main-menu',0),(8,'Consejos','consejos',0),(9,'Prestamistas','prestamistas',0),(10,'Digital valuta','digital-valuta',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=37 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','admin'),(2,1,'first_name','Joanne'),(3,1,'last_name','Holland'),(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'),(16,1,'session_tokens','a:2:{s:64:\"28a0d74e2bc6d02e7c7b09e1c68b4c6b7744ab78f154bd961796ebec3166f196\";a:4:{s:10:\"expiration\";i:1647300725;s:2:\"ip\";s:9:\"127.0.0.1\";s:2:\"ua\";s:60:\"Mozilla/5.0 (compatible; MainWP/4.1.5.1; +http://mainwp.com)\";s:5:\"login\";i:1647127925;}s:64:\"89ba65c8fafe414276c716fa878719117e35bc6a16071acbf10d3f542760fd4e\";a:4:{s:10:\"expiration\";i:1647300725;s:2:\"ip\";s:9:\"127.0.0.1\";s:2:\"ua\";s:60:\"Mozilla/5.0 (compatible; MainWP/4.1.5.1; +http://mainwp.com)\";s:5:\"login\";i:1647127925;}}'),(17,1,'wp_dashboard_quick_press_last_post_id','67'),(18,1,'community-events-location','a:1:{s:2:\"ip\";s:12:\"77.168.162.0\";}'),(19,1,'wp_user-settings','libraryContent=browse&editor=html'),(20,1,'wp_user-settings-time','1632297032'),(21,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\";}'),(22,1,'metaboxhidden_nav-menus','a:3:{i:0;s:30:\"add-post-type-wpautoterms_page\";i:1;s:12:\"add-post_tag\";i:2;s:15:\"add-post_format\";}');
/*!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=3 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,'admin','$P$BLFWzh9s3mCCZBKP9paetZscohhYbi/','admin','[email protected]','http://andoenredando.es','2020-04-19 07:21:32','',0,'Joanne Holland');
/*!40000 ALTER TABLE `wp_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wpforms_tasks_meta`
--

DROP TABLE IF EXISTS `wp_wpforms_tasks_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_wpforms_tasks_meta` (
  `id` bigint NOT NULL AUTO_INCREMENT,
  `action` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `data` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `date` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wpforms_tasks_meta`
--

LOCK TABLES `wp_wpforms_tasks_meta` WRITE;
/*!40000 ALTER TABLE `wp_wpforms_tasks_meta` DISABLE KEYS */;
INSERT INTO `wp_wpforms_tasks_meta` VALUES (1,'wpforms_process_entry_emails_meta_cleanup','Wzg2NDAwXQ==','2020-09-20 01:17:23'),(2,'wpforms_admin_notifications_update','W10=','2021-04-15 09:03:11');
/*!40000 ALTER TABLE `wp_wpforms_tasks_meta` 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  7:33:10