/*M!999999\- enable the sandbox mode */ -- MariaDB dump 10.19 Distrib 10.6.20-MariaDB, for Linux (x86_64) -- -- Host: localhost Database: anet_wp961 -- ------------------------------------------------------ -- Server version 10.6.20-MariaDB-cll-lve /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; /*!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 `wpcs_commentmeta` -- DROP TABLE IF EXISTS `wpcs_commentmeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wpcs_commentmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_id` bigint(20) unsigned NOT NULL DEFAULT 0, `meta_key` varchar(255) DEFAULT NULL, `meta_value` longtext DEFAULT NULL, PRIMARY KEY (`meta_id`), KEY `comment_id` (`comment_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wpcs_commentmeta` -- LOCK TABLES `wpcs_commentmeta` WRITE; /*!40000 ALTER TABLE `wpcs_commentmeta` DISABLE KEYS */; /*!40000 ALTER TABLE `wpcs_commentmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wpcs_comments` -- DROP TABLE IF EXISTS `wpcs_comments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wpcs_comments` ( `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT 0, `comment_author` tinytext NOT NULL, `comment_author_email` varchar(100) NOT NULL DEFAULT '', `comment_author_url` varchar(200) NOT NULL DEFAULT '', `comment_author_IP` varchar(100) NOT NULL DEFAULT '', `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_content` text NOT NULL, `comment_karma` int(11) NOT NULL DEFAULT 0, `comment_approved` varchar(20) NOT NULL DEFAULT '1', `comment_agent` varchar(255) NOT NULL DEFAULT '', `comment_type` varchar(20) NOT NULL DEFAULT 'comment', `comment_parent` bigint(20) unsigned NOT NULL DEFAULT 0, `user_id` bigint(20) unsigned NOT NULL DEFAULT 0, PRIMARY KEY (`comment_ID`), KEY `comment_post_ID` (`comment_post_ID`), KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`), KEY `comment_date_gmt` (`comment_date_gmt`), KEY `comment_parent` (`comment_parent`), KEY `comment_author_email` (`comment_author_email`(10)) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wpcs_comments` -- LOCK TABLES `wpcs_comments` WRITE; /*!40000 ALTER TABLE `wpcs_comments` DISABLE KEYS */; INSERT INTO `wpcs_comments` (`comment_ID`, `comment_post_ID`, `comment_author`, `comment_author_email`, `comment_author_url`, `comment_author_IP`, `comment_date`, `comment_date_gmt`, `comment_content`, `comment_karma`, `comment_approved`, `comment_agent`, `comment_type`, `comment_parent`, `user_id`) VALUES (1,1,'A WordPress Commenter','wapuu@wordpress.example','https://wordpress.org/','','2024-03-15 02:47:16','2024-03-15 02:47:16','Hi, this is a comment.\nTo get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.\nCommenter avatars come from Gravatar.',0,'1','','comment',0,0); /*!40000 ALTER TABLE `wpcs_comments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wpcs_links` -- DROP TABLE IF EXISTS `wpcs_links`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wpcs_links` ( `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `link_url` varchar(255) NOT NULL DEFAULT '', `link_name` varchar(255) NOT NULL DEFAULT '', `link_image` varchar(255) NOT NULL DEFAULT '', `link_target` varchar(25) NOT NULL DEFAULT '', `link_description` varchar(255) NOT NULL DEFAULT '', `link_visible` varchar(20) NOT NULL DEFAULT 'Y', `link_owner` bigint(20) unsigned NOT NULL DEFAULT 1, `link_rating` int(11) NOT NULL DEFAULT 0, `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `link_rel` varchar(255) NOT NULL DEFAULT '', `link_notes` mediumtext NOT NULL, `link_rss` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`link_id`), KEY `link_visible` (`link_visible`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wpcs_links` -- LOCK TABLES `wpcs_links` WRITE; /*!40000 ALTER TABLE `wpcs_links` DISABLE KEYS */; /*!40000 ALTER TABLE `wpcs_links` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wpcs_options` -- DROP TABLE IF EXISTS `wpcs_options`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wpcs_options` ( `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `option_name` varchar(191) NOT NULL DEFAULT '', `option_value` longtext NOT NULL, `autoload` varchar(20) NOT NULL DEFAULT 'yes', PRIMARY KEY (`option_id`), UNIQUE KEY `option_name` (`option_name`), KEY `autoload` (`autoload`) ) ENGINE=MyISAM AUTO_INCREMENT=2268 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wpcs_options` -- LOCK TABLES `wpcs_options` WRITE; /*!40000 ALTER TABLE `wpcs_options` DISABLE KEYS */; INSERT INTO `wpcs_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES (1,'siteurl','https://ecco.anet.cl','yes'),(2,'home','https://ecco.anet.cl','yes'),(3,'blogname','Servidor de Videos y Archivos ECCO','yes'),(4,'blogdescription','Servicio de administrador de Archivos ECCO','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','admin@ecco.anet.cl','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','1','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','1','yes'),(19,'default_comment_status','open','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','1','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','yes'),(29,'rewrite_rules','a:132:{s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:46:\"happyforms-message/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:56:\"happyforms-message/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:76:\"happyforms-message/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:71:\"happyforms-message/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:71:\"happyforms-message/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:52:\"happyforms-message/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:35:\"happyforms-message/([^/]+)/embed/?$\";s:51:\"index.php?happyforms-message=$matches[1]&embed=true\";s:39:\"happyforms-message/([^/]+)/trackback/?$\";s:45:\"index.php?happyforms-message=$matches[1]&tb=1\";s:47:\"happyforms-message/([^/]+)/page/?([0-9]{1,})/?$\";s:58:\"index.php?happyforms-message=$matches[1]&paged=$matches[2]\";s:54:\"happyforms-message/([^/]+)/comment-page-([0-9]{1,})/?$\";s:58:\"index.php?happyforms-message=$matches[1]&cpage=$matches[2]\";s:43:\"happyforms-message/([^/]+)(?:/([0-9]+))?/?$\";s:57:\"index.php?happyforms-message=$matches[1]&page=$matches[2]\";s:35:\"happyforms-message/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"happyforms-message/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"happyforms-message/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"happyforms-message/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"happyforms-message/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"happyforms-message/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:43:\"happyforms-poll/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:53:\"happyforms-poll/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:73:\"happyforms-poll/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:68:\"happyforms-poll/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:68:\"happyforms-poll/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:49:\"happyforms-poll/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:32:\"happyforms-poll/([^/]+)/embed/?$\";s:48:\"index.php?happyforms-poll=$matches[1]&embed=true\";s:36:\"happyforms-poll/([^/]+)/trackback/?$\";s:42:\"index.php?happyforms-poll=$matches[1]&tb=1\";s:44:\"happyforms-poll/([^/]+)/page/?([0-9]{1,})/?$\";s:55:\"index.php?happyforms-poll=$matches[1]&paged=$matches[2]\";s:51:\"happyforms-poll/([^/]+)/comment-page-([0-9]{1,})/?$\";s:55:\"index.php?happyforms-poll=$matches[1]&cpage=$matches[2]\";s:40:\"happyforms-poll/([^/]+)(?:/([0-9]+))?/?$\";s:54:\"index.php?happyforms-poll=$matches[1]&page=$matches[2]\";s:32:\"happyforms-poll/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:42:\"happyforms-poll/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:62:\"happyforms-poll/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"happyforms-poll/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"happyforms-poll/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:38:\"happyforms-poll/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=1\";s:12:\"sitemap\\.xml\";s:24:\"index.php??sitemap=index\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:39:\"index.php?&page_id=12&cpage=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:88:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:53:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/embed/?$\";s:91:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:61:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:2:{i:0;s:33:\"classic-editor/classic-editor.php\";i:1;s:41:\"happyforms-upgrade/happyforms-upgrade.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','twentytwentyfour','yes'),(41,'stylesheet','twentytwentyfour','yes'),(42,'comment_registration','0','yes'),(43,'html_type','text/html','yes'),(44,'use_trackback','0','yes'),(45,'default_role','subscriber','yes'),(46,'db_version','58975','yes'),(47,'uploads_use_yearmonth_folders','1','yes'),(48,'upload_path','','yes'),(49,'blog_public','1','yes'),(50,'default_link_category','2','yes'),(51,'show_on_front','page','yes'),(52,'tag_base','','yes'),(53,'show_avatars','1','yes'),(54,'avatar_rating','G','yes'),(55,'upload_url_path','','yes'),(56,'thumbnail_size_w','150','yes'),(57,'thumbnail_size_h','150','yes'),(58,'thumbnail_crop','1','yes'),(59,'medium_size_w','300','yes'),(60,'medium_size_h','300','yes'),(61,'avatar_default','mystery','yes'),(62,'large_size_w','1024','yes'),(63,'large_size_h','1024','yes'),(64,'image_default_link_type','none','yes'),(65,'image_default_size','','yes'),(66,'image_default_align','','yes'),(67,'close_comments_for_old_posts','0','yes'),(68,'close_comments_days_old','14','yes'),(69,'thread_comments','1','yes'),(70,'thread_comments_depth','5','yes'),(71,'page_comments','0','yes'),(72,'comments_per_page','50','yes'),(73,'default_comments_page','newest','yes'),(74,'comment_order','asc','yes'),(75,'sticky_posts','a:0:{}','yes'),(76,'widget_categories','a:0:{}','yes'),(77,'widget_text','a:0:{}','yes'),(78,'widget_rss','a:0:{}','yes'),(79,'uninstall_plugins','a:0:{}','no'),(80,'timezone_string','','yes'),(81,'page_for_posts','0','yes'),(82,'page_on_front','12','yes'),(83,'default_post_format','0','yes'),(84,'link_manager_enabled','0','yes'),(85,'finished_splitting_shared_terms','1','yes'),(86,'site_icon','0','yes'),(87,'medium_large_size_w','768','yes'),(88,'medium_large_size_h','0','yes'),(89,'wp_page_for_privacy_policy','3','yes'),(90,'show_comments_cookies_opt_in','1','yes'),(91,'admin_email_lifespan','1726022836','yes'),(92,'disallowed_keys','','no'),(93,'comment_previously_approved','1','yes'),(94,'auto_plugin_theme_update_emails','a:0:{}','no'),(95,'auto_update_core_dev','enabled','yes'),(96,'auto_update_core_minor','enabled','yes'),(97,'auto_update_core_major','enabled','yes'),(98,'wp_force_deactivated_plugins','a:0:{}','off'),(99,'wp_attachment_pages_enabled','0','yes'),(100,'initial_db_version','56657','yes'),(101,'wpcs_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:68:{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:23:\"happyforms_manage_forms\";b:1;s:26:\"happyforms_manage_activity\";b:1;s:26:\"happyforms_manage_settings\";b:1;s:25:\"happyforms_manage_coupons\";b:1;s:24:\"happyforms_manage_import\";b:1;s:24:\"happyforms_manage_export\";b:1;s:30:\"happyforms_manage_integrations\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','yes'),(102,'fresh_site','0','off'),(103,'user_count','2','no'),(104,'widget_block','a:6:{i:2;a:1:{s:7:\"content\";s:19:\"\";}i:3;a:1:{s:7:\"content\";s:154:\"

Recent Posts

\";}i:4;a:1:{s:7:\"content\";s:227:\"

Recent Comments

\";}i:5;a:1:{s:7:\"content\";s:146:\"

Archives

\";}i:6;a:1:{s:7:\"content\";s:150:\"

Categories

\";}s:12:\"_multiwidget\";i:1;}','yes'),(105,'sidebars_widgets','a:4:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}s:9:\"sidebar-2\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}s:13:\"array_version\";i:3;}','yes'),(106,'cron','a:9:{i:1739058437;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:1739058643;a:1:{s:40:\"happyforms_remove_unassigned_attachments\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1739069236;a:4:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1739069244;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:1739069245;a:2:{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;}}s:21:\"wp_update_user_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1739069443;a:4:{s:35:\"happyforms_schedule_pending_cleanup\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:53:\"_ttf_product_updater_license_check_happyforms-upgrade\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:36:\"happyforms_schedule_cleanup_sessions\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:35:\"happyforms_schedule_privacy_cleanup\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1739501237;a:1:{s:30:\"wp_delete_temp_updater_backups\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1739587636;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}s:7:\"version\";i:2;}','on'),(107,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(108,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'widget_archives','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(110,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(111,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(112,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(113,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(114,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(115,'widget_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(116,'widget_recent-posts','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(117,'widget_recent-comments','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(118,'widget_tag_cloud','a:1:{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'),(121,'recovery_keys','a:0:{}','off'),(122,'theme_mods_twentytwentyfour','a:1:{s:18:\"custom_css_post_id\";i:-1;}','yes'),(123,'_transient_wp_core_block_css_files','a:2:{s:7:\"version\";s:5:\"6.7.1\";s:5:\"files\";a:540:{i:0;s:23:\"archives/editor-rtl.css\";i:1;s:27:\"archives/editor-rtl.min.css\";i:2;s:19:\"archives/editor.css\";i:3;s:23:\"archives/editor.min.css\";i:4;s:22:\"archives/style-rtl.css\";i:5;s:26:\"archives/style-rtl.min.css\";i:6;s:18:\"archives/style.css\";i:7;s:22:\"archives/style.min.css\";i:8;s:20:\"audio/editor-rtl.css\";i:9;s:24:\"audio/editor-rtl.min.css\";i:10;s:16:\"audio/editor.css\";i:11;s:20:\"audio/editor.min.css\";i:12;s:19:\"audio/style-rtl.css\";i:13;s:23:\"audio/style-rtl.min.css\";i:14;s:15:\"audio/style.css\";i:15;s:19:\"audio/style.min.css\";i:16;s:19:\"audio/theme-rtl.css\";i:17;s:23:\"audio/theme-rtl.min.css\";i:18;s:15:\"audio/theme.css\";i:19;s:19:\"audio/theme.min.css\";i:20;s:21:\"avatar/editor-rtl.css\";i:21;s:25:\"avatar/editor-rtl.min.css\";i:22;s:17:\"avatar/editor.css\";i:23;s:21:\"avatar/editor.min.css\";i:24;s:20:\"avatar/style-rtl.css\";i:25;s:24:\"avatar/style-rtl.min.css\";i:26;s:16:\"avatar/style.css\";i:27;s:20:\"avatar/style.min.css\";i:28;s:21:\"button/editor-rtl.css\";i:29;s:25:\"button/editor-rtl.min.css\";i:30;s:17:\"button/editor.css\";i:31;s:21:\"button/editor.min.css\";i:32;s:20:\"button/style-rtl.css\";i:33;s:24:\"button/style-rtl.min.css\";i:34;s:16:\"button/style.css\";i:35;s:20:\"button/style.min.css\";i:36;s:22:\"buttons/editor-rtl.css\";i:37;s:26:\"buttons/editor-rtl.min.css\";i:38;s:18:\"buttons/editor.css\";i:39;s:22:\"buttons/editor.min.css\";i:40;s:21:\"buttons/style-rtl.css\";i:41;s:25:\"buttons/style-rtl.min.css\";i:42;s:17:\"buttons/style.css\";i:43;s:21:\"buttons/style.min.css\";i:44;s:22:\"calendar/style-rtl.css\";i:45;s:26:\"calendar/style-rtl.min.css\";i:46;s:18:\"calendar/style.css\";i:47;s:22:\"calendar/style.min.css\";i:48;s:25:\"categories/editor-rtl.css\";i:49;s:29:\"categories/editor-rtl.min.css\";i:50;s:21:\"categories/editor.css\";i:51;s:25:\"categories/editor.min.css\";i:52;s:24:\"categories/style-rtl.css\";i:53;s:28:\"categories/style-rtl.min.css\";i:54;s:20:\"categories/style.css\";i:55;s:24:\"categories/style.min.css\";i:56;s:19:\"code/editor-rtl.css\";i:57;s:23:\"code/editor-rtl.min.css\";i:58;s:15:\"code/editor.css\";i:59;s:19:\"code/editor.min.css\";i:60;s:18:\"code/style-rtl.css\";i:61;s:22:\"code/style-rtl.min.css\";i:62;s:14:\"code/style.css\";i:63;s:18:\"code/style.min.css\";i:64;s:18:\"code/theme-rtl.css\";i:65;s:22:\"code/theme-rtl.min.css\";i:66;s:14:\"code/theme.css\";i:67;s:18:\"code/theme.min.css\";i:68;s:22:\"columns/editor-rtl.css\";i:69;s:26:\"columns/editor-rtl.min.css\";i:70;s:18:\"columns/editor.css\";i:71;s:22:\"columns/editor.min.css\";i:72;s:21:\"columns/style-rtl.css\";i:73;s:25:\"columns/style-rtl.min.css\";i:74;s:17:\"columns/style.css\";i:75;s:21:\"columns/style.min.css\";i:76;s:33:\"comment-author-name/style-rtl.css\";i:77;s:37:\"comment-author-name/style-rtl.min.css\";i:78;s:29:\"comment-author-name/style.css\";i:79;s:33:\"comment-author-name/style.min.css\";i:80;s:29:\"comment-content/style-rtl.css\";i:81;s:33:\"comment-content/style-rtl.min.css\";i:82;s:25:\"comment-content/style.css\";i:83;s:29:\"comment-content/style.min.css\";i:84;s:26:\"comment-date/style-rtl.css\";i:85;s:30:\"comment-date/style-rtl.min.css\";i:86;s:22:\"comment-date/style.css\";i:87;s:26:\"comment-date/style.min.css\";i:88;s:31:\"comment-edit-link/style-rtl.css\";i:89;s:35:\"comment-edit-link/style-rtl.min.css\";i:90;s:27:\"comment-edit-link/style.css\";i:91;s:31:\"comment-edit-link/style.min.css\";i:92;s:32:\"comment-reply-link/style-rtl.css\";i:93;s:36:\"comment-reply-link/style-rtl.min.css\";i:94;s:28:\"comment-reply-link/style.css\";i:95;s:32:\"comment-reply-link/style.min.css\";i:96;s:30:\"comment-template/style-rtl.css\";i:97;s:34:\"comment-template/style-rtl.min.css\";i:98;s:26:\"comment-template/style.css\";i:99;s:30:\"comment-template/style.min.css\";i:100;s:42:\"comments-pagination-numbers/editor-rtl.css\";i:101;s:46:\"comments-pagination-numbers/editor-rtl.min.css\";i:102;s:38:\"comments-pagination-numbers/editor.css\";i:103;s:42:\"comments-pagination-numbers/editor.min.css\";i:104;s:34:\"comments-pagination/editor-rtl.css\";i:105;s:38:\"comments-pagination/editor-rtl.min.css\";i:106;s:30:\"comments-pagination/editor.css\";i:107;s:34:\"comments-pagination/editor.min.css\";i:108;s:33:\"comments-pagination/style-rtl.css\";i:109;s:37:\"comments-pagination/style-rtl.min.css\";i:110;s:29:\"comments-pagination/style.css\";i:111;s:33:\"comments-pagination/style.min.css\";i:112;s:29:\"comments-title/editor-rtl.css\";i:113;s:33:\"comments-title/editor-rtl.min.css\";i:114;s:25:\"comments-title/editor.css\";i:115;s:29:\"comments-title/editor.min.css\";i:116;s:23:\"comments/editor-rtl.css\";i:117;s:27:\"comments/editor-rtl.min.css\";i:118;s:19:\"comments/editor.css\";i:119;s:23:\"comments/editor.min.css\";i:120;s:22:\"comments/style-rtl.css\";i:121;s:26:\"comments/style-rtl.min.css\";i:122;s:18:\"comments/style.css\";i:123;s:22:\"comments/style.min.css\";i:124;s:20:\"cover/editor-rtl.css\";i:125;s:24:\"cover/editor-rtl.min.css\";i:126;s:16:\"cover/editor.css\";i:127;s:20:\"cover/editor.min.css\";i:128;s:19:\"cover/style-rtl.css\";i:129;s:23:\"cover/style-rtl.min.css\";i:130;s:15:\"cover/style.css\";i:131;s:19:\"cover/style.min.css\";i:132;s:22:\"details/editor-rtl.css\";i:133;s:26:\"details/editor-rtl.min.css\";i:134;s:18:\"details/editor.css\";i:135;s:22:\"details/editor.min.css\";i:136;s:21:\"details/style-rtl.css\";i:137;s:25:\"details/style-rtl.min.css\";i:138;s:17:\"details/style.css\";i:139;s:21:\"details/style.min.css\";i:140;s:20:\"embed/editor-rtl.css\";i:141;s:24:\"embed/editor-rtl.min.css\";i:142;s:16:\"embed/editor.css\";i:143;s:20:\"embed/editor.min.css\";i:144;s:19:\"embed/style-rtl.css\";i:145;s:23:\"embed/style-rtl.min.css\";i:146;s:15:\"embed/style.css\";i:147;s:19:\"embed/style.min.css\";i:148;s:19:\"embed/theme-rtl.css\";i:149;s:23:\"embed/theme-rtl.min.css\";i:150;s:15:\"embed/theme.css\";i:151;s:19:\"embed/theme.min.css\";i:152;s:19:\"file/editor-rtl.css\";i:153;s:23:\"file/editor-rtl.min.css\";i:154;s:15:\"file/editor.css\";i:155;s:19:\"file/editor.min.css\";i:156;s:18:\"file/style-rtl.css\";i:157;s:22:\"file/style-rtl.min.css\";i:158;s:14:\"file/style.css\";i:159;s:18:\"file/style.min.css\";i:160;s:23:\"footnotes/style-rtl.css\";i:161;s:27:\"footnotes/style-rtl.min.css\";i:162;s:19:\"footnotes/style.css\";i:163;s:23:\"footnotes/style.min.css\";i:164;s:23:\"freeform/editor-rtl.css\";i:165;s:27:\"freeform/editor-rtl.min.css\";i:166;s:19:\"freeform/editor.css\";i:167;s:23:\"freeform/editor.min.css\";i:168;s:22:\"gallery/editor-rtl.css\";i:169;s:26:\"gallery/editor-rtl.min.css\";i:170;s:18:\"gallery/editor.css\";i:171;s:22:\"gallery/editor.min.css\";i:172;s:21:\"gallery/style-rtl.css\";i:173;s:25:\"gallery/style-rtl.min.css\";i:174;s:17:\"gallery/style.css\";i:175;s:21:\"gallery/style.min.css\";i:176;s:21:\"gallery/theme-rtl.css\";i:177;s:25:\"gallery/theme-rtl.min.css\";i:178;s:17:\"gallery/theme.css\";i:179;s:21:\"gallery/theme.min.css\";i:180;s:20:\"group/editor-rtl.css\";i:181;s:24:\"group/editor-rtl.min.css\";i:182;s:16:\"group/editor.css\";i:183;s:20:\"group/editor.min.css\";i:184;s:19:\"group/style-rtl.css\";i:185;s:23:\"group/style-rtl.min.css\";i:186;s:15:\"group/style.css\";i:187;s:19:\"group/style.min.css\";i:188;s:19:\"group/theme-rtl.css\";i:189;s:23:\"group/theme-rtl.min.css\";i:190;s:15:\"group/theme.css\";i:191;s:19:\"group/theme.min.css\";i:192;s:21:\"heading/style-rtl.css\";i:193;s:25:\"heading/style-rtl.min.css\";i:194;s:17:\"heading/style.css\";i:195;s:21:\"heading/style.min.css\";i:196;s:19:\"html/editor-rtl.css\";i:197;s:23:\"html/editor-rtl.min.css\";i:198;s:15:\"html/editor.css\";i:199;s:19:\"html/editor.min.css\";i:200;s:20:\"image/editor-rtl.css\";i:201;s:24:\"image/editor-rtl.min.css\";i:202;s:16:\"image/editor.css\";i:203;s:20:\"image/editor.min.css\";i:204;s:19:\"image/style-rtl.css\";i:205;s:23:\"image/style-rtl.min.css\";i:206;s:15:\"image/style.css\";i:207;s:19:\"image/style.min.css\";i:208;s:19:\"image/theme-rtl.css\";i:209;s:23:\"image/theme-rtl.min.css\";i:210;s:15:\"image/theme.css\";i:211;s:19:\"image/theme.min.css\";i:212;s:29:\"latest-comments/style-rtl.css\";i:213;s:33:\"latest-comments/style-rtl.min.css\";i:214;s:25:\"latest-comments/style.css\";i:215;s:29:\"latest-comments/style.min.css\";i:216;s:27:\"latest-posts/editor-rtl.css\";i:217;s:31:\"latest-posts/editor-rtl.min.css\";i:218;s:23:\"latest-posts/editor.css\";i:219;s:27:\"latest-posts/editor.min.css\";i:220;s:26:\"latest-posts/style-rtl.css\";i:221;s:30:\"latest-posts/style-rtl.min.css\";i:222;s:22:\"latest-posts/style.css\";i:223;s:26:\"latest-posts/style.min.css\";i:224;s:18:\"list/style-rtl.css\";i:225;s:22:\"list/style-rtl.min.css\";i:226;s:14:\"list/style.css\";i:227;s:18:\"list/style.min.css\";i:228;s:22:\"loginout/style-rtl.css\";i:229;s:26:\"loginout/style-rtl.min.css\";i:230;s:18:\"loginout/style.css\";i:231;s:22:\"loginout/style.min.css\";i:232;s:25:\"media-text/editor-rtl.css\";i:233;s:29:\"media-text/editor-rtl.min.css\";i:234;s:21:\"media-text/editor.css\";i:235;s:25:\"media-text/editor.min.css\";i:236;s:24:\"media-text/style-rtl.css\";i:237;s:28:\"media-text/style-rtl.min.css\";i:238;s:20:\"media-text/style.css\";i:239;s:24:\"media-text/style.min.css\";i:240;s:19:\"more/editor-rtl.css\";i:241;s:23:\"more/editor-rtl.min.css\";i:242;s:15:\"more/editor.css\";i:243;s:19:\"more/editor.min.css\";i:244;s:30:\"navigation-link/editor-rtl.css\";i:245;s:34:\"navigation-link/editor-rtl.min.css\";i:246;s:26:\"navigation-link/editor.css\";i:247;s:30:\"navigation-link/editor.min.css\";i:248;s:29:\"navigation-link/style-rtl.css\";i:249;s:33:\"navigation-link/style-rtl.min.css\";i:250;s:25:\"navigation-link/style.css\";i:251;s:29:\"navigation-link/style.min.css\";i:252;s:33:\"navigation-submenu/editor-rtl.css\";i:253;s:37:\"navigation-submenu/editor-rtl.min.css\";i:254;s:29:\"navigation-submenu/editor.css\";i:255;s:33:\"navigation-submenu/editor.min.css\";i:256;s:25:\"navigation/editor-rtl.css\";i:257;s:29:\"navigation/editor-rtl.min.css\";i:258;s:21:\"navigation/editor.css\";i:259;s:25:\"navigation/editor.min.css\";i:260;s:24:\"navigation/style-rtl.css\";i:261;s:28:\"navigation/style-rtl.min.css\";i:262;s:20:\"navigation/style.css\";i:263;s:24:\"navigation/style.min.css\";i:264;s:23:\"nextpage/editor-rtl.css\";i:265;s:27:\"nextpage/editor-rtl.min.css\";i:266;s:19:\"nextpage/editor.css\";i:267;s:23:\"nextpage/editor.min.css\";i:268;s:24:\"page-list/editor-rtl.css\";i:269;s:28:\"page-list/editor-rtl.min.css\";i:270;s:20:\"page-list/editor.css\";i:271;s:24:\"page-list/editor.min.css\";i:272;s:23:\"page-list/style-rtl.css\";i:273;s:27:\"page-list/style-rtl.min.css\";i:274;s:19:\"page-list/style.css\";i:275;s:23:\"page-list/style.min.css\";i:276;s:24:\"paragraph/editor-rtl.css\";i:277;s:28:\"paragraph/editor-rtl.min.css\";i:278;s:20:\"paragraph/editor.css\";i:279;s:24:\"paragraph/editor.min.css\";i:280;s:23:\"paragraph/style-rtl.css\";i:281;s:27:\"paragraph/style-rtl.min.css\";i:282;s:19:\"paragraph/style.css\";i:283;s:23:\"paragraph/style.min.css\";i:284;s:35:\"post-author-biography/style-rtl.css\";i:285;s:39:\"post-author-biography/style-rtl.min.css\";i:286;s:31:\"post-author-biography/style.css\";i:287;s:35:\"post-author-biography/style.min.css\";i:288;s:30:\"post-author-name/style-rtl.css\";i:289;s:34:\"post-author-name/style-rtl.min.css\";i:290;s:26:\"post-author-name/style.css\";i:291;s:30:\"post-author-name/style.min.css\";i:292;s:26:\"post-author/editor-rtl.css\";i:293;s:30:\"post-author/editor-rtl.min.css\";i:294;s:22:\"post-author/editor.css\";i:295;s:26:\"post-author/editor.min.css\";i:296;s:25:\"post-author/style-rtl.css\";i:297;s:29:\"post-author/style-rtl.min.css\";i:298;s:21:\"post-author/style.css\";i:299;s:25:\"post-author/style.min.css\";i:300;s:33:\"post-comments-form/editor-rtl.css\";i:301;s:37:\"post-comments-form/editor-rtl.min.css\";i:302;s:29:\"post-comments-form/editor.css\";i:303;s:33:\"post-comments-form/editor.min.css\";i:304;s:32:\"post-comments-form/style-rtl.css\";i:305;s:36:\"post-comments-form/style-rtl.min.css\";i:306;s:28:\"post-comments-form/style.css\";i:307;s:32:\"post-comments-form/style.min.css\";i:308;s:27:\"post-content/editor-rtl.css\";i:309;s:31:\"post-content/editor-rtl.min.css\";i:310;s:23:\"post-content/editor.css\";i:311;s:27:\"post-content/editor.min.css\";i:312;s:26:\"post-content/style-rtl.css\";i:313;s:30:\"post-content/style-rtl.min.css\";i:314;s:22:\"post-content/style.css\";i:315;s:26:\"post-content/style.min.css\";i:316;s:23:\"post-date/style-rtl.css\";i:317;s:27:\"post-date/style-rtl.min.css\";i:318;s:19:\"post-date/style.css\";i:319;s:23:\"post-date/style.min.css\";i:320;s:27:\"post-excerpt/editor-rtl.css\";i:321;s:31:\"post-excerpt/editor-rtl.min.css\";i:322;s:23:\"post-excerpt/editor.css\";i:323;s:27:\"post-excerpt/editor.min.css\";i:324;s:26:\"post-excerpt/style-rtl.css\";i:325;s:30:\"post-excerpt/style-rtl.min.css\";i:326;s:22:\"post-excerpt/style.css\";i:327;s:26:\"post-excerpt/style.min.css\";i:328;s:34:\"post-featured-image/editor-rtl.css\";i:329;s:38:\"post-featured-image/editor-rtl.min.css\";i:330;s:30:\"post-featured-image/editor.css\";i:331;s:34:\"post-featured-image/editor.min.css\";i:332;s:33:\"post-featured-image/style-rtl.css\";i:333;s:37:\"post-featured-image/style-rtl.min.css\";i:334;s:29:\"post-featured-image/style.css\";i:335;s:33:\"post-featured-image/style.min.css\";i:336;s:34:\"post-navigation-link/style-rtl.css\";i:337;s:38:\"post-navigation-link/style-rtl.min.css\";i:338;s:30:\"post-navigation-link/style.css\";i:339;s:34:\"post-navigation-link/style.min.css\";i:340;s:28:\"post-template/editor-rtl.css\";i:341;s:32:\"post-template/editor-rtl.min.css\";i:342;s:24:\"post-template/editor.css\";i:343;s:28:\"post-template/editor.min.css\";i:344;s:27:\"post-template/style-rtl.css\";i:345;s:31:\"post-template/style-rtl.min.css\";i:346;s:23:\"post-template/style.css\";i:347;s:27:\"post-template/style.min.css\";i:348;s:24:\"post-terms/style-rtl.css\";i:349;s:28:\"post-terms/style-rtl.min.css\";i:350;s:20:\"post-terms/style.css\";i:351;s:24:\"post-terms/style.min.css\";i:352;s:24:\"post-title/style-rtl.css\";i:353;s:28:\"post-title/style-rtl.min.css\";i:354;s:20:\"post-title/style.css\";i:355;s:24:\"post-title/style.min.css\";i:356;s:26:\"preformatted/style-rtl.css\";i:357;s:30:\"preformatted/style-rtl.min.css\";i:358;s:22:\"preformatted/style.css\";i:359;s:26:\"preformatted/style.min.css\";i:360;s:24:\"pullquote/editor-rtl.css\";i:361;s:28:\"pullquote/editor-rtl.min.css\";i:362;s:20:\"pullquote/editor.css\";i:363;s:24:\"pullquote/editor.min.css\";i:364;s:23:\"pullquote/style-rtl.css\";i:365;s:27:\"pullquote/style-rtl.min.css\";i:366;s:19:\"pullquote/style.css\";i:367;s:23:\"pullquote/style.min.css\";i:368;s:23:\"pullquote/theme-rtl.css\";i:369;s:27:\"pullquote/theme-rtl.min.css\";i:370;s:19:\"pullquote/theme.css\";i:371;s:23:\"pullquote/theme.min.css\";i:372;s:39:\"query-pagination-numbers/editor-rtl.css\";i:373;s:43:\"query-pagination-numbers/editor-rtl.min.css\";i:374;s:35:\"query-pagination-numbers/editor.css\";i:375;s:39:\"query-pagination-numbers/editor.min.css\";i:376;s:31:\"query-pagination/editor-rtl.css\";i:377;s:35:\"query-pagination/editor-rtl.min.css\";i:378;s:27:\"query-pagination/editor.css\";i:379;s:31:\"query-pagination/editor.min.css\";i:380;s:30:\"query-pagination/style-rtl.css\";i:381;s:34:\"query-pagination/style-rtl.min.css\";i:382;s:26:\"query-pagination/style.css\";i:383;s:30:\"query-pagination/style.min.css\";i:384;s:25:\"query-title/style-rtl.css\";i:385;s:29:\"query-title/style-rtl.min.css\";i:386;s:21:\"query-title/style.css\";i:387;s:25:\"query-title/style.min.css\";i:388;s:20:\"query/editor-rtl.css\";i:389;s:24:\"query/editor-rtl.min.css\";i:390;s:16:\"query/editor.css\";i:391;s:20:\"query/editor.min.css\";i:392;s:19:\"quote/style-rtl.css\";i:393;s:23:\"quote/style-rtl.min.css\";i:394;s:15:\"quote/style.css\";i:395;s:19:\"quote/style.min.css\";i:396;s:19:\"quote/theme-rtl.css\";i:397;s:23:\"quote/theme-rtl.min.css\";i:398;s:15:\"quote/theme.css\";i:399;s:19:\"quote/theme.min.css\";i:400;s:23:\"read-more/style-rtl.css\";i:401;s:27:\"read-more/style-rtl.min.css\";i:402;s:19:\"read-more/style.css\";i:403;s:23:\"read-more/style.min.css\";i:404;s:18:\"rss/editor-rtl.css\";i:405;s:22:\"rss/editor-rtl.min.css\";i:406;s:14:\"rss/editor.css\";i:407;s:18:\"rss/editor.min.css\";i:408;s:17:\"rss/style-rtl.css\";i:409;s:21:\"rss/style-rtl.min.css\";i:410;s:13:\"rss/style.css\";i:411;s:17:\"rss/style.min.css\";i:412;s:21:\"search/editor-rtl.css\";i:413;s:25:\"search/editor-rtl.min.css\";i:414;s:17:\"search/editor.css\";i:415;s:21:\"search/editor.min.css\";i:416;s:20:\"search/style-rtl.css\";i:417;s:24:\"search/style-rtl.min.css\";i:418;s:16:\"search/style.css\";i:419;s:20:\"search/style.min.css\";i:420;s:20:\"search/theme-rtl.css\";i:421;s:24:\"search/theme-rtl.min.css\";i:422;s:16:\"search/theme.css\";i:423;s:20:\"search/theme.min.css\";i:424;s:24:\"separator/editor-rtl.css\";i:425;s:28:\"separator/editor-rtl.min.css\";i:426;s:20:\"separator/editor.css\";i:427;s:24:\"separator/editor.min.css\";i:428;s:23:\"separator/style-rtl.css\";i:429;s:27:\"separator/style-rtl.min.css\";i:430;s:19:\"separator/style.css\";i:431;s:23:\"separator/style.min.css\";i:432;s:23:\"separator/theme-rtl.css\";i:433;s:27:\"separator/theme-rtl.min.css\";i:434;s:19:\"separator/theme.css\";i:435;s:23:\"separator/theme.min.css\";i:436;s:24:\"shortcode/editor-rtl.css\";i:437;s:28:\"shortcode/editor-rtl.min.css\";i:438;s:20:\"shortcode/editor.css\";i:439;s:24:\"shortcode/editor.min.css\";i:440;s:24:\"site-logo/editor-rtl.css\";i:441;s:28:\"site-logo/editor-rtl.min.css\";i:442;s:20:\"site-logo/editor.css\";i:443;s:24:\"site-logo/editor.min.css\";i:444;s:23:\"site-logo/style-rtl.css\";i:445;s:27:\"site-logo/style-rtl.min.css\";i:446;s:19:\"site-logo/style.css\";i:447;s:23:\"site-logo/style.min.css\";i:448;s:27:\"site-tagline/editor-rtl.css\";i:449;s:31:\"site-tagline/editor-rtl.min.css\";i:450;s:23:\"site-tagline/editor.css\";i:451;s:27:\"site-tagline/editor.min.css\";i:452;s:26:\"site-tagline/style-rtl.css\";i:453;s:30:\"site-tagline/style-rtl.min.css\";i:454;s:22:\"site-tagline/style.css\";i:455;s:26:\"site-tagline/style.min.css\";i:456;s:25:\"site-title/editor-rtl.css\";i:457;s:29:\"site-title/editor-rtl.min.css\";i:458;s:21:\"site-title/editor.css\";i:459;s:25:\"site-title/editor.min.css\";i:460;s:24:\"site-title/style-rtl.css\";i:461;s:28:\"site-title/style-rtl.min.css\";i:462;s:20:\"site-title/style.css\";i:463;s:24:\"site-title/style.min.css\";i:464;s:26:\"social-link/editor-rtl.css\";i:465;s:30:\"social-link/editor-rtl.min.css\";i:466;s:22:\"social-link/editor.css\";i:467;s:26:\"social-link/editor.min.css\";i:468;s:27:\"social-links/editor-rtl.css\";i:469;s:31:\"social-links/editor-rtl.min.css\";i:470;s:23:\"social-links/editor.css\";i:471;s:27:\"social-links/editor.min.css\";i:472;s:26:\"social-links/style-rtl.css\";i:473;s:30:\"social-links/style-rtl.min.css\";i:474;s:22:\"social-links/style.css\";i:475;s:26:\"social-links/style.min.css\";i:476;s:21:\"spacer/editor-rtl.css\";i:477;s:25:\"spacer/editor-rtl.min.css\";i:478;s:17:\"spacer/editor.css\";i:479;s:21:\"spacer/editor.min.css\";i:480;s:20:\"spacer/style-rtl.css\";i:481;s:24:\"spacer/style-rtl.min.css\";i:482;s:16:\"spacer/style.css\";i:483;s:20:\"spacer/style.min.css\";i:484;s:20:\"table/editor-rtl.css\";i:485;s:24:\"table/editor-rtl.min.css\";i:486;s:16:\"table/editor.css\";i:487;s:20:\"table/editor.min.css\";i:488;s:19:\"table/style-rtl.css\";i:489;s:23:\"table/style-rtl.min.css\";i:490;s:15:\"table/style.css\";i:491;s:19:\"table/style.min.css\";i:492;s:19:\"table/theme-rtl.css\";i:493;s:23:\"table/theme-rtl.min.css\";i:494;s:15:\"table/theme.css\";i:495;s:19:\"table/theme.min.css\";i:496;s:24:\"tag-cloud/editor-rtl.css\";i:497;s:28:\"tag-cloud/editor-rtl.min.css\";i:498;s:20:\"tag-cloud/editor.css\";i:499;s:24:\"tag-cloud/editor.min.css\";i:500;s:23:\"tag-cloud/style-rtl.css\";i:501;s:27:\"tag-cloud/style-rtl.min.css\";i:502;s:19:\"tag-cloud/style.css\";i:503;s:23:\"tag-cloud/style.min.css\";i:504;s:28:\"template-part/editor-rtl.css\";i:505;s:32:\"template-part/editor-rtl.min.css\";i:506;s:24:\"template-part/editor.css\";i:507;s:28:\"template-part/editor.min.css\";i:508;s:27:\"template-part/theme-rtl.css\";i:509;s:31:\"template-part/theme-rtl.min.css\";i:510;s:23:\"template-part/theme.css\";i:511;s:27:\"template-part/theme.min.css\";i:512;s:30:\"term-description/style-rtl.css\";i:513;s:34:\"term-description/style-rtl.min.css\";i:514;s:26:\"term-description/style.css\";i:515;s:30:\"term-description/style.min.css\";i:516;s:27:\"text-columns/editor-rtl.css\";i:517;s:31:\"text-columns/editor-rtl.min.css\";i:518;s:23:\"text-columns/editor.css\";i:519;s:27:\"text-columns/editor.min.css\";i:520;s:26:\"text-columns/style-rtl.css\";i:521;s:30:\"text-columns/style-rtl.min.css\";i:522;s:22:\"text-columns/style.css\";i:523;s:26:\"text-columns/style.min.css\";i:524;s:19:\"verse/style-rtl.css\";i:525;s:23:\"verse/style-rtl.min.css\";i:526;s:15:\"verse/style.css\";i:527;s:19:\"verse/style.min.css\";i:528;s:20:\"video/editor-rtl.css\";i:529;s:24:\"video/editor-rtl.min.css\";i:530;s:16:\"video/editor.css\";i:531;s:20:\"video/editor.min.css\";i:532;s:19:\"video/style-rtl.css\";i:533;s:23:\"video/style-rtl.min.css\";i:534;s:15:\"video/style.css\";i:535;s:19:\"video/style.min.css\";i:536;s:19:\"video/theme-rtl.css\";i:537;s:23:\"video/theme-rtl.min.css\";i:538;s:15:\"video/theme.css\";i:539;s:19:\"video/theme.min.css\";}}','yes'),(126,'WPLANG','es_ES','yes'),(167,'happyforms-tracking','a:1:{s:6:\"status\";i:1;}','yes'),(2264,'_site_transient_timeout_theme_roots','1739058032','off'),(2265,'_site_transient_theme_roots','a:4:{s:16:\"twentytwentyfive\";s:7:\"/themes\";s:16:\"twentytwentyfour\";s:7:\"/themes\";s:17:\"twentytwentythree\";s:7:\"/themes\";s:15:\"twentytwentytwo\";s:7:\"/themes\";}','off'),(158,'finished_updating_comment_type','1','yes'),(216,'_transient_health-check-site-status-result','{\"good\":19,\"recommended\":3,\"critical\":1}','yes'),(305,'db_upgraded','1','yes'),(312,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:18:\"admin@ecco.anet.cl\";s:7:\"version\";s:5:\"6.7.1\";s:9:\"timestamp\";i:1732258569;}','off'),(2255,'_site_transient_timeout_php_check_990bfacb848fa087bcfc06850f5e4447','1739604764','off'),(2256,'_site_transient_php_check_990bfacb848fa087bcfc06850f5e4447','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:6:\"7.2.24\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','off'),(2197,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:65:\"https://downloads.wordpress.org/release/es_ES/wordpress-6.7.1.zip\";s:6:\"locale\";s:5:\"es_ES\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:65:\"https://downloads.wordpress.org/release/es_ES/wordpress-6.7.1.zip\";s:10:\"no_content\";s:0:\"\";s:11:\"new_bundled\";s:0:\"\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.7.1\";s:7:\"version\";s:5:\"6.7.1\";s:11:\"php_version\";s:6:\"7.2.24\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1739056230;s:15:\"version_checked\";s:5:\"6.7.1\";s:12:\"translations\";a:0:{}}','off'),(168,'recently_activated','a:0:{}','off'),(169,'_happyforms_service_credentials','a:26:{s:13:\"google-places\";a:2:{s:3:\"key\";s:0:\"\";s:12:\"has_migrated\";i:1;}s:16:\"google-geocoding\";a:2:{s:3:\"key\";s:0:\"\";s:12:\"has_migrated\";i:1;}s:9:\"recaptcha\";a:2:{s:4:\"site\";s:0:\"\";s:6:\"secret\";s:0:\"\";}s:11:\"recaptchav3\";a:3:{s:4:\"site\";s:0:\"\";s:6:\"secret\";s:0:\"\";s:9:\"min_score\";s:3:\"0.5\";}s:8:\"antispam\";a:0:{}s:15:\"active-campaign\";a:2:{s:7:\"api_url\";s:0:\"\";s:7:\"api_key\";s:0:\"\";}s:6:\"aweber\";a:7:{s:9:\"client_id\";s:32:\"zatmkvrQBaR0Vge5kCcerRPCG5PRlvbz\";s:13:\"client_secret\";s:0:\"\";s:12:\"access_token\";s:0:\"\";s:13:\"refresh_token\";s:0:\"\";s:10:\"expires_in\";s:0:\"\";s:12:\"last_updated\";s:0:\"\";s:10:\"account_id\";s:0:\"\";}s:16:\"constant-contact\";a:6:{s:9:\"client_id\";s:0:\"\";s:13:\"client_secret\";s:0:\"\";s:12:\"access_token\";s:0:\"\";s:13:\"refresh_token\";s:0:\"\";s:10:\"expires_in\";i:7200;s:12:\"last_updated\";s:0:\"\";}s:10:\"convertkit\";a:2:{s:3:\"key\";s:0:\"\";s:13:\"client_secret\";s:0:\"\";}s:9:\"mailchimp\";a:1:{s:3:\"key\";s:0:\"\";}s:10:\"mailerlite\";a:1:{s:3:\"key\";s:0:\"\";}s:8:\"mailpoet\";a:0:{}s:7:\"sendfox\";a:1:{s:3:\"key\";s:0:\"\";}s:8:\"sendgrid\";a:1:{s:3:\"key\";s:0:\"\";}s:10:\"sendinblue\";a:1:{s:3:\"key\";s:0:\"\";}s:6:\"stripe\";a:8:{s:7:\"enabled\";s:0:\"\";s:3:\"key\";s:0:\"\";s:8:\"test_key\";s:0:\"\";s:10:\"secret_key\";s:0:\"\";s:15:\"test_secret_key\";s:0:\"\";s:4:\"mode\";s:4:\"live\";s:27:\"webhook_endpoint_secret_key\";s:0:\"\";s:32:\"test_webhook_endpoint_secret_key\";s:0:\"\";}s:6:\"paypal\";a:6:{s:7:\"enabled\";s:0:\"\";s:9:\"client_id\";s:0:\"\";s:13:\"client_secret\";s:0:\"\";s:17:\"sandbox_client_id\";s:0:\"\";s:21:\"sandbox_client_secret\";s:0:\"\";s:4:\"mode\";s:4:\"live\";}s:8:\"payments\";a:0:{}s:16:\"google-analytics\";a:2:{s:7:\"enabled\";s:0:\"\";s:11:\"tracking_id\";s:0:\"\";}s:17:\"google-analytics4\";a:3:{s:7:\"enabled\";s:0:\"\";s:11:\"tracking_id\";s:0:\"\";s:10:\"api_secret\";s:0:\"\";}s:9:\"analytics\";a:0:{}s:6:\"zapier\";a:2:{s:7:\"api_key\";s:0:\"\";s:13:\"subscriptions\";a:0:{}}s:10:\"integromat\";a:2:{s:7:\"api_key\";s:0:\"\";s:13:\"subscriptions\";a:0:{}}s:11:\"integrately\";a:2:{s:7:\"api_key\";s:0:\"\";s:13:\"subscriptions\";a:0:{}}s:12:\"emailoctopus\";a:1:{s:3:\"key\";s:0:\"\";}s:4:\"drip\";a:1:{s:3:\"key\";s:0:\"\";}}','yes'),(170,'widget_happyforms_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(2266,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1739056232;s:7:\"checked\";a:4:{s:16:\"twentytwentyfive\";s:3:\"1.0\";s:16:\"twentytwentyfour\";s:3:\"1.0\";s:17:\"twentytwentythree\";s:3:\"1.3\";s:15:\"twentytwentytwo\";s:3:\"1.6\";}s:8:\"response\";a:3:{s:16:\"twentytwentyfour\";a:6:{s:5:\"theme\";s:16:\"twentytwentyfour\";s:11:\"new_version\";s:3:\"1.3\";s:3:\"url\";s:46:\"https://wordpress.org/themes/twentytwentyfour/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/twentytwentyfour.1.3.zip\";s:8:\"requires\";s:3:\"6.4\";s:12:\"requires_php\";s:3:\"7.0\";}s:17:\"twentytwentythree\";a:6:{s:5:\"theme\";s:17:\"twentytwentythree\";s:11:\"new_version\";s:3:\"1.6\";s:3:\"url\";s:47:\"https://wordpress.org/themes/twentytwentythree/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/theme/twentytwentythree.1.6.zip\";s:8:\"requires\";s:3:\"6.1\";s:12:\"requires_php\";s:3:\"5.6\";}s:15:\"twentytwentytwo\";a:6:{s:5:\"theme\";s:15:\"twentytwentytwo\";s:11:\"new_version\";s:3:\"1.9\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentytwo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentytwo.1.9.zip\";s:8:\"requires\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"5.6\";}}s:9:\"no_update\";a:1:{s:16:\"twentytwentyfive\";a:6:{s:5:\"theme\";s:16:\"twentytwentyfive\";s:11:\"new_version\";s:3:\"1.0\";s:3:\"url\";s:46:\"https://wordpress.org/themes/twentytwentyfive/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/twentytwentyfive.1.0.zip\";s:8:\"requires\";s:3:\"6.7\";s:12:\"requires_php\";s:3:\"7.2\";}}s:12:\"translations\";a:0:{}}','off'),(2267,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1739056233;s:8:\"response\";a:2:{s:33:\"classic-editor/classic-editor.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:28:\"w.org/plugins/classic-editor\";s:4:\"slug\";s:14:\"classic-editor\";s:6:\"plugin\";s:33:\"classic-editor/classic-editor.php\";s:11:\"new_version\";s:5:\"1.6.7\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/classic-editor/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/classic-editor.1.6.7.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/classic-editor/assets/icon-256x256.png?rev=1998671\";s:2:\"1x\";s:67:\"https://ps.w.org/classic-editor/assets/icon-128x128.png?rev=1998671\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/classic-editor/assets/banner-1544x500.png?rev=1998671\";s:2:\"1x\";s:69:\"https://ps.w.org/classic-editor/assets/banner-772x250.png?rev=1998676\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.9\";s:6:\"tested\";s:5:\"6.7.1\";s:12:\"requires_php\";s:5:\"5.2.4\";s:16:\"requires_plugins\";a:0:{}}s:41:\"happyforms-upgrade/happyforms-upgrade.php\";O:8:\"stdClass\":9:{s:4:\"slug\";s:18:\"happyforms-upgrade\";s:6:\"plugin\";s:41:\"happyforms-upgrade/happyforms-upgrade.php\";s:11:\"new_version\";s:6:\"1.38.5\";s:3:\"url\";s:22:\"https://happyforms.io/\";s:7:\"package\";s:73:\"https://licenses.happyforms.io/wp-json/updates/package/happyforms-appsumo\";s:6:\"tested\";s:5:\"6.7.1\";s:7:\"banners\";a:2:{s:3:\"low\";s:58:\"https://happyforms.io/assets/img/plugin/banner-772x250.png\";s:4:\"high\";s:59:\"https://happyforms.io/assets/img/plugin/banner-1544x500.png\";}s:5:\"icons\";a:2:{s:2:\"2x\";s:56:\"https://happyforms.io/assets/img/plugin/icon-256x256.png\";s:2:\"1x\";s:56:\"https://happyforms.io/assets/img/plugin/icon-128x128.png\";}s:14:\"upgrade_notice\";s:172:\"Fixed Logic to enable dorpdown value as email subject and Security issue on form submission allowing scripts to run. Also added a functionality to use tags in email content\";}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:0:{}s:7:\"checked\";a:2:{s:33:\"classic-editor/classic-editor.php\";s:5:\"1.6.3\";s:41:\"happyforms-upgrade/happyforms-upgrade.php\";s:7:\"1.37.12\";}}','off'),(1539,'_transient_wp_styles_for_blocks','a:2:{s:4:\"hash\";s:32:\"940ab66899a21919592f481364c9993f\";s:6:\"blocks\";a:63:{s:11:\"core/button\";s:0:\"\";s:14:\"core/site-logo\";s:0:\"\";s:18:\"core/post-template\";s:0:\"\";s:12:\"core/columns\";s:0:\"\";s:14:\"core/pullquote\";s:347:\":root :where(.wp-block-pullquote){border-radius: var(--wp--preset--spacing--20);font-family: var(--wp--preset--font-family--heading);font-size: var(--wp--preset--font-size--x-large);font-style: italic;font-weight: 400;letter-spacing: 0em;line-height: 1.5;padding-top: var(--wp--preset--spacing--40);padding-bottom: var(--wp--preset--spacing--40);}\";s:32:\"c48738dcb285a3f6ab83acff204fc486\";s:157:\":root :where(.wp-block-pullquote cite){font-family: var(--wp--preset--font-family--body);font-size: var(--wp--preset--font-size--medium);font-style: normal;}\";s:11:\"core/avatar\";s:56:\":root :where(.wp-block-avatar img){border-radius: 90px;}\";s:12:\"core/buttons\";s:673:\":root :where(.wp-block-buttons-is-layout-flow) > :first-child{margin-block-start: 0;}:root :where(.wp-block-buttons-is-layout-flow) > :last-child{margin-block-end: 0;}:root :where(.wp-block-buttons-is-layout-flow) > *{margin-block-start: 0.7rem;margin-block-end: 0;}:root :where(.wp-block-buttons-is-layout-constrained) > :first-child{margin-block-start: 0;}:root :where(.wp-block-buttons-is-layout-constrained) > :last-child{margin-block-end: 0;}:root :where(.wp-block-buttons-is-layout-constrained) > *{margin-block-start: 0.7rem;margin-block-end: 0;}:root :where(.wp-block-buttons-is-layout-flex){gap: 0.7rem;}:root :where(.wp-block-buttons-is-layout-grid){gap: 0.7rem;}\";s:13:\"core/calendar\";s:456:\":root :where(.wp-block-calendar table, .wp-block-calendar th){color: var(--wp--preset--color--contrast);}:root :where(.wp-block-calendar.wp-block-calendar table:where(:not(.has-text-color)) th){background-color:var(--wp--preset--color--contrast-2);color:var(--wp--preset--color--base);border-color:var(--wp--preset--color--contrast-2)}:root :where(.wp-block-calendar table:where(:not(.has-text-color)) td){border-color:var(--wp--preset--color--contrast-2)}\";s:15:\"core/categories\";s:191:\":root :where(.wp-block-categories){padding-right: 0px;padding-left: 0px;}:root :where(.wp-block-categories){list-style-type:none;}:root :where(.wp-block-categories li){margin-bottom: 0.5rem;}\";s:9:\"core/code\";s:567:\":root :where(.wp-block-code){background-color: var(--wp--preset--color--base-2);border-radius: var(--wp--preset--spacing--20);border-color: var(--wp--preset--color--contrast);color: var(--wp--preset--color--contrast-2);font-size: var(--wp--preset--font-size--medium);font-style: normal;font-weight: 400;line-height: 1.6;padding-top: calc(var(--wp--preset--spacing--30) + 0.75rem);padding-right: calc(var(--wp--preset--spacing--30) + 0.75rem);padding-bottom: calc(var(--wp--preset--spacing--30) + 0.75rem);padding-left: calc(var(--wp--preset--spacing--30) + 0.75rem);}\";s:24:\"core/comment-author-name\";s:170:\":root :where(.wp-block-comment-author-name){color: var(--wp--preset--color--contrast);font-size: var(--wp--preset--font-size--small);font-style: normal;font-weight: 600;}\";s:32:\"c0002c260f8238c4212f3e4c369fc4f7\";s:143:\":root :where(.wp-block-comment-author-name a:where(:not(.wp-element-button))){color: var(--wp--preset--color--contrast);text-decoration: none;}\";s:32:\"1e7c38b45537b325dbbbaec17a301676\";s:112:\":root :where(.wp-block-comment-author-name a:where(:not(.wp-element-button)):hover){text-decoration: underline;}\";s:20:\"core/comment-content\";s:177:\":root :where(.wp-block-comment-content){font-size: var(--wp--preset--font-size--small);margin-top: var(--wp--preset--spacing--20);margin-bottom: var(--wp--preset--spacing--20);}\";s:17:\"core/comment-date\";s:164:\":root :where(.wp-block-comment-date){color: var(--wp--preset--color--contrast-2);font-size: var(--wp--preset--font-size--small);margin-top: 0px;margin-bottom: 0px;}\";s:32:\"c83ca7b3e52884c70f7830c54f99b318\";s:138:\":root :where(.wp-block-comment-date a:where(:not(.wp-element-button))){color: var(--wp--preset--color--contrast-2);text-decoration: none;}\";s:32:\"7a05169cd0e6c7a5390492b955f8fd3d\";s:105:\":root :where(.wp-block-comment-date a:where(:not(.wp-element-button)):hover){text-decoration: underline;}\";s:22:\"core/comment-edit-link\";s:90:\":root :where(.wp-block-comment-edit-link){font-size: var(--wp--preset--font-size--small);}\";s:32:\"41d70710612536a90e368c12bcb0efea\";s:143:\":root :where(.wp-block-comment-edit-link a:where(:not(.wp-element-button))){color: var(--wp--preset--color--contrast-2);text-decoration: none;}\";s:32:\"9c12982bf0f274860d94c3aa18230c84\";s:110:\":root :where(.wp-block-comment-edit-link a:where(:not(.wp-element-button)):hover){text-decoration: underline;}\";s:23:\"core/comment-reply-link\";s:91:\":root :where(.wp-block-comment-reply-link){font-size: var(--wp--preset--font-size--small);}\";s:32:\"13c96340dbf37700add1f4c5cae19f3e\";s:144:\":root :where(.wp-block-comment-reply-link a:where(:not(.wp-element-button))){color: var(--wp--preset--color--contrast-2);text-decoration: none;}\";s:32:\"f8339fa97df92f99a6b4eac7a6597226\";s:111:\":root :where(.wp-block-comment-reply-link a:where(:not(.wp-element-button)):hover){text-decoration: underline;}\";s:23:\"core/post-comments-form\";s:109:\":root :where(.wp-block-post-comments-form textarea, .wp-block-post-comments-form input){border-radius:.33rem}\";s:24:\"core/comments-pagination\";s:92:\":root :where(.wp-block-comments-pagination){font-size: var(--wp--preset--font-size--small);}\";s:29:\"core/comments-pagination-next\";s:97:\":root :where(.wp-block-comments-pagination-next){font-size: var(--wp--preset--font-size--small);}\";s:32:\"core/comments-pagination-numbers\";s:100:\":root :where(.wp-block-comments-pagination-numbers){font-size: var(--wp--preset--font-size--small);}\";s:33:\"core/comments-pagination-previous\";s:101:\":root :where(.wp-block-comments-pagination-previous){font-size: var(--wp--preset--font-size--small);}\";s:14:\"core/footnotes\";s:82:\":root :where(.wp-block-footnotes){font-size: var(--wp--preset--font-size--small);}\";s:12:\"core/gallery\";s:79:\":root :where(.wp-block-gallery){margin-bottom: var(--wp--preset--spacing--50);}\";s:10:\"core/image\";s:0:\"\";s:9:\"core/list\";s:75:\":root :where(.wp-block-list){padding-left: var(--wp--preset--spacing--10);}\";s:13:\"core/loginout\";s:114:\":root :where(.wp-block-loginout input){border-radius:.33rem;padding:calc(0.667em + 2px);border:1px solid #949494;}\";s:15:\"core/navigation\";s:53:\":root :where(.wp-block-navigation){font-weight: 500;}\";s:32:\"25289a01850f5a0264ddb79a9a3baf3d\";s:92:\":root :where(.wp-block-navigation a:where(:not(.wp-element-button))){text-decoration: none;}\";s:32:\"026c04da08398d655a95047f1f235d97\";s:103:\":root :where(.wp-block-navigation a:where(:not(.wp-element-button)):hover){text-decoration: underline;}\";s:16:\"core/post-author\";s:84:\":root :where(.wp-block-post-author){font-size: var(--wp--preset--font-size--small);}\";s:21:\"core/post-author-name\";s:89:\":root :where(.wp-block-post-author-name){font-size: var(--wp--preset--font-size--small);}\";s:32:\"5e6daa05ce887f9195642ee978692d48\";s:98:\":root :where(.wp-block-post-author-name a:where(:not(.wp-element-button))){text-decoration: none;}\";s:32:\"9a762eac1c7e11f5da88ab6368f7855f\";s:109:\":root :where(.wp-block-post-author-name a:where(:not(.wp-element-button)):hover){text-decoration: underline;}\";s:14:\"core/post-date\";s:126:\":root :where(.wp-block-post-date){color: var(--wp--preset--color--contrast-2);font-size: var(--wp--preset--font-size--small);}\";s:32:\"ac0d4e00f5ec22d14451759983e5bd43\";s:135:\":root :where(.wp-block-post-date a:where(:not(.wp-element-button))){color: var(--wp--preset--color--contrast-2);text-decoration: none;}\";s:32:\"0ae6ffd1b886044c2da62d75d05ab13d\";s:102:\":root :where(.wp-block-post-date a:where(:not(.wp-element-button)):hover){text-decoration: underline;}\";s:17:\"core/post-excerpt\";s:55:\":root :where(.wp-block-post-excerpt){line-height: 1.6;}\";s:24:\"core/post-featured-image\";s:228:\":root :where(.wp-block-post-featured-image img, .wp-block-post-featured-image .block-editor-media-placeholder, .wp-block-post-featured-image .wp-block-post-featured-image__overlay){border-radius: var(--wp--preset--spacing--20);}\";s:15:\"core/post-terms\";s:192:\":root :where(.wp-block-post-terms){font-size: var(--wp--preset--font-size--small);}:root :where(.wp-block-post-terms .wp-block-post-terms__prefix){color: var(--wp--preset--color--contrast-2);}\";s:32:\"b7c958776cf894ff147e343b0c9ddf57\";s:92:\":root :where(.wp-block-post-terms a:where(:not(.wp-element-button))){text-decoration: none;}\";s:32:\"eb904b88c81440705e2673cf9a778b66\";s:103:\":root :where(.wp-block-post-terms a:where(:not(.wp-element-button)):hover){text-decoration: underline;}\";s:15:\"core/post-title\";s:0:\"\";s:32:\"bb496d3fcd9be3502ce57ff8281e5687\";s:92:\":root :where(.wp-block-post-title a:where(:not(.wp-element-button))){text-decoration: none;}\";s:32:\"12380ab98fdc81351bb32a39bbfc9249\";s:103:\":root :where(.wp-block-post-title a:where(:not(.wp-element-button)):hover){text-decoration: underline;}\";s:16:\"core/query-title\";s:61:\":root :where(.wp-block-query-title span){font-style: italic;}\";s:21:\"core/query-no-results\";s:86:\":root :where(.wp-block-query-no-results){padding-top: var(--wp--preset--spacing--30);}\";s:10:\"core/quote\";s:1316:\":root :where(.wp-block-quote){background-color: var(--wp--preset--color--base-2);border-radius: var(--wp--preset--spacing--20);font-family: var(--wp--preset--font-family--heading);font-size: var(--wp--preset--font-size--large);font-style: italic;line-height: 1.3;padding-top: calc(var(--wp--preset--spacing--30) + 0.75rem);padding-right: calc(var(--wp--preset--spacing--30) + 0.75rem);padding-bottom: calc(var(--wp--preset--spacing--30) + 0.75rem);padding-left: calc(var(--wp--preset--spacing--30) + 0.75rem);}:root :where(.wp-block-quote :where(p)){margin-block-start:0;margin-block-end:calc(var(--wp--preset--spacing--10) + 0.5rem);}:root :where(.wp-block-quote :where(:last-child)){margin-block-end:0;}:root :where(.wp-block-quote.has-text-align-right.is-style-plain, .rtl .is-style-plain.wp-block-quote:not(.has-text-align-center):not(.has-text-align-left)){border-width: 0 2px 0 0;padding-left:calc(var(--wp--preset--spacing--20) + 0.5rem);padding-right:calc(var(--wp--preset--spacing--20) + 0.5rem);}:root :where(.wp-block-quote.has-text-align-left.is-style-plain, body:not(.rtl) .is-style-plain.wp-block-quote:not(.has-text-align-center):not(.has-text-align-right)){border-width: 0 0 0 2px;padding-left:calc(var(--wp--preset--spacing--20) + 0.5rem);padding-right:calc(var(--wp--preset--spacing--20) + 0.5rem)}\";s:32:\"1de7a22e22013106efc5be82788cb6c0\";s:152:\":root :where(.wp-block-quote cite){font-family: var(--wp--preset--font-family--body);font-size: var(--wp--preset--font-size--small);font-style: normal;}\";s:11:\"core/search\";s:264:\":root :where(.wp-block-search .wp-block-search__label, .wp-block-search .wp-block-search__input, .wp-block-search .wp-block-search__button){font-size: var(--wp--preset--font-size--small);}:root :where(.wp-block-search .wp-block-search__input){border-radius:.33rem}\";s:32:\"14fa6a3d0cfbde171cbc0fb04aa8a6cf\";s:114:\":root :where(.wp-block-search .wp-element-button,.wp-block-search .wp-block-button__link){border-radius: .33rem;}\";s:14:\"core/separator\";s:327:\":root :where(.wp-block-separator){border-color: currentColor;border-width: 0 0 1px 0;border-style: solid;color: var(--wp--preset--color--contrast);}:root :where(.wp-block-separator){}:root :where(.wp-block-separator:not(.is-style-wide):not(.is-style-dots):not(.alignwide):not(.alignfull)){width: var(--wp--preset--spacing--60)}\";s:17:\"core/site-tagline\";s:129:\":root :where(.wp-block-site-tagline){color: var(--wp--preset--color--contrast-2);font-size: var(--wp--preset--font-size--small);}\";s:15:\"core/site-title\";s:194:\":root :where(.wp-block-site-title){font-family: var(--wp--preset--font-family--body);font-size: clamp(0.875rem, 0.875rem + ((1vw - 0.2rem) * 0.542), 1.2rem);font-style: normal;font-weight: 600;}\";s:32:\"f513d889cf971b13995cc3fffed2f39b\";s:92:\":root :where(.wp-block-site-title a:where(:not(.wp-element-button))){text-decoration: none;}\";s:32:\"22c37a317cc0ebd50155b5ad78564f37\";s:98:\":root :where(.wp-block-site-title a:where(:not(.wp-element-button)):hover){text-decoration: none;}\";}}','on'); /*!40000 ALTER TABLE `wpcs_options` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wpcs_postmeta` -- DROP TABLE IF EXISTS `wpcs_postmeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wpcs_postmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_id` bigint(20) unsigned NOT NULL DEFAULT 0, `meta_key` varchar(255) DEFAULT NULL, `meta_value` longtext DEFAULT NULL, PRIMARY KEY (`meta_id`), KEY `post_id` (`post_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=MyISAM AUTO_INCREMENT=590 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wpcs_postmeta` -- LOCK TABLES `wpcs_postmeta` WRITE; /*!40000 ALTER TABLE `wpcs_postmeta` DISABLE KEYS */; INSERT INTO `wpcs_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES (1,2,'_wp_page_template','default'),(2,3,'_wp_page_template','default'),(6,8,'_happyforms_redirect_url',''),(5,8,'_happyforms_layout','a:5:{i:0;s:18:\"single_line_text_0\";i:1;s:18:\"single_line_text_1\";i:2;s:7:\"email_2\";i:3;s:17:\"multi_line_text_3\";i:4;s:10:\"checkbox_4\";}'),(7,8,'_happyforms_spam_prevention','1'),(8,8,'_happyforms_form_expiration_datetime','2024-03-22 02:50:43'),(9,8,'_happyforms_save_entries','1'),(10,8,'_happyforms_captcha','1'),(11,8,'_happyforms_captcha_site_key',''),(12,8,'_happyforms_captcha_secret_key',''),(13,8,'_happyforms_captcha_label','Validate your submission'),(14,8,'_happyforms_preview_before_submit',''),(15,8,'_happyforms_use_html_id',''),(16,8,'_happyforms_html_id',''),(17,8,'_happyforms_add_submit_button_class',''),(18,8,'_happyforms_submit_button_html_class',''),(19,8,'_happyforms_form_hide_on_submit',''),(20,8,'_happyforms_form_direction',''),(21,8,'_happyforms_form_width','0'),(22,8,'_happyforms_form_padding',''),(23,8,'_happyforms_part_border',''),(24,8,'_happyforms_part_border_location',''),(25,8,'_happyforms_part_border_radius',''),(26,8,'_happyforms_part_outer_padding',''),(27,8,'_happyforms_part_inner_padding',''),(28,8,'_happyforms_part_toggle_placeholders',''),(29,8,'_happyforms_part_title_alignment',''),(30,8,'_happyforms_part_title_font_size','16'),(31,8,'_happyforms_part_title_font_weight',''),(32,8,'_happyforms_part_title_label_placement',''),(33,8,'_happyforms_part_description_alignment',''),(34,8,'_happyforms_part_description_font_size','12'),(35,8,'_happyforms_part_value_alignment',''),(36,8,'_happyforms_part_value_font_size','16'),(37,8,'_happyforms_submit_button_border',''),(38,8,'_happyforms_submit_button_border_radius',''),(39,8,'_happyforms_submit_button_width',''),(40,8,'_happyforms_submit_button_padding',''),(41,8,'_happyforms_submit_button_font_size','16'),(42,8,'_happyforms_submit_button_font_weight',''),(43,8,'_happyforms_submit_button_alignment',''),(44,8,'_happyforms_submit_button_part_of_last_input',''),(45,8,'_happyforms_color_primary','#000000'),(46,8,'_happyforms_color_success_notice','#ebf9f0'),(47,8,'_happyforms_color_success_notice_text','#1eb452'),(48,8,'_happyforms_color_error','#f23000'),(49,8,'_happyforms_color_error_notice','#ffeeea'),(50,8,'_happyforms_color_error_notice_text','#f23000'),(51,8,'_happyforms_color_part_title','#000000'),(52,8,'_happyforms_color_part_text','#000000'),(53,8,'_happyforms_color_part_placeholder','#888888'),(54,8,'_happyforms_color_part_description','#454545'),(55,8,'_happyforms_color_part_border','#dbdbdb'),(56,8,'_happyforms_color_part_border_focus','#7aa4ff'),(57,8,'_happyforms_color_part_background','#ffffff'),(58,8,'_happyforms_color_part_background_focus','#ffffff'),(59,8,'_happyforms_color_submit_background','#000000'),(60,8,'_happyforms_color_submit_background_hover','#000000'),(61,8,'_happyforms_color_submit_border','transparent'),(62,8,'_happyforms_color_submit_text','#ffffff'),(63,8,'_happyforms_color_submit_text_hover','#ffffff'),(64,8,'_happyforms_color_table_row_odd','#fcfcfc'),(65,8,'_happyforms_color_table_row_even','#efefef'),(66,8,'_happyforms_color_table_row_odd_text','#000000'),(67,8,'_happyforms_color_table_row_even_text','#000000'),(68,8,'_happyforms_color_dropdown_item_bg','#ffffff'),(69,8,'_happyforms_color_dropdown_item_text','#000000'),(70,8,'_happyforms_color_dropdown_item_bg_hover','#f4f4f5'),(71,8,'_happyforms_color_dropdown_item_text_hover','#000000'),(72,8,'_happyforms_additional_css',''),(73,8,'_happyforms_color_divider_hr','#cccccc'),(74,8,'_happyforms_color_choice_checkmark_bg','#ffffff'),(75,8,'_happyforms_color_choice_checkmark_bg_focus','#000000'),(76,8,'_happyforms_color_choice_checkmark_color','#ffffff'),(77,8,'_happyforms_words_label_min','min words'),(78,8,'_happyforms_words_label_max','max words'),(79,8,'_happyforms_characters_label_min','min characters'),(80,8,'_happyforms_characters_label_max','max characters'),(81,8,'_happyforms_no_results_label','Nothing found'),(82,8,'_happyforms_number_min_invalid','This number isn\'t big enough.'),(83,8,'_happyforms_number_max_invalid','This number is too big.'),(84,8,'_happyforms_optional_part_label','(optional)'),(85,8,'_happyforms_required_field_label',''),(86,8,'_happyforms_select_less_choices','Too many choices are selected.'),(87,8,'_happyforms_select_more_choices','Not enough choices are selected.'),(88,8,'_happyforms_submissions_left_label','remaining'),(89,8,'_happyforms_confirmation_message','We've got your submission.'),(90,8,'_happyforms_error_message','Bummer. The form can't be submitted. Please check for mistakes.'),(91,8,'_happyforms_submit_button_label','Send my question'),(92,8,'_happyforms_field_invalid','Looks like there\'s a mistake here.'),(93,8,'_happyforms_field_empty','Please answer this question.'),(94,8,'_happyforms_no_selection','Please make a selection.'),(95,8,'_happyforms_message_too_long','This answer is too long.'),(96,8,'_happyforms_message_too_short','This answer isn\'t long enough.'),(97,8,'_happyforms_per_form_validation_msg','0'),(98,8,'_happyforms_single_line_text_0','a:14:{s:2:\"id\";s:18:\"single_line_text_0\";s:4:\"type\";s:16:\"single_line_text\";s:5:\"label\";s:10:\"First name\";s:15:\"label_placement\";s:4:\"show\";s:11:\"description\";s:0:\"\";s:16:\"description_mode\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:6:\"prefix\";s:0:\"\";s:6:\"suffix\";s:0:\"\";s:5:\"width\";s:4:\"half\";s:9:\"css_class\";s:0:\"\";s:8:\"required\";i:1;s:14:\"use_as_subject\";s:0:\"\";s:13:\"default_value\";s:0:\"\";}'),(99,8,'_happyforms_single_line_text_1','a:14:{s:2:\"id\";s:18:\"single_line_text_1\";s:4:\"type\";s:16:\"single_line_text\";s:5:\"label\";s:9:\"Last name\";s:15:\"label_placement\";s:4:\"show\";s:11:\"description\";s:0:\"\";s:16:\"description_mode\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:6:\"prefix\";s:0:\"\";s:6:\"suffix\";s:0:\"\";s:5:\"width\";s:4:\"half\";s:9:\"css_class\";s:0:\"\";s:8:\"required\";i:1;s:14:\"use_as_subject\";s:0:\"\";s:13:\"default_value\";s:0:\"\";}'),(100,8,'_happyforms_email_2','a:13:{s:2:\"id\";s:7:\"email_2\";s:4:\"type\";s:5:\"email\";s:5:\"label\";s:13:\"Email address\";s:15:\"label_placement\";s:4:\"show\";s:11:\"description\";s:0:\"\";s:16:\"description_mode\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:6:\"prefix\";s:0:\"\";s:6:\"suffix\";s:0:\"\";s:5:\"width\";s:4:\"full\";s:9:\"css_class\";s:0:\"\";s:8:\"required\";i:1;s:13:\"default_value\";s:0:\"\";}'),(101,8,'_happyforms_multi_line_text_3','a:16:{s:2:\"id\";s:17:\"multi_line_text_3\";s:4:\"type\";s:15:\"multi_line_text\";s:5:\"label\";s:16:\"How can we help?\";s:15:\"label_placement\";s:4:\"show\";s:11:\"description\";s:0:\"\";s:16:\"description_mode\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:11:\"limit_input\";s:0:\"\";s:15:\"character_limit\";i:250;s:20:\"character_limit_mode\";s:8:\"word_max\";s:16:\"characters_label\";s:14:\"Min characters\";s:11:\"words_label\";s:9:\"Max words\";s:5:\"width\";s:4:\"full\";s:9:\"css_class\";s:0:\"\";s:8:\"required\";i:1;s:13:\"default_value\";s:0:\"\";}'),(102,8,'_happyforms_checkbox_4','a:17:{s:2:\"id\";s:10:\"checkbox_4\";s:4:\"type\";s:8:\"checkbox\";s:5:\"label\";s:9:\"Agreement\";s:15:\"label_placement\";s:6:\"hidden\";s:11:\"description\";s:0:\"\";s:16:\"description_mode\";s:0:\"\";s:5:\"width\";s:4:\"full\";s:9:\"css_class\";s:0:\"\";s:12:\"display_type\";s:5:\"block\";s:8:\"required\";i:1;s:7:\"options\";a:1:{i:0;a:2:{s:5:\"label\";s:83:\"I agree to allow this site to store and process the personal information submitted.\";s:2:\"id\";s:12:\"checkbox_4_0\";}}s:12:\"other_option\";s:0:\"\";s:18:\"other_option_label\";s:5:\"Other\";s:24:\"other_option_placeholder\";s:0:\"\";s:13:\"limit_choices\";s:0:\"\";s:17:\"limit_choices_min\";i:1;s:17:\"limit_choices_max\";i:1;}'),(103,9,'_happyforms_layout','a:4:{i:0;s:18:\"single_line_text_1\";i:1;s:18:\"single_line_text_2\";i:2;s:7:\"email_3\";i:3;s:12:\"attachment_4\";}'),(104,9,'_happyforms_form_direction',''),(105,9,'_happyforms_form_width','0'),(106,9,'_happyforms_form_padding',''),(107,9,'_happyforms_form_hide_on_submit',''),(108,9,'_happyforms_part_border',''),(109,9,'_happyforms_part_border_location',''),(110,9,'_happyforms_part_border_radius',''),(111,9,'_happyforms_part_outer_padding',''),(112,9,'_happyforms_part_inner_padding',''),(113,9,'_happyforms_part_toggle_placeholders',''),(114,9,'_happyforms_part_title_alignment',''),(115,9,'_happyforms_part_title_font_size','16'),(116,9,'_happyforms_part_title_font_weight',''),(117,9,'_happyforms_part_title_label_placement','above'),(118,9,'_happyforms_part_description_alignment',''),(119,9,'_happyforms_part_description_font_size','12'),(120,9,'_happyforms_part_value_alignment',''),(121,9,'_happyforms_part_value_font_size','16'),(122,9,'_happyforms_submit_button_border',''),(123,9,'_happyforms_submit_button_border_radius',''),(124,9,'_happyforms_submit_button_width',''),(125,9,'_happyforms_submit_button_padding',''),(126,9,'_happyforms_submit_button_font_size','16'),(127,9,'_happyforms_submit_button_font_weight',''),(128,9,'_happyforms_submit_button_alignment',''),(129,9,'_happyforms_submit_button_part_of_last_input',''),(130,9,'_happyforms_color_primary','#000000'),(131,9,'_happyforms_color_success_notice','#ebf9f0'),(132,9,'_happyforms_color_success_notice_text','#1eb452'),(133,9,'_happyforms_color_error','#f23000'),(134,9,'_happyforms_color_error_notice','#ffeeea'),(135,9,'_happyforms_color_error_notice_text','#f23000'),(136,9,'_happyforms_color_part_title','#000000'),(137,9,'_happyforms_color_part_text','#000000'),(138,9,'_happyforms_color_part_placeholder','#888888'),(139,9,'_happyforms_color_part_description','#454545'),(140,9,'_happyforms_color_part_border','#dbdbdb'),(141,9,'_happyforms_color_part_border_focus','#7aa4ff'),(142,9,'_happyforms_color_part_background','#ffffff'),(143,9,'_happyforms_color_part_background_focus','#ffffff'),(144,9,'_happyforms_color_submit_background','#000000'),(145,9,'_happyforms_color_submit_background_hover','#000000'),(146,9,'_happyforms_color_submit_border','transparent'),(147,9,'_happyforms_color_submit_text','#ffffff'),(148,9,'_happyforms_color_submit_text_hover','#ffffff'),(149,9,'_happyforms_color_table_row_odd','#fcfcfc'),(150,9,'_happyforms_color_table_row_even','#efefef'),(151,9,'_happyforms_color_table_row_odd_text','#000000'),(152,9,'_happyforms_color_table_row_even_text','#000000'),(153,9,'_happyforms_color_dropdown_item_bg','#ffffff'),(154,9,'_happyforms_color_dropdown_item_text','#000000'),(155,9,'_happyforms_color_dropdown_item_bg_hover','#f4f4f5'),(156,9,'_happyforms_color_dropdown_item_text_hover','#000000'),(157,9,'_happyforms_additional_css',''),(158,9,'_happyforms_color_divider_hr','#cccccc'),(159,9,'_happyforms_color_choice_checkmark_bg','#ffffff'),(160,9,'_happyforms_color_choice_checkmark_bg_focus','#000000'),(161,9,'_happyforms_color_choice_checkmark_color','#ffffff'),(162,9,'_happyforms_color_rating_star','#cccccc'),(163,9,'_happyforms_color_rating_star_hover','#000000'),(164,9,'_happyforms_mute_styles',''),(165,9,'_happyforms_color_multistep_info_text_color','#000000'),(166,9,'_happyforms_color_multistep_back_link','#000000'),(167,9,'_happyforms_color_multistep_back_link_hover','#000000'),(168,9,'_happyforms_color_poll_bar','#e8e8e8'),(169,9,'_happyforms_color_poll_link','#000000'),(170,9,'_happyforms_color_poll_winner','#000000'),(171,9,'_happyforms_redirect_url',''),(172,9,'_happyforms_spam_prevention','1'),(173,9,'_happyforms_form_expiration_datetime','2024-03-22 02:51:17'),(174,9,'_happyforms_save_entries','1'),(175,9,'_happyforms_captcha','1'),(176,9,'_happyforms_captcha_site_key',''),(177,9,'_happyforms_captcha_secret_key',''),(178,9,'_happyforms_captcha_label','Validate your submission'),(179,9,'_happyforms_preview_before_submit',''),(180,9,'_happyforms_use_html_id',''),(181,9,'_happyforms_html_id',''),(182,9,'_happyforms_add_submit_button_class',''),(183,9,'_happyforms_submit_button_html_class',''),(184,9,'_happyforms_receive_email_alerts','1'),(185,9,'_happyforms_alert_email_from_address','wladimir.nova.parra@gmail.com'),(186,9,'_happyforms_email_recipient','wladimir.nova.parra@gmail.com'),(187,9,'_happyforms_email_bccs','wladimir.nova.parra@gmail.com'),(188,9,'_happyforms_alert_email_from_name','Servidor de Videos y Archivos ECCO'),(189,9,'_happyforms_alert_email_subject','New submission to your form'),(190,9,'_happyforms_include_submitters_ip',''),(191,9,'_happyforms_include_referral_link',''),(192,9,'_happyforms_include_submission_date_time',''),(193,9,'_happyforms_alert_email_reply_to',''),(194,9,'_happyforms_send_confirmation_email',''),(195,9,'_happyforms_confirmation_email_sender_address','allarehna@gmail.com'),(196,9,'_happyforms_confirmation_email_reply_to','allarehna@gmail.com'),(197,9,'_happyforms_confirmation_email_from_name','Servidor de Videos y Archivos ECCO'),(198,9,'_happyforms_confirmation_email_subject','We received your message'),(199,9,'_happyforms_confirmation_email_content','Your message has been successfully sent. We appreciate you contacting us and we’ll be in touch soon.'),(200,9,'_happyforms_confirmation_email_include_values',''),(201,9,'_happyforms_confirmation_email_include_submitters_ip',''),(202,9,'_happyforms_confirmation_email_include_referral_link',''),(203,9,'_happyforms_confirmation_email_include_submission_date_time',''),(204,9,'_happyforms_words_label_min','min words'),(205,9,'_happyforms_words_label_max','max words'),(206,9,'_happyforms_characters_label_min','min characters'),(207,9,'_happyforms_characters_label_max','max characters'),(208,9,'_happyforms_no_results_label','Nothing found'),(209,9,'_happyforms_number_min_invalid','This number isn\'t big enough.'),(210,9,'_happyforms_number_max_invalid','This number is too big.'),(211,9,'_happyforms_optional_part_label','(optional)'),(212,9,'_happyforms_required_field_label',''),(213,9,'_happyforms_select_less_choices','Too many choices are selected.'),(214,9,'_happyforms_select_more_choices','Not enough choices are selected.'),(215,9,'_happyforms_submissions_left_label','remaining'),(216,9,'_happyforms_field_invalid','Looks like there\'s a mistake here.'),(217,9,'_happyforms_field_empty','Please answer this question.'),(218,9,'_happyforms_no_selection','Please make a selection.'),(219,9,'_happyforms_message_too_long','This answer is too long.'),(220,9,'_happyforms_message_too_short','This answer isn\'t long enough.'),(221,9,'_happyforms_per_form_validation_msg','1'),(222,9,'_happyforms_confirmation_message','We've got your submission.'),(223,9,'_happyforms_error_message','Bummer. The form can't be submitted. Please check for mistakes.'),(224,9,'_happyforms_submit_button_label','Send'),(225,9,'_happyforms_review_step_message','Please double-check for mistake.'),(226,9,'_happyforms_review_button_label','Review reply'),(227,9,'_happyforms_edit_button_label','Edit'),(228,9,'_happyforms_multi_step_current_page_label','Step'),(229,9,'_happyforms_multi_step_back_label','Back'),(230,9,'_happyforms_submission_redirect_notice','In a few seconds, you\'ll be automatically redirected to another page.'),(231,9,'_happyforms_redirect_now_link','Continue to redirected page now'),(232,9,'_happyforms_print_submission_link','Print my submission'),(233,9,'_happyforms_show_results_label','Show results'),(234,9,'_happyforms_back_to_poll_label','Back to poll'),(235,9,'_happyforms_max_files_uploaded_label','Files uploaded'),(236,9,'_happyforms_file_upload_browse_label','Browse'),(237,9,'_happyforms_file_upload_delete_label','Delete'),(238,9,'_happyforms_phone_label_country_code','Country code'),(239,9,'_happyforms_phone_label_number','Phone number'),(240,9,'_happyforms_field_signature_start_drawing_button_label','Start drawing'),(241,9,'_happyforms_field_signature_start_over_button_label','Start over'),(242,9,'_happyforms_field_signature_clear_button_label','Clear'),(243,9,'_happyforms_field_signature_done_button_label','Done'),(244,9,'_happyforms_terms_not_scrolled','Please scroll to the bottom.'),(245,9,'_happyforms_max_entries_message','This form isn\'t accepting any more replies.'),(246,9,'_happyforms_max_entries_per_user_message','You’ve already replied to this form.'),(247,9,'_happyforms_scheduled_message','This form isn’t scheduled to show at the moment.'),(248,9,'_happyforms_abandoned_resume_save_button_label','Save draft'),(249,9,'_happyforms_abandoned_resume_return_message','Welcome back. We've saved your partially complete reply from earlier.'),(250,9,'_happyforms_abandoned_resume_clear_all_label','Clear'),(251,9,'_happyforms_coupon_label','Coupon'),(252,9,'_happyforms_coupon_apply_label','Apply'),(253,9,'_happyforms_coupon_not_allowed','This coupon isn\'t allowed.'),(254,9,'_happyforms_amount_too_low','This price isn\'t high enough.'),(255,9,'_happyforms_payment_completed','Thank you! Your payment was successful.'),(256,9,'_happyforms_payment_failed','Payment failed.'),(257,9,'_happyforms_payment_cancelled','Payment canceled.'),(258,9,'_happyforms_payment_method_choice_label','Choose a payment method'),(259,9,'_happyforms_user_price_label','Name a price'),(260,9,'_happyforms_stripe_processing_hint','Please wait while we process your payment.'),(261,9,'_happyforms_stripe_option_label','Credit card'),(262,9,'_happyforms_card_label','Card'),(263,9,'_happyforms_card_number_label','Number'),(264,9,'_happyforms_card_expiry_label','Expiry'),(265,9,'_happyforms_card_cvc_label','CVV/CVC'),(266,9,'_happyforms_paypal_redirect_hint','After submitting this form, you\'ll be redirected to PayPal to complete your purchase securely.'),(267,9,'_happyforms_paypal_option_label','PayPal'),(268,9,'_happyforms_file_not_uploaded','Please upload a file.'),(269,9,'_happyforms_file_size_too_big','This file size is too big.'),(270,9,'_happyforms_file_invalid','This file type isn’t allowed.'),(271,9,'_happyforms_file_duplicate','A file with this name has already been uploaded.'),(272,9,'_happyforms_file_min_count','Too few files have been uploaded.'),(273,9,'_happyforms_max_answer_message','This answer already exists.'),(274,9,'_happyforms_unique_id',''),(275,9,'_happyforms_unique_id_start_from','1'),(276,9,'_happyforms_unique_id_prefix',''),(277,9,'_happyforms_unique_id_suffix',''),(278,9,'_happyforms_confirmation_email_respondent_address',''),(279,9,'_happyforms_shuffle_parts',''),(280,9,'_happyforms_modal',''),(281,9,'_happyforms_modal_max_width','800'),(282,9,'_happyforms_modal_form_padding',''),(283,9,'_happyforms_modal_border_radius',''),(284,9,'_happyforms_color_modal_bg','#ffffff'),(285,9,'_happyforms_color_modal_overlay_bg','#000000'),(286,9,'_happyforms_max_entries',''),(287,9,'_happyforms_max_entries_per_user','1'),(288,9,'_happyforms_restrict_user_entries',''),(289,9,'_happyforms_schedule_visibility',''),(290,9,'_happyforms_schedule_from_datetime',''),(291,9,'_happyforms_schedule_to_datetime',''),(292,9,'_happyforms_password_protect',''),(293,9,'_happyforms_password',''),(294,9,'_happyforms_password_input_placeholder','Enter your password'),(295,9,'_happyforms_password_submit_button_label','Access Form'),(296,9,'_happyforms_password_error_message','The password you entered is incorrect. Please try again.'),(297,9,'_happyforms_save_submissions','1'),(298,9,'_happyforms_delete_submission_days',''),(299,9,'_happyforms_save_user_data','1'),(300,9,'_happyforms_per_form_privacy_settings','1'),(301,9,'_happyforms_save_abandoned_responses',''),(302,9,'_happyforms_abandoned_response_whitelist',''),(303,9,'_happyforms_abandoned_response_expire','week'),(304,9,'_happyforms_abandoned_resume_save_button',''),(305,9,'_happyforms_abandoned_resume_response_expire',''),(306,9,'_happyforms_abandoned_resume_send_alert_email',''),(307,9,'_happyforms_abandoned_resume_email_sender_address','allarehna@gmail.com'),(308,9,'_happyforms_abandoned_resume_email_reply_to','allarehna@gmail.com'),(309,9,'_happyforms_abandoned_resume_email_from_name','Servidor de Videos y Archivos ECCO'),(310,9,'_happyforms_abandoned_resume_email_respondent_address',''),(311,9,'_happyforms_abandoned_resume_email_subject','You left before completing the form'),(312,9,'_happyforms_abandoned_resume_email_content','The form you were filling out didn't get completed. Did something go wrong?'),(313,9,'_happyforms_owner_attach_pdf',''),(314,9,'_happyforms_owner_pdf_title','A copy of your message'),(315,9,'_happyforms_owner_pdf_file_name','your-receipt'),(316,9,'_happyforms_owner_pdf_logo','0'),(317,9,'_happyforms_owner_pdf_header_message',''),(318,9,'_happyforms_owner_pdf_footer_message',''),(319,9,'_happyforms_attach_pdf',''),(320,9,'_happyforms_pdf_title','A copy of your message'),(321,9,'_happyforms_pdf_file_name','your-receipt'),(322,9,'_happyforms_pdf_logo','0'),(323,9,'_happyforms_pdf_header_message',''),(324,9,'_happyforms_pdf_footer_message',''),(325,9,'_happyforms_active_email_service',''),(326,9,'_happyforms_conditions','a:0:{}'),(327,9,'_happyforms_validate_with_disallowed_keys',''),(328,9,'_happyforms_block_emails',''),(329,9,'_happyforms_blocklist_emails',''),(330,9,'_happyforms_block_language',''),(331,9,'_happyforms_blocklist_language',''),(332,9,'_happyforms_per_form_blocklist','1'),(333,9,'_happyforms_single_line_text_1','a:17:{s:2:\"id\";s:18:\"single_line_text_1\";s:4:\"type\";s:16:\"single_line_text\";s:5:\"label\";s:6:\"Nombre\";s:15:\"label_placement\";s:6:\"hidden\";s:11:\"description\";s:0:\"\";s:16:\"description_mode\";s:0:\"\";s:11:\"placeholder\";s:6:\"Nombre\";s:6:\"prefix\";s:0:\"\";s:6:\"suffix\";s:0:\"\";s:5:\"width\";s:4:\"full\";s:9:\"css_class\";s:0:\"\";s:8:\"required\";i:1;s:14:\"use_as_subject\";s:0:\"\";s:13:\"default_value\";s:0:\"\";s:14:\"include_in_pdf\";i:1;s:22:\"add_to_payment_details\";s:0:\"\";s:16:\"max_limit_answer\";s:0:\"\";}'),(334,9,'_happyforms_single_line_text_2','a:17:{s:2:\"id\";s:18:\"single_line_text_2\";s:4:\"type\";s:16:\"single_line_text\";s:5:\"label\";s:8:\"Apellido\";s:15:\"label_placement\";s:6:\"hidden\";s:11:\"description\";s:0:\"\";s:16:\"description_mode\";s:0:\"\";s:11:\"placeholder\";s:8:\"Apellido\";s:6:\"prefix\";s:0:\"\";s:6:\"suffix\";s:0:\"\";s:5:\"width\";s:4:\"full\";s:9:\"css_class\";s:0:\"\";s:8:\"required\";i:1;s:14:\"use_as_subject\";s:0:\"\";s:13:\"default_value\";s:0:\"\";s:14:\"include_in_pdf\";i:1;s:22:\"add_to_payment_details\";s:0:\"\";s:16:\"max_limit_answer\";s:0:\"\";}'),(335,9,'_happyforms_email_3','a:16:{s:2:\"id\";s:7:\"email_3\";s:4:\"type\";s:5:\"email\";s:5:\"label\";s:18:\"Correo electronico\";s:15:\"label_placement\";s:6:\"hidden\";s:11:\"description\";s:0:\"\";s:16:\"description_mode\";s:0:\"\";s:11:\"placeholder\";s:18:\"Correo electronico\";s:6:\"prefix\";s:0:\"\";s:6:\"suffix\";s:0:\"\";s:5:\"width\";s:4:\"full\";s:9:\"css_class\";s:0:\"\";s:8:\"required\";i:1;s:13:\"default_value\";s:0:\"\";s:14:\"include_in_pdf\";i:1;s:22:\"add_to_payment_details\";s:0:\"\";s:16:\"max_limit_answer\";s:0:\"\";}'),(336,9,'_happyforms_attachment_4','a:15:{s:2:\"id\";s:12:\"attachment_4\";s:4:\"type\";s:10:\"attachment\";s:5:\"label\";s:0:\"\";s:15:\"label_placement\";s:4:\"show\";s:11:\"description\";s:0:\"\";s:16:\"description_mode\";s:0:\"\";s:5:\"width\";s:4:\"full\";s:9:\"css_class\";s:0:\"\";s:11:\"placeholder\";s:14:\"Cargar Archivo\";s:18:\"allowed_file_types\";s:10:\"deprecated\";s:23:\"allowed_file_extensions\";s:44:\"csv,txt,pdf,zip,jpg,jpeg,gif,png,bmp,mp3,mp4\";s:13:\"max_file_size\";d:4000;s:14:\"min_file_count\";i:0;s:14:\"max_file_count\";i:0;s:8:\"required\";i:1;}'),(337,9,'_happyforms_count_submissions_read','0'),(338,9,'_happyforms_count_submissions_unread','0'),(339,9,'_happyforms_count_submissions_spam','0'),(340,9,'_happyforms_count_submissions_trash','0'),(341,9,'_happyforms_count_submissions_total','0'),(343,12,'_edit_last','1'),(344,12,'_wp_page_template','default'),(345,12,'_edit_lock','1710472622:1'),(364,16,'_happyforms_part_title_font_size','16'),(363,16,'_happyforms_part_title_alignment',''),(362,16,'_happyforms_part_toggle_placeholders',''),(361,16,'_happyforms_part_inner_padding',''),(360,16,'_happyforms_part_outer_padding',''),(352,16,'_happyforms_layout','a:3:{i:0;s:18:\"single_line_text_1\";i:1;s:7:\"email_2\";i:2;s:12:\"attachment_3\";}'),(353,16,'_happyforms_form_direction',''),(354,16,'_happyforms_form_width','0'),(355,16,'_happyforms_form_padding',''),(356,16,'_happyforms_form_hide_on_submit',''),(357,16,'_happyforms_part_border',''),(358,16,'_happyforms_part_border_location',''),(359,16,'_happyforms_part_border_radius',''),(365,16,'_happyforms_part_title_font_weight',''),(366,16,'_happyforms_part_title_label_placement','above'),(367,16,'_happyforms_part_description_alignment',''),(368,16,'_happyforms_part_description_font_size','12'),(369,16,'_happyforms_part_value_alignment',''),(370,16,'_happyforms_part_value_font_size','16'),(371,16,'_happyforms_submit_button_border',''),(372,16,'_happyforms_submit_button_border_radius','happyforms-form--submit-button-border-radius-pill'),(373,16,'_happyforms_submit_button_width',''),(374,16,'_happyforms_submit_button_padding',''),(375,16,'_happyforms_submit_button_font_size','16'),(376,16,'_happyforms_submit_button_font_weight',''),(377,16,'_happyforms_submit_button_alignment','happyforms-form--submit-button-align-center'),(378,16,'_happyforms_submit_button_part_of_last_input',''),(379,16,'_happyforms_color_primary','#000000'),(380,16,'_happyforms_color_success_notice','#ebf9f0'),(381,16,'_happyforms_color_success_notice_text','#1eb452'),(382,16,'_happyforms_color_error','#f23000'),(383,16,'_happyforms_color_error_notice','#ffeeea'),(384,16,'_happyforms_color_error_notice_text','#f23000'),(385,16,'_happyforms_color_part_title','#000000'),(386,16,'_happyforms_color_part_text','#000000'),(387,16,'_happyforms_color_part_placeholder','#888888'),(388,16,'_happyforms_color_part_description','#454545'),(389,16,'_happyforms_color_part_border','#dbdbdb'),(390,16,'_happyforms_color_part_border_focus','#7aa4ff'),(391,16,'_happyforms_color_part_background','#ffffff'),(392,16,'_happyforms_color_part_background_focus','#ffffff'),(393,16,'_happyforms_color_submit_background','#000000'),(394,16,'_happyforms_color_submit_background_hover','#000000'),(395,16,'_happyforms_color_submit_border','transparent'),(396,16,'_happyforms_color_submit_text','#ffffff'),(397,16,'_happyforms_color_submit_text_hover','#ffffff'),(398,16,'_happyforms_color_table_row_odd','#fcfcfc'),(399,16,'_happyforms_color_table_row_even','#efefef'),(400,16,'_happyforms_color_table_row_odd_text','#000000'),(401,16,'_happyforms_color_table_row_even_text','#000000'),(402,16,'_happyforms_color_dropdown_item_bg','#ffffff'),(403,16,'_happyforms_color_dropdown_item_text','#000000'),(404,16,'_happyforms_color_dropdown_item_bg_hover','#f4f4f5'),(405,16,'_happyforms_color_dropdown_item_text_hover','#000000'),(406,16,'_happyforms_additional_css',''),(407,16,'_happyforms_color_divider_hr','#cccccc'),(408,16,'_happyforms_color_choice_checkmark_bg','#ffffff'),(409,16,'_happyforms_color_choice_checkmark_bg_focus','#000000'),(410,16,'_happyforms_color_choice_checkmark_color','#ffffff'),(411,16,'_happyforms_color_rating_star','#cccccc'),(412,16,'_happyforms_color_rating_star_hover','#000000'),(413,16,'_happyforms_mute_styles',''),(414,16,'_happyforms_color_multistep_info_text_color','#000000'),(415,16,'_happyforms_color_multistep_back_link','#000000'),(416,16,'_happyforms_color_multistep_back_link_hover','#000000'),(417,16,'_happyforms_color_poll_bar','#e8e8e8'),(418,16,'_happyforms_color_poll_link','#000000'),(419,16,'_happyforms_color_poll_winner','#000000'),(420,16,'_happyforms_redirect_url',''),(421,16,'_happyforms_spam_prevention','1'),(422,16,'_happyforms_form_expiration_datetime','2024-03-22 03:14:50'),(423,16,'_happyforms_save_entries','1'),(424,16,'_happyforms_captcha','1'),(425,16,'_happyforms_captcha_site_key',''),(426,16,'_happyforms_captcha_secret_key',''),(427,16,'_happyforms_captcha_label','Validate your submission'),(428,16,'_happyforms_preview_before_submit',''),(429,16,'_happyforms_use_html_id',''),(430,16,'_happyforms_html_id',''),(431,16,'_happyforms_add_submit_button_class',''),(432,16,'_happyforms_submit_button_html_class',''),(433,16,'_happyforms_receive_email_alerts','1'),(434,16,'_happyforms_alert_email_from_address','admin@ecco.anet.cl'),(435,16,'_happyforms_email_recipient','admin@ecco.anet.cl'),(436,16,'_happyforms_email_bccs',''),(437,16,'_happyforms_alert_email_from_name','Servidor de Videos y Archivos ECCO'),(438,16,'_happyforms_alert_email_subject','New submission to your form'),(439,16,'_happyforms_include_submitters_ip',''),(440,16,'_happyforms_include_referral_link',''),(441,16,'_happyforms_include_submission_date_time',''),(442,16,'_happyforms_alert_email_reply_to',''),(443,16,'_happyforms_send_confirmation_email','1'),(444,16,'_happyforms_confirmation_email_sender_address','admin@ecco.anet.cl'),(445,16,'_happyforms_confirmation_email_reply_to','admin@ecco.anet.cl'),(446,16,'_happyforms_confirmation_email_from_name','Servidor de Videos y Archivos ECCO'),(447,16,'_happyforms_confirmation_email_subject','We received your message'),(448,16,'_happyforms_confirmation_email_content','Your message has been successfully sent. We appreciate you contacting us and we’ll be in touch soon.'),(449,16,'_happyforms_confirmation_email_include_values',''),(450,16,'_happyforms_confirmation_email_include_submitters_ip',''),(451,16,'_happyforms_confirmation_email_include_referral_link',''),(452,16,'_happyforms_confirmation_email_include_submission_date_time',''),(453,16,'_happyforms_words_label_min','min words'),(454,16,'_happyforms_words_label_max','max words'),(455,16,'_happyforms_characters_label_min','min characters'),(456,16,'_happyforms_characters_label_max','max characters'),(457,16,'_happyforms_no_results_label','Nothing found'),(458,16,'_happyforms_number_min_invalid','This number isn\'t big enough.'),(459,16,'_happyforms_number_max_invalid','This number is too big.'),(460,16,'_happyforms_optional_part_label','(optional)'),(461,16,'_happyforms_required_field_label',''),(462,16,'_happyforms_select_less_choices','Too many choices are selected.'),(463,16,'_happyforms_select_more_choices','Not enough choices are selected.'),(464,16,'_happyforms_submissions_left_label','remaining'),(465,16,'_happyforms_field_invalid','Looks like there\'s a mistake here.'),(466,16,'_happyforms_field_empty','Please answer this question.'),(467,16,'_happyforms_no_selection','Please make a selection.'),(468,16,'_happyforms_message_too_long','This answer is too long.'),(469,16,'_happyforms_message_too_short','This answer isn\'t long enough.'),(470,16,'_happyforms_per_form_validation_msg','1'),(471,16,'_happyforms_confirmation_message','We've got your submission.'),(472,16,'_happyforms_error_message','Bummer. The form can't be submitted. Please check for mistakes.'),(473,16,'_happyforms_submit_button_label','Send'),(474,16,'_happyforms_review_step_message','Please double-check for mistake.'),(475,16,'_happyforms_review_button_label','Review reply'),(476,16,'_happyforms_edit_button_label','Edit'),(477,16,'_happyforms_multi_step_current_page_label','Step'),(478,16,'_happyforms_multi_step_back_label','Back'),(479,16,'_happyforms_submission_redirect_notice','In a few seconds, you\'ll be automatically redirected to another page.'),(480,16,'_happyforms_redirect_now_link','Continue to redirected page now'),(481,16,'_happyforms_print_submission_link','Print my submission'),(482,16,'_happyforms_show_results_label','Show results'),(483,16,'_happyforms_back_to_poll_label','Back to poll'),(484,16,'_happyforms_max_files_uploaded_label','Files uploaded'),(485,16,'_happyforms_file_upload_browse_label','Browse'),(486,16,'_happyforms_file_upload_delete_label','Delete'),(487,16,'_happyforms_phone_label_country_code','Country code'),(488,16,'_happyforms_phone_label_number','Phone number'),(489,16,'_happyforms_field_signature_start_drawing_button_label','Start drawing'),(490,16,'_happyforms_field_signature_start_over_button_label','Start over'),(491,16,'_happyforms_field_signature_clear_button_label','Clear'),(492,16,'_happyforms_field_signature_done_button_label','Done'),(493,16,'_happyforms_terms_not_scrolled','Please scroll to the bottom.'),(494,16,'_happyforms_max_entries_message','This form isn\'t accepting any more replies.'),(495,16,'_happyforms_max_entries_per_user_message','You’ve already replied to this form.'),(496,16,'_happyforms_scheduled_message','This form isn’t scheduled to show at the moment.'),(497,16,'_happyforms_abandoned_resume_save_button_label','Save draft'),(498,16,'_happyforms_abandoned_resume_return_message','Welcome back. We've saved your partially complete reply from earlier.'),(499,16,'_happyforms_abandoned_resume_clear_all_label','Clear'),(500,16,'_happyforms_coupon_label','Coupon'),(501,16,'_happyforms_coupon_apply_label','Apply'),(502,16,'_happyforms_coupon_not_allowed','This coupon isn\'t allowed.'),(503,16,'_happyforms_amount_too_low','This price isn\'t high enough.'),(504,16,'_happyforms_payment_completed','Thank you! Your payment was successful.'),(505,16,'_happyforms_payment_failed','Payment failed.'),(506,16,'_happyforms_payment_cancelled','Payment canceled.'),(507,16,'_happyforms_payment_method_choice_label','Choose a payment method'),(508,16,'_happyforms_user_price_label','Name a price'),(509,16,'_happyforms_stripe_processing_hint','Please wait while we process your payment.'),(510,16,'_happyforms_stripe_option_label','Credit card'),(511,16,'_happyforms_card_label','Card'),(512,16,'_happyforms_card_number_label','Number'),(513,16,'_happyforms_card_expiry_label','Expiry'),(514,16,'_happyforms_card_cvc_label','CVV/CVC'),(515,16,'_happyforms_paypal_redirect_hint','After submitting this form, you\'ll be redirected to PayPal to complete your purchase securely.'),(516,16,'_happyforms_paypal_option_label','PayPal'),(517,16,'_happyforms_file_not_uploaded','Please upload a file.'),(518,16,'_happyforms_file_size_too_big','This file size is too big.'),(519,16,'_happyforms_file_invalid','This file type isn’t allowed.'),(520,16,'_happyforms_file_duplicate','A file with this name has already been uploaded.'),(521,16,'_happyforms_file_min_count','Too few files have been uploaded.'),(522,16,'_happyforms_max_answer_message','This answer already exists.'),(523,16,'_happyforms_unique_id',''),(524,16,'_happyforms_unique_id_start_from','1'),(525,16,'_happyforms_unique_id_prefix',''),(526,16,'_happyforms_unique_id_suffix',''),(527,16,'_happyforms_confirmation_email_respondent_address',''),(528,16,'_happyforms_shuffle_parts',''),(529,16,'_happyforms_modal',''),(530,16,'_happyforms_modal_max_width','800'),(531,16,'_happyforms_modal_form_padding',''),(532,16,'_happyforms_modal_border_radius',''),(533,16,'_happyforms_color_modal_bg','#ffffff'),(534,16,'_happyforms_color_modal_overlay_bg','#000000'),(535,16,'_happyforms_max_entries',''),(536,16,'_happyforms_max_entries_per_user','1'),(537,16,'_happyforms_restrict_user_entries',''),(538,16,'_happyforms_schedule_visibility',''),(539,16,'_happyforms_schedule_from_datetime',''),(540,16,'_happyforms_schedule_to_datetime',''),(541,16,'_happyforms_password_protect',''),(542,16,'_happyforms_password',''),(543,16,'_happyforms_password_input_placeholder','Enter your password'),(544,16,'_happyforms_password_submit_button_label','Access Form'),(545,16,'_happyforms_password_error_message','The password you entered is incorrect. Please try again.'),(546,16,'_happyforms_save_submissions','1'),(547,16,'_happyforms_delete_submission_days',''),(548,16,'_happyforms_save_user_data','1'),(549,16,'_happyforms_per_form_privacy_settings','1'),(550,16,'_happyforms_save_abandoned_responses',''),(551,16,'_happyforms_abandoned_response_whitelist',''),(552,16,'_happyforms_abandoned_response_expire','week'),(553,16,'_happyforms_abandoned_resume_save_button',''),(554,16,'_happyforms_abandoned_resume_response_expire',''),(555,16,'_happyforms_abandoned_resume_send_alert_email',''),(556,16,'_happyforms_abandoned_resume_email_sender_address','admin@ecco.anet.cl'),(557,16,'_happyforms_abandoned_resume_email_reply_to','admin@ecco.anet.cl'),(558,16,'_happyforms_abandoned_resume_email_from_name','Servidor de Videos y Archivos ECCO'),(559,16,'_happyforms_abandoned_resume_email_respondent_address',''),(560,16,'_happyforms_abandoned_resume_email_subject','You left before completing the form'),(561,16,'_happyforms_abandoned_resume_email_content','The form you were filling out didn't get completed. Did something go wrong?'),(562,16,'_happyforms_owner_attach_pdf',''),(563,16,'_happyforms_owner_pdf_title','A copy of your message'),(564,16,'_happyforms_owner_pdf_file_name','your-receipt'),(565,16,'_happyforms_owner_pdf_logo','0'),(566,16,'_happyforms_owner_pdf_header_message',''),(567,16,'_happyforms_owner_pdf_footer_message',''),(568,16,'_happyforms_attach_pdf',''),(569,16,'_happyforms_pdf_title','A copy of your message'),(570,16,'_happyforms_pdf_file_name','your-receipt'),(571,16,'_happyforms_pdf_logo','0'),(572,16,'_happyforms_pdf_header_message',''),(573,16,'_happyforms_pdf_footer_message',''),(574,16,'_happyforms_active_email_service',''),(575,16,'_happyforms_conditions','a:0:{}'),(576,16,'_happyforms_validate_with_disallowed_keys',''),(577,16,'_happyforms_block_emails',''),(578,16,'_happyforms_blocklist_emails',''),(579,16,'_happyforms_block_language',''),(580,16,'_happyforms_blocklist_language',''),(581,16,'_happyforms_per_form_blocklist','1'),(582,16,'_happyforms_single_line_text_1','a:17:{s:2:\"id\";s:18:\"single_line_text_1\";s:4:\"type\";s:16:\"single_line_text\";s:5:\"label\";s:6:\"Nombre\";s:15:\"label_placement\";s:4:\"show\";s:11:\"description\";s:0:\"\";s:16:\"description_mode\";s:0:\"\";s:11:\"placeholder\";s:6:\"Nombre\";s:6:\"prefix\";s:0:\"\";s:6:\"suffix\";s:0:\"\";s:5:\"width\";s:4:\"full\";s:9:\"css_class\";s:0:\"\";s:8:\"required\";i:1;s:14:\"use_as_subject\";s:0:\"\";s:13:\"default_value\";s:0:\"\";s:14:\"include_in_pdf\";i:1;s:22:\"add_to_payment_details\";s:0:\"\";s:16:\"max_limit_answer\";s:0:\"\";}'),(583,16,'_happyforms_count_submissions_read','0'),(584,16,'_happyforms_count_submissions_unread','0'),(585,16,'_happyforms_count_submissions_spam','0'),(586,16,'_happyforms_count_submissions_trash','0'),(587,16,'_happyforms_count_submissions_total','0'),(588,16,'_happyforms_email_2','a:16:{s:2:\"id\";s:7:\"email_2\";s:4:\"type\";s:5:\"email\";s:5:\"label\";s:6:\"Correo\";s:15:\"label_placement\";s:4:\"show\";s:11:\"description\";s:0:\"\";s:16:\"description_mode\";s:0:\"\";s:11:\"placeholder\";s:6:\"Correo\";s:6:\"prefix\";s:0:\"\";s:6:\"suffix\";s:0:\"\";s:5:\"width\";s:4:\"full\";s:9:\"css_class\";s:0:\"\";s:8:\"required\";i:1;s:13:\"default_value\";s:0:\"\";s:14:\"include_in_pdf\";i:1;s:22:\"add_to_payment_details\";s:0:\"\";s:16:\"max_limit_answer\";s:0:\"\";}'),(589,16,'_happyforms_attachment_3','a:15:{s:2:\"id\";s:12:\"attachment_3\";s:4:\"type\";s:10:\"attachment\";s:5:\"label\";s:16:\"Subir su Archivo\";s:15:\"label_placement\";s:4:\"show\";s:11:\"description\";s:0:\"\";s:16:\"description_mode\";s:0:\"\";s:5:\"width\";s:4:\"full\";s:9:\"css_class\";s:0:\"\";s:11:\"placeholder\";s:11:\"Choose file\";s:18:\"allowed_file_types\";s:10:\"deprecated\";s:23:\"allowed_file_extensions\";s:44:\"csv,txt,pdf,zip,jpg,jpeg,gif,png,bmp,mp3,mp4\";s:13:\"max_file_size\";d:4000;s:14:\"min_file_count\";i:1;s:14:\"max_file_count\";i:2;s:8:\"required\";i:1;}'); /*!40000 ALTER TABLE `wpcs_postmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wpcs_posts` -- DROP TABLE IF EXISTS `wpcs_posts`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wpcs_posts` ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_author` bigint(20) unsigned NOT NULL DEFAULT 0, `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content` longtext NOT NULL, `post_title` text NOT NULL, `post_excerpt` text NOT NULL, `post_status` varchar(20) NOT NULL DEFAULT 'publish', `comment_status` varchar(20) NOT NULL DEFAULT 'open', `ping_status` varchar(20) NOT NULL DEFAULT 'open', `post_password` varchar(255) NOT NULL DEFAULT '', `post_name` varchar(200) NOT NULL DEFAULT '', `to_ping` text NOT NULL, `pinged` text NOT NULL, `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content_filtered` longtext NOT NULL, `post_parent` bigint(20) unsigned NOT NULL DEFAULT 0, `guid` varchar(255) NOT NULL DEFAULT '', `menu_order` int(11) NOT NULL DEFAULT 0, `post_type` varchar(20) NOT NULL DEFAULT 'post', `post_mime_type` varchar(100) NOT NULL DEFAULT '', `comment_count` bigint(20) NOT NULL DEFAULT 0, PRIMARY KEY (`ID`), KEY `post_name` (`post_name`(191)), KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`), KEY `post_parent` (`post_parent`), KEY `post_author` (`post_author`) ) ENGINE=MyISAM AUTO_INCREMENT=18 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wpcs_posts` -- LOCK TABLES `wpcs_posts` WRITE; /*!40000 ALTER TABLE `wpcs_posts` DISABLE KEYS */; INSERT INTO `wpcs_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES (1,1,'2024-03-15 02:47:16','2024-03-15 02:47:16','\n

Welcome to WordPress. This is your first post. Edit or delete it, then start writing!

\n','Hello world!','','publish','open','open','','hello-world','','','2024-03-15 02:47:16','2024-03-15 02:47:16','',0,'https://ecco.anet.cl/?p=1',0,'post','',1),(2,1,'2024-03-15 02:47:16','2024-03-15 02:47:16','\n

This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:

\n\n\n\n

Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)

