0byt3m1n1
Path:
/
data
/
9
/
1
/
94
/
158
/
1909973
/
meta
/
2079253
/
mysql.backup
/
[
Home
]
File: 1_02e51c3_6.mysqlcluster25.bak.sql
-- MySQL dump 10.13 Distrib 5.6.24, for Linux (x86_64) -- -- Host: mysqlcluster25 Database: 1_02e51c3_6 -- ------------------------------------------------------ -- Server version 5.6.47-87.0-56-log /*!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 utf8 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `wp_commentmeta` -- DROP TABLE IF EXISTS `wp_commentmeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_commentmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_520_ci, PRIMARY KEY (`meta_id`), KEY `comment_id` (`comment_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_commentmeta` -- LOCK TABLES `wp_commentmeta` WRITE; /*!40000 ALTER TABLE `wp_commentmeta` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_commentmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_comments` -- DROP TABLE IF EXISTS `wp_comments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_comments` ( `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0', `comment_author` tinytext COLLATE utf8mb4_unicode_520_ci NOT NULL, `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_content` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `comment_karma` int(11) NOT NULL DEFAULT '0', `comment_approved` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '1', `comment_agent` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `comment_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `user_id` bigint(20) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`comment_ID`), KEY `comment_post_ID` (`comment_post_ID`), KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`), KEY `comment_date_gmt` (`comment_date_gmt`), KEY `comment_parent` (`comment_parent`), KEY `comment_author_email` (`comment_author_email`(10)) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_comments` -- LOCK TABLES `wp_comments` WRITE; /*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */; INSERT INTO `wp_comments` VALUES (1,1,'A WordPress Commenter','wapuu@wordpress.example','https://wordpress.org/','','2018-02-06 17:51:13','2018-02-06 17:51:13','Hi, this is a comment.\nTo get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.\nCommenter avatars come from <a href=\"https://gravatar.com\">Gravatar</a>.',0,'1','','',0,0); /*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_links` -- DROP TABLE IF EXISTS `wp_links`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_links` ( `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `link_url` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `link_name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `link_image` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `link_target` varchar(25) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `link_description` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `link_visible` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'Y', `link_owner` bigint(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) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `link_notes` mediumtext COLLATE utf8mb4_unicode_520_ci NOT NULL, `link_rss` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', PRIMARY KEY (`link_id`), KEY `link_visible` (`link_visible`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_links` -- LOCK TABLES `wp_links` WRITE; /*!40000 ALTER TABLE `wp_links` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_links` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_options` -- DROP TABLE IF EXISTS `wp_options`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_options` ( `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `option_name` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `option_value` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL, `autoload` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'yes', PRIMARY KEY (`option_id`), UNIQUE KEY `option_name` (`option_name`) ) ENGINE=InnoDB AUTO_INCREMENT=346 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_options` -- LOCK TABLES `wp_options` WRITE; /*!40000 ALTER TABLE `wp_options` DISABLE KEYS */; INSERT INTO `wp_options` VALUES (1,'siteurl','http://hh-p.org/wordpress2','yes'),(2,'home','http://hh-p.org/wordpress2','yes'),(3,'blogname','PANES','yes'),(4,'blogdescription','Portal de Archivos de Nueva España','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','nancyyturralde@gmail.com','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:89:{s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s: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:5:{i:0;s:19:\"akismet/akismet.php\";i:1;s:36:\"contact-form-7/wp-contact-form-7.php\";i:2;s:39:\"siteorigin-panels/siteorigin-panels.php\";i:3;s:29:\"wp-mail-smtp/wp_mail_smtp.php\";i:4;s:33:\"wps-hide-login/wps-hide-login.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','twentysixteen','yes'),(41,'stylesheet','twentysixteen','yes'),(42,'comment_whitelist','1','yes'),(43,'blacklist_keys','','no'),(44,'comment_registration','0','yes'),(45,'html_type','text/html','yes'),(46,'use_trackback','0','yes'),(47,'default_role','subscriber','yes'),(48,'db_version','38590','yes'),(49,'uploads_use_yearmonth_folders','1','yes'),(50,'upload_path','','yes'),(51,'blog_public','1','yes'),(52,'default_link_category','2','yes'),(53,'show_on_front','posts','yes'),(54,'tag_base','','yes'),(55,'show_avatars','1','yes'),(56,'avatar_rating','G','yes'),(57,'upload_url_path','','yes'),(58,'thumbnail_size_w','150','yes'),(59,'thumbnail_size_h','150','yes'),(60,'thumbnail_crop','1','yes'),(61,'medium_size_w','300','yes'),(62,'medium_size_h','300','yes'),(63,'avatar_default','mystery','yes'),(64,'large_size_w','1024','yes'),(65,'large_size_h','1024','yes'),(66,'image_default_link_type','none','yes'),(67,'image_default_size','','yes'),(68,'image_default_align','','yes'),(69,'close_comments_for_old_posts','0','yes'),(70,'close_comments_days_old','14','yes'),(71,'thread_comments','1','yes'),(72,'thread_comments_depth','5','yes'),(73,'page_comments','0','yes'),(74,'comments_per_page','50','yes'),(75,'default_comments_page','newest','yes'),(76,'comment_order','asc','yes'),(77,'sticky_posts','a:0:{}','yes'),(78,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(79,'widget_text','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(80,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(81,'uninstall_plugins','a:0:{}','no'),(82,'timezone_string','','yes'),(83,'page_for_posts','0','yes'),(84,'page_on_front','0','yes'),(85,'default_post_format','0','yes'),(86,'link_manager_enabled','0','yes'),(87,'finished_splitting_shared_terms','1','yes'),(88,'site_icon','0','yes'),(89,'medium_large_size_w','768','yes'),(90,'medium_large_size_h','0','yes'),(91,'initial_db_version','38590','yes'),(92,'wp_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:61:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','yes'),(93,'fresh_site','0','yes'),(94,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(95,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(96,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(97,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(98,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(99,'sidebars_widgets','a:5:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:0:{}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}s:13:\"array_version\";i:3;}','yes'),(100,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(101,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(102,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(103,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(104,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(105,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(106,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(107,'widget_nav_menu','a:2:{s:12:\"_multiwidget\";i:1;i:3;a:1:{s:5:\"title\";s:35:\"Portal de Archivos de Nueva España\";}}','yes'),(108,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'cron','a:5:{i:1547851510;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:1547877075;a:3:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s: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:1547917379;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:1547917490;a:1:{s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}s:7:\"version\";i:2;}','yes'),(110,'theme_mods_twentyseventeen','a:3:{s:18:\"custom_css_post_id\";i:-1;s:18:\"nav_menu_locations\";a:2:{s:3:\"top\";i:2;s:6:\"social\";i:0;}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1526485119;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:9:\"sidebar-2\";a:1:{i:0;s:10:\"nav_menu-3\";}s:9:\"sidebar-3\";a:0:{}}}}','yes'),(124,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:24:\"nancyyturralde@gmail.com\";s:7:\"version\";s:5:\"4.9.9\";s:9:\"timestamp\";i:1547845673;}','no'),(140,'can_compress_scripts','1','no'),(162,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(174,'current_theme','Twenty Sixteen','yes'),(175,'theme_mods_twentyfifteen','a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:2:{s:6:\"social\";i:0;s:7:\"primary\";i:2;}s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1526485365;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:7:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";i:6;s:10:\"nav_menu-3\";}}}}','yes'),(176,'theme_switched','','yes'),(177,'_transient_twentyfifteen_categories','1','yes'),(179,'theme_mods_twentysixteen','a:15:{i:0;b:0;s:18:\"nav_menu_locations\";a:2:{s:6:\"social\";i:0;s:7:\"primary\";i:2;}s:18:\"custom_css_post_id\";i:-1;s:16:\"header_textcolor\";s:6:\"1a1a1a\";s:16:\"background_color\";s:6:\"155672\";s:12:\"color_scheme\";s:4:\"gray\";s:21:\"page_background_color\";s:7:\"#4d545c\";s:10:\"link_color\";s:7:\"#000000\";s:15:\"main_text_color\";s:7:\"#f2f2f2\";s:20:\"secondary_text_color\";s:7:\"#000000\";s:12:\"header_image\";s:76:\"http://hh-p.org/wordpress2/wp-content/uploads/2018/05/cropped-fadedPanes.jpg\";s:17:\"header_image_data\";O:8:\"stdClass\":5:{s:13:\"attachment_id\";i:39;s:3:\"url\";s:76:\"http://hh-p.org/wordpress2/wp-content/uploads/2018/05/cropped-fadedPanes.jpg\";s:13:\"thumbnail_url\";s:76:\"http://hh-p.org/wordpress2/wp-content/uploads/2018/05/cropped-fadedPanes.jpg\";s:6:\"height\";i:476;s:5:\"width\";i:1200;}s:16:\"background_image\";s:79:\"http://hh-p.org/wordpress2/wp-content/uploads/2018/05/backgroundPatternBody.jpg\";s:21:\"background_position_x\";s:5:\"right\";s:21:\"background_position_y\";s:6:\"bottom\";}','yes'),(196,'category_children','a:0:{}','yes'),(232,'recently_activated','a:0:{}','yes'),(246,'wpcf7','a:2:{s:7:\"version\";s:5:\"5.0.1\";s:13:\"bulk_validate\";a:4:{s:9:\"timestamp\";i:1526584777;s:7:\"version\";s:5:\"5.0.1\";s:11:\"count_valid\";i:1;s:13:\"count_invalid\";i:0;}}','yes'),(255,'wp_mail_smtp_version','1.2.5','yes'),(256,'wp_mail_smtp','a:5:{s:4:\"mail\";a:4:{s:10:\"from_email\";s:24:\"nancyyturralde@gmail.com\";s:9:\"from_name\";s:5:\"PANES\";s:6:\"mailer\";s:5:\"gmail\";s:11:\"return_path\";b:1;}s:4:\"smtp\";a:7:{s:7:\"autotls\";s:3:\"yes\";s:4:\"host\";s:0:\"\";s:4:\"port\";s:0:\"\";s:10:\"encryption\";s:4:\"none\";s:4:\"user\";s:0:\"\";s:4:\"pass\";s:0:\"\";s:4:\"auth\";b:0;}s:5:\"gmail\";a:3:{s:9:\"client_id\";s:72:\"767409467665-3pnsma2l28lteraiveu3lflv3okf44d7.apps.googleusercontent.com\";s:13:\"client_secret\";s:24:\"aiKh0Sjntg0LNqnZ8SgfGdod\";s:9:\"auth_code\";s:89:\"4/AADry38F40jdR7AcCr2NaMG8mr5fpGZxWbKpmiZMXrNtQxONLgE74s6OTignudJC9aPvwyDz2FarMuVGfLsxNiQ\";}s:7:\"mailgun\";a:2:{s:7:\"api_key\";s:0:\"\";s:6:\"domain\";s:0:\"\";}s:8:\"sendgrid\";a:1:{s:7:\"api_key\";s:0:\"\";}}','no'),(257,'_amn_smtp_last_checked','1527292800','yes'),(258,'wp_mail_smtp_debug','a:6:{i:0;s:134:\"cURL error 60: SSL certificate problem: unable to get local issuer certificate (see http://curl.haxx.se/libcurl/c/libcurl-errors.html)\";i:1;s:134:\"cURL error 60: SSL certificate problem: unable to get local issuer certificate (see http://curl.haxx.se/libcurl/c/libcurl-errors.html)\";i:2;s:134:\"cURL error 60: SSL certificate problem: unable to get local issuer certificate (see http://curl.haxx.se/libcurl/c/libcurl-errors.html)\";i:3;s:172:\"Error while sending via Gmail mailer: cURL error 60: SSL certificate problem: unable to get local issuer certificate (see http://curl.haxx.se/libcurl/c/libcurl-errors.html)\";i:4;s:134:\"cURL error 60: SSL certificate problem: unable to get local issuer certificate (see http://curl.haxx.se/libcurl/c/libcurl-errors.html)\";i:5;s:172:\"Error while sending via Gmail mailer: cURL error 60: SSL certificate problem: unable to get local issuer certificate (see http://curl.haxx.se/libcurl/c/libcurl-errors.html)\";}','no'),(306,'siteorigin_panels_settings','a:0:{}','yes'),(307,'siteorigin_panels_initial_version','2.6.7','no'),(308,'siteorigin_panels_active_version','2.6.7','yes'),(309,'widget_siteorigin-panels-post-content','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(310,'widget_siteorigin-panels-postloop','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(311,'widget_siteorigin-panels-builder','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(312,'widget_akismet_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(322,'_transient_is_multi_author','0','yes'),(340,'_site_transient_timeout_theme_roots','1547847435','no'),(341,'_site_transient_theme_roots','a:3:{s:13:\"twentyfifteen\";s:7:\"/themes\";s:15:\"twentyseventeen\";s:7:\"/themes\";s:13:\"twentysixteen\";s:7:\"/themes\";}','no'),(343,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:3:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.0.3.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.0.3.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.0.3-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.0.3-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"5.0.3\";s:7:\"version\";s:5:\"5.0.3\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.0\";s:15:\"partial_version\";s:0:\"\";}i:1;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.0.3.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.0.3.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.0.3-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.0.3-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"5.0.3\";s:7:\"version\";s:5:\"5.0.3\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.0\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:2;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.0.2.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.0.2.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.0.2-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.0.2-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"5.0.2\";s:7:\"version\";s:5:\"5.0.2\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.0\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}}s:12:\"last_checked\";i:1547845672;s:15:\"version_checked\";s:5:\"4.9.9\";s:12:\"translations\";a:0:{}}','no'),(344,'_site_transient_update_themes','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1547845672;s:7:\"checked\";a:3:{s:13:\"twentyfifteen\";s:3:\"1.9\";s:15:\"twentyseventeen\";s:3:\"1.5\";s:13:\"twentysixteen\";s:3:\"1.4\";}s:8:\"response\";a:3:{s:13:\"twentyfifteen\";a:4:{s:5:\"theme\";s:13:\"twentyfifteen\";s:11:\"new_version\";s:3:\"2.3\";s:3:\"url\";s:43:\"https://wordpress.org/themes/twentyfifteen/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/theme/twentyfifteen.2.3.zip\";}s:15:\"twentyseventeen\";a:4:{s:5:\"theme\";s:15:\"twentyseventeen\";s:11:\"new_version\";s:3:\"2.0\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentyseventeen/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentyseventeen.2.0.zip\";}s:13:\"twentysixteen\";a:4:{s:5:\"theme\";s:13:\"twentysixteen\";s:11:\"new_version\";s:3:\"1.8\";s:3:\"url\";s:43:\"https://wordpress.org/themes/twentysixteen/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/theme/twentysixteen.1.8.zip\";}}s:12:\"translations\";a:0:{}}','no'),(345,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1547845677;s:7:\"checked\";a:6:{s:41:\"admin-custom-login/admin-custom-login.php\";s:5:\"2.5.9\";s:19:\"akismet/akismet.php\";s:5:\"4.0.2\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:5:\"5.0.1\";s:39:\"siteorigin-panels/siteorigin-panels.php\";s:5:\"2.6.7\";s:29:\"wp-mail-smtp/wp_mail_smtp.php\";s:5:\"1.2.5\";s:33:\"wps-hide-login/wps-hide-login.php\";s:5:\"1.3.3\";}s:8:\"response\";a:6:{s:41:\"admin-custom-login/admin-custom-login.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:32:\"w.org/plugins/admin-custom-login\";s:4:\"slug\";s:18:\"admin-custom-login\";s:6:\"plugin\";s:41:\"admin-custom-login/admin-custom-login.php\";s:11:\"new_version\";s:5:\"2.7.9\";s:3:\"url\";s:49:\"https://wordpress.org/plugins/admin-custom-login/\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/plugin/admin-custom-login.2.7.9.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/admin-custom-login/assets/icon-256x256.png?rev=1121656\";s:2:\"1x\";s:71:\"https://ps.w.org/admin-custom-login/assets/icon-128x128.png?rev=1121656\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:73:\"https://ps.w.org/admin-custom-login/assets/banner-772x250.jpg?rev=1121656\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.0.2\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:19:\"akismet/akismet.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:3:\"4.1\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/plugin/akismet.4.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:59:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=969272\";s:2:\"1x\";s:59:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=969272\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:61:\"https://ps.w.org/akismet/assets/banner-772x250.jpg?rev=479904\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.0.3\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:36:\"contact-form-7/wp-contact-form-7.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:28:\"w.org/plugins/contact-form-7\";s:4:\"slug\";s:14:\"contact-form-7\";s:6:\"plugin\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:11:\"new_version\";s:5:\"5.1.1\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/contact-form-7/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.1.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/contact-form-7/assets/icon-256x256.png?rev=984007\";s:2:\"1x\";s:66:\"https://ps.w.org/contact-form-7/assets/icon-128x128.png?rev=984007\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/contact-form-7/assets/banner-1544x500.png?rev=860901\";s:2:\"1x\";s:68:\"https://ps.w.org/contact-form-7/assets/banner-772x250.png?rev=880427\";}s:11:\"banners_rtl\";a:0:{}s:14:\"upgrade_notice\";s:147:\"<p>Read the <a href=\"https://contactform7.com/category/releases/\">release announcement post</a> before upgrading. There is an important notice.</p>\";s:6:\"tested\";s:5:\"5.0.1\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:39:\"siteorigin-panels/siteorigin-panels.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:31:\"w.org/plugins/siteorigin-panels\";s:4:\"slug\";s:17:\"siteorigin-panels\";s:6:\"plugin\";s:39:\"siteorigin-panels/siteorigin-panels.php\";s:11:\"new_version\";s:6:\"2.10.0\";s:3:\"url\";s:48:\"https://wordpress.org/plugins/siteorigin-panels/\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/plugin/siteorigin-panels.2.10.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/siteorigin-panels/assets/icon-256x256.png?rev=1044755\";s:2:\"1x\";s:70:\"https://ps.w.org/siteorigin-panels/assets/icon-128x128.png?rev=1044755\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:72:\"https://ps.w.org/siteorigin-panels/assets/banner-772x250.jpg?rev=1044755\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.0.3\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:29:\"wp-mail-smtp/wp_mail_smtp.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:26:\"w.org/plugins/wp-mail-smtp\";s:4:\"slug\";s:12:\"wp-mail-smtp\";s:6:\"plugin\";s:29:\"wp-mail-smtp/wp_mail_smtp.php\";s:11:\"new_version\";s:5:\"1.4.1\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/wp-mail-smtp/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/wp-mail-smtp.1.4.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/wp-mail-smtp/assets/icon-256x256.png?rev=1755440\";s:2:\"1x\";s:65:\"https://ps.w.org/wp-mail-smtp/assets/icon-128x128.png?rev=1755440\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/wp-mail-smtp/assets/banner-1544x500.png?rev=1982773\";s:2:\"1x\";s:67:\"https://ps.w.org/wp-mail-smtp/assets/banner-772x250.png?rev=1982773\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:3:\"5.0\";s:12:\"requires_php\";s:3:\"5.3\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:33:\"wps-hide-login/wps-hide-login.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:28:\"w.org/plugins/wps-hide-login\";s:4:\"slug\";s:14:\"wps-hide-login\";s:6:\"plugin\";s:33:\"wps-hide-login/wps-hide-login.php\";s:11:\"new_version\";s:7:\"1.5.2.1\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/wps-hide-login/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/wps-hide-login.1.5.2.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/wps-hide-login/assets/icon-256x256.png?rev=1820667\";s:2:\"1x\";s:67:\"https://ps.w.org/wps-hide-login/assets/icon-128x128.png?rev=1820667\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/wps-hide-login/assets/banner-1544x500.jpg?rev=1820667\";s:2:\"1x\";s:69:\"https://ps.w.org/wps-hide-login/assets/banner-772x250.jpg?rev=1820667\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.0.2\";s:12:\"requires_php\";s:3:\"7.0\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:0:{}}','no'); /*!40000 ALTER TABLE `wp_options` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_postmeta` -- DROP TABLE IF EXISTS `wp_postmeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_postmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_520_ci, PRIMARY KEY (`meta_id`), KEY `post_id` (`post_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB AUTO_INCREMENT=183 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_postmeta` -- LOCK TABLES `wp_postmeta` WRITE; /*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */; INSERT INTO `wp_postmeta` VALUES (1,2,'_wp_page_template','default'),(2,4,'_edit_last','1'),(3,4,'_edit_lock','1526767132:1'),(4,6,'_edit_last','1'),(5,6,'_edit_lock','1526407098:1'),(6,10,'_edit_last','1'),(7,10,'_edit_lock','1526410830:1'),(10,13,'_wp_attached_file','2018/05/archivosIglesia.pdf'),(11,13,'_edit_lock','1526409538:1'),(12,18,'_edit_last','1'),(13,18,'_edit_lock','1526681790:1'),(17,21,'_edit_last','1'),(18,21,'_edit_lock','1526681708:1'),(19,23,'_edit_last','1'),(20,23,'_edit_lock','1526414085:1'),(21,25,'_edit_last','1'),(22,25,'_edit_lock','1526414314:1'),(31,30,'_wp_attached_file','2018/05/Augustin-December-2012.jpg'),(32,30,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:960;s:4:\"file\";s:34:\"2018/05/Augustin-December-2012.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"Augustin-December-2012-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"Augustin-December-2012-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(33,31,'_wp_attached_file','2018/05/cropped-Augustin-December-2012-2.jpg'),(34,31,'_wp_attachment_context','custom-header'),(35,31,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:745;s:4:\"file\";s:44:\"2018/05/cropped-Augustin-December-2012-2.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"cropped-Augustin-December-2012-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"cropped-Augustin-December-2012-2-300x186.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:186;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:44:\"cropped-Augustin-December-2012-2-768x477.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:477;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:45:\"cropped-Augustin-December-2012-2-1024x636.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:636;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:45:\"cropped-Augustin-December-2012-2-1200x745.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:745;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:17:\"attachment_parent\";i:30;}'),(36,31,'_wp_attachment_custom_header_last_used_twentysixteen','1526488545'),(37,31,'_wp_attachment_is_custom_header','twentysixteen'),(47,34,'_menu_item_type','post_type'),(48,34,'_menu_item_menu_item_parent','0'),(49,34,'_menu_item_object_id','25'),(50,34,'_menu_item_object','page'),(51,34,'_menu_item_target','_blank'),(52,34,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(53,34,'_menu_item_xfn',''),(54,34,'_menu_item_url',''),(55,35,'_menu_item_type','post_type'),(56,35,'_menu_item_menu_item_parent','0'),(57,35,'_menu_item_object_id','23'),(58,35,'_menu_item_object','page'),(59,35,'_menu_item_target','_blank'),(60,35,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(61,35,'_menu_item_xfn',''),(62,35,'_menu_item_url',''),(63,36,'_menu_item_type','post_type'),(64,36,'_menu_item_menu_item_parent','0'),(65,36,'_menu_item_object_id','21'),(66,36,'_menu_item_object','page'),(67,36,'_menu_item_target','_blank'),(68,36,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(69,36,'_menu_item_xfn',''),(70,36,'_menu_item_url',''),(71,37,'_menu_item_type','post_type'),(72,37,'_menu_item_menu_item_parent','0'),(73,37,'_menu_item_object_id','18'),(74,37,'_menu_item_object','page'),(75,37,'_menu_item_target','_blank'),(76,37,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(77,37,'_menu_item_xfn',''),(78,37,'_menu_item_url',''),(81,38,'_wp_attached_file','2018/05/fadedPanes.jpg'),(82,38,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1930;s:6:\"height\";i:1530;s:4:\"file\";s:22:\"2018/05/fadedPanes.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"fadedPanes-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"fadedPanes-300x238.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:238;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"fadedPanes-768x609.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:609;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"fadedPanes-1024x812.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:812;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"fadedPanes-1200x951.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:951;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(83,39,'_wp_attached_file','2018/05/cropped-fadedPanes.jpg'),(84,39,'_wp_attachment_context','custom-header'),(85,39,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:476;s:4:\"file\";s:30:\"2018/05/cropped-fadedPanes.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"cropped-fadedPanes-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"cropped-fadedPanes-300x119.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:119;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"cropped-fadedPanes-768x305.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:305;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"cropped-fadedPanes-1024x406.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:406;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:31:\"cropped-fadedPanes-1200x476.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:17:\"attachment_parent\";i:38;}'),(86,39,'_wp_attachment_custom_header_last_used_twentysixteen','1526489339'),(87,39,'_wp_attachment_is_custom_header','twentysixteen'),(93,42,'_wp_attached_file','2018/05/backgroundPatternBody.jpg'),(94,42,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:33:\"2018/05/backgroundPatternBody.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"backgroundPatternBody-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"backgroundPatternBody-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(95,42,'_wp_attachment_is_custom_background','twentysixteen'),(124,55,'_customize_changeset_uuid','fa15491a-12ef-42df-aa79-a3837b6caba9'),(126,56,'_customize_changeset_uuid','fa15491a-12ef-42df-aa79-a3837b6caba9'),(128,60,'_menu_item_type','post_type'),(129,60,'_menu_item_menu_item_parent','49'),(130,60,'_menu_item_object_id','55'),(131,60,'_menu_item_object','page'),(132,60,'_menu_item_target','_blank'),(133,60,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(134,60,'_menu_item_xfn',''),(135,60,'_menu_item_url',''),(136,61,'_menu_item_type','post_type'),(137,61,'_menu_item_menu_item_parent','49'),(138,61,'_menu_item_object_id','56'),(139,61,'_menu_item_object','page'),(140,61,'_menu_item_target',''),(141,61,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(142,61,'_menu_item_xfn',''),(143,61,'_menu_item_url',''),(148,63,'_form','<label> Your Name (required)\n [text* your-name] </label>\n\n<label> Your Email (required)\n [email* your-email] </label>\n\n<label> Subject\n [text your-subject] </label>\n\n<label> Your Message\n [textarea your-message] </label>\n\n[submit \"Send\"]'),(149,63,'_mail','a:8:{s:7:\"subject\";s:22:\"PANES \"[your-subject]\"\";s:6:\"sender\";s:32:\"[your-name] <wordpress@hh-p.org>\";s:4:\"body\";s:170:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on PANES (http://hh-p.org/wordpress2)\";s:9:\"recipient\";s:24:\"nancyyturralde@gmail.com\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'),(150,63,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:22:\"PANES \"[your-subject]\"\";s:6:\"sender\";s:26:\"PANES <wordpress@hh-p.org>\";s:4:\"body\";s:112:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on PANES (http://hh-p.org/wordpress2)\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:34:\"Reply-To: nancyyturralde@gmail.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'),(151,63,'_messages','a:8:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";}'),(152,63,'_additional_settings',NULL),(153,63,'_locale','en_US'),(154,64,'_edit_last','1'),(155,64,'_edit_lock','1526584910:1'),(156,65,'_edit_last','1'),(157,65,'_edit_lock','1526589525:1'),(167,69,'_menu_item_type','post_type'),(168,69,'_menu_item_menu_item_parent','0'),(169,69,'_menu_item_object_id','65'),(170,69,'_menu_item_object','page'),(171,69,'_menu_item_target',''),(172,69,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(173,69,'_menu_item_xfn',''),(174,69,'_menu_item_url',''),(176,55,'_edit_lock','1526600175:1'),(177,55,'_edit_last','1'),(182,16,'panels_data','a:3:{s:7:\"widgets\";a:1:{i:0;a:5:{s:6:\"filter\";s:1:\"1\";s:4:\"text\";s:222:\"<p style=\"text-align: center;\"><a href=\"http://hh-p.org/wordpress2/mexico/\">México</a></p>\n<p style=\"text-align: center;\"><a href=\"http://hh-p.org/wordpress2/wp-content/uploads/2018/05/archivosIglesia.pdf\">España</a></p>\";s:5:\"title\";s:0:\"\";s:4:\"type\";s:6:\"visual\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Editor_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"7389996d-4dff-4f38-abf1-91e694259038\";s:5:\"style\";a:0:{}}}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:1:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'); /*!40000 ALTER TABLE `wp_postmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_posts` -- DROP TABLE IF EXISTS `wp_posts`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_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 COLLATE utf8mb4_unicode_520_ci NOT NULL, `post_title` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `post_excerpt` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `post_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'publish', `comment_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open', `ping_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open', `post_password` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `post_name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `to_ping` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `pinged` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content_filtered` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL, `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `guid` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `menu_order` int(11) NOT NULL DEFAULT '0', `post_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'post', `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `comment_count` bigint(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=InnoDB AUTO_INCREMENT=74 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_posts` -- LOCK TABLES `wp_posts` WRITE; /*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */; INSERT INTO `wp_posts` VALUES (1,1,'2018-02-06 17:51:13','2018-02-06 17:51:13','Welcome to WordPress. This is your first post. Edit or delete it, then start writing!','Hello world!','','publish','open','open','','hello-world','','','2018-02-06 17:51:13','2018-02-06 17:51:13','',0,'http://hh-p.org/wordpress2/?p=1',0,'post','',1),(2,1,'2018-02-06 17:51:13','2018-02-06 17:51:13','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<blockquote>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.)</blockquote>\n\n...or something like this:\n\n<blockquote>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.</blockquote>\n\nAs a new WordPress user, you should go to <a href=\"http://hh-p.org/wordpress2/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!','Sample Page','','publish','closed','open','','sample-page','','','2018-02-06 17:51:13','2018-02-06 17:51:13','',0,'http://hh-p.org/wordpress2/?page_id=2',0,'page','',0),(4,1,'2018-05-15 17:58:31','2018-05-15 17:58:31','<p style=\"text-align: center;\"><a href=\"http://hh-p.org/wordpress2/mexico/\">México</a></p>\r\n<p style=\"text-align: center;\"><a href=\"http://hh-p.org/wordpress2/wp-content/uploads/2018/05/archivosIglesia.pdf\">España</a></p>','Search','','publish','closed','closed','','search','','','2018-05-19 21:33:48','2018-05-19 21:33:48','',0,'http://hh-p.org/wordpress2/?page_id=4',0,'page','',0),(5,1,'2018-05-15 17:52:38','2018-05-15 17:52:38','<p style=\"text-align: center;\">México</p>\r\n<p style=\"text-align: center;\">España</p>','Search','','inherit','closed','closed','','4-revision-v1','','','2018-05-15 17:52:38','2018-05-15 17:52:38','',4,'http://hh-p.org/wordpress2/2018/05/15/4-revision-v1/',0,'revision','',0),(6,1,'2018-05-15 18:00:30','2018-05-15 18:00:30','Aguascalientes\r\nBaja California Sur\r\nChihuahua\r\nDurango\r\nMexico Northwestern States\r\nMichoacan\r\nSonora\r\nZacatecas\r\nNuevo León\r\nCoahuila\r\nJalisco','México','','publish','closed','closed','','mexico','','','2018-05-15 18:00:30','2018-05-15 18:00:30','',0,'http://hh-p.org/wordpress2/?page_id=6',0,'page','',0),(7,1,'2018-05-15 17:56:36','2018-05-15 17:56:36','Aguascalientes\r\nBaja California Sur\r\nChihuahua\r\nDurango\r\nMexico Northwestern States\r\nMichoacan\r\nSonora\r\nZacatecas\r\nNuevo León\r\nCoahuila\r\nJalisco','México','','inherit','closed','closed','','6-revision-v1','','','2018-05-15 17:56:36','2018-05-15 17:56:36','',6,'http://hh-p.org/wordpress2/2018/05/15/6-revision-v1/',0,'revision','',0),(9,1,'2018-05-15 18:02:33','2018-05-15 18:02:33','<p style=\"text-align: center;\"><a href=\"http://hh-p.org/wordpress2/mexico/\">México</a></p>\r\n<p style=\"text-align: center;\">España</p>','Search','','inherit','closed','closed','','4-revision-v1','','','2018-05-15 18:02:33','2018-05-15 18:02:33','',4,'http://hh-p.org/wordpress2/2018/05/15/4-revision-v1/',0,'revision','',0),(10,1,'2018-05-15 18:43:37','2018-05-15 18:43:37','<p style=\"text-align: center;\"><a href=\"http://hh-p.org/wordpress2/wp-content/uploads/2018/05/archivosIglesia.pdf\">Archivo Iglesia</a></p>\r\n \r\n\r\n ','España','','publish','closed','closed','','espana','','','2018-05-15 18:56:03','2018-05-15 18:56:03','',0,'http://hh-p.org/wordpress2/?page_id=10',0,'page','',0),(11,1,'2018-05-15 18:13:56','2018-05-15 18:13:56','<p style=\"text-align: center;\">Archivo Iglesia</p>\r\n \r\n\r\n ','España','','inherit','closed','closed','','10-revision-v1','','','2018-05-15 18:13:56','2018-05-15 18:13:56','',10,'http://hh-p.org/wordpress2/2018/05/15/10-revision-v1/',0,'revision','',0),(13,1,'2018-05-15 18:22:07','2018-05-15 18:22:07','','España','','inherit','open','closed','','archivosiglesia','','','2018-05-15 19:35:02','2018-05-15 19:35:02','',10,'http://hh-p.org/wordpress2/wp-content/uploads/2018/05/archivosIglesia.pdf',0,'attachment','application/pdf',0),(14,1,'2018-05-15 18:43:37','2018-05-15 18:43:37','<p style=\"text-align: center;\"><a href=\"http://hh-p.org/wordpress2/wp-content/uploads/2018/05/archivosIglesia.pdf\">Archivo Iglesia</a></p>\r\n \r\n\r\n ','España','','inherit','closed','closed','','10-revision-v1','','','2018-05-15 18:43:37','2018-05-15 18:43:37','',10,'http://hh-p.org/wordpress2/2018/05/15/10-revision-v1/',0,'revision','',0),(15,1,'2018-05-15 18:56:17','2018-05-15 18:56:17','<p style=\"text-align: center;\"><a href=\"http://hh-p.org/wordpress2/wp-content/uploads/2018/05/archivosIglesia.pdf\">Archivo Iglesia</a></p>\r\n \r\n\r\n ','España','','inherit','closed','closed','','10-autosave-v1','','','2018-05-15 18:56:17','2018-05-15 18:56:17','',10,'http://hh-p.org/wordpress2/2018/05/15/10-autosave-v1/',0,'revision','',0),(16,1,'2018-05-19 21:51:19','2018-05-19 21:51:19','<div id=\"pl-4\" class=\"panel-layout\" ><div id=\"pg-4-0\" class=\"panel-grid panel-no-style\" ><div id=\"pgc-4-0-0\" class=\"panel-grid-cell\" data-weight=\"1\" ><div id=\"panel-4-0-0-0\" class=\"so-panel panel-first-child panel-last-child\" data-index=\"0\" ></div></div></div><div id=\"pg-4-1\" class=\"panel-grid panel-no-style\" data-style=\"{"background_image_attachment":false,"background_display":"tile","cell_alignment":"flex-start"}\" ><div id=\"pgc-4-1-0\" class=\"panel-grid-cell\" data-weight=\"0.5\" ><div id=\"panel-4-1-0-0\" class=\"so-panel widget_text panel-first-child panel-last-child\" data-index=\"1\" data-style=\"{"background_image_attachment":false,"background_display":"tile"}\" > <div class=\"textwidget\"><p> </p>\n<p>Mexico</p>\n</div>\n </div></div><div id=\"pgc-4-1-1\" class=\"panel-grid-cell\" data-style=\"{"background_image_attachment":false,"background_display":"tile","vertical_alignment":"auto"}\" data-weight=\"0.5\" ><div id=\"panel-4-1-1-0\" class=\"so-panel widget_text panel-first-child panel-last-child\" data-index=\"2\" data-style=\"{"background_image_attachment":false,"background_display":"tile"}\" > <div class=\"textwidget\"></div>\n </div></div></div></div>','Search','','inherit','closed','closed','','4-autosave-v1','','','2018-05-19 21:51:19','2018-05-19 21:51:19','',4,'http://hh-p.org/wordpress2/2018/05/15/4-autosave-v1/',0,'revision','',0),(17,1,'2018-05-15 19:37:51','2018-05-15 19:37:51','<p style=\"text-align: center;\"><a href=\"http://hh-p.org/wordpress2/mexico/\">México</a></p>\r\n<p style=\"text-align: center;\"><a href=\"http://hh-p.org/wordpress2/wp-content/uploads/2018/05/archivosIglesia.pdf\">España</a></p>','Search','','inherit','closed','closed','','4-revision-v1','','','2018-05-15 19:37:51','2018-05-15 19:37:51','',4,'http://hh-p.org/wordpress2/2018/05/15/4-revision-v1/',0,'revision','',0),(18,1,'2018-05-15 19:55:25','2018-05-15 19:55:25','','About','','publish','closed','closed','','about','','','2018-05-15 19:55:25','2018-05-15 19:55:25','',0,'http://hh-p.org/wordpress2/?page_id=18',0,'page','',0),(19,1,'2018-05-15 19:55:25','2018-05-15 19:55:25','','About','','inherit','closed','closed','','18-revision-v1','','','2018-05-15 19:55:25','2018-05-15 19:55:25','',18,'http://hh-p.org/wordpress2/2018/05/15/18-revision-v1/',0,'revision','',0),(21,1,'2018-05-15 19:56:44','2018-05-15 19:56:44','','Home','','publish','closed','closed','','home','','','2018-05-18 22:14:54','2018-05-18 22:14:54','',0,'http://hh-p.org/wordpress2/?page_id=21',0,'page','',0),(22,1,'2018-05-15 19:56:37','2018-05-15 19:56:37','','Home','','inherit','closed','closed','','21-revision-v1','','','2018-05-15 19:56:37','2018-05-15 19:56:37','',21,'http://hh-p.org/wordpress2/2018/05/15/21-revision-v1/',0,'revision','',0),(23,1,'2018-05-15 19:57:01','2018-05-15 19:57:01','','Research Tools','','publish','closed','closed','','research-tools','','','2018-05-15 19:57:01','2018-05-15 19:57:01','',0,'http://hh-p.org/wordpress2/?page_id=23',0,'page','',0),(24,1,'2018-05-15 19:57:01','2018-05-15 19:57:01','','Research Tools','','inherit','closed','closed','','23-revision-v1','','','2018-05-15 19:57:01','2018-05-15 19:57:01','',23,'http://hh-p.org/wordpress2/2018/05/15/23-revision-v1/',0,'revision','',0),(25,1,'2018-05-15 19:57:15','2018-05-15 19:57:15','','Donate','','publish','closed','closed','','donate','','','2018-05-15 20:00:34','2018-05-15 20:00:34','',0,'http://hh-p.org/wordpress2/?page_id=25',0,'page','',0),(26,1,'2018-05-15 19:57:15','2018-05-15 19:57:15','','Donate','','inherit','closed','closed','','25-revision-v1','','','2018-05-15 19:57:15','2018-05-15 19:57:15','',25,'http://hh-p.org/wordpress2/2018/05/15/25-revision-v1/',0,'revision','',0),(30,1,'2018-05-16 16:25:36','2018-05-16 16:25:36','','Augustin December 2012','','inherit','open','closed','','augustin-december-2012','','','2018-05-16 16:25:36','2018-05-16 16:25:36','',0,'http://hh-p.org/wordpress2/wp-content/uploads/2018/05/Augustin-December-2012.jpg',0,'attachment','image/jpeg',0),(31,1,'2018-05-16 16:28:43','2018-05-16 16:28:43','','cropped-Augustin-December-2012-2.jpg','','inherit','closed','closed','','cropped-augustin-december-2012-jpg','','','2018-05-16 16:28:43','2018-05-16 16:28:43','',0,'http://hh-p.org/wordpress2/wp-content/uploads/2018/05/cropped-Augustin-December-2012.jpg',0,'attachment','image/jpeg',0),(34,1,'2018-05-16 16:35:45','2018-05-16 16:35:45',' ','','','publish','closed','closed','','34','','','2018-05-17 19:29:22','2018-05-17 19:29:22','',0,'http://hh-p.org/wordpress2/2018/05/16/34/',7,'nav_menu_item','',0),(35,1,'2018-05-16 16:35:45','2018-05-16 16:35:45',' ','','','publish','closed','closed','','35','','','2018-05-17 19:29:22','2018-05-17 19:29:22','',0,'http://hh-p.org/wordpress2/2018/05/16/35/',6,'nav_menu_item','',0),(36,1,'2018-05-16 16:35:45','2018-05-16 16:35:45',' ','','','publish','closed','closed','','36','','','2018-05-17 19:29:22','2018-05-17 19:29:22','',0,'http://hh-p.org/wordpress2/2018/05/16/36/',1,'nav_menu_item','',0),(37,1,'2018-05-16 16:35:45','2018-05-16 16:35:45',' ','','','publish','closed','closed','','37','','','2018-05-17 19:29:22','2018-05-17 19:29:22','',0,'http://hh-p.org/wordpress2/2018/05/16/37/',2,'nav_menu_item','',0),(38,1,'2018-05-16 16:44:08','2018-05-16 16:44:08','','fadedPanes','','inherit','open','closed','','fadedpanes','','','2018-05-16 16:44:08','2018-05-16 16:44:08','',0,'http://hh-p.org/wordpress2/wp-content/uploads/2018/05/fadedPanes.jpg',0,'attachment','image/jpeg',0),(39,1,'2018-05-16 16:46:20','2018-05-16 16:46:20','','cropped-fadedPanes.jpg','','inherit','open','closed','','cropped-fadedpanes-jpg','','','2018-05-16 16:46:20','2018-05-16 16:46:20','',0,'http://hh-p.org/wordpress2/wp-content/uploads/2018/05/cropped-fadedPanes.jpg',0,'attachment','image/jpeg',0),(42,1,'2018-05-16 17:11:08','2018-05-16 17:11:08','','backgroundPatternBody','','inherit','open','closed','','backgroundpatternbody','','','2018-05-16 17:11:08','2018-05-16 17:11:08','',0,'http://hh-p.org/wordpress2/wp-content/uploads/2018/05/backgroundPatternBody.jpg',0,'attachment','image/jpeg',0),(55,1,'2018-05-16 17:46:58','2018-05-16 17:46:58','<p style=\"text-align: center;\">Aguascalientes\r\nBaja California Sur\r\nCoahuila\r\nChihuahua\r\nDurango\r\nJalisco\r\nMexico Northwestern States\r\nMichoacan\r\nNuevo León\r\nSonora\r\nZacatecas\r\n\r\n\r\n\r\n</p>\r\n ','México','','publish','closed','closed','','mexico-2','','','2018-05-17 23:34:30','2018-05-17 23:34:30','',0,'http://hh-p.org/wordpress2/?page_id=55',0,'page','',0),(56,1,'2018-05-16 17:46:58','2018-05-16 17:46:58','','España','','publish','closed','closed','','espana-2','','','2018-05-16 17:46:58','2018-05-16 17:46:58','',0,'http://hh-p.org/wordpress2/?page_id=56',0,'page','',0),(58,1,'2018-05-16 17:46:58','2018-05-16 17:46:58','','México','','inherit','closed','closed','','55-revision-v1','','','2018-05-16 17:46:58','2018-05-16 17:46:58','',55,'http://hh-p.org/wordpress2/2018/05/16/55-revision-v1/',0,'revision','',0),(59,1,'2018-05-16 17:46:58','2018-05-16 17:46:58','','España','','inherit','closed','closed','','56-revision-v1','','','2018-05-16 17:46:58','2018-05-16 17:46:58','',56,'http://hh-p.org/wordpress2/2018/05/16/56-revision-v1/',0,'revision','',0),(60,1,'2018-05-16 17:46:58','2018-05-16 17:46:58',' ','','','publish','closed','closed','','60','','','2018-05-17 19:29:22','2018-05-17 19:29:22','',0,'http://hh-p.org/wordpress2/2018/05/16/60/',5,'nav_menu_item','',0),(61,1,'2018-05-16 17:46:58','2018-05-16 17:46:58',' ','','','publish','closed','closed','','61','','','2018-05-17 19:29:22','2018-05-17 19:29:22','',0,'http://hh-p.org/wordpress2/2018/05/16/61/',4,'nav_menu_item','',0),(63,1,'2018-05-17 19:19:36','2018-05-17 19:19:36','<label> Your Name (required)\n [text* your-name] </label>\n\n<label> Your Email (required)\n [email* your-email] </label>\n\n<label> Subject\n [text your-subject] </label>\n\n<label> Your Message\n [textarea your-message] </label>\n\n[submit \"Send\"]\nPANES \"[your-subject]\"\n[your-name] <wordpress@hh-p.org>\nFrom: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on PANES (http://hh-p.org/wordpress2)\nnancyyturralde@gmail.com\nReply-To: [your-email]\n\n0\n0\n\nPANES \"[your-subject]\"\nPANES <wordpress@hh-p.org>\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on PANES (http://hh-p.org/wordpress2)\n[your-email]\nReply-To: nancyyturralde@gmail.com\n\n0\n0\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.','Contact form 1','','publish','closed','closed','','contact-form-1','','','2018-05-17 19:19:36','2018-05-17 19:19:36','',0,'http://hh-p.org/wordpress2/?post_type=wpcf7_contact_form&p=63',0,'wpcf7_contact_form','',0),(64,1,'2018-05-17 19:21:50','0000-00-00 00:00:00','','Contact','','draft','closed','closed','','','','','2018-05-17 19:21:50','2018-05-17 19:21:50','',0,'http://hh-p.org/wordpress2/?page_id=64',0,'page','',0),(65,1,'2018-05-17 19:22:46','2018-05-17 19:22:46','[contact-form-7 id=\"63\" title=\"Contact form 1\"]','Contact','','publish','closed','closed','','contact','','','2018-05-17 19:30:58','2018-05-17 19:30:58','',0,'http://hh-p.org/wordpress2/?page_id=65',0,'page','',0),(66,1,'2018-05-17 19:22:40','2018-05-17 19:22:40','','Contact','','inherit','closed','closed','','65-revision-v1','','','2018-05-17 19:22:40','2018-05-17 19:22:40','',65,'http://hh-p.org/wordpress2/2018/05/17/65-revision-v1/',0,'revision','',0),(67,1,'2018-05-17 19:24:40','2018-05-17 19:24:40','[contact-form-7 id=\"63\" title=\"Contact form 1\"]','Contact','','inherit','closed','closed','','65-revision-v1','','','2018-05-17 19:24:40','2018-05-17 19:24:40','',65,'http://hh-p.org/wordpress2/2018/05/17/65-revision-v1/',0,'revision','',0),(69,1,'2018-05-17 19:29:22','2018-05-17 19:29:22',' ','','','publish','closed','closed','','69','','','2018-05-17 19:29:22','2018-05-17 19:29:22','',0,'http://hh-p.org/wordpress2/?p=69',8,'nav_menu_item','',0),(70,1,'2018-05-17 23:32:47','2018-05-17 23:32:47','<p style=\"text-align: center;\">Aguascalientes\nBaja California Sur\nCoahuila\nChihuahua\nDurango\nJalisco\nMexico Northwestern States\nMichoacan\nNuevo León\nSonora\nZacatecas\n\n\n\n</p>\n ','México','','inherit','closed','closed','','55-autosave-v1','','','2018-05-17 23:32:47','2018-05-17 23:32:47','',55,'http://hh-p.org/wordpress2/2018/05/17/55-autosave-v1/',0,'revision','',0),(71,1,'2018-05-17 23:34:30','2018-05-17 23:34:30','<p style=\"text-align: center;\">Aguascalientes\r\nBaja California Sur\r\nCoahuila\r\nChihuahua\r\nDurango\r\nJalisco\r\nMexico Northwestern States\r\nMichoacan\r\nNuevo León\r\nSonora\r\nZacatecas\r\n\r\n\r\n\r\n</p>\r\n ','México','','inherit','closed','closed','','55-revision-v1','','','2018-05-17 23:34:30','2018-05-17 23:34:30','',55,'http://hh-p.org/wordpress2/2018/05/17/55-revision-v1/',0,'revision','',0),(72,1,'2018-05-18 22:14:04','2018-05-18 22:14:04','','','','inherit','closed','closed','','21-revision-v1','','','2018-05-18 22:14:04','2018-05-18 22:14:04','',21,'http://hh-p.org/wordpress2/2018/05/18/21-revision-v1/',0,'revision','',0),(73,1,'2018-05-18 22:14:54','2018-05-18 22:14:54','','Home','','inherit','closed','closed','','21-revision-v1','','','2018-05-18 22:14:54','2018-05-18 22:14:54','',21,'http://hh-p.org/wordpress2/2018/05/18/21-revision-v1/',0,'revision','',0); /*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_term_relationships` -- DROP TABLE IF EXISTS `wp_term_relationships`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_term_relationships` ( `object_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_order` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`object_id`,`term_taxonomy_id`), KEY `term_taxonomy_id` (`term_taxonomy_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_term_relationships` -- LOCK TABLES `wp_term_relationships` WRITE; /*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */; INSERT INTO `wp_term_relationships` VALUES (1,1,0),(34,2,0),(35,2,0),(36,2,0),(37,2,0),(60,2,0),(61,2,0),(69,2,0); /*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_term_taxonomy` -- DROP TABLE IF EXISTS `wp_term_taxonomy`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_term_taxonomy` ( `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `taxonomy` varchar(32) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `description` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL, `parent` bigint(20) unsigned NOT NULL DEFAULT '0', `count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`term_taxonomy_id`), UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`), KEY `taxonomy` (`taxonomy`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_term_taxonomy` -- LOCK TABLES `wp_term_taxonomy` WRITE; /*!40000 ALTER TABLE `wp_term_taxonomy` DISABLE KEYS */; INSERT INTO `wp_term_taxonomy` VALUES (1,1,'category','',0,1),(2,2,'nav_menu','',0,7); /*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_termmeta` -- DROP TABLE IF EXISTS `wp_termmeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_termmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_520_ci, PRIMARY KEY (`meta_id`), KEY `term_id` (`term_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_termmeta` -- LOCK TABLES `wp_termmeta` WRITE; /*!40000 ALTER TABLE `wp_termmeta` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_termmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_terms` -- DROP TABLE IF EXISTS `wp_terms`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_terms` ( `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `slug` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `term_group` bigint(10) NOT NULL DEFAULT '0', PRIMARY KEY (`term_id`), KEY `slug` (`slug`(191)), KEY `name` (`name`(191)) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_terms` -- LOCK TABLES `wp_terms` WRITE; /*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */; INSERT INTO `wp_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'Panes Menu','panes-menu',0); /*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_usermeta` -- DROP TABLE IF EXISTS `wp_usermeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_usermeta` ( `umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `user_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_520_ci, PRIMARY KEY (`umeta_id`), KEY `user_id` (`user_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB AUTO_INCREMENT=30 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_usermeta` -- LOCK TABLES `wp_usermeta` WRITE; /*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */; INSERT INTO `wp_usermeta` VALUES (1,1,'nickname','ncyturralde'),(2,1,'first_name',''),(3,1,'last_name',''),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'syntax_highlighting','true'),(7,1,'comment_shortcuts','false'),(8,1,'admin_color','fresh'),(9,1,'use_ssl','0'),(10,1,'show_admin_bar_front','true'),(11,1,'locale',''),(12,1,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'wp_user_level','10'),(14,1,'dismissed_wp_pointers','text_widget_custom_html'),(15,1,'default_password_nag',''),(16,1,'show_welcome_panel','1'),(17,1,'session_tokens','a:4:{s:64:\"326eb6a1ac74810e58cb8da6a5f158820a88faa5188db48e7b02d67ce9250455\";a:4:{s:10:\"expiration\";i:1526754138;s:2:\"ip\";s:12:\"108.202.9.81\";s:2:\"ua\";s:129:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299\";s:5:\"login\";i:1526581338;}s:64:\"0cef11407ce3fe31923b8f8c32ee22b9c996a3781db25ee80a94fbfe52eaa98a\";a:4:{s:10:\"expiration\";i:1527797390;s:2:\"ip\";s:12:\"108.202.9.81\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36\";s:5:\"login\";i:1526587790;}s:64:\"25a8402910b74d006007b6979b3c00ce9c4e3d45a57d5c22f778bc0ae1d2ddf9\";a:4:{s:10:\"expiration\";i:1526848692;s:2:\"ip\";s:12:\"108.202.9.81\";s:2:\"ua\";s:129:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299\";s:5:\"login\";i:1526675892;}s:64:\"c6f691789e98cc936e60624e48a5600787f70530f1059b7f9fa8fe1cd21955cc\";a:4:{s:10:\"expiration\";i:1526853338;s:2:\"ip\";s:12:\"108.202.9.81\";s:2:\"ua\";s:129:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299\";s:5:\"login\";i:1526680538;}}'),(18,1,'wp_dashboard_quick_press_last_post_id','3'),(19,1,'community-events-location','a:1:{s:2:\"ip\";s:11:\"108.202.9.0\";}'),(20,1,'closedpostboxes_dashboard','a:0:{}'),(21,1,'metaboxhidden_dashboard','a:4:{i:0;s:19:\"dashboard_right_now\";i:1;s:18:\"dashboard_activity\";i:2;s:21:\"dashboard_quick_press\";i:3;s:17:\"dashboard_primary\";}'),(22,1,'wp_user-settings','hidetb=1&libraryContent=browse&editor=tinymce'),(23,1,'wp_user-settings-time','1526767271'),(24,1,'managenav-menuscolumnshidden','a:4:{i:0;s:15:\"title-attribute\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";}'),(25,1,'metaboxhidden_nav-menus','a:2:{i:0;s:12:\"add-post_tag\";i:1;s:15:\"add-post_format\";}'),(26,1,'nav_menu_recently_edited','2'),(27,1,'closedpostboxes_page','a:1:{i:0;s:13:\"pageparentdiv\";}'),(28,1,'metaboxhidden_page','a:5:{i:0;s:10:\"postcustom\";i:1;s:16:\"commentstatusdiv\";i:2;s:11:\"commentsdiv\";i:3;s:7:\"slugdiv\";i:4;s:9:\"authordiv\";}'),(29,1,'so_panels_directory_enabled','1'); /*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_users` -- DROP TABLE IF EXISTS `wp_users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_users` ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `user_login` varchar(60) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `user_pass` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `user_nicename` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `user_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `user_url` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `user_activation_key` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `user_status` int(11) NOT NULL DEFAULT '0', `display_name` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', PRIMARY KEY (`ID`), KEY `user_login_key` (`user_login`), KEY `user_nicename` (`user_nicename`), KEY `user_email` (`user_email`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_users` -- LOCK TABLES `wp_users` WRITE; /*!40000 ALTER TABLE `wp_users` DISABLE KEYS */; INSERT INTO `wp_users` VALUES (1,'ncyturralde','$P$B1hRoiuB0DrR.fHmIkjr09ur3.vkl.0','ncyturralde','nancyyturralde@gmail.com','','2018-02-06 17:51:13','',0,'ncyturralde'); /*!40000 ALTER TABLE `wp_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Dumping routines for database '1_02e51c3_6' -- /*!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 2020-06-10 6:16:28