\n\n\n\n

...or something like this:

\n\n\n\n

The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.

\n\n\n\n

As a new WordPress user, you should go to your dashboard to delete this page and create new pages for your content. Have fun!

\n','Sample Page','','publish','closed','open','','sample-page','','','2024-03-15 02:47:16','2024-03-15 02:47:16','',0,'https://ecco.anet.cl/?page_id=2',0,'page','',0),(3,1,'2024-03-15 02:47:16','2024-03-15 02:47:16','

Who we are

Suggested text: Our website address is: https://ecco.anet.cl.

Comments

Suggested text: When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor’s IP address and browser user agent string to help spam detection.

An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.

Media

Suggested text: If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.

Cookies

Suggested text: If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.

If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.

When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select "Remember Me", your login will persist for two weeks. If you log out of your account, the login cookies will be removed.

If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.

Embedded content from other websites

Suggested text: Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.

These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.

Who we share your data with

Suggested text: If you request a password reset, your IP address will be included in the reset email.

How long we retain your data

Suggested text: If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.

For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.

What rights you have over your data

Suggested text: If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.

Where your data is sent

Suggested text: Visitor comments may be checked through an automated spam detection service.

','Privacy Policy','','draft','closed','open','','privacy-policy','','','2024-03-15 02:47:16','2024-03-15 02:47:16','',0,'https://ecco.anet.cl/?page_id=3',0,'page','',0),(4,0,'2024-03-15 02:47:17','2024-03-15 02:47:17','','Navigation','','publish','closed','closed','','navigation','','','2024-03-15 02:47:17','2024-03-15 02:47:17','',0,'https://ecco.anet.cl/2024/03/15/navigation/',0,'wp_navigation','',0),(8,2,'2024-03-15 02:50:43','2024-03-15 02:50:43','','Sample Form','','publish','closed','closed','','8','','','2024-03-15 02:50:43','2024-03-15 02:50:43','',0,'https://ecco.anet.cl/?p=8',0,'happyform','',0),(9,2,'2024-03-15 02:52:37','2024-03-15 02:52:37','','cargar','','publish','closed','closed','','9','','','2024-03-15 02:55:55','2024-03-15 02:55:55','',0,'https://ecco.anet.cl/?happyform=9',0,'happyform','',0),(11,2,'2024-03-15 02:52:50','2024-03-15 02:52:50','{\"version\": 2, \"isGlobalStylesUserThemeJSON\": true }','Custom Styles','','publish','closed','closed','','wp-global-styles-twentytwentyfour','','','2024-03-15 02:52:50','2024-03-15 02:52:50','',0,'https://ecco.anet.cl/2024/03/15/wp-global-styles-twentytwentyfour/',0,'wp_global_styles','',0),(12,2,'2024-03-15 02:53:15','2024-03-15 02:53:15','[form id=\"16\"]','principal','','publish','closed','closed','','principal','','','2024-03-15 03:19:18','2024-03-15 03:19:18','',0,'https://ecco.anet.cl/?page_id=12',0,'page','',0),(13,2,'2024-03-15 02:53:15','2024-03-15 02:53:15','','principal','','inherit','closed','closed','','12-revision-v1','','','2024-03-15 02:53:15','2024-03-15 02:53:15','',12,'https://ecco.anet.cl/?p=13',0,'revision','',0),(14,2,'2024-03-15 02:53:37','2024-03-15 02:53:37','[form id=\"9\"]','principal','','inherit','closed','closed','','12-revision-v1','','','2024-03-15 02:53:37','2024-03-15 02:53:37','',12,'https://ecco.anet.cl/?p=14',0,'revision','',0),(16,1,'2024-03-15 03:15:33','2024-03-15 03:15:33','','Nombre','','publish','closed','closed','','16','','','2024-03-15 03:18:31','2024-03-15 03:18:31','',0,'https://ecco.anet.cl/?happyform=16',0,'happyform','',0),(17,1,'2024-03-15 03:19:18','2024-03-15 03:19:18','[form id=\"16\"]','principal','','inherit','closed','closed','','12-revision-v1','','','2024-03-15 03:19:18','2024-03-15 03:19:18','',12,'https://ecco.anet.cl/?p=17',0,'revision','',0); /*!40000 ALTER TABLE `wpcs_posts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wpcs_term_relationships` -- DROP TABLE IF EXISTS `wpcs_term_relationships`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wpcs_term_relationships` ( `object_id` bigint(20) unsigned NOT NULL DEFAULT 0, `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT 0, `term_order` int(11) NOT NULL DEFAULT 0, PRIMARY KEY (`object_id`,`term_taxonomy_id`), KEY `term_taxonomy_id` (`term_taxonomy_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wpcs_term_relationships` -- LOCK TABLES `wpcs_term_relationships` WRITE; /*!40000 ALTER TABLE `wpcs_term_relationships` DISABLE KEYS */; INSERT INTO `wpcs_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES (1,1,0),(11,2,0); /*!40000 ALTER TABLE `wpcs_term_relationships` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wpcs_term_taxonomy` -- DROP TABLE IF EXISTS `wpcs_term_taxonomy`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wpcs_term_taxonomy` ( `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT 0, `taxonomy` varchar(32) NOT NULL DEFAULT '', `description` longtext NOT NULL, `parent` bigint(20) unsigned NOT NULL DEFAULT 0, `count` bigint(20) NOT NULL DEFAULT 0, PRIMARY KEY (`term_taxonomy_id`), UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`), KEY `taxonomy` (`taxonomy`) ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wpcs_term_taxonomy` -- LOCK TABLES `wpcs_term_taxonomy` WRITE; /*!40000 ALTER TABLE `wpcs_term_taxonomy` DISABLE KEYS */; INSERT INTO `wpcs_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES (1,1,'category','',0,1),(2,2,'wp_theme','',0,1); /*!40000 ALTER TABLE `wpcs_term_taxonomy` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wpcs_termmeta` -- DROP TABLE IF EXISTS `wpcs_termmeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wpcs_termmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT 0, `meta_key` varchar(255) DEFAULT NULL, `meta_value` longtext DEFAULT NULL, PRIMARY KEY (`meta_id`), KEY `term_id` (`term_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wpcs_termmeta` -- LOCK TABLES `wpcs_termmeta` WRITE; /*!40000 ALTER TABLE `wpcs_termmeta` DISABLE KEYS */; /*!40000 ALTER TABLE `wpcs_termmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wpcs_terms` -- DROP TABLE IF EXISTS `wpcs_terms`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wpcs_terms` ( `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(200) NOT NULL DEFAULT '', `slug` varchar(200) NOT NULL DEFAULT '', `term_group` bigint(10) NOT NULL DEFAULT 0, PRIMARY KEY (`term_id`), KEY `slug` (`slug`(191)), KEY `name` (`name`(191)) ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wpcs_terms` -- LOCK TABLES `wpcs_terms` WRITE; /*!40000 ALTER TABLE `wpcs_terms` DISABLE KEYS */; INSERT INTO `wpcs_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES (1,'Uncategorized','uncategorized',0),(2,'twentytwentyfour','twentytwentyfour',0); /*!40000 ALTER TABLE `wpcs_terms` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wpcs_usermeta` -- DROP TABLE IF EXISTS `wpcs_usermeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wpcs_usermeta` ( `umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `user_id` bigint(20) unsigned NOT NULL DEFAULT 0, `meta_key` varchar(255) DEFAULT NULL, `meta_value` longtext DEFAULT NULL, PRIMARY KEY (`umeta_id`), KEY `user_id` (`user_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=MyISAM AUTO_INCREMENT=43 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wpcs_usermeta` -- LOCK TABLES `wpcs_usermeta` WRITE; /*!40000 ALTER TABLE `wpcs_usermeta` DISABLE KEYS */; INSERT INTO `wpcs_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES (1,1,'nickname','sistem'),(2,1,'first_name',''),(3,1,'last_name',''),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'syntax_highlighting','true'),(7,1,'comment_shortcuts','false'),(8,1,'admin_color','fresh'),(9,1,'use_ssl','0'),(10,1,'show_admin_bar_front','true'),(11,1,'locale',''),(12,1,'wpcs_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'wpcs_user_level','10'),(14,1,'dismissed_wp_pointers',''),(15,1,'show_welcome_panel','1'),(16,1,'session_tokens','a:1:{s:64:\"269f0888b1952d319c806bc4bbcd68637bddc83d33ab93c1a9b36d4484e34f36\";a:4:{s:10:\"expiration\";i:1710643644;s:2:\"ip\";s:13:\"191.126.32.18\";s:2:\"ua\";s:117:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36\";s:5:\"login\";i:1710470844;}}'),(17,1,'wpcs_dashboard_quick_press_last_post_id','5'),(18,1,'community-events-location','a:1:{s:2:\"ip\";s:12:\"191.126.32.0\";}'),(19,2,'nickname','editor'),(20,2,'first_name','Alvaro'),(21,2,'last_name','Llarehna'),(22,2,'description',''),(23,2,'rich_editing','true'),(24,2,'syntax_highlighting','true'),(25,2,'comment_shortcuts','false'),(26,2,'admin_color','fresh'),(27,2,'use_ssl','0'),(28,2,'show_admin_bar_front','true'),(29,2,'locale',''),(30,2,'wpcs_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(31,2,'wpcs_user_level','10'),(32,2,'dismissed_wp_pointers',''),(33,2,'session_tokens','a:2:{s:64:\"67d36052b7331d4a273874509cfae7bb1bdde5b4b0d0492370d3df3af8b59945\";a:4:{s:10:\"expiration\";i:1710643756;s:2:\"ip\";s:11:\"190.5.32.32\";s:2:\"ua\";s:117:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36\";s:5:\"login\";i:1710470956;}s:64:\"7a7936c9953bfa137eeec6118763b6a70e1edc671317503fc8038d6575436894\";a:4:{s:10:\"expiration\";i:1710686969;s:2:\"ip\";s:12:\"190.5.33.221\";s:2:\"ua\";s:117:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36\";s:5:\"login\";i:1710514169;}}'),(34,2,'wpcs_dashboard_quick_press_last_post_id','6'),(35,2,'community-events-location','a:1:{s:2:\"ip\";s:10:\"190.5.33.0\";}'),(36,2,'wpcs_persisted_preferences','a:2:{s:14:\"core/edit-post\";a:1:{s:26:\"isComplementaryAreaVisible\";b:1;}s:9:\"_modified\";s:24:\"2024-03-15T02:52:51.030Z\";}'),(37,2,'wpcs_user-settings','editor=html'),(38,2,'wpcs_user-settings-time','1710471212'),(39,2,'happyforms-dismissed-notices','a:0:{}'),(40,1,'wpcs_user-settings','uploader=1&editor=html'),(41,1,'wpcs_user-settings-time','1710472753'),(42,1,'happyforms-dismissed-notices','a:0:{}'); /*!40000 ALTER TABLE `wpcs_usermeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wpcs_users` -- DROP TABLE IF EXISTS `wpcs_users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wpcs_users` ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `user_login` varchar(60) NOT NULL DEFAULT '', `user_pass` varchar(255) NOT NULL DEFAULT '', `user_nicename` varchar(50) NOT NULL DEFAULT '', `user_email` varchar(100) NOT NULL DEFAULT '', `user_url` varchar(100) NOT NULL DEFAULT '', `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `user_activation_key` varchar(255) NOT NULL DEFAULT '', `user_status` int(11) NOT NULL DEFAULT 0, `display_name` varchar(250) NOT NULL DEFAULT '', PRIMARY KEY (`ID`), KEY `user_login_key` (`user_login`), KEY `user_nicename` (`user_nicename`), KEY `user_email` (`user_email`) ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wpcs_users` -- LOCK TABLES `wpcs_users` WRITE; /*!40000 ALTER TABLE `wpcs_users` DISABLE KEYS */; INSERT INTO `wpcs_users` (`ID`, `user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `user_status`, `display_name`) VALUES (1,'sistem','$P$Bs.e8fm.tOZBP68ereh6v3ms/y3FVl0','sistem','admin@ecco.anet.cl','https://ecco.anet.cl','2024-03-15 02:47:16','',0,'sistem'),(2,'editor','$P$B9V0mExHkGZ9JaMyL4DMqAGMJnsRaM/','editor','allarehna@gmail.com','','2024-03-15 02:47:47','1710470867:$P$BTs34ctvAumqVzo05OZ00U5t41lGil1',0,'Alvaro Llarehna'); /*!40000 ALTER TABLE `wpcs_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Dumping events for database 'anet_wp961' -- -- -- Dumping routines for database 'anet_wp961' -- /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2025-02-09 14:31:53