-- mysqldump-php https://github.com/ifsnop/mysqldump-php
--
-- Host: localhost	Database: easypa9_wp586
-- ------------------------------------------------------
-- Server version 	5.5.5-10.3.27-MariaDB-log
-- Date: Wed, 20 Jul 2022 18:55:42 +0000

/*!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 `wpeb_commentmeta`
--

DROP TABLE IF EXISTS `wpeb_commentmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpeb_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_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci 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 `wpeb_commentmeta`
--

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

-- Dumped table `wpeb_commentmeta` with 0 row(s)
--

--
-- Table structure for table `wpeb_comments`
--

DROP TABLE IF EXISTS `wpeb_comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpeb_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_ci NOT NULL,
  `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_content` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `comment_karma` int(11) NOT NULL DEFAULT 0,
  `comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_type` varchar(20) COLLATE utf8mb4_unicode_ci 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 `wpeb_comments`
--

LOCK TABLES `wpeb_comments` WRITE;
/*!40000 ALTER TABLE `wpeb_comments` DISABLE KEYS */;
INSERT INTO `wpeb_comments` VALUES (1,1,'A WordPress Commenter','wapuu@wordpress.example','https://wordpress.org/','','2021-06-03 15:27:26','2021-06-03 15:27:26','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','','comment',0,0);
/*!40000 ALTER TABLE `wpeb_comments` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpeb_comments` with 1 row(s)
--

--
-- Table structure for table `wpeb_links`
--

DROP TABLE IF EXISTS `wpeb_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpeb_links` (
  `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `link_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_target` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_visible` varchar(20) COLLATE utf8mb4_unicode_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_ci NOT NULL DEFAULT '',
  `link_notes` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `link_rss` varchar(255) COLLATE utf8mb4_unicode_ci 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 `wpeb_links`
--

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

-- Dumped table `wpeb_links` with 0 row(s)
--

--
-- Table structure for table `wpeb_options`
--

DROP TABLE IF EXISTS `wpeb_options`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpeb_options` (
  `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `option_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `option_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `autoload` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes',
  PRIMARY KEY (`option_id`),
  UNIQUE KEY `option_name` (`option_name`),
  KEY `autoload` (`autoload`)
) ENGINE=MyISAM AUTO_INCREMENT=27612 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpeb_options`
--

LOCK TABLES `wpeb_options` WRITE;
/*!40000 ALTER TABLE `wpeb_options` DISABLE KEYS */;
INSERT INTO `wpeb_options` VALUES (1,'siteurl','https://craftswelove.easypapercrafts.com','yes'),(2,'home','https://craftswelove.easypapercrafts.com','yes'),(3,'blogname','Crafts We Love','yes'),(4,'blogdescription','EPC Hall of Fame','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','rita.shehan@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:96:{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:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s: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:10:{i:0;s:33:\"alx-extensions/alx-extensions.php\";i:1;s:51:\"boldgrid-backup-premium/boldgrid-backup-premium.php\";i:2;s:35:\"boldgrid-backup/boldgrid-backup.php\";i:3;s:33:\"classic-editor/classic-editor.php\";i:4;s:19:\"jetpack/jetpack.php\";i:5;s:21:\"meta-box/meta-box.php\";i:6;s:35:\"modula-best-grid-gallery/Modula.php\";i:7;s:47:\"regenerate-thumbnails/regenerate-thumbnails.php\";i:8;s:24:\"wp-central/wpcentral.php\";i:9;s:27:\"wp-pagenavi/wp-pagenavi.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','a:2:{i:0;s:91:\"/home/easypa9/craftswelove.easypapercrafts.com/wp-content/themes/PinGridThemeFREE/style.css\";i:2;s:0:\"\";}','no'),(40,'template','blogwaves','yes'),(41,'stylesheet','grid-blogwaves','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','53496','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','posts','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: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'),(77,'widget_text','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(78,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(79,'uninstall_plugins','a:1:{s:27:\"wp-pagenavi/wp-pagenavi.php\";s:14:\"__return_false\";}','no'),(80,'timezone_string','','yes'),(81,'page_for_posts','2','yes'),(82,'page_on_front','0','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','1673828107','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,'initial_db_version','49752','yes'),(99,'wpeb_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'),(100,'fresh_site','0','yes'),(101,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(102,'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'),(103,'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'),(104,'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'),(105,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(106,'sidebars_widgets','a:9:{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:13:\"custom_html-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}s:8:\"footer-1\";a:0:{}s:8:\"footer-2\";a:0:{}s:8:\"footer-3\";a:0:{}s:8:\"footer-4\";a:0:{}s:13:\"array_version\";i:3;}','yes'),(107,'cron','a:14:{i:1658343580;a:2:{s:17:\"jetpack_sync_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:21:\"jetpack_sync_interval\";s:4:\"args\";a:0:{}s:8:\"interval\";i:300;}}s:22:\"jetpack_sync_full_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:21:\"jetpack_sync_interval\";s:4:\"args\";a:0:{}s:8:\"interval\";i:300;}}}i:1658343868;a:1:{s:20:\"jetpack_clean_nonces\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1658345247;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:1658350505;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"4810282cdc4e37bf548c8a4459f8e9ef\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:39;}}}}i:1658362508;a:1:{s:21:\"wp_update_user_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1658369080;a:1:{s:20:\"jetpack_v2_heartbeat\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1658369103;a:1:{s:24:\"jp_purge_transients_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1658374046;a:4:{s:18:\"wp_https_detection\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}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:1658417246;a:1:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1658417292;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:1658417295;a:1:{s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1658503646;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1660051673;a:1:{s:20:\"put_do_weekly_action\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:7:\"monthly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:2635200;}}}s:7:\"version\";i:2;}','yes'),(108,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'widget_calendar','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_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(115,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(116,'widget_custom_html','a:2:{i:2;a:2:{s:5:\"title\";s:7:\"Inspire\";s:7:\"content\";s:21:\"We love these crafts!\";}s:12:\"_multiwidget\";i:1;}','yes'),(118,'recovery_keys','a:0:{}','yes'),(119,'theme_mods_twentytwentyone','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1622734562;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";}s:9:\"sidebar-2\";a:3:{i:0;s:10:\"archives-2\";i:1;s:12:\"categories-2\";i:2;s:6:\"meta-2\";}}}}','yes'),(120,'https_detection_errors','a:0:{}','yes'),(121,'wpcentral_auth_key','gnrz3zqyrrlycv9a0gubyv7phmyopar9g7slhlwj82yxumstlhydbvsxbmjge7mgta1cgjvnbjza5dullcvopdmukp9rxqwhxkkjdlaol4w6sevjxzqejqcr90ctl3ro','yes'),(122,'wpcentral_version','1.5.5','yes'),(26736,'_transient_jetpack_a8c_data','a:4:{s:4:\"a12s\";i:2036;s:9:\"countries\";i:96;s:9:\"languages\";i:119;s:16:\"featured_plugins\";a:4:{i:0;s:11:\"woocommerce\";i:1;s:14:\"wp-super-cache\";i:2;s:14:\"wp-job-manager\";i:3;s:15:\"co-authors-plus\";}}','no'),(26735,'_transient_timeout_jetpack_a8c_data','1658362508','no'),(27539,'_transient_timeout_jpp_li_13def8cff921732aba86d90abcddbcc9','1658337741','no'),(27540,'_transient_jpp_li_13def8cff921732aba86d90abcddbcc9','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (162.14.71.142)\";s:17:\"seconds_remaining\";i:3094;s:16:\"blocked_attempts\";s:4:\"1856\";s:6:\"expire\";i:1658337741;}','no'),(27532,'_transient_timeout_jpp_li_0429230b189b2c3527b6e0ec895ede1d','1658337176','no'),(27533,'_transient_jpp_li_0429230b189b2c3527b6e0ec895ede1d','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (66.33.212.117)\";s:17:\"seconds_remaining\";i:3581;s:16:\"blocked_attempts\";s:4:\"1855\";s:6:\"expire\";i:1658337176;}','no'),(19032,'_transient_timeout_jetpack_file_data_8.5.1','1659338556','no'),(19033,'_transient_jetpack_file_data_8.5.1','a:52:{s:32:\"d3576702faeb399eb47ad20f586c3804\";a:14:{s:4:\"name\";s:8:\"Carousel\";s:11:\"description\";s:75:\"Display images and galleries in a gorgeous, full-screen browsing experience\";s:4:\"sort\";s:2:\"22\";s:20:\"recommendation_order\";s:2:\"12\";s:10:\"introduced\";s:3:\"1.5\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:17:\"Photos and Videos\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:80:\"gallery, carousel, diaporama, slideshow, images, lightbox, exif, metadata, image\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"55409a5f8388b8d33e2350ef80de3ea3\";a:14:{s:4:\"name\";s:13:\"Comment Likes\";s:11:\"description\";s:64:\"Increase visitor engagement by adding a Like button to comments.\";s:4:\"sort\";s:2:\"39\";s:20:\"recommendation_order\";s:2:\"17\";s:10:\"introduced\";s:3:\"5.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:37:\"like widget, like button, like, likes\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"e914e6d31cb61f5a9ef86e1b9573430e\";a:14:{s:4:\"name\";s:8:\"Comments\";s:11:\"description\";s:81:\"Let visitors use a WordPress.com, Twitter, Facebook, or Google account to comment\";s:4:\"sort\";s:2:\"20\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:53:\"comments, comment, facebook, twitter, google+, social\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"f1b8c61705fb18eb8c8584c9f9cdffd9\";a:14:{s:4:\"name\";s:12:\"Contact Form\";s:11:\"description\";s:81:\"Add a customizable contact form to any post or page using the Jetpack Form Block.\";s:4:\"sort\";s:2:\"15\";s:20:\"recommendation_order\";s:2:\"14\";s:10:\"introduced\";s:3:\"1.3\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:5:\"Other\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:214:\"contact, form, grunion, feedback, submission, contact form, email, feedback, contact form plugin, custom form, custom form plugin, form builder, forms, form maker, survey, contact by jetpack, contact us, forms free\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"4fca6eb23a793155d69fdb119a094926\";a:14:{s:4:\"name\";s:9:\"Copy Post\";s:11:\"description\";s:77:\"Enable the option to copy entire posts and pages, including tags and settings\";s:4:\"sort\";s:2:\"15\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"7.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:15:\"copy, duplicate\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"cfdac01e3c3c529f93a8f49edef1f5db\";a:14:{s:4:\"name\";s:20:\"Custom content types\";s:11:\"description\";s:74:\"Display different types of content on your site with custom content types.\";s:4:\"sort\";s:2:\"34\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"3.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:72:\"cpt, custom post types, portfolio, portfolios, testimonial, testimonials\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"4b9137ecf507290743735fb1f94535df\";a:14:{s:4:\"name\";s:10:\"Custom CSS\";s:11:\"description\";s:88:\"Adds options for CSS preprocessor use, disabling the theme\'s CSS, or custom image width.\";s:4:\"sort\";s:1:\"2\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.7\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:10:\"Appearance\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:108:\"css, customize, custom, style, editor, less, sass, preprocessor, font, mobile, appearance, theme, stylesheet\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"95d75b38d76d2ee1b5b537026eadb8ff\";a:14:{s:4:\"name\";s:21:\"Enhanced Distribution\";s:11:\"description\";s:27:\"Increase reach and traffic.\";s:4:\"sort\";s:1:\"5\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:6:\"Public\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:54:\"google, seo, firehose, search, broadcast, broadcasting\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"822f9ef1281dace3fb7cc420c77d24e0\";a:14:{s:4:\"name\";s:16:\"Google Analytics\";s:11:\"description\";s:56:\"Set up Google Analytics without touching a line of code.\";s:4:\"sort\";s:2:\"37\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"4.5\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:37:\"webmaster, google, analytics, console\";s:12:\"plan_classes\";s:17:\"business, premium\";}s:32:\"c167275f926ef0eefaec9a679bd88d34\";a:14:{s:4:\"name\";s:19:\"Gravatar Hovercards\";s:11:\"description\";s:58:\"Enable pop-up business cards over commenters’ Gravatars.\";s:4:\"sort\";s:2:\"11\";s:20:\"recommendation_order\";s:2:\"13\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:18:\"Social, Appearance\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:20:\"gravatar, hovercards\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"58cbd4585a74829a1c88aa9c295f3993\";a:14:{s:4:\"name\";s:15:\"Infinite Scroll\";s:11:\"description\";s:53:\"Automatically load new content when a visitor scrolls\";s:4:\"sort\";s:2:\"26\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:10:\"Appearance\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:33:\"scroll, infinite, infinite scroll\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"d4a35eabc948caefad71a0d3303b95c8\";a:14:{s:4:\"name\";s:8:\"JSON API\";s:11:\"description\";s:51:\"Allow applications to securely access your content.\";s:4:\"sort\";s:2:\"19\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:6:\"Public\";s:11:\"module_tags\";s:19:\"Writing, Developers\";s:7:\"feature\";s:7:\"General\";s:25:\"additional_search_queries\";s:50:\"api, rest, develop, developers, json, klout, oauth\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"7b0c670bc3f8209dc83abb8610e23a89\";a:14:{s:4:\"name\";s:14:\"Beautiful Math\";s:11:\"description\";s:74:\"Use the LaTeX markup language to write mathematical equations and formulas\";s:4:\"sort\";s:2:\"12\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:47:\"latex, math, equation, equations, formula, code\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"b00e4e6c109ce6f77b5c83fbaaaead4c\";a:14:{s:4:\"name\";s:11:\"Lazy Images\";s:11:\"description\";s:137:\"Speed up your site and create a smoother viewing experience by loading images as visitors scroll down the screen, instead of all at once.\";s:4:\"sort\";s:2:\"24\";s:20:\"recommendation_order\";s:2:\"14\";s:10:\"introduced\";s:5:\"5.6.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:23:\"Appearance, Recommended\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:150:\"mobile, theme, fast images, fast image, image, lazy, lazy load, lazyload, images, lazy images, thumbnail, image lazy load, lazy loading, load, loading\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"8e46c72906c928eca634ac2c8b1bc84f\";a:14:{s:4:\"name\";s:5:\"Likes\";s:11:\"description\";s:63:\"Give visitors an easy way to show they appreciate your content.\";s:4:\"sort\";s:2:\"23\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:26:\"like, likes, wordpress.com\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"2df2264a07aff77e0556121e33349dce\";a:14:{s:4:\"name\";s:8:\"Markdown\";s:11:\"description\";s:50:\"Write posts or pages in plain-text Markdown syntax\";s:4:\"sort\";s:2:\"31\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.8\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:12:\"md, markdown\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"0337eacae47d30c946cb9fc4e5ece649\";a:14:{s:4:\"name\";s:21:\"WordPress.com Toolbar\";s:11:\"description\";s:91:\"Replaces the admin bar with a useful toolbar to quickly manage your site via WordPress.com.\";s:4:\"sort\";s:2:\"38\";s:20:\"recommendation_order\";s:2:\"16\";s:10:\"introduced\";s:3:\"4.8\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:7:\"General\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:19:\"adminbar, masterbar\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"c54bb0a65b39f1316da8632197a88a4e\";a:14:{s:4:\"name\";s:7:\"Monitor\";s:11:\"description\";s:118:\"Jetpack’s downtime monitoring will continuously watch your site, and alert you the moment that downtime is detected.\";s:4:\"sort\";s:2:\"28\";s:20:\"recommendation_order\";s:2:\"10\";s:10:\"introduced\";s:3:\"2.6\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:11:\"Recommended\";s:7:\"feature\";s:8:\"Security\";s:25:\"additional_search_queries\";s:123:\"monitor, uptime, downtime, monitoring, maintenance, maintenance mode, offline, site is down, site down, down, repair, error\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"cc013f4c5480c7bdc1e7edb2f410bf3c\";a:14:{s:4:\"name\";s:13:\"Notifications\";s:11:\"description\";s:57:\"Receive instant notifications of site comments and likes.\";s:4:\"sort\";s:2:\"13\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:5:\"Other\";s:7:\"feature\";s:7:\"General\";s:25:\"additional_search_queries\";s:62:\"notification, notifications, toolbar, adminbar, push, comments\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"b3b34928b1e549bb52f866accc0450c5\";a:14:{s:4:\"name\";s:9:\"Asset CDN\";s:11:\"description\";s:154:\"Jetpack’s Site Accelerator loads your site faster by optimizing your images and serving your images and static files from our global network of servers.\";s:4:\"sort\";s:2:\"26\";s:20:\"recommendation_order\";s:1:\"1\";s:10:\"introduced\";s:3:\"6.6\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:42:\"Photos and Videos, Appearance, Recommended\";s:7:\"feature\";s:23:\"Recommended, Appearance\";s:25:\"additional_search_queries\";s:160:\"site accelerator, accelerate, static, assets, javascript, css, files, performance, cdn, bandwidth, content delivery network, pagespeed, combine js, optimize css\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"714284944f56d6936a40f3309900bc8e\";a:14:{s:4:\"name\";s:9:\"Image CDN\";s:11:\"description\";s:141:\"Mirrors and serves your images from our free and fast image CDN, improving your site’s performance with no additional load on your servers.\";s:4:\"sort\";s:2:\"25\";s:20:\"recommendation_order\";s:1:\"1\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:42:\"Photos and Videos, Appearance, Recommended\";s:7:\"feature\";s:23:\"Recommended, Appearance\";s:25:\"additional_search_queries\";s:171:\"photon, photo cdn, image cdn, speed, compression, resize, responsive images, responsive, content distribution network, optimize, page speed, image optimize, photon jetpack\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"041704e207c4c59eea93e0499c908bff\";a:14:{s:4:\"name\";s:13:\"Post by email\";s:11:\"description\";s:33:\"Publish posts by sending an email\";s:4:\"sort\";s:2:\"14\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:20:\"post by email, email\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"26e6cb3e08a6cfd0811c17e7c633c72c\";a:14:{s:4:\"name\";s:7:\"Protect\";s:11:\"description\";s:151:\"Enabling brute force protection will prevent bots and hackers from attempting to log in to your website with common username and password combinations.\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:1:\"4\";s:10:\"introduced\";s:3:\"3.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:11:\"Recommended\";s:7:\"feature\";s:8:\"Security\";s:25:\"additional_search_queries\";s:173:\"security, jetpack protect, secure, protection, botnet, brute force, protect, login, bot, password, passwords, strong passwords, strong password, wp-login.php,  protect admin\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"915a504082f797395713fd01e0e2e713\";a:14:{s:4:\"name\";s:9:\"Publicize\";s:11:\"description\";s:128:\"Publicize makes it easy to share your site’s posts on several social media networks automatically when you publish a new post.\";s:4:\"sort\";s:2:\"10\";s:20:\"recommendation_order\";s:1:\"7\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:19:\"Social, Recommended\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:220:\"facebook, jetpack publicize, twitter, tumblr, linkedin, social, tweet, connections, sharing, social media, automated, automated sharing, auto publish, auto tweet and like, auto tweet, facebook auto post, facebook posting\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"9243c1a718566213f4eaf3b44cf14b07\";a:14:{s:4:\"name\";s:13:\"Related posts\";s:11:\"description\";s:113:\"Keep visitors engaged on your blog by highlighting relevant and new content at the bottom of each published post.\";s:4:\"sort\";s:2:\"29\";s:20:\"recommendation_order\";s:1:\"9\";s:10:\"introduced\";s:3:\"2.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:11:\"Recommended\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:360:\"related, jetpack related posts, related posts for wordpress, related posts, popular posts, popular, related content, related post, contextual, context, contextual related posts, related articles, similar posts, easy related posts, related page, simple related posts, free related posts, related thumbnails, similar, engagement, yet another related posts plugin\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"583e4cda5596ee1b28a19cde33f438be\";a:14:{s:4:\"name\";s:6:\"Search\";s:11:\"description\";s:102:\"Help visitors quickly find answers with highly relevant instant search results and powerful filtering.\";s:4:\"sort\";s:2:\"34\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"5.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:5:\"false\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:6:\"Search\";s:25:\"additional_search_queries\";s:110:\"search, elastic, elastic search, elasticsearch, fast search, search results, search performance, google search\";s:12:\"plan_classes\";s:8:\"business\";}s:32:\"15346c1f7f2a5f29d34378774ecfa830\";a:14:{s:4:\"name\";s:9:\"SEO Tools\";s:11:\"description\";s:50:\"Better results on search engines and social media.\";s:4:\"sort\";s:2:\"35\";s:20:\"recommendation_order\";s:2:\"15\";s:10:\"introduced\";s:3:\"4.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:18:\"Social, Appearance\";s:7:\"feature\";s:7:\"Traffic\";s:25:\"additional_search_queries\";s:81:\"search engine optimization, social preview, meta description, custom title format\";s:12:\"plan_classes\";s:17:\"business, premium\";}s:32:\"72a0ff4cfae86074a7cdd2dcd432ef11\";a:14:{s:4:\"name\";s:7:\"Sharing\";s:11:\"description\";s:120:\"Add Twitter, Facebook and Google+ buttons at the bottom of each post, making it easy for visitors to share your content.\";s:4:\"sort\";s:1:\"7\";s:20:\"recommendation_order\";s:1:\"6\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:3:\"1.2\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:19:\"Social, Recommended\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:229:\"share, sharing, sharedaddy, social buttons, buttons, share facebook, share twitter, social media sharing, social media share, social share, icons, email, facebook, twitter, linkedin, pinterest, pocket, social widget, social media\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"bb8c6c190aaec212a7ab6e940165af4d\";a:14:{s:4:\"name\";s:16:\"Shortcode Embeds\";s:11:\"description\";s:177:\"Shortcodes are WordPress-specific markup that let you add media from popular sites. This feature is no longer necessary as the editor now handles media embeds rather gracefully.\";s:4:\"sort\";s:1:\"3\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:3:\"1.2\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:46:\"Photos and Videos, Social, Writing, Appearance\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:236:\"shortcodes, shortcode, embeds, media, bandcamp, dailymotion, facebook, flickr, google calendars, google maps, google+, polldaddy, recipe, recipes, scribd, slideshare, slideshow, slideshows, soundcloud, ted, twitter, vimeo, vine, youtube\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"1abd31fe07ae4fb0f8bb57dc24592219\";a:14:{s:4:\"name\";s:16:\"WP.me Shortlinks\";s:11:\"description\";s:82:\"Generates shorter links so you can have more space to write on social media sites.\";s:4:\"sort\";s:1:\"8\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:17:\"shortlinks, wp.me\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"cae5f097f8d658e0b0ae50733d7c6476\";a:14:{s:4:\"name\";s:8:\"Sitemaps\";s:11:\"description\";s:50:\"Make it easy for search engines to find your site.\";s:4:\"sort\";s:2:\"13\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"3.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:20:\"Recommended, Traffic\";s:7:\"feature\";s:11:\"Recommended\";s:25:\"additional_search_queries\";s:39:\"sitemap, traffic, search, site map, seo\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"e9b8318133b2f95e7906cedb3557a87d\";a:14:{s:4:\"name\";s:14:\"Secure Sign On\";s:11:\"description\";s:63:\"Allow users to log in to this site using WordPress.com accounts\";s:4:\"sort\";s:2:\"30\";s:20:\"recommendation_order\";s:1:\"5\";s:10:\"introduced\";s:3:\"2.6\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:10:\"Developers\";s:7:\"feature\";s:8:\"Security\";s:25:\"additional_search_queries\";s:51:\"sso, single sign on, login, log in, 2fa, two-factor\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"17e66a12031ccf11d8d45ceee0955f05\";a:14:{s:4:\"name\";s:10:\"Site Stats\";s:11:\"description\";s:44:\"Collect valuable traffic stats and insights.\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:1:\"2\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:23:\"Site Stats, Recommended\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:54:\"statistics, tracking, analytics, views, traffic, stats\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"346cf9756e7c1252acecb9a8ca81a21c\";a:14:{s:4:\"name\";s:13:\"Subscriptions\";s:11:\"description\";s:58:\"Let visitors subscribe to new posts and comments via email\";s:4:\"sort\";s:1:\"9\";s:20:\"recommendation_order\";s:1:\"8\";s:10:\"introduced\";s:3:\"1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:74:\"subscriptions, subscription, email, follow, followers, subscribers, signup\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"ca086af79d0d9dccacc934ccff5b4fd7\";a:14:{s:4:\"name\";s:15:\"Tiled Galleries\";s:11:\"description\";s:61:\"Display image galleries in a variety of elegant arrangements.\";s:4:\"sort\";s:2:\"24\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:17:\"Photos and Videos\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:43:\"gallery, tiles, tiled, grid, mosaic, images\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"43c24feb7c541c376af93e0251c1a261\";a:14:{s:4:\"name\";s:20:\"Backups and Scanning\";s:11:\"description\";s:100:\"Protect your site with daily or real-time backups and automated virus scanning and threat detection.\";s:4:\"sort\";s:2:\"32\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:5:\"0:1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:5:\"false\";s:4:\"free\";s:5:\"false\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:16:\"Security, Health\";s:25:\"additional_search_queries\";s:386:\"backup, cloud backup, database backup, restore, wordpress backup, backup plugin, wordpress backup plugin, back up, backup wordpress, backwpup, vaultpress, backups, off-site backups, offsite backup, offsite, off-site, antivirus, malware scanner, security, virus, viruses, prevent viruses, scan, anti-virus, antimalware, protection, safe browsing, malware, wp security, wordpress security\";s:12:\"plan_classes\";s:27:\"personal, business, premium\";}s:32:\"b9396d8038fc29140b499098d2294d79\";a:14:{s:4:\"name\";s:17:\"Site verification\";s:11:\"description\";s:58:\"Establish your site\'s authenticity with external services.\";s:4:\"sort\";s:2:\"33\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"3.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:56:\"webmaster, seo, google, bing, pinterest, search, console\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"afe184082e106c1bdfe1ee844f98aef3\";a:14:{s:4:\"name\";s:10:\"VideoPress\";s:11:\"description\";s:101:\"Save on hosting storage and bandwidth costs by streaming fast, ad-free video from our global network.\";s:4:\"sort\";s:2:\"27\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.5\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:5:\"false\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:17:\"Photos and Videos\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:118:\"video, videos, videopress, video gallery, video player, videoplayer, mobile video, vimeo, youtube, html5 video, stream\";s:12:\"plan_classes\";s:17:\"business, premium\";}s:32:\"44637d43460370af9a1b31ce3ccec0cd\";a:14:{s:4:\"name\";s:17:\"Widget Visibility\";s:11:\"description\";s:42:\"Control where widgets appear on your site.\";s:4:\"sort\";s:2:\"17\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:10:\"Appearance\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:54:\"widget visibility, logic, conditional, widgets, widget\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"694c105a5c3b659acfcddad220048d08\";a:14:{s:4:\"name\";s:21:\"Extra Sidebar Widgets\";s:11:\"description\";s:49:\"Provides additional widgets for use on your site.\";s:4:\"sort\";s:1:\"4\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:18:\"Social, Appearance\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:65:\"widget, widgets, facebook, gallery, twitter, gravatar, image, rss\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"21b59e7bb3fe0784e7525ad11ad8a8f6\";a:14:{s:4:\"name\";s:21:\"WooCommerce Analytics\";s:11:\"description\";s:53:\"Enhanced analytics for WooCommerce and Jetpack users.\";s:4:\"sort\";s:2:\"13\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"8.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:18:\"Other, Recommended\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:69:\"woocommerce, analytics, stats, statistics, tracking, analytics, views\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"ae15da72c5802d72f320640bad669561\";a:14:{s:4:\"name\";s:3:\"Ads\";s:11:\"description\";s:60:\"Earn income by allowing Jetpack to display high quality ads.\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:5:\"4.5.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:19:\"Traffic, Appearance\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:26:\"advertising, ad codes, ads\";s:12:\"plan_classes\";s:17:\"premium, business\";}s:32:\"212a162108f1dc20cc6c768d5b47d4f2\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"f1bb571a95c5de1e6adaf9db8567c039\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"cb5d81445061b89d19cb9c7754697a39\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"ea0fbbd64080c81a90a784924603588c\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"5c53fdb3633ba3232f60180116900273\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"40b97d9ce396339d3e8e46b833a045b5\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"0739df64747f2d02c140f23ce6c19cd8\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"348754bc914ee02c72d9af445627784c\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"a7b21cc562ee9ffa357bba19701fe45b\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"4f84d218792a6efa06ed6feae09c4dd5\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}}','no'),(27583,'_site_transient_timeout_theme_roots','1658345107','no'),(27584,'_site_transient_theme_roots','a:11:{s:16:\"PinGridThemeFREE\";s:7:\"/themes\";s:9:\"blogwaves\";s:7:\"/themes\";s:14:\"grid-blogwaves\";s:7:\"/themes\";s:7:\"gridhot\";s:7:\"/themes\";s:8:\"gridshow\";s:7:\"/themes\";s:8:\"gridzone\";s:7:\"/themes\";s:24:\"multipurpose-photography\";s:7:\"/themes\";s:14:\"twentynineteen\";s:7:\"/themes\";s:12:\"twentytwenty\";s:7:\"/themes\";s:15:\"twentytwentyone\";s:7:\"/themes\";s:15:\"twentytwentytwo\";s:7:\"/themes\";}','no'),(27585,'_transient_timeout_jetpack_jitm_1e811ea4c94c555459bc3dc8b5e9bd3','1658343515','no'),(27586,'_transient_jetpack_jitm_1e811ea4c94c555459bc3dc8b5e9bd3','a:2:{i:0;O:8:\"stdClass\":12:{s:7:\"content\";O:8:\"stdClass\":8:{s:7:\"message\";s:45:\"Back up your site before changing your theme.\";s:4:\"icon\";s:7:\"jetpack\";s:8:\"iconPath\";N;s:4:\"list\";a:0:{}s:11:\"description\";s:112:\"Installing a new theme can lead to unexpected changes. Ensure you can restore your site if something goes wrong.\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:10:\"disclaimer\";a:0:{}}s:3:\"CTA\";O:8:\"stdClass\":5:{s:7:\"message\";s:11:\"Get backups\";s:4:\"hook\";s:0:\"\";s:9:\"newWindow\";b:1;s:7:\"primary\";b:1;s:4:\"link\";s:0:\"\";}s:8:\"template\";s:7:\"default\";s:3:\"ttl\";i:300;s:2:\"id\";s:19:\"backup-theme-switch\";s:13:\"feature_class\";s:6:\"backup\";s:7:\"expires\";i:3628800;s:13:\"max_dismissal\";i:2;s:15:\"activate_module\";N;s:14:\"is_dismissible\";b:1;s:26:\"is_user_created_by_partner\";N;s:18:\"message_expiration\";N;}s:18:\"last_response_time\";i:1658343215;}','no'),(130,'jetpack_sync_settings_disable','0','yes'),(27531,'_transient_jpp_li_cfc5aaf87613a7ea7c3122740ca09617','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (106.14.141.22)\";s:17:\"seconds_remaining\";i:1952;s:16:\"blocked_attempts\";s:4:\"1854\";s:6:\"expire\";i:1658334813;}','no'),(27555,'_transient_timeout_jetpack_idc_allowed','1658344717','no'),(27556,'_transient_jetpack_idc_allowed','1','no'),(134,'boldgrid_settings','a:2:{s:7:\"library\";a:1:{s:35:\"boldgrid-backup/boldgrid-backup.php\";s:8:\"2.12.1.0\";}s:15:\"plugins_checked\";a:2:{s:35:\"boldgrid-backup/boldgrid-backup.php\";a:1:{s:6:\"1.13.3\";i:1622734073;}s:51:\"boldgrid-backup-premium/boldgrid-backup-premium.php\";a:1:{s:5:\"1.3.3\";i:1622734073;}}}','yes'),(135,'boldgrid_backup_id','d2a8a128','no'),(136,'boldgrid_backup_settings','a:14:{s:8:\"schedule\";a:10:{s:10:\"dow_sunday\";i:0;s:10:\"dow_monday\";i:0;s:11:\"dow_tuesday\";i:0;s:13:\"dow_wednesday\";i:0;s:12:\"dow_thursday\";i:0;s:10:\"dow_friday\";i:0;s:12:\"dow_saturday\";i:0;s:5:\"tod_h\";i:1;s:5:\"tod_m\";i:22;s:5:\"tod_a\";s:2:\"AM\";}s:15:\"retention_count\";i:5;s:18:\"notification_email\";s:21:\"rita.shehan@gmail.com\";s:13:\"notifications\";a:3:{s:6:\"backup\";i:1;s:7:\"restore\";i:1;s:10:\"site_check\";b:1;}s:11:\"auto_backup\";i:1;s:13:\"auto_rollback\";i:1;s:6:\"remote\";a:1:{s:5:\"local\";a:1:{s:7:\"enabled\";b:1;}}s:14:\"exclude_tables\";a:0:{}s:24:\"folder_exclusion_include\";s:18:\"WPCORE,/wp-content\";s:24:\"folder_exclusion_exclude\";s:17:\".git,node_modules\";s:10:\"site_check\";a:4:{s:7:\"enabled\";b:1;s:6:\"logger\";b:1;s:13:\"auto_recovery\";b:0;s:8:\"interval\";i:15;}s:10:\"encrypt_db\";b:0;s:16:\"backup_directory\";s:29:\"/home/easypa9/boldgrid_backup\";s:11:\"cron_secret\";s:64:\"7f7bd150242074f467a27aa570a3e0f3d4d545072aab6e7d5aa7b2f7a5ee4a9c\";}','no'),(14105,'bglib_rating_prompt','a:1:{i:0;a:6:{s:6:\"plugin\";s:15:\"boldgrid-backup\";s:4:\"name\";s:18:\"any_backup_created\";s:6:\"slides\";a:4:{s:5:\"start\";a:2:{s:4:\"text\";s:212:\"It looks like you&#039;ve created 10 backups with the Total Upkeep plugin! If you feel you&#039;re getting really good value from the Total Upkeep plugin, could you do us a favor and rate us 5 stars on WordPress?\";s:9:\"decisions\";a:3:{s:9:\"sure_will\";a:3:{s:4:\"text\";s:17:\"Yes, I sure will!\";s:4:\"link\";s:61:\"https://wordpress.org/support/plugin/boldgrid-backup/reviews/\";s:5:\"slide\";s:6:\"thanks\";}s:19:\"maybe_still_testing\";a:3:{s:4:\"text\";s:47:\"Maybe later, I&#039;m still testing the plugin.\";s:6:\"snooze\";i:604800;s:5:\"slide\";s:11:\"maybe_later\";}s:11:\"already_did\";a:2:{s:4:\"text\";s:13:\"I already did\";s:5:\"slide\";s:11:\"already_did\";}}}s:6:\"thanks\";a:1:{s:4:\"text\";s:421:\"Thanks! A new page should have opened to the Total Upkeep ratings page on WordPress.org. You will need to log in to your WordPress.org account before you can post a review. If the page didn&#039;t open, please click the following link: &lt;a href=&quot;https://wordpress.org/support/plugin/boldgrid-backup/reviews/&quot; target=&quot;_blank&quot;&gt;https://wordpress.org/support/plugin/boldgrid-backup/reviews/&lt;/a&gt;\";}s:11:\"maybe_later\";a:1:{s:4:\"text\";s:246:\"No problem, maybe now is not a good time. We want to be your WordPress backup plugin of choice. If you&#039;re experiencing a problem or want to make a suggestion, please <a href=\"https://www.boldgrid.com/feedback\" target=\"_blank\">click here</a>.\";}s:11:\"already_did\";a:1:{s:4:\"text\";s:264:\"Thank you for the previous rating! You can help us to continue improving the Total Upkeep plugin by reporting any bugs or submitting feature requests <a href=\"https://www.boldgrid.com/feedback\" target=\"_blank\">here</a>. Thank you for using the Total Upkeep plugin!\";}}s:10:\"time_added\";i:1649261067;s:12:\"time_snoozed\";i:1658343237;s:18:\"time_snoozed_until\";i:1658948037;}}','yes'),(143,'do_activate','0','yes'),(144,'jetpack_activated','2','yes'),(145,'jetpack_options','a:8:{s:7:\"version\";s:16:\"8.5.1:1623117841\";s:11:\"old_version\";s:14:\"8.5:1622734092\";s:28:\"fallback_no_verify_ssl_certs\";i:0;s:9:\"time_diff\";i:0;s:2:\"id\";i:194126459;s:6:\"public\";i:1;s:11:\"master_user\";i:1;s:14:\"last_heartbeat\";i:1658284465;}','yes'),(170,'finished_updating_comment_type','1','yes'),(771,'theme_mods_twentytwenty','a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1623158500;s:4:\"data\";a:3:{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:13:\"custom_html-2\";}s:9:\"sidebar-2\";a:0:{}}}}','yes'),(449,'jetpack_updates_sync_checksum','a:3:{s:14:\"update_plugins\";i:2484376605;s:13:\"update_themes\";i:3856870672;s:11:\"update_core\";i:3076714635;}','yes'),(27036,'jetpack_active_plan','a:10:{s:10:\"product_id\";i:2002;s:12:\"product_slug\";s:12:\"jetpack_free\";s:12:\"product_name\";s:12:\"Jetpack Free\";s:18:\"product_name_short\";s:4:\"Free\";s:7:\"expired\";b:0;s:14:\"billing_period\";s:0:\"\";s:13:\"user_is_owner\";b:0;s:7:\"is_free\";b:1;s:11:\"license_key\";s:0:\"\";s:8:\"features\";a:2:{s:6:\"active\";a:10:{i:0;s:12:\"advanced-seo\";i:1;s:3:\"cdn\";i:2;s:17:\"jetpack-dashboard\";i:3;s:17:\"security-settings\";i:4;s:17:\"seo-preview-tools\";i:5;s:14:\"send-a-message\";i:6;s:15:\"social-previews\";i:7;s:18:\"upload-audio-files\";i:8;s:18:\"upload-video-files\";i:9;s:15:\"whatsapp-button\";}s:9:\"available\";a:36:{s:7:\"akismet\";a:16:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";i:12;s:26:\"jetpack_security_t1_yearly\";i:13;s:27:\"jetpack_security_t1_monthly\";i:14;s:26:\"jetpack_security_t2_yearly\";i:15;s:27:\"jetpack_security_t2_monthly\";}s:8:\"antispam\";a:16:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";i:12;s:26:\"jetpack_security_t1_yearly\";i:13;s:27:\"jetpack_security_t1_monthly\";i:14;s:26:\"jetpack_security_t2_yearly\";i:15;s:27:\"jetpack_security_t2_monthly\";}s:7:\"backups\";a:16:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";i:12;s:26:\"jetpack_security_t1_yearly\";i:13;s:27:\"jetpack_security_t1_monthly\";i:14;s:26:\"jetpack_security_t2_yearly\";i:15;s:27:\"jetpack_security_t2_monthly\";}s:13:\"backups-daily\";a:16:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";i:12;s:26:\"jetpack_security_t1_yearly\";i:13;s:27:\"jetpack_security_t1_monthly\";i:14;s:26:\"jetpack_security_t2_yearly\";i:15;s:27:\"jetpack_security_t2_monthly\";}s:8:\"calendly\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:20:\"cloudflare-analytics\";a:14:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:22:\"jetpack_security_daily\";i:5;s:30:\"jetpack_security_daily_monthly\";i:6;s:25:\"jetpack_security_realtime\";i:7;s:33:\"jetpack_security_realtime_monthly\";i:8;s:16:\"jetpack_complete\";i:9;s:24:\"jetpack_complete_monthly\";i:10;s:26:\"jetpack_security_t1_yearly\";i:11;s:27:\"jetpack_security_t1_monthly\";i:12;s:26:\"jetpack_security_t2_yearly\";i:13;s:27:\"jetpack_security_t2_monthly\";}s:14:\"cloudflare-cdn\";a:14:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:22:\"jetpack_security_daily\";i:5;s:30:\"jetpack_security_daily_monthly\";i:6;s:25:\"jetpack_security_realtime\";i:7;s:33:\"jetpack_security_realtime_monthly\";i:8;s:16:\"jetpack_complete\";i:9;s:24:\"jetpack_complete_monthly\";i:10;s:26:\"jetpack_security_t1_yearly\";i:11;s:27:\"jetpack_security_t1_monthly\";i:12;s:26:\"jetpack_security_t2_yearly\";i:13;s:27:\"jetpack_security_t2_monthly\";}s:10:\"core/audio\";a:16:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";i:12;s:26:\"jetpack_security_t1_yearly\";i:13;s:27:\"jetpack_security_t1_monthly\";i:14;s:26:\"jetpack_security_t2_yearly\";i:15;s:27:\"jetpack_security_t2_monthly\";}s:10:\"core/cover\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:10:\"core/video\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:9:\"donations\";a:16:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";i:12;s:26:\"jetpack_security_t1_yearly\";i:13;s:27:\"jetpack_security_t1_monthly\";i:14;s:26:\"jetpack_security_t2_yearly\";i:15;s:27:\"jetpack_security_t2_monthly\";}s:17:\"full-activity-log\";a:16:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";i:12;s:26:\"jetpack_security_t1_yearly\";i:13;s:27:\"jetpack_security_t1_monthly\";i:14;s:26:\"jetpack_security_t2_yearly\";i:15;s:27:\"jetpack_security_t2_monthly\";}s:16:\"google-analytics\";a:14:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:22:\"jetpack_security_daily\";i:5;s:30:\"jetpack_security_daily_monthly\";i:6;s:25:\"jetpack_security_realtime\";i:7;s:33:\"jetpack_security_realtime_monthly\";i:8;s:16:\"jetpack_complete\";i:9;s:24:\"jetpack_complete_monthly\";i:10;s:26:\"jetpack_security_t1_yearly\";i:11;s:27:\"jetpack_security_t1_monthly\";i:12;s:26:\"jetpack_security_t2_yearly\";i:13;s:27:\"jetpack_security_t2_monthly\";}s:9:\"opentable\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:16:\"priority_support\";a:16:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";i:12;s:26:\"jetpack_security_t1_yearly\";i:13;s:27:\"jetpack_security_t1_monthly\";i:14;s:26:\"jetpack_security_t2_yearly\";i:15;s:27:\"jetpack_security_t2_monthly\";}s:18:\"recurring-payments\";a:16:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";i:12;s:26:\"jetpack_security_t1_yearly\";i:13;s:27:\"jetpack_security_t1_monthly\";i:14;s:26:\"jetpack_security_t2_yearly\";i:15;s:27:\"jetpack_security_t2_monthly\";}s:11:\"republicize\";a:14:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:22:\"jetpack_security_daily\";i:5;s:30:\"jetpack_security_daily_monthly\";i:6;s:25:\"jetpack_security_realtime\";i:7;s:33:\"jetpack_security_realtime_monthly\";i:8;s:16:\"jetpack_complete\";i:9;s:24:\"jetpack_complete_monthly\";i:10;s:26:\"jetpack_security_t1_yearly\";i:11;s:27:\"jetpack_security_t1_monthly\";i:12;s:26:\"jetpack_security_t2_yearly\";i:13;s:27:\"jetpack_security_t2_monthly\";}s:4:\"scan\";a:14:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:22:\"jetpack_security_daily\";i:5;s:30:\"jetpack_security_daily_monthly\";i:6;s:25:\"jetpack_security_realtime\";i:7;s:33:\"jetpack_security_realtime_monthly\";i:8;s:16:\"jetpack_complete\";i:9;s:24:\"jetpack_complete_monthly\";i:10;s:26:\"jetpack_security_t1_yearly\";i:11;s:27:\"jetpack_security_t1_monthly\";i:12;s:26:\"jetpack_security_t2_yearly\";i:13;s:27:\"jetpack_security_t2_monthly\";}s:15:\"simple-payments\";a:14:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:22:\"jetpack_security_daily\";i:5;s:30:\"jetpack_security_daily_monthly\";i:6;s:25:\"jetpack_security_realtime\";i:7;s:33:\"jetpack_security_realtime_monthly\";i:8;s:16:\"jetpack_complete\";i:9;s:24:\"jetpack_complete_monthly\";i:10;s:26:\"jetpack_security_t1_yearly\";i:11;s:27:\"jetpack_security_t1_monthly\";i:12;s:26:\"jetpack_security_t2_yearly\";i:13;s:27:\"jetpack_security_t2_monthly\";}s:7:\"support\";a:16:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";i:12;s:26:\"jetpack_security_t1_yearly\";i:13;s:27:\"jetpack_security_t1_monthly\";i:14;s:26:\"jetpack_security_t2_yearly\";i:15;s:27:\"jetpack_security_t2_monthly\";}s:29:\"vaultpress-automated-restores\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:25:\"vaultpress-backup-archive\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:18:\"vaultpress-backups\";a:16:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";i:12;s:26:\"jetpack_security_t1_yearly\";i:13;s:27:\"jetpack_security_t1_monthly\";i:14;s:26:\"jetpack_security_t2_yearly\";i:15;s:27:\"jetpack_security_t2_monthly\";}s:24:\"vaultpress-storage-space\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:13:\"video-hosting\";a:14:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:22:\"jetpack_security_daily\";i:5;s:30:\"jetpack_security_daily_monthly\";i:6;s:25:\"jetpack_security_realtime\";i:7;s:33:\"jetpack_security_realtime_monthly\";i:8;s:16:\"jetpack_complete\";i:9;s:24:\"jetpack_complete_monthly\";i:10;s:26:\"jetpack_security_t1_yearly\";i:11;s:27:\"jetpack_security_t1_monthly\";i:12;s:26:\"jetpack_security_t2_yearly\";i:13;s:27:\"jetpack_security_t2_monthly\";}s:10:\"videopress\";a:8:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:16:\"jetpack_complete\";i:7;s:24:\"jetpack_complete_monthly\";}s:7:\"wordads\";a:14:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:22:\"jetpack_security_daily\";i:5;s:30:\"jetpack_security_daily_monthly\";i:6;s:25:\"jetpack_security_realtime\";i:7;s:33:\"jetpack_security_realtime_monthly\";i:8;s:16:\"jetpack_complete\";i:9;s:24:\"jetpack_complete_monthly\";i:10;s:26:\"jetpack_security_t1_yearly\";i:11;s:27:\"jetpack_security_t1_monthly\";i:12;s:26:\"jetpack_security_t2_yearly\";i:13;s:27:\"jetpack_security_t2_monthly\";}s:15:\"wordads-jetpack\";a:14:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:22:\"jetpack_security_daily\";i:5;s:30:\"jetpack_security_daily_monthly\";i:6;s:25:\"jetpack_security_realtime\";i:7;s:33:\"jetpack_security_realtime_monthly\";i:8;s:16:\"jetpack_complete\";i:9;s:24:\"jetpack_complete_monthly\";i:10;s:26:\"jetpack_security_t1_yearly\";i:11;s:27:\"jetpack_security_t1_monthly\";i:12;s:26:\"jetpack_security_t2_yearly\";i:13;s:27:\"jetpack_security_t2_monthly\";}s:6:\"search\";a:4:{i:0;s:16:\"jetpack_business\";i:1;s:24:\"jetpack_business_monthly\";i:2;s:16:\"jetpack_complete\";i:3;s:24:\"jetpack_complete_monthly\";}s:18:\"google-my-business\";a:10:{i:0;s:16:\"jetpack_business\";i:1;s:24:\"jetpack_business_monthly\";i:2;s:25:\"jetpack_security_realtime\";i:3;s:33:\"jetpack_security_realtime_monthly\";i:4;s:16:\"jetpack_complete\";i:5;s:24:\"jetpack_complete_monthly\";i:6;s:26:\"jetpack_security_t1_yearly\";i:7;s:27:\"jetpack_security_t1_monthly\";i:8;s:26:\"jetpack_security_t2_yearly\";i:9;s:27:\"jetpack_security_t2_monthly\";}s:9:\"polldaddy\";a:2:{i:0;s:16:\"jetpack_business\";i:1;s:24:\"jetpack_business_monthly\";}s:14:\"premium-themes\";a:2:{i:0;s:16:\"jetpack_business\";i:1;s:24:\"jetpack_business_monthly\";}s:17:\"real-time-backups\";a:10:{i:0;s:16:\"jetpack_business\";i:1;s:24:\"jetpack_business_monthly\";i:2;s:25:\"jetpack_security_realtime\";i:3;s:33:\"jetpack_security_realtime_monthly\";i:4;s:16:\"jetpack_complete\";i:5;s:24:\"jetpack_complete_monthly\";i:6;s:26:\"jetpack_security_t1_yearly\";i:7;s:27:\"jetpack_security_t1_monthly\";i:8;s:26:\"jetpack_security_t2_yearly\";i:9;s:27:\"jetpack_security_t2_monthly\";}s:28:\"vaultpress-security-scanning\";a:2:{i:0;s:16:\"jetpack_business\";i:1;s:24:\"jetpack_business_monthly\";}s:14:\"instant-search\";a:2:{i:0;s:16:\"jetpack_complete\";i:1;s:24:\"jetpack_complete_monthly\";}s:22:\"videopress-1tb-storage\";a:2:{i:0;s:16:\"jetpack_complete\";i:1;s:24:\"jetpack_complete_monthly\";}}}}','yes'),(26716,'_transient_timeout_modula_all_extensions','1658880884','no'),(26717,'_transient_modula_all_extensions','a:18:{s:17:\"modula-fullscreen\";a:7:{s:4:\"name\";s:10:\"Fullscreen\";s:5:\"image\";s:0:\"\";s:13:\"download_link\";s:0:\"\";s:3:\"url\";s:0:\"\";s:7:\"version\";s:5:\"1.0.0\";s:11:\"description\";s:187:\"Delight your users with the possibility of showing images, inside the lightbox, in a full screen mode. Blow up your images as large as they can be with the native fullscreen browser mode.\";s:4:\"slug\";s:17:\"modula-fullscreen\";}s:17:\"modula-pagination\";a:7:{s:4:\"name\";s:10:\"Pagination\";s:5:\"image\";s:68:\"https://wp-modula.com/wp-content/uploads/edd/2021/04/069-refresh.png\";s:13:\"download_link\";s:0:\"\";s:3:\"url\";s:0:\"\";s:7:\"version\";s:5:\"1.0.2\";s:11:\"description\";s:79:\"Modula Pagination allows you to display your gallery images in a paginated way.\";s:4:\"slug\";s:17:\"modula-pagination\";}s:17:\"modula-whitelabel\";a:7:{s:4:\"name\";s:11:\"White Label\";s:5:\"image\";s:84:\"https://modula-addons-images.s3.us-east-2.stackpathstorage.com/modula-whitelabel.png\";s:13:\"download_link\";s:0:\"\";s:3:\"url\";s:0:\"\";s:7:\"version\";s:5:\"1.0.1\";s:11:\"description\";s:164:\"Want to use Modula but brand it with your own logo, external URLs and remove all mentions that aren\'t related to your brand? This extension helps you achieve this. \";s:4:\"slug\";s:17:\"modula-whitelabel\";}s:12:\"modula-roles\";a:7:{s:4:\"name\";s:15:\"Role Management\";s:5:\"image\";s:79:\"https://modula-addons-images.s3.us-east-2.stackpathstorage.com/modula-roles.png\";s:13:\"download_link\";s:0:\"\";s:3:\"url\";s:0:\"\";s:7:\"version\";s:5:\"1.0.1\";s:11:\"description\";s:177:\"Granular control over which user roles can add, edit or update galleries on your website. Add permissions to an existing user role or remove them by simply checking a checkbox. \";s:4:\"slug\";s:12:\"modula-roles\";}s:15:\"modula-defaults\";a:7:{s:4:\"name\";s:8:\"Defaults\";s:5:\"image\";s:82:\"https://modula-addons-images.s3.us-east-2.stackpathstorage.com/modula-defaults.png\";s:13:\"download_link\";s:0:\"\";s:3:\"url\";s:0:\"\";s:7:\"version\";s:5:\"1.2.0\";s:11:\"description\";s:245:\"Speed up your gallery creation process by starting from a pre-saved default. Save any gallery\'s settings as a default and reuse them indefinitely. Got a bunch of galleries you want to apply a default to? That\'s possible too with this extension. \";s:4:\"slug\";s:15:\"modula-defaults\";}s:11:\"modula-zoom\";a:7:{s:4:\"name\";s:4:\"Zoom\";s:5:\"image\";s:78:\"https://modula-addons-images.s3.us-east-2.stackpathstorage.com/modula-zoom.png\";s:13:\"download_link\";s:0:\"\";s:3:\"url\";s:0:\"\";s:7:\"version\";s:5:\"1.0.3\";s:11:\"description\";s:90:\"Adds zoom functionality to images, when opened in the lightbox, to allow up close viewing.\";s:4:\"slug\";s:11:\"modula-zoom\";}s:15:\"modula-download\";a:7:{s:4:\"name\";s:8:\"Download\";s:5:\"image\";s:82:\"https://modula-addons-images.s3.us-east-2.stackpathstorage.com/modula-download.png\";s:13:\"download_link\";s:0:\"\";s:3:\"url\";s:0:\"\";s:7:\"version\";s:5:\"1.0.3\";s:11:\"description\";s:103:\"Give your users the ability to download your images, galleries or albums with an easy to use shortcode.\";s:4:\"slug\";s:15:\"modula-download\";}s:11:\"modula-exif\";a:7:{s:4:\"name\";s:4:\"EXIF\";s:5:\"image\";s:78:\"https://modula-addons-images.s3.us-east-2.stackpathstorage.com/modula-exif.png\";s:13:\"download_link\";s:0:\"\";s:3:\"url\";s:0:\"\";s:7:\"version\";s:5:\"1.0.2\";s:11:\"description\";s:88:\"The EXIF Addon for Modula allows you to edit & display EXIF metadata in your lightboxes.\";s:4:\"slug\";s:11:\"modula-exif\";}s:13:\"modula-albums\";a:7:{s:4:\"name\";s:14:\"Gallery Albums\";s:5:\"image\";s:80:\"https://modula-addons-images.s3.us-east-2.stackpathstorage.com/modula-albums.png\";s:13:\"download_link\";s:0:\"\";s:3:\"url\";s:0:\"\";s:7:\"version\";s:5:\"1.1.1\";s:11:\"description\";s:179:\"Give your galleries a place to call home with the Albums addon. Create albums, add galleries, manage cover photos, show gallery titles and even image counts in this superb add-on!\";s:4:\"slug\";s:13:\"modula-albums\";}s:13:\"modula-slider\";a:7:{s:4:\"name\";s:25:\"Convert Gallery to Slider\";s:5:\"image\";s:80:\"https://modula-addons-images.s3.us-east-2.stackpathstorage.com/modula-slider.png\";s:13:\"download_link\";s:0:\"\";s:3:\"url\";s:0:\"\";s:7:\"version\";s:6:\"1.0.10\";s:11:\"description\";s:116:\"Ever wanted to be able to create a gallery slider? One big image with thumbnail navigation below? We got it covered.\";s:4:\"slug\";s:13:\"modula-slider\";}s:16:\"modula-slideshow\";a:7:{s:4:\"name\";s:18:\"Lightbox Slideshow\";s:5:\"image\";s:83:\"https://modula-addons-images.s3.us-east-2.stackpathstorage.com/modula-slideshow.png\";s:13:\"download_link\";s:0:\"\";s:3:\"url\";s:0:\"\";s:7:\"version\";s:5:\"1.0.4\";s:11:\"description\";s:98:\"Automatically turn your lightbox images into an auto-play slideshow. Play & pause between images. \";s:4:\"slug\";s:16:\"modula-slideshow\";}s:23:\"modula-password-protect\";a:7:{s:4:\"name\";s:26:\"Password Protect Galleries\";s:5:\"image\";s:90:\"https://modula-addons-images.s3.us-east-2.stackpathstorage.com/modula-password-protect.png\";s:13:\"download_link\";s:0:\"\";s:3:\"url\";s:0:\"\";s:7:\"version\";s:5:\"1.0.7\";s:11:\"description\";s:91:\"Password protect your galleries. This is a perfect solution for exclusive client galleries!\";s:4:\"slug\";s:23:\"modula-password-protect\";}s:16:\"modula-watermark\";a:7:{s:4:\"name\";s:9:\"Watermark\";s:5:\"image\";s:83:\"https://modula-addons-images.s3.us-east-2.stackpathstorage.com/modula-watermark.png\";s:13:\"download_link\";s:0:\"\";s:3:\"url\";s:0:\"\";s:7:\"version\";s:5:\"1.0.6\";s:11:\"description\";s:101:\"Easily protect your photos by adding custom watermarks to your WordPress image galleries with Modula.\";s:4:\"slug\";s:16:\"modula-watermark\";}s:15:\"modula-deeplink\";a:7:{s:4:\"name\";s:12:\"SEO Deeplink\";s:5:\"image\";s:82:\"https://modula-addons-images.s3.us-east-2.stackpathstorage.com/modula-deeplink.png\";s:13:\"download_link\";s:0:\"\";s:3:\"url\";s:0:\"\";s:7:\"version\";s:5:\"1.0.6\";s:11:\"description\";s:101:\"Full SEO control over your galleries. Create a unique and indexable URL for each Modula Gallery item.\";s:4:\"slug\";s:15:\"modula-deeplink\";}s:17:\"modula-protection\";a:7:{s:4:\"name\";s:22:\"Right-Click Protection\";s:5:\"image\";s:84:\"https://modula-addons-images.s3.us-east-2.stackpathstorage.com/modula-protection.png\";s:13:\"download_link\";s:0:\"\";s:3:\"url\";s:0:\"\";s:7:\"version\";s:5:\"1.0.6\";s:11:\"description\";s:199:\"The Modula Protection extension allows you to easily prevent your visitors from downloading your images with right-click protection. Use this extension to retain full ownership of your creative work.\";s:4:\"slug\";s:17:\"modula-protection\";}s:26:\"modula-advanced-shortcodes\";a:7:{s:4:\"name\";s:18:\"Advanced Shortcode\";s:5:\"image\";s:93:\"https://modula-addons-images.s3.us-east-2.stackpathstorage.com/modula-advanced-shortcodes.png\";s:13:\"download_link\";s:0:\"\";s:3:\"url\";s:0:\"\";s:7:\"version\";s:5:\"1.0.3\";s:11:\"description\";s:118:\"Allows you to dynamically link to specific galleries without creating pages for them by using URLs with query strings.\";s:4:\"slug\";s:26:\"modula-advanced-shortcodes\";}s:14:\"modula-speedup\";a:7:{s:4:\"name\";s:7:\"SpeedUp\";s:5:\"image\";s:81:\"https://modula-addons-images.s3.us-east-2.stackpathstorage.com/modula-speedup.png\";s:13:\"download_link\";s:0:\"\";s:3:\"url\";s:0:\"\";s:7:\"version\";s:6:\"1.0.12\";s:11:\"description\";s:199:\"Allow Modula to automatically optimize your images to load as fast as possible by reducing their file sizes, resizing them through ShortPixel and serve them from StackPath\'s content delivery network.\";s:4:\"slug\";s:14:\"modula-speedup\";}s:12:\"modula-video\";a:7:{s:4:\"name\";s:5:\"Video\";s:5:\"image\";s:79:\"https://modula-addons-images.s3.us-east-2.stackpathstorage.com/modula-video.png\";s:13:\"download_link\";s:0:\"\";s:3:\"url\";s:0:\"\";s:7:\"version\";s:5:\"1.0.6\";s:11:\"description\";s:137:\"Adding a video gallery with both self-hosted videos and videos from sources like YouTube and Vimeo to your website has never been easier.\";s:4:\"slug\";s:12:\"modula-video\";}}','no'),(27562,'_transient_timeout_jetpack_sync_constants_await','1658344719','no'),(27563,'_transient_jetpack_sync_constants_await','1658341119.4992','no'),(26737,'_transient_timeout_jetpack_https_test','1658362508','no'),(26738,'_transient_jetpack_https_test','1','no'),(26739,'_transient_timeout_jetpack_https_test_message','1658362508','no'),(26740,'_transient_jetpack_https_test_message','','no'),(26743,'_transient_timeout_jpp_headers_updated_recently','1658362508','no'),(26744,'_transient_jpp_headers_updated_recently','1','no'),(26745,'_site_transient_timeout_browser_4fc9e5ebf9b8ca79051c123d36572d4e','1658880908','no'),(26746,'_site_transient_browser_4fc9e5ebf9b8ca79051c123d36572d4e','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:14:\"103.0.5060.114\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(26460,'_site_transient_timeout_php_check_6a93f292d9a273c004fc36e1f86d97b3','1658554820','no'),(26461,'_site_transient_php_check_6a93f292d9a273c004fc36e1f86d97b3','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:6:\"5.6.20\";s:12:\"is_supported\";b:0;s:9:\"is_secure\";b:0;s:13:\"is_acceptable\";b:0;}','no'),(27154,'theme_mods_grid-blogwaves','a:12:{s:18:\"custom_css_post_id\";i:-1;s:22:\"blogwaves_theme_layout\";s:3:\"box\";s:30:\"blogwaves_archive_co_post_date\";b:0;s:34:\"blogwaves_archive_co_post_comments\";b:0;s:31:\"blogwaves_single_co_post_author\";b:0;s:29:\"blogwaves_single_co_post_date\";b:0;s:33:\"blogwaves_single_co_post_comments\";b:0;s:29:\"blogwaves_single_co_post_tags\";b:0;s:30:\"grid_blogwaves_archive_co_view\";b:0;s:29:\"grid_blogwaves_single_co_view\";b:0;s:36:\"grid_blogwaves_grid_sidebar_position\";s:4:\"grid\";s:19:\"blogwaves_copyright\";s:15:\"Copyright 2022 \";}','yes'),(27558,'_transient_timeout_global_styles_grid-blogwaves','1658341178','no'),(27559,'_transient_global_styles_grid-blogwaves','body{--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--duotone--dark-grayscale: url(\'#wp-duotone-dark-grayscale\');--wp--preset--duotone--grayscale: url(\'#wp-duotone-grayscale\');--wp--preset--duotone--purple-yellow: url(\'#wp-duotone-purple-yellow\');--wp--preset--duotone--blue-red: url(\'#wp-duotone-blue-red\');--wp--preset--duotone--midnight: url(\'#wp-duotone-midnight\');--wp--preset--duotone--magenta-yellow: url(\'#wp-duotone-magenta-yellow\');--wp--preset--duotone--purple-green: url(\'#wp-duotone-purple-green\');--wp--preset--duotone--blue-orange: url(\'#wp-duotone-blue-orange\');--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}','no'),(26771,'_transient_timeout_jetpack_connected_user_data_1','1658362572','no'),(26772,'_transient_jetpack_connected_user_data_1','a:10:{s:2:\"ID\";i:23649896;s:5:\"login\";s:10:\"ritashehan\";s:5:\"email\";s:21:\"rita.shehan@gmail.com\";s:12:\"display_name\";s:10:\"ritashehan\";s:14:\"text_direction\";s:3:\"ltr\";s:10:\"site_count\";i:2;s:15:\"jetpack_connect\";s:0:\"\";s:12:\"color_scheme\";s:12:\"classic-dark\";s:17:\"sidebar_collapsed\";b:0;s:11:\"user_locale\";s:2:\"en\";}','no'),(26236,'_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:59:\"https://downloads.wordpress.org/release/wordpress-6.0.1.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.0.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.0.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.0.1-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.0.1\";s:7:\"version\";s:5:\"6.0.1\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.9\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1658343307;s:15:\"version_checked\";s:5:\"6.0.1\";s:12:\"translations\";a:0:{}}','no'),(26934,'_site_transient_timeout_browser_a0909810a6d132832e28ef6da18ec77c','1658884604','no'),(26935,'_site_transient_browser_a0909810a6d132832e28ef6da18ec77c','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"103.0.0.0\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(27609,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1658343315;s:7:\"checked\";a:11:{s:16:\"PinGridThemeFREE\";s:5:\"2.0.3\";s:9:\"blogwaves\";s:6:\"1.0.16\";s:14:\"grid-blogwaves\";s:5:\"1.0.1\";s:7:\"gridhot\";s:5:\"1.0.0\";s:8:\"gridshow\";s:5:\"1.0.0\";s:8:\"gridzone\";s:5:\"1.3.3\";s:24:\"multipurpose-photography\";s:5:\"0.4.8\";s:14:\"twentynineteen\";s:3:\"2.0\";s:12:\"twentytwenty\";s:3:\"1.7\";s:15:\"twentytwentyone\";s:3:\"1.3\";s:15:\"twentytwentytwo\";s:3:\"1.0\";}s:8:\"response\";a:7:{s:7:\"gridhot\";a:6:{s:5:\"theme\";s:7:\"gridhot\";s:11:\"new_version\";s:5:\"1.0.3\";s:3:\"url\";s:37:\"https://wordpress.org/themes/gridhot/\";s:7:\"package\";s:55:\"https://downloads.wordpress.org/theme/gridhot.1.0.3.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";s:3:\"5.6\";}s:8:\"gridzone\";a:6:{s:5:\"theme\";s:8:\"gridzone\";s:11:\"new_version\";s:5:\"1.3.9\";s:3:\"url\";s:38:\"https://wordpress.org/themes/gridzone/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/theme/gridzone.1.3.9.zip\";s:8:\"requires\";s:3:\"5.0\";s:12:\"requires_php\";s:3:\"5.6\";}s:24:\"multipurpose-photography\";a:6:{s:5:\"theme\";s:24:\"multipurpose-photography\";s:11:\"new_version\";s:5:\"0.6.5\";s:3:\"url\";s:54:\"https://wordpress.org/themes/multipurpose-photography/\";s:7:\"package\";s:72:\"https://downloads.wordpress.org/theme/multipurpose-photography.0.6.5.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";s:3:\"7.2\";}s:14:\"twentynineteen\";a:6:{s:5:\"theme\";s:14:\"twentynineteen\";s:11:\"new_version\";s:3:\"2.3\";s:3:\"url\";s:44:\"https://wordpress.org/themes/twentynineteen/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/twentynineteen.2.3.zip\";s:8:\"requires\";s:5:\"4.9.6\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:12:\"twentytwenty\";a:6:{s:5:\"theme\";s:12:\"twentytwenty\";s:11:\"new_version\";s:3:\"2.0\";s:3:\"url\";s:42:\"https://wordpress.org/themes/twentytwenty/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/twentytwenty.2.0.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:15:\"twentytwentyone\";a:6:{s:5:\"theme\";s:15:\"twentytwentyone\";s:11:\"new_version\";s:3:\"1.6\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentyone/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentyone.1.6.zip\";s:8:\"requires\";s:3:\"5.3\";s:12:\"requires_php\";s:3:\"5.6\";}s:15:\"twentytwentytwo\";a:6:{s:5:\"theme\";s:15:\"twentytwentytwo\";s:11:\"new_version\";s:3:\"1.2\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentytwo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentytwo.1.2.zip\";s:8:\"requires\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"5.6\";}}s:9:\"no_update\";a:3:{s:9:\"blogwaves\";a:6:{s:5:\"theme\";s:9:\"blogwaves\";s:11:\"new_version\";s:6:\"1.0.16\";s:3:\"url\";s:39:\"https://wordpress.org/themes/blogwaves/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/blogwaves.1.0.16.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";s:3:\"5.6\";}s:14:\"grid-blogwaves\";a:6:{s:5:\"theme\";s:14:\"grid-blogwaves\";s:11:\"new_version\";s:5:\"1.0.1\";s:3:\"url\";s:44:\"https://wordpress.org/themes/grid-blogwaves/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/grid-blogwaves.1.0.1.zip\";s:8:\"requires\";s:3:\"5.0\";s:12:\"requires_php\";s:3:\"5.6\";}s:8:\"gridshow\";a:6:{s:5:\"theme\";s:8:\"gridshow\";s:11:\"new_version\";s:5:\"1.0.0\";s:3:\"url\";s:38:\"https://wordpress.org/themes/gridshow/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/theme/gridshow.1.0.0.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";s:3:\"5.6\";}}s:12:\"translations\";a:0:{}}','no'),(27601,'_transient_timeout_jetpack_sync_callables_await','1658343367','no'),(27602,'_transient_jetpack_sync_callables_await','1658343307.4844','no'),(27606,'_transient_timeout_jetpack_jitm_9d6fd61bf310a6f3ec4a2ec32fc1501','1658343610','no'),(27607,'_transient_jetpack_jitm_9d6fd61bf310a6f3ec4a2ec32fc1501','a:1:{s:18:\"last_response_time\";i:1658343310;}','no'),(27608,'_site_transient_boldgrid_plugins_filtered','a:2:{s:35:\"boldgrid-backup/boldgrid-backup.php\";a:14:{s:4:\"Name\";s:12:\"Total Upkeep\";s:9:\"PluginURI\";s:41:\"https://www.boldgrid.com/boldgrid-backup/\";s:7:\"Version\";s:6:\"1.13.3\";s:11:\"Description\";s:159:\"Automated backups, remote backup to Amazon S3 and Google Drive, stop website crashes before they happen and more. Total Upkeep is the backup solution you need.\";s:6:\"Author\";s:8:\"BoldGrid\";s:9:\"AuthorURI\";s:25:\"https://www.boldgrid.com/\";s:10:\"TextDomain\";s:15:\"boldgrid-backup\";s:10:\"DomainPath\";s:10:\"/languages\";s:7:\"Network\";b:0;s:10:\"RequiresWP\";s:0:\"\";s:11:\"RequiresPHP\";s:0:\"\";s:9:\"UpdateURI\";s:0:\"\";s:5:\"Title\";s:12:\"Total Upkeep\";s:10:\"AuthorName\";s:8:\"BoldGrid\";}s:51:\"boldgrid-backup-premium/boldgrid-backup-premium.php\";a:14:{s:4:\"Name\";s:20:\"Total Upkeep Premium\";s:9:\"PluginURI\";s:41:\"https://www.boldgrid.com/boldgrid-backup/\";s:7:\"Version\";s:5:\"1.3.3\";s:11:\"Description\";s:46:\"Premium extension for the Total Upkeep plugin.\";s:6:\"Author\";s:8:\"BoldGrid\";s:9:\"AuthorURI\";s:25:\"https://www.boldgrid.com/\";s:10:\"TextDomain\";s:15:\"boldgrid-backup\";s:10:\"DomainPath\";s:10:\"/languages\";s:7:\"Network\";b:0;s:10:\"RequiresWP\";s:0:\"\";s:11:\"RequiresPHP\";s:0:\"\";s:9:\"UpdateURI\";s:0:\"\";s:5:\"Title\";s:20:\"Total Upkeep Premium\";s:10:\"AuthorName\";s:8:\"BoldGrid\";}}','no'),(27604,'_transient_timeout_jetpack_plugin_api_action_links_refresh','1658429707','no'),(27605,'_transient_jetpack_plugin_api_action_links_refresh','1658343307','no'),(26760,'can_compress_scripts','1','no'),(26753,'_transient_timeout_meta-box-news','1658362510','no'),(26754,'_transient_meta-box-news','<div class=\"rss-widget\"><ul><li class=\"meta-box-news-item\"><a href=\"#\" class=\"dashicons dashicons-no-alt\" title=\"Dismiss all Meta Box news\" style=\"float: right; box-shadow: none; margin-left: 5px;\"></a><a class=\'rsswidget\' href=\'https://metabox.io/create-team-members-page-p4-meta-box/\'>Meta Box: How to Create a Team Members Page - P4 - Just Meta Box</a></li><li class=\"meta-box-news-item\"><a href=\"#\" class=\"dashicons dashicons-no-alt\" title=\"Dismiss all Meta Box news\" style=\"float: right; box-shadow: none; margin-left: 5px;\"></a><a class=\'rsswidget\' href=\'https://metabox.io/create-video-gallery-page-meta-box-oxygen/\'>Meta Box: How to Create a Video Gallery Page Using Meta Box + Oxygen</a></li><li class=\"meta-box-news-item\"><a href=\"#\" class=\"dashicons dashicons-no-alt\" title=\"Dismiss all Meta Box news\" style=\"float: right; box-shadow: none; margin-left: 5px;\"></a><a class=\'rsswidget\' href=\'https://metabox.io/create-team-members-page-p3-meta-box-bricks/\'>Meta Box: How to Create a Team Members Page - P3 - Using Meta Box and Bricks</a></li></ul></div>','no'),(27560,'_transient_timeout_global_styles_svg_filters_grid-blogwaves','1658341178','no'),(27561,'_transient_global_styles_svg_filters_grid-blogwaves','<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-dark-grayscale\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 0.49803921568627\" /><feFuncG type=\"table\" tableValues=\"0 0.49803921568627\" /><feFuncB type=\"table\" tableValues=\"0 0.49803921568627\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-grayscale\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 1\" /><feFuncG type=\"table\" tableValues=\"0 1\" /><feFuncB type=\"table\" tableValues=\"0 1\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-purple-yellow\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.54901960784314 0.98823529411765\" /><feFuncG type=\"table\" tableValues=\"0 1\" /><feFuncB type=\"table\" tableValues=\"0.71764705882353 0.25490196078431\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-blue-red\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 1\" /><feFuncG type=\"table\" tableValues=\"0 0.27843137254902\" /><feFuncB type=\"table\" tableValues=\"0.5921568627451 0.27843137254902\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-midnight\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 0\" /><feFuncG type=\"table\" tableValues=\"0 0.64705882352941\" /><feFuncB type=\"table\" tableValues=\"0 1\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-magenta-yellow\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.78039215686275 1\" /><feFuncG type=\"table\" tableValues=\"0 0.94901960784314\" /><feFuncB type=\"table\" tableValues=\"0.35294117647059 0.47058823529412\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-purple-green\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.65098039215686 0.40392156862745\" /><feFuncG type=\"table\" tableValues=\"0 1\" /><feFuncB type=\"table\" tableValues=\"0.44705882352941 0.4\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-blue-orange\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.098039215686275 1\" /><feFuncG type=\"table\" tableValues=\"0 0.66274509803922\" /><feFuncB type=\"table\" tableValues=\"0.84705882352941 0.41960784313725\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg>','no'),(26994,'gridshow_options','a:3:{s:16:\"grid_thumb_style\";s:25:\"gridshow-360w-autoh-image\";s:20:\"post_title_link_home\";s:2:\"no\";s:20:\"post_summaries_style\";s:4:\"grid\";}','yes'),(27610,'_transient_timeout_jetpack_jitm_ad1133083f8de4515731ab56e974afc','1658343628','no'),(27611,'_transient_jetpack_jitm_ad1133083f8de4515731ab56e974afc','a:1:{s:18:\"last_response_time\";i:1658343328;}','no'),(27169,'theme_switch_menu_locations','a:0:{}','yes'),(26234,'user_count','1','no'),(171,'wpc_dismiss_notice_date','2022-07-20','yes'),(175,'current_theme','Grid Blogwaves','yes'),(176,'theme_mods_PinGridThemeFREE','a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1658280050;s:4:\"data\";a:3:{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:13:\"custom_html-2\";}s:7:\"primary\";a:0:{}}}}','yes'),(177,'theme_switched','','yes'),(178,'widget_template1_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(179,'boldgrid_plugin_page_notices','a:1:{i:0;a:4:{s:2:\"id\";s:26:\"bgbkup_database_encryption\";s:8:\"isUnread\";b:0;s:7:\"version\";s:6:\"1.13.0\";s:4:\"page\";s:32:\"boldgrid-backup-premium-features\";}}','yes'),(180,'category_children','a:0:{}','yes'),(183,'jetpack_available_modules','a:1:{s:5:\"8.5.1\";a:42:{s:8:\"carousel\";s:3:\"1.5\";s:13:\"comment-likes\";s:3:\"5.1\";s:8:\"comments\";s:3:\"1.4\";s:12:\"contact-form\";s:3:\"1.3\";s:9:\"copy-post\";s:3:\"7.0\";s:20:\"custom-content-types\";s:3:\"3.1\";s:10:\"custom-css\";s:3:\"1.7\";s:21:\"enhanced-distribution\";s:3:\"1.2\";s:16:\"google-analytics\";s:3:\"4.5\";s:19:\"gravatar-hovercards\";s:3:\"1.1\";s:15:\"infinite-scroll\";s:3:\"2.0\";s:8:\"json-api\";s:3:\"1.9\";s:5:\"latex\";s:3:\"1.1\";s:11:\"lazy-images\";s:5:\"5.6.0\";s:5:\"likes\";s:3:\"2.2\";s:8:\"markdown\";s:3:\"2.8\";s:9:\"masterbar\";s:3:\"4.8\";s:7:\"monitor\";s:3:\"2.6\";s:5:\"notes\";s:3:\"1.9\";s:10:\"photon-cdn\";s:3:\"6.6\";s:6:\"photon\";s:3:\"2.0\";s:13:\"post-by-email\";s:3:\"2.0\";s:7:\"protect\";s:3:\"3.4\";s:9:\"publicize\";s:3:\"2.0\";s:13:\"related-posts\";s:3:\"2.9\";s:6:\"search\";s:3:\"5.0\";s:9:\"seo-tools\";s:3:\"4.4\";s:10:\"sharedaddy\";s:3:\"1.1\";s:10:\"shortcodes\";s:3:\"1.1\";s:10:\"shortlinks\";s:3:\"1.1\";s:8:\"sitemaps\";s:3:\"3.9\";s:3:\"sso\";s:3:\"2.6\";s:5:\"stats\";s:3:\"1.1\";s:13:\"subscriptions\";s:3:\"1.2\";s:13:\"tiled-gallery\";s:3:\"2.1\";s:10:\"vaultpress\";s:5:\"0:1.2\";s:18:\"verification-tools\";s:3:\"3.0\";s:10:\"videopress\";s:3:\"2.5\";s:17:\"widget-visibility\";s:3:\"2.4\";s:7:\"widgets\";s:3:\"1.2\";s:21:\"woocommerce-analytics\";s:3:\"8.4\";s:7:\"wordads\";s:5:\"4.5.0\";}}','yes'),(184,'sharing-options','a:1:{s:6:\"global\";a:5:{s:12:\"button_style\";s:9:\"icon-text\";s:13:\"sharing_label\";s:11:\"Share this:\";s:10:\"open_links\";s:4:\"same\";s:4:\"show\";a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}s:6:\"custom\";a:0:{}}}','yes'),(185,'stats_options','a:7:{s:9:\"admin_bar\";b:1;s:5:\"roles\";a:1:{i:0;s:13:\"administrator\";}s:11:\"count_roles\";a:0:{}s:7:\"blog_id\";b:0;s:12:\"do_not_track\";b:1;s:10:\"hide_smile\";b:1;s:7:\"version\";s:1:\"9\";}','yes'),(193,'boldgrid_backup_in_progress_data','a:3:{s:6:\"status\";s:22:\"Backing up database...\";s:6:\"tables\";a:13:{i:0;s:16:\"wpeb_commentmeta\";i:1;s:13:\"wpeb_comments\";i:2;s:10:\"wpeb_links\";i:3;s:12:\"wpeb_options\";i:4;s:13:\"wpeb_postmeta\";i:5;s:10:\"wpeb_posts\";i:6;s:23:\"wpeb_term_relationships\";i:7;s:18:\"wpeb_term_taxonomy\";i:8;s:13:\"wpeb_termmeta\";i:9;s:10:\"wpeb_terms\";i:10;s:13:\"wpeb_usermeta\";i:11;s:10:\"wpeb_users\";i:12;s:17:\"wpeb_wpforms_lite\";}s:4:\"step\";i:1;}','yes'),(196,'bglib_activity','a:1:{s:15:\"boldgrid-backup\";a:1:{s:18:\"any_backup_created\";i:12;}}','yes'),(194,'boldgrid_backup_last_backup','1657665784','no'),(195,'boldgrid_backup_latest_backup','a:34:{s:4:\"mode\";s:6:\"backup\";s:6:\"dryrun\";b:0;s:10:\"compressor\";s:7:\"php_zip\";s:8:\"filesize\";i:55689010;s:4:\"save\";b:1;s:10:\"total_size\";i:145977852;s:14:\"folder_include\";s:18:\"WPCORE,/wp-content\";s:14:\"folder_exclude\";s:17:\".git,node_modules\";s:13:\"table_exclude\";a:0:{}s:5:\"title\";N;s:11:\"description\";N;s:7:\"ABSPATH\";s:47:\"/home/easypa9/craftswelove.easypapercrafts.com/\";s:9:\"backup_id\";s:8:\"d2a8a128\";s:7:\"siteurl\";s:39:\"http://craftswelove.easypapercrafts.com\";s:9:\"timestamp\";i:1657665728;s:17:\"gateway_interface\";s:7:\"CGI/1.1\";s:9:\"http_host\";s:32:\"craftswelove.easypapercrafts.com\";s:13:\"php_sapi_name\";s:8:\"cgi-fcgi\";s:9:\"php_uname\";s:113:\"Linux ecbiz206.inmotionhosting.com 2.6.32-954.3.5.lve1.4.64.el6.x86_64 #1 SMP Wed May 15 12:53:53 EDT 2019 x86_64\";s:11:\"php_version\";s:6:\"7.2.34\";s:11:\"server_addr\";s:14:\"173.205.126.33\";s:11:\"server_name\";s:32:\"craftswelove.easypapercrafts.com\";s:15:\"server_protocol\";s:8:\"HTTP/1.1\";s:15:\"server_software\";s:6:\"Apache\";s:3:\"uid\";i:2849;s:8:\"username\";s:7:\"easypa9\";s:10:\"encrypt_db\";b:0;s:7:\"trigger\";s:11:\"Auto update\";s:8:\"filepath\";s:107:\"/home/easypa9/boldgrid_backup/boldgrid-backup-craftswelove.easypapercrafts.com-d2a8a128-20220712-224212.zip\";s:11:\"lastmodunix\";i:1657665784;s:8:\"duration\";s:5:\"56.12\";s:11:\"db_duration\";s:4:\"0.03\";s:11:\"db_filename\";s:33:\"easypa9_wp586.20220712-224208.sql\";s:12:\"mail_success\";b:1;}','yes'),(209,'_transient_health-check-site-status-result','{\"good\":15,\"recommended\":3,\"critical\":1}','yes'),(263,'jetpack_log','a:1:{i:0;a:4:{s:4:\"time\";i:1623117841;s:7:\"user_id\";i:1;s:7:\"blog_id\";b:0;s:4:\"code\";s:8:\"register\";}}','no'),(264,'jetpack_tos_agreed','1','yes'),(265,'jetpack_secrets','a:0:{}','no'),(267,'jetpack_private_options','a:2:{s:10:\"blog_token\";s:65:\"V(^ZaUiy6g#niG^oZ6rn7ZYG6ZCRVFZ3.kX$0*)MupB&H4mggYll72Y$k@rB%YQ!0\";s:11:\"user_tokens\";a:1:{i:1;s:67:\"fY$vOYbQuzCRfRSGxI@nL4Xsyi@m8nk7.I%MRBP18^G9fD$z5DSwNzgeN@bilUDxs.1\";}}','yes'),(266,'_transient_jetpack_assumed_site_creation_date','2021-06-03 15:27:26','yes'),(269,'jetpack_unique_connection','a:3:{s:9:\"connected\";i:1;s:12:\"disconnected\";i:0;s:7:\"version\";s:5:\"3.6.1\";}','yes'),(270,'jetpack_sync_settings_max_queue_size','5000','yes'),(271,'jetpack_sync_settings_max_queue_lag','7200','yes'),(272,'jetpack_sync_full_status','a:4:{s:7:\"started\";i:1623117867;s:8:\"finished\";i:1623117878;s:8:\"progress\";a:4:{s:7:\"options\";a:1:{s:8:\"finished\";b:1;}s:9:\"functions\";a:1:{s:8:\"finished\";b:1;}s:9:\"constants\";a:1:{s:8:\"finished\";b:1;}s:5:\"users\";a:4:{s:5:\"total\";s:1:\"1\";s:4:\"sent\";i:1;s:8:\"finished\";b:1;s:9:\"last_sent\";s:1:\"1\";}}s:6:\"config\";a:4:{s:7:\"options\";b:1;s:9:\"functions\";b:1;s:9:\"constants\";b:1;s:5:\"users\";a:1:{i:0;i:1;}}}','no'),(273,'jetpack_sync_settings_dequeue_max_bytes','500000','yes'),(274,'jetpack_sync_settings_upload_max_bytes','600000','yes'),(275,'jetpack_sync_settings_upload_max_rows','500','yes'),(276,'jetpack_sync_settings_sync_wait_time','10','yes'),(277,'jetpack_sync_settings_sync_wait_threshold','10','yes'),(278,'jetpack_sync_settings_enqueue_wait_time','1','yes'),(279,'jetpack_sync_settings_queue_max_writes_sec','100','yes'),(280,'jetpack_sync_settings_post_types_blacklist','a:0:{}','yes'),(281,'jetpack_sync_settings_taxonomies_blacklist','a:0:{}','yes'),(282,'jetpack_sync_settings_render_filtered_content','0','yes'),(283,'jetpack_sync_settings_post_meta_whitelist','a:0:{}','yes'),(284,'jetpack_sync_settings_comment_meta_whitelist','a:0:{}','yes'),(285,'jetpack_sync_settings_max_enqueue_full_sync','100','yes'),(286,'jetpack_sync_settings_max_queue_size_full_sync','1000','yes'),(287,'jetpack_sync_settings_sync_via_cron','1','yes'),(288,'jetpack_sync_settings_cron_sync_time_limit','240','yes'),(289,'jetpack_sync_settings_known_importers','a:6:{s:16:\"Blogger_Importer\";s:7:\"blogger\";s:13:\"LJ_API_Import\";s:11:\"livejournal\";s:9:\"MT_Import\";s:2:\"mt\";s:10:\"RSS_Import\";s:3:\"rss\";s:20:\"WC_Tax_Rate_Importer\";s:12:\"woo-tax-rate\";s:9:\"WP_Import\";s:9:\"wordpress\";}','yes'),(290,'jetpack_sync_settings_term_relationships_full_sync_item_size','100','yes'),(291,'jetpack_sync_settings_sync_sender_enabled','1','yes'),(292,'jetpack_sync_settings_full_sync_sender_enabled','1','yes'),(293,'jetpack_sync_settings_full_sync_send_duration','9','yes'),(294,'jetpack_sync_settings_full_sync_limits','a:5:{s:5:\"users\";a:2:{s:10:\"chunk_size\";i:100;s:10:\"max_chunks\";i:10;}s:5:\"terms\";a:2:{s:10:\"chunk_size\";i:1000;s:10:\"max_chunks\";i:10;}s:5:\"posts\";a:2:{s:10:\"chunk_size\";i:100;s:10:\"max_chunks\";i:1;}s:8:\"comments\";a:2:{s:10:\"chunk_size\";i:100;s:10:\"max_chunks\";i:10;}s:18:\"term_relationships\";a:2:{s:10:\"chunk_size\";i:1000;s:10:\"max_chunks\";i:10;}}','yes'),(297,'jetpack_plugin_api_action_links','a:6:{s:33:\"classic-editor/classic-editor.php\";a:1:{s:8:\"Settings\";s:92:\"https://craftswelove.easypapercrafts.com/wp-admin/options-writing.php#classic-editor-options\";}s:19:\"jetpack/jetpack.php\";a:3:{s:7:\"Jetpack\";s:72:\"https://craftswelove.easypapercrafts.com/wp-admin/admin.php?page=jetpack\";s:8:\"Settings\";s:82:\"https://craftswelove.easypapercrafts.com/wp-admin/admin.php?page=jetpack#/settings\";s:7:\"Support\";s:81:\"https://craftswelove.easypapercrafts.com/wp-admin/admin.php?page=jetpack-debugger\";}s:21:\"meta-box/meta-box.php\";a:3:{s:4:\"Docs\";s:23:\"https://docs.metabox.io\";s:5:\"About\";s:75:\"https://craftswelove.easypapercrafts.com/wp-admin/plugins.php?page=meta-box\";s:6:\"Go Pro\";s:27:\"https://metabox.io/pricing/\";}s:35:\"modula-best-grid-gallery/Modula.php\";a:1:{s:9:\"Uninstall\";s:51:\"https://craftswelove.easypapercrafts.com/wp-admin/#\";}s:35:\"boldgrid-backup/boldgrid-backup.php\";a:2:{s:8:\"Settings\";s:89:\"https://craftswelove.easypapercrafts.com/wp-admin/admin.php?page=boldgrid-backup-settings\";s:11:\"Get Premium\";s:67:\"https://www.boldgrid.com/update-backup?source=bgbkup-plugin-actions\";}s:27:\"wp-pagenavi/wp-pagenavi.php\";a:1:{s:8:\"Settings\";s:83:\"https://craftswelove.easypapercrafts.com/wp-admin/options-general.php?page=pagenavi\";}}','yes'),(301,'jetpack_active_modules','a:8:{i:0;s:12:\"contact-form\";i:1;s:21:\"enhanced-distribution\";i:2;s:8:\"json-api\";i:3;s:5:\"notes\";i:4;s:7:\"protect\";i:5;s:5:\"stats\";i:6;s:18:\"verification-tools\";i:7;s:21:\"woocommerce-analytics\";}','yes'),(310,'jetpack_protect_key','aba433f7587bf69ec02ee3f1e8a4b9f9b3f40522','no'),(329,'jetpack_constants_sync_checksum','a:20:{s:16:\"EMPTY_TRASH_DAYS\";i:2473281379;s:17:\"WP_POST_REVISIONS\";i:4261170317;s:26:\"AUTOMATIC_UPDATER_DISABLED\";i:634125391;s:7:\"ABSPATH\";i:3144493465;s:14:\"WP_CONTENT_DIR\";i:3629150187;s:9:\"FS_METHOD\";i:634125391;s:18:\"DISALLOW_FILE_EDIT\";i:634125391;s:18:\"DISALLOW_FILE_MODS\";i:634125391;s:19:\"WP_AUTO_UPDATE_CORE\";i:634125391;s:22:\"WP_HTTP_BLOCK_EXTERNAL\";i:634125391;s:19:\"WP_ACCESSIBLE_HOSTS\";i:634125391;s:16:\"JETPACK__VERSION\";i:3045967425;s:12:\"IS_PRESSABLE\";i:634125391;s:15:\"DISABLE_WP_CRON\";i:634125391;s:17:\"ALTERNATE_WP_CRON\";i:634125391;s:20:\"WP_CRON_LOCK_TIMEOUT\";i:3994858278;s:11:\"PHP_VERSION\";i:1568186345;s:15:\"WP_MEMORY_LIMIT\";i:3065409971;s:19:\"WP_MAX_MEMORY_LIMIT\";i:2267546353;s:8:\"WP_DEBUG\";i:734881840;}','yes'),(330,'jetpack_sync_https_history_main_network_site_url','a:5:{i:0;s:5:\"https\";i:1;s:5:\"https\";i:2;s:5:\"https\";i:3;s:5:\"https\";i:4;s:5:\"https\";}','yes'),(331,'jetpack_sync_https_history_site_url','a:5:{i:0;s:5:\"https\";i:1;s:5:\"https\";i:2;s:5:\"https\";i:3;s:5:\"https\";i:4;s:5:\"https\";}','yes'),(332,'jetpack_sync_https_history_home_url','a:5:{i:0;s:5:\"https\";i:1;s:5:\"https\";i:2;s:5:\"https\";i:3;s:5:\"https\";i:4;s:5:\"https\";}','yes'),(5386,'wp_force_deactivated_plugins','a:0:{}','yes'),(438,'stats_cache','a:2:{s:32:\"410199842519cda44bafd2d08fcd6ebe\";a:1:{i:1658279808;a:0:{}}s:32:\"96f3a03351ce0bc96731ea6283a8a682\";a:1:{i:1658279809;a:0:{}}}','yes'),(407,'theme_mods_twentynineteen','a:1:{s:18:\"custom_css_post_id\";i:-1;}','yes'),(409,'verification_services_codes','0','yes'),(27293,'_transient_timeout_jetpack_is_single_user','1658346304','no'),(27294,'_transient_jetpack_is_single_user','1','no'),(27003,'_transient_timeout_boldgrid_backup_system_zip_test','1658369883','no'),(27004,'_transient_boldgrid_backup_system_zip_test','1','no'),(390,'trusted_ip_header','O:8:\"stdClass\":3:{s:14:\"trusted_header\";s:11:\"REMOTE_ADDR\";s:8:\"segments\";i:1;s:7:\"reverse\";b:0;}','no'),(380,'jp_sync_lock_full_sync','1658343342.7221','yes'),(376,'jetpack_testimonial','0','yes'),(374,'jetpack_next_sync_time_full-sync-enqueue','1658343343','yes'),(371,'jetpack_callables_sync_checksum','a:34:{s:18:\"wp_max_upload_size\";i:1819132959;s:15:\"is_main_network\";i:734881840;s:13:\"is_multi_site\";i:734881840;s:17:\"main_network_site\";i:690603736;s:26:\"main_network_site_wpcom_id\";i:104633929;s:8:\"site_url\";i:690603736;s:8:\"home_url\";i:690603736;s:16:\"single_user_site\";i:4261170317;s:7:\"updates\";i:291914445;s:28:\"has_file_system_write_access\";i:4261170317;s:21:\"is_version_controlled\";i:734881840;s:10:\"taxonomies\";i:3454280676;s:10:\"post_types\";i:3927881592;s:18:\"post_type_features\";i:864312742;s:10:\"shortcodes\";i:1431174749;s:27:\"rest_api_allowed_post_types\";i:2544842423;s:32:\"rest_api_allowed_public_metadata\";i:223132457;s:10:\"wp_version\";i:3092862723;s:11:\"get_plugins\";i:1648445543;s:24:\"get_plugins_action_links\";i:3763606762;s:14:\"active_modules\";i:4083673817;s:16:\"hosting_provider\";i:769900095;s:6:\"locale\";i:110763218;s:13:\"site_icon_url\";i:734881840;s:5:\"roles\";i:2074191413;s:8:\"timezone\";i:3808505409;s:24:\"available_jetpack_blocks\";i:1569478198;s:13:\"paused_themes\";i:223132457;s:14:\"paused_plugins\";i:223132457;s:24:\"sso_is_two_step_required\";i:734881840;s:26:\"sso_should_hide_login_form\";i:734881840;s:18:\"sso_match_by_email\";i:4261170317;s:21:\"sso_new_user_override\";i:734881840;s:29:\"sso_bypass_default_login_form\";i:734881840;}','no'),(372,'jpsq_sync_checkout','0:0','no'),(27541,'_transient_timeout_jpp_li_f538d3fa9f75e3f5629e12f458b50a0e','1658338300','no'),(27542,'_transient_jpp_li_f538d3fa9f75e3f5629e12f458b50a0e','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (185.126.219.43)\";s:17:\"seconds_remaining\";i:3578;s:16:\"blocked_attempts\";s:4:\"1857\";s:6:\"expire\";i:1658338300;}','no'),(27543,'_transient_timeout_jpp_li_f41568bf5abca8ad4094045a9dbf441d','1658339411','no'),(27544,'_transient_jpp_li_f41568bf5abca8ad4094045a9dbf441d','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (35.241.156.161)\";s:17:\"seconds_remaining\";i:3562;s:16:\"blocked_attempts\";s:4:\"1858\";s:6:\"expire\";i:1658339411;}','no'),(27547,'_transient_timeout_jpp_li_c885bf69dc7afefca64efc2676d9b087','1658340502','no'),(27548,'_transient_jpp_li_c885bf69dc7afefca64efc2676d9b087','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (103.176.178.98)\";s:17:\"seconds_remaining\";i:3527;s:16:\"blocked_attempts\";s:4:\"1859\";s:6:\"expire\";i:1658340502;}','no'),(27549,'_transient_timeout_jpp_li_361afb37e6978863ba7e5770f32b4aa0','1658341664','no'),(27550,'_transient_jpp_li_361afb37e6978863ba7e5770f32b4aa0','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (80.88.88.149)\";s:17:\"seconds_remaining\";i:3587;s:16:\"blocked_attempts\";s:4:\"1860\";s:6:\"expire\";i:1658341664;}','no'),(27551,'_transient_timeout_jpp_li_da98e44ad808c2797a8b0589628c00fd','1658342724','no'),(27552,'_transient_jpp_li_da98e44ad808c2797a8b0589628c00fd','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:42:\"This IP is currently blocked (45.55.44.23)\";s:17:\"seconds_remaining\";i:3556;s:16:\"blocked_attempts\";s:4:\"1861\";s:6:\"expire\";i:1658342724;}','no'),(27553,'_transient_timeout_jpp_li_0906b13f00bbc5a8105c51a3ded47e6d','1658343814','no'),(27554,'_transient_jpp_li_0906b13f00bbc5a8105c51a3ded47e6d','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (67.228.97.99)\";s:17:\"seconds_remaining\";i:3574;s:16:\"blocked_attempts\";s:4:\"1862\";s:6:\"expire\";i:1658343814;}','no'),(27566,'_transient_timeout_jpp_li_b9c9ae4daf6b1555db3e02338519bb78','1658344897','no'),(27567,'_transient_jpp_li_b9c9ae4daf6b1555db3e02338519bb78','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (23.99.229.218)\";s:17:\"seconds_remaining\";i:3587;s:16:\"blocked_attempts\";s:4:\"1863\";s:6:\"expire\";i:1658344897;}','no'),(27568,'_transient_timeout_jpp_li_4dc3adb8d06b1770076fd63a692162b3','1658345816','no'),(27569,'_transient_jpp_li_4dc3adb8d06b1770076fd63a692162b3','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (133.130.103.36)\";s:17:\"seconds_remaining\";i:3460;s:16:\"blocked_attempts\";s:4:\"1864\";s:6:\"expire\";i:1658345816;}','no'),(27570,'_transient_timeout_jetpack_psh_status','1658344101','no'),(27571,'_transient_jetpack_psh_status','1','no'),(27580,'_transient_timeout_brute_use_math','1658343806','no'),(27581,'_transient_brute_use_math','1','no'),(27582,'jetpack_protect_error','Invalid Action Specified','no'),(27577,'_transient_timeout_jetpack_sync_last_checked_queue_state_sync','1658343506','no'),(27578,'_transient_jetpack_sync_last_checked_queue_state_sync','a:2:{i:0;i:0;i:1;i:0;}','no'),(27587,'_transient_timeout_jetpack_jitm_fefae7dd09ba85632e0a0929a74c49c','1658343528','no'),(27588,'_transient_jetpack_jitm_fefae7dd09ba85632e0a0929a74c49c','a:1:{s:18:\"last_response_time\";i:1658343228;}','no'),(466,'theme_mods_gridzone','a:25:{s:18:\"custom_css_post_id\";i:-1;s:12:\"header_image\";s:13:\"remove-header\";s:12:\"social-links\";a:0:{}s:18:\"nav_menu_locations\";a:0:{}s:13:\"profile-image\";s:0:\"\";s:19:\"profile-description\";s:138:\"Crafts that we wish we would have thought of! Love love love. Click on the photos to get links and descriptions of the original tutorials.\";s:13:\"sidebar-areas\";a:0:{}s:14:\"footer-widgets\";s:1:\"3\";s:6:\"credit\";b:0;s:16:\"widget-alx-posts\";b:0;s:15:\"widget-alx-tabs\";b:0;s:18:\"alx-meta-box-audio\";b:0;s:18:\"alx-meta-box-video\";b:0;s:14:\"heading-enable\";b:1;s:13:\"comment-count\";b:0;s:8:\"post-nav\";s:7:\"disable\";s:13:\"header-search\";b:0;s:10:\"footer-ads\";b:1;s:11:\"layout-home\";s:7:\"inherit\";s:13:\"layout-global\";s:7:\"col-2cl\";s:13:\"related-posts\";s:7:\"disable\";s:20:\"single-content-width\";s:3:\"533\";s:14:\"page-box-width\";s:3:\"528\";s:18:\"page-content-width\";s:3:\"528\";s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1658276610;s:4:\"data\";a:8:{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:13:\"custom_html-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}s:8:\"footer-1\";a:0:{}s:8:\"footer-2\";a:0:{}s:8:\"footer-3\";a:0:{}s:8:\"footer-4\";a:0:{}}}}','yes'),(26851,'theme_mods_twentytwentytwo','a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1658276663;s:4:\"data\";a:1:{s:19:\"wp_inactive_widgets\";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:13:\"custom_html-2\";}}}}','yes'),(504,'recently_activated','a:0:{}','yes'),(880,'modula-rate-time','1623245274','yes'),(882,'modula_wisdom_notification_times','a:1:{s:24:\"modula-best-grid-gallery\";i:1623158875;}','yes'),(879,'widget_modula_gallery_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(497,'theme_switched_via_customizer','','yes'),(500,'customize_stashed_theme_mods','a:0:{}','no'),(583,'widget_alxposts','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(584,'widget_alxtabs','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(488,'jetpack_next_sync_time_sync','1658286262','yes'),(607,'pagenavi_options','a:15:{s:10:\"pages_text\";s:36:\"Page %CURRENT_PAGE% of %TOTAL_PAGES%\";s:12:\"current_text\";s:13:\"%PAGE_NUMBER%\";s:9:\"page_text\";s:13:\"%PAGE_NUMBER%\";s:10:\"first_text\";s:13:\"&laquo; First\";s:9:\"last_text\";s:12:\"Last &raquo;\";s:9:\"prev_text\";s:7:\"&laquo;\";s:9:\"next_text\";s:7:\"&raquo;\";s:12:\"dotleft_text\";s:3:\"...\";s:13:\"dotright_text\";s:3:\"...\";s:9:\"num_pages\";i:5;s:23:\"num_larger_page_numbers\";i:3;s:28:\"larger_page_numbers_multiple\";i:10;s:11:\"always_show\";b:0;s:16:\"use_pagenavi_css\";b:1;s:5:\"style\";i:1;}','yes'),(640,'feedback_unread_count','0','yes'),(2169,'widget_block','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(868,'modula_version','a:2:{s:13:\"upgraded_from\";s:5:\"2.5.1\";s:15:\"current_version\";s:5:\"2.5.1\";}','yes'),(889,'wpcentral_allowed_ips','a:1:{i:0;s:14:\"138.201.40.162\";}','yes'),(885,'modula_troubleshooting_option','a:1:{s:10:\"track_data\";b:0;}','yes'),(886,'modula_wisdom_block_notice','a:1:{s:24:\"modula-best-grid-gallery\";s:24:\"modula-best-grid-gallery\";}','yes'),(807,'pingrid_custom_logo_url','','yes'),(808,'pingrid_featured_text','','yes'),(809,'pingrid_background_image_url','','yes'),(810,'pingrid_custom_background_color','','yes'),(811,'pingrid_disable_slideshow','','yes'),(812,'pingrid_facebook_link','','yes'),(813,'pingrid_twitter_link','','yes'),(814,'pingrid_picasa_link','','yes'),(815,'pingrid_google_plus_link','','yes'),(816,'pingrid_pinterest_link','','yes'),(817,'pingrid_vimeo_link','','yes'),(818,'pingrid_youtube_link','','yes'),(819,'pingrid_flickr_link','','yes'),(820,'pingrid_copyright_text','','yes'),(27497,'_transient_timeout_jpp_li_5c1afa53994c23f7d99fb9a71895eb3a','1658332353','no'),(27498,'_transient_jpp_li_5c1afa53994c23f7d99fb9a71895eb3a','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (51.79.144.41)\";s:17:\"seconds_remaining\";i:3592;s:16:\"blocked_attempts\";s:4:\"1850\";s:6:\"expire\";i:1658332353;}','no'),(27504,'_transient_timeout_jpp_li_6f71d450212fcc49f3d3cebc0309eb6d','1658333025','no'),(27505,'_transient_jpp_li_6f71d450212fcc49f3d3cebc0309eb6d','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (157.0.140.186)\";s:17:\"seconds_remaining\";i:3377;s:16:\"blocked_attempts\";s:4:\"1851\";s:6:\"expire\";i:1658333025;}','no'),(27509,'_transient_timeout_jpp_li_2ae7805638b9528380aedaf6020ff644','1658333946','no'),(27510,'_transient_jpp_li_2ae7805638b9528380aedaf6020ff644','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (185.165.42.75)\";s:17:\"seconds_remaining\";i:3504;s:16:\"blocked_attempts\";s:4:\"1852\";s:6:\"expire\";i:1658333946;}','no'),(27530,'_transient_timeout_jpp_li_cfc5aaf87613a7ea7c3122740ca09617','1658334813','no'),(27514,'_transient_timeout_jpp_li_66356f6e34c55686b78c8599984204b9','1658334676','no'),(27515,'_transient_jpp_li_66356f6e34c55686b78c8599984204b9','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (66.29.138.73)\";s:17:\"seconds_remaining\";i:3370;s:16:\"blocked_attempts\";s:4:\"1853\";s:6:\"expire\";i:1658334676;}','no'),(991,'theme_mods_multipurpose-photography','a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1658286548;s:4:\"data\";a:8:{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:13:\"custom_html-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}s:8:\"footer-1\";a:0:{}s:8:\"footer-2\";a:0:{}s:8:\"footer-3\";a:0:{}s:8:\"footer-4\";a:0:{}}}}','yes'),(994,'widget_multipurpose_photography_about_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(995,'widget_multipurpose_photography_contact_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(26965,'theme_mods_gridshow','a:5:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:18:\"custom_css_post_id\";i:-1;s:12:\"header_image\";s:13:\"remove-header\";s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1658286195;s:4:\"data\";a:22:{s:19:\"wp_inactive_widgets\";a:0:{}s:20:\"gridshow-sidebar-one\";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:13:\"custom_html-2\";}s:31:\"gridshow-home-fullwidth-widgets\";a:0:{}s:26:\"gridshow-fullwidth-widgets\";a:0:{}s:25:\"gridshow-home-top-widgets\";a:0:{}s:20:\"gridshow-top-widgets\";a:0:{}s:30:\"gridshow-home-left-top-widgets\";a:0:{}s:25:\"gridshow-left-top-widgets\";a:0:{}s:31:\"gridshow-home-right-top-widgets\";a:0:{}s:26:\"gridshow-right-top-widgets\";a:0:{}s:28:\"gridshow-home-bottom-widgets\";a:0:{}s:23:\"gridshow-bottom-widgets\";a:0:{}s:38:\"gridshow-home-fullwidth-bottom-widgets\";a:0:{}s:33:\"gridshow-fullwidth-bottom-widgets\";a:0:{}s:35:\"gridshow-single-post-bottom-widgets\";a:0:{}s:19:\"gridshow-top-footer\";a:0:{}s:17:\"gridshow-footer-1\";a:0:{}s:17:\"gridshow-footer-2\";a:0:{}s:17:\"gridshow-footer-3\";a:0:{}s:17:\"gridshow-footer-4\";a:0:{}s:22:\"gridshow-bottom-footer\";a:0:{}s:20:\"gridshow-404-widgets\";a:0:{}}}}','yes'),(2179,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:21:\"rita.shehan@gmail.com\";s:7:\"version\";s:5:\"6.0.1\";s:9:\"timestamp\";i:1657665806;}','no'),(27524,'_site_transient_update_plugins','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1658343307;s:8:\"response\";a:9:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:5:\"4.2.5\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.4.2.5.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:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"6.0.1\";s:12:\"requires_php\";b:0;}s:33:\"alx-extensions/alx-extensions.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:28:\"w.org/plugins/alx-extensions\";s:4:\"slug\";s:14:\"alx-extensions\";s:6:\"plugin\";s:33:\"alx-extensions/alx-extensions.php\";s:11:\"new_version\";s:5:\"1.1.3\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/alx-extensions/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/alx-extensions.1.1.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/alx-extensions/assets/icon-256x256.png?rev=2317507\";s:2:\"1x\";s:67:\"https://ps.w.org/alx-extensions/assets/icon-128x128.png?rev=2317507\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/alx-extensions/assets/banner-1544x500.png?rev=2317507\";s:2:\"1x\";s:69:\"https://ps.w.org/alx-extensions/assets/banner-772x250.png?rev=2317507\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.9\";s:6:\"tested\";s:5:\"6.0.1\";s:12:\"requires_php\";b:0;}s:33:\"classic-editor/classic-editor.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:28:\"w.org/plugins/classic-editor\";s:4:\"slug\";s:14:\"classic-editor\";s:6:\"plugin\";s:33:\"classic-editor/classic-editor.php\";s:11:\"new_version\";s:5:\"1.6.2\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/classic-editor/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/classic-editor.1.6.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/classic-editor/assets/icon-256x256.png?rev=1998671\";s:2:\"1x\";s:67:\"https://ps.w.org/classic-editor/assets/icon-128x128.png?rev=1998671\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/classic-editor/assets/banner-1544x500.png?rev=1998671\";s:2:\"1x\";s:69:\"https://ps.w.org/classic-editor/assets/banner-772x250.png?rev=1998676\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.9\";s:6:\"tested\";s:5:\"5.8.4\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:19:\"jetpack/jetpack.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:21:\"w.org/plugins/jetpack\";s:4:\"slug\";s:7:\"jetpack\";s:6:\"plugin\";s:19:\"jetpack/jetpack.php\";s:11:\"new_version\";s:6:\"11.1.2\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/jetpack/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/plugin/jetpack.11.1.2.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:60:\"https://ps.w.org/jetpack/assets/icon-256x256.png?rev=2638128\";s:2:\"1x\";s:52:\"https://ps.w.org/jetpack/assets/icon.svg?rev=2638128\";s:3:\"svg\";s:52:\"https://ps.w.org/jetpack/assets/icon.svg?rev=2638128\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/jetpack/assets/banner-1544x500.png?rev=2653649\";s:2:\"1x\";s:62:\"https://ps.w.org/jetpack/assets/banner-772x250.png?rev=2653649\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.9\";s:6:\"tested\";s:5:\"6.0.1\";s:12:\"requires_php\";s:3:\"5.6\";}s:21:\"meta-box/meta-box.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:22:\"w.org/plugins/meta-box\";s:4:\"slug\";s:8:\"meta-box\";s:6:\"plugin\";s:21:\"meta-box/meta-box.php\";s:11:\"new_version\";s:5:\"5.6.5\";s:3:\"url\";s:39:\"https://wordpress.org/plugins/meta-box/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/plugin/meta-box.5.6.5.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:61:\"https://ps.w.org/meta-box/assets/icon-128x128.png?rev=1100915\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:63:\"https://ps.w.org/meta-box/assets/banner-772x250.png?rev=1929588\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.3\";s:6:\"tested\";s:5:\"6.0.1\";s:12:\"requires_php\";s:3:\"5.6\";}s:35:\"modula-best-grid-gallery/Modula.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:38:\"w.org/plugins/modula-best-grid-gallery\";s:4:\"slug\";s:24:\"modula-best-grid-gallery\";s:6:\"plugin\";s:35:\"modula-best-grid-gallery/Modula.php\";s:11:\"new_version\";s:5:\"2.6.7\";s:3:\"url\";s:55:\"https://wordpress.org/plugins/modula-best-grid-gallery/\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/plugin/modula-best-grid-gallery.2.6.7.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:77:\"https://ps.w.org/modula-best-grid-gallery/assets/icon-256x256.jpg?rev=2019530\";s:2:\"1x\";s:77:\"https://ps.w.org/modula-best-grid-gallery/assets/icon-256x256.jpg?rev=2019530\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:79:\"https://ps.w.org/modula-best-grid-gallery/assets/banner-772x250.jpg?rev=2019530\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.2\";s:6:\"tested\";s:5:\"6.0.1\";s:12:\"requires_php\";s:3:\"5.6\";}s:35:\"boldgrid-backup/boldgrid-backup.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:29:\"w.org/plugins/boldgrid-backup\";s:4:\"slug\";s:15:\"boldgrid-backup\";s:6:\"plugin\";s:35:\"boldgrid-backup/boldgrid-backup.php\";s:11:\"new_version\";s:6:\"1.15.2\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/boldgrid-backup/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/boldgrid-backup.1.15.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/boldgrid-backup/assets/icon-256x256.png?rev=1880952\";s:2:\"1x\";s:68:\"https://ps.w.org/boldgrid-backup/assets/icon-128x128.png?rev=1880952\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/boldgrid-backup/assets/banner-1544x500.png?rev=1880952\";s:2:\"1x\";s:70:\"https://ps.w.org/boldgrid-backup/assets/banner-772x250.png?rev=1880952\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.4\";s:6:\"tested\";s:5:\"6.0.1\";s:12:\"requires_php\";s:3:\"5.4\";}s:19:\"weforms/weforms.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:21:\"w.org/plugins/weforms\";s:4:\"slug\";s:7:\"weforms\";s:6:\"plugin\";s:19:\"weforms/weforms.php\";s:11:\"new_version\";s:6:\"1.6.14\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/weforms/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/plugin/weforms.1.6.14.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:60:\"https://ps.w.org/weforms/assets/icon-256x256.png?rev=1978687\";s:2:\"1x\";s:60:\"https://ps.w.org/weforms/assets/icon-128x128.png?rev=1978687\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/weforms/assets/banner-1544x500.png?rev=2243402\";s:2:\"1x\";s:62:\"https://ps.w.org/weforms/assets/banner-772x250.png?rev=2243402\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"5.9.3\";s:12:\"requires_php\";s:3:\"7.2\";}s:24:\"wp-central/wpcentral.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:24:\"w.org/plugins/wp-central\";s:4:\"slug\";s:10:\"wp-central\";s:6:\"plugin\";s:24:\"wp-central/wpcentral.php\";s:11:\"new_version\";s:5:\"1.5.6\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/wp-central/\";s:7:\"package\";s:53:\"https://downloads.wordpress.org/plugin/wp-central.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/wp-central/assets/icon-256x256.png?rev=1965788\";s:2:\"1x\";s:63:\"https://ps.w.org/wp-central/assets/icon-128x128.png?rev=1965788\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:65:\"https://ps.w.org/wp-central/assets/banner-772x250.png?rev=1965788\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.4\";s:6:\"tested\";s:5:\"5.8.4\";s:12:\"requires_php\";s:3:\"5.3\";}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:3:{s:9:\"hello.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/hello-dolly\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:5:\"1.7.2\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/hello-dolly.1.7.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=2052855\";s:2:\"1x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=2052855\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/hello-dolly/assets/banner-1544x500.jpg?rev=2645582\";s:2:\"1x\";s:66:\"https://ps.w.org/hello-dolly/assets/banner-772x250.jpg?rev=2052855\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";}s:47:\"regenerate-thumbnails/regenerate-thumbnails.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:35:\"w.org/plugins/regenerate-thumbnails\";s:4:\"slug\";s:21:\"regenerate-thumbnails\";s:6:\"plugin\";s:47:\"regenerate-thumbnails/regenerate-thumbnails.php\";s:11:\"new_version\";s:5:\"3.1.5\";s:3:\"url\";s:52:\"https://wordpress.org/plugins/regenerate-thumbnails/\";s:7:\"package\";s:70:\"https://downloads.wordpress.org/plugin/regenerate-thumbnails.3.1.5.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:74:\"https://ps.w.org/regenerate-thumbnails/assets/icon-128x128.png?rev=1753390\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:77:\"https://ps.w.org/regenerate-thumbnails/assets/banner-1544x500.jpg?rev=1753390\";s:2:\"1x\";s:76:\"https://ps.w.org/regenerate-thumbnails/assets/banner-772x250.jpg?rev=1753390\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.7\";}s:27:\"wp-pagenavi/wp-pagenavi.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/wp-pagenavi\";s:4:\"slug\";s:11:\"wp-pagenavi\";s:6:\"plugin\";s:27:\"wp-pagenavi/wp-pagenavi.php\";s:11:\"new_version\";s:6:\"2.94.0\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/wp-pagenavi/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/wp-pagenavi.2.94.0.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:55:\"https://ps.w.org/wp-pagenavi/assets/icon.svg?rev=977997\";s:3:\"svg\";s:55:\"https://ps.w.org/wp-pagenavi/assets/icon.svg?rev=977997\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/wp-pagenavi/assets/banner-1544x500.jpg?rev=1206758\";s:2:\"1x\";s:66:\"https://ps.w.org/wp-pagenavi/assets/banner-772x250.jpg?rev=1206758\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.2\";}}}','no'),(10329,'db_upgraded','','yes'),(2068,'jetpack_protect_blocked_attempts','1865','no');
/*!40000 ALTER TABLE `wpeb_options` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpeb_options` with 329 row(s)
--

--
-- Table structure for table `wpeb_postmeta`
--

DROP TABLE IF EXISTS `wpeb_postmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpeb_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_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `post_id` (`post_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=92 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpeb_postmeta`
--

LOCK TABLES `wpeb_postmeta` WRITE;
/*!40000 ALTER TABLE `wpeb_postmeta` DISABLE KEYS */;
INSERT INTO `wpeb_postmeta` VALUES (1,2,'_wp_page_template','default'),(2,3,'_wp_page_template','default'),(8,8,'_wp_attached_file','2021/06/photo-logo.jpg'),(9,8,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1352;s:6:\"height\";i:140;s:4:\"file\";s:22:\"2021/06/photo-logo.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"photo-logo-300x31.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:31;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"photo-logo-1024x106.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:106;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"photo-logo-150x140.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"photo-logo-768x80.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"home-featured\";a:4:{s:4:\"file\";s:22:\"photo-logo-575x140.jpg\";s:5:\"width\";i:575;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"home-blog\";a:4:{s:4:\"file\";s:22:\"photo-logo-295x140.jpg\";s:5:\"width\";i:295;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"modern-archive\";a:4:{s:4:\"file\";s:22:\"photo-logo-379x140.jpg\";s:5:\"width\";i:379;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"modern-blog\";a:4:{s:4:\"file\";s:22:\"photo-logo-830x140.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"design-home-featured\";a:4:{s:4:\"file\";s:22:\"photo-logo-390x140.jpg\";s:5:\"width\";i:390;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"sb-home-image\";a:4:{s:4:\"file\";s:22:\"photo-logo-273x140.jpg\";s:5:\"width\";i:273;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"square-slider\";a:4:{s:4:\"file\";s:22:\"photo-logo-387x140.jpg\";s:5:\"width\";i:387;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"square-blog-image\";a:4:{s:4:\"file\";s:22:\"photo-logo-388x140.jpg\";s:5:\"width\";i:388;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"home-pin-image\";a:4:{s:4:\"file\";s:22:\"photo-logo-280x140.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(72,34,'_wp_attached_file','2022/07/cropped-crystal-geode-800x500-1.jpg'),(73,34,'_wp_attachment_context','custom-header'),(74,34,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:800;s:6:\"height\";i:167;s:4:\"file\";s:43:\"2022/07/cropped-crystal-geode-800x500-1.jpg\";s:8:\"filesize\";i:45580;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"cropped-crystal-geode-800x500-1-300x63.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:63;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16582;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:43:\"cropped-crystal-geode-800x500-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17315;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:43:\"cropped-crystal-geode-800x500-1-768x160.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40864;}s:25:\"gridshow-360w-autoh-image\";a:5:{s:4:\"file\";s:42:\"cropped-crystal-geode-800x500-1-360x75.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19220;}s:24:\"gridshow-360w-270h-image\";a:5:{s:4:\"file\";s:43:\"cropped-crystal-geode-800x500-1-360x270.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33035;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"13\";s:6:\"credit\";s:16:\"Jennie Masterson\";s:6:\"camera\";s:11:\"NIKON D3100\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1444029529\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"55\";s:3:\"iso\";s:4:\"1600\";s:13:\"shutter_speed\";s:17:\"0.076923076923077\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:4:{i:0;s:12:\"diy crystals\";i:1;s:6:\"easter\";i:2;s:11:\"epsome salt\";i:3;s:10:\"geodes diy\";}}s:17:\"attachment_parent\";i:28;}'),(15,10,'_wp_attached_file','2021/06/jake-johnson-MHnC1hq1a-U-unsplash-scaled-e1623158216107.jpg'),(16,10,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:700;s:6:\"height\";i:1049;s:4:\"file\";s:67:\"2021/06/jake-johnson-MHnC1hq1a-U-unsplash-scaled-e1623158216107.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"jake-johnson-MHnC1hq1a-U-unsplash-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"jake-johnson-MHnC1hq1a-U-unsplash-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"jake-johnson-MHnC1hq1a-U-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:46:\"jake-johnson-MHnC1hq1a-U-unsplash-768x1151.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1151;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:47:\"jake-johnson-MHnC1hq1a-U-unsplash-1025x1536.jpg\";s:5:\"width\";i:1025;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:47:\"jake-johnson-MHnC1hq1a-U-unsplash-1366x2048.jpg\";s:5:\"width\";i:1366;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"gridzone-small\";a:4:{s:4:\"file\";s:45:\"jake-johnson-MHnC1hq1a-U-unsplash-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"gridzone-medium\";a:4:{s:4:\"file\";s:45:\"jake-johnson-MHnC1hq1a-U-unsplash-520x347.jpg\";s:5:\"width\";i:520;s:6:\"height\";i:347;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"gridzone-medium-h\";a:4:{s:4:\"file\";s:45:\"jake-johnson-MHnC1hq1a-U-unsplash-520x780.jpg\";s:5:\"width\";i:520;s:6:\"height\";i:780;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"gridzone-large-h\";a:4:{s:4:\"file\";s:46:\"jake-johnson-MHnC1hq1a-U-unsplash-940x1409.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:1409;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"alx-small\";a:4:{s:4:\"file\";s:45:\"jake-johnson-MHnC1hq1a-U-unsplash-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"alx-medium\";a:4:{s:4:\"file\";s:45:\"jake-johnson-MHnC1hq1a-U-unsplash-520x347.jpg\";s:5:\"width\";i:520;s:6:\"height\";i:347;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:37:\"jake-johnson-MHnC1hq1a-U-unsplash.jpg\";}'),(17,11,'_edit_last','1'),(18,11,'_edit_lock','1623159140:1'),(19,10,'_wp_attachment_image_alt','blah blah blah'),(20,10,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1708;s:6:\"height\";i:2560;s:4:\"file\";s:44:\"jake-johnson-MHnC1hq1a-U-unsplash-scaled.jpg\";}}'),(24,11,'_wp_page_template','default'),(23,11,'_layout','inherit'),(29,11,'_thumbnail_id','10'),(60,28,'_edit_lock','1658276316:1'),(61,28,'_edit_last','1'),(62,29,'_wp_trash_meta_status','publish'),(63,29,'_wp_trash_meta_time','1658276410'),(64,30,'_wp_trash_meta_status','publish'),(40,1,'_edit_lock','1623161250:1'),(41,1,'_edit_last','1'),(42,1,'_thumbnail_id','10'),(65,30,'_wp_trash_meta_time','1658276563'),(45,1,'_layout','inherit'),(66,31,'_wp_trash_meta_status','publish'),(67,31,'_wp_trash_meta_time','1658280227'),(68,32,'_wp_trash_meta_status','publish'),(69,32,'_wp_trash_meta_time','1658280312'),(70,33,'_wp_trash_meta_status','publish'),(71,33,'_wp_trash_meta_time','1658280323'),(58,28,'_wp_attached_file','2022/07/crystal-geode-800x500-1.jpg'),(59,28,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:500;s:4:\"file\";s:35:\"2022/07/crystal-geode-800x500-1.jpg\";s:8:\"filesize\";i:114531;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"crystal-geode-800x500-1-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30007;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"crystal-geode-800x500-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18957;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"crystal-geode-800x500-1-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:104541;}s:14:\"gridzone-small\";a:5:{s:4:\"file\";s:35:\"crystal-geode-800x500-1-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24713;}s:15:\"gridzone-medium\";a:5:{s:4:\"file\";s:35:\"crystal-geode-800x500-1-520x347.jpg\";s:5:\"width\";i:520;s:6:\"height\";i:347;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64267;}s:17:\"gridzone-medium-h\";a:5:{s:4:\"file\";s:35:\"crystal-geode-800x500-1-520x325.jpg\";s:5:\"width\";i:520;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60267;}s:9:\"alx-small\";a:5:{s:4:\"file\";s:35:\"crystal-geode-800x500-1-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24713;}s:10:\"alx-medium\";a:5:{s:4:\"file\";s:35:\"crystal-geode-800x500-1-520x347.jpg\";s:5:\"width\";i:520;s:6:\"height\";i:347;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64267;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"13\";s:6:\"credit\";s:16:\"Jennie Masterson\";s:6:\"camera\";s:11:\"NIKON D3100\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1444029529\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"55\";s:3:\"iso\";s:4:\"1600\";s:13:\"shutter_speed\";s:17:\"0.076923076923077\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:4:{i:0;s:12:\"diy crystals\";i:1;s:6:\"easter\";i:2;s:11:\"epsome salt\";i:3;s:10:\"geodes diy\";}}}'),(75,34,'_wp_attachment_custom_header_last_used_gridshow','1658284520'),(76,34,'_wp_attachment_is_custom_header','gridshow'),(77,35,'_edit_lock','1658284835:1'),(78,35,'_wp_trash_meta_status','publish'),(79,35,'_wp_trash_meta_time','1658284892'),(80,36,'_wp_trash_meta_status','publish'),(81,36,'_wp_trash_meta_time','1658286338'),(82,37,'_edit_lock','1658286542:1'),(83,37,'_wp_trash_meta_status','publish'),(84,37,'_wp_trash_meta_time','1658286548'),(85,38,'_edit_lock','1658286572:1'),(86,38,'_wp_trash_meta_status','publish'),(87,38,'_wp_trash_meta_time','1658286573'),(88,11,'grid_blogwaves_grid_post_views_count','2'),(89,1,'grid_blogwaves_grid_post_views_count','1');
/*!40000 ALTER TABLE `wpeb_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpeb_postmeta` with 49 row(s)
--

--
-- Table structure for table `wpeb_posts`
--

DROP TABLE IF EXISTS `wpeb_posts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpeb_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_ci NOT NULL,
  `post_title` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_excerpt` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish',
  `comment_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
  `ping_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
  `post_password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `post_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `to_ping` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `pinged` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content_filtered` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_parent` bigint(20) unsigned NOT NULL DEFAULT 0,
  `guid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `menu_order` int(11) NOT NULL DEFAULT 0,
  `post_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post',
  `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_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=MyISAM AUTO_INCREMENT=40 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpeb_posts`
--

LOCK TABLES `wpeb_posts` WRITE;
/*!40000 ALTER TABLE `wpeb_posts` DISABLE KEYS */;
INSERT INTO `wpeb_posts` VALUES (1,1,'2021-06-03 15:27:26','2021-06-03 15:27:26','<!-- wp:paragraph -->\r\n<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\r\n<!-- /wp:paragraph -->','Hello world!','','publish','open','open','','hello-world','','','2021-06-08 13:54:59','2021-06-08 13:54:59','',0,'https://craftswelove.easypapercrafts.com/?p=1',0,'post','',1),(2,1,'2021-06-03 15:27:26','2021-06-03 15:27:26','<!-- wp:paragraph -->\n<p>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:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>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&#241;a coladas. (And gettin\' caught in the rain.)</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>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.</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href=\"https://craftswelove.easypapercrafts.com/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->','Sample Page','','publish','closed','open','','sample-page','','','2021-06-03 15:27:26','2021-06-03 15:27:26','',0,'https://craftswelove.easypapercrafts.com/?page_id=2',0,'page','',0),(3,1,'2021-06-03 15:27:26','2021-06-03 15:27:26','<!-- wp:heading --><h2>Who we are</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Our website address is: https://craftswelove.easypapercrafts.com.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Comments</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor&#8217;s IP address and browser user agent string to help spam detection.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>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.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Media</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>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.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Cookies</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>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.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>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.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>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 &quot;Remember Me&quot;, your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>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.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Embedded content from other websites</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>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.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>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.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Who we share your data with</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you request a password reset, your IP address will be included in the reset email.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>How long we retain your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>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.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>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.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>What rights you have over your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>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.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Where we send your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Visitor comments may be checked through an automated spam detection service.</p><!-- /wp:paragraph -->','Privacy Policy','','draft','closed','open','','privacy-policy','','','2021-06-03 15:27:26','2021-06-03 15:27:26','',0,'https://craftswelove.easypapercrafts.com/?page_id=3',0,'page','',0),(8,1,'2021-06-08 02:31:09','2021-06-08 02:31:09','','photo logo','','inherit','open','closed','','photo-logo','','','2021-06-08 02:31:09','2021-06-08 02:31:09','',0,'https://craftswelove.easypapercrafts.com/wp-content/uploads/2021/06/photo-logo.jpg',0,'attachment','image/jpeg',0),(10,1,'2021-06-08 13:15:39','2021-06-08 13:15:39','','jake-johnson-MHnC1hq1a-U-unsplash','gjgkaslsdkgjl;as','inherit','open','closed','','jake-johnson-mhnc1hq1a-u-unsplash','','','2021-06-08 13:54:49','2021-06-08 13:54:49','',11,'https://craftswelove.easypapercrafts.com/wp-content/uploads/2021/06/jake-johnson-MHnC1hq1a-U-unsplash.jpg',0,'attachment','image/jpeg',0),(11,1,'2021-06-08 13:18:19','2021-06-08 13:18:19','<img class=\"aligncenter wp-image-10 size-full\" src=\"https://craftswelove.easypapercrafts.com/wp-content/uploads/2021/06/jake-johnson-MHnC1hq1a-U-unsplash-scaled-e1623158216107.jpg\" alt=\"blah blah blah\" width=\"700\" height=\"1049\" />\r\nBlah More Blah\r\n<!--more-->','Test Post 1','','publish','open','open','','test-post-1','','','2021-06-08 13:32:28','2021-06-08 13:32:28','',0,'https://craftswelove.easypapercrafts.com/?p=11',0,'post','',0),(12,1,'2021-06-08 13:18:19','2021-06-08 13:18:19','<img class=\"size-medium wp-image-10 aligncenter\" src=\"https://craftswelove.easypapercrafts.com/wp-content/uploads/2021/06/jake-johnson-MHnC1hq1a-U-unsplash-200x300.jpg\" alt=\"blah blah blah\" width=\"200\" height=\"300\" />\r\nBlah More Blah\r\n<!--more-->','Test Post 1','','inherit','closed','closed','','11-revision-v1','','','2021-06-08 13:18:19','2021-06-08 13:18:19','',11,'https://craftswelove.easypapercrafts.com/?p=12',0,'revision','',0),(13,1,'2021-06-08 13:21:21','2021-06-08 13:21:21','<img class=\"aligncenter wp-image-10 size-full\" src=\"https://craftswelove.easypapercrafts.com/wp-content/uploads/2021/06/jake-johnson-MHnC1hq1a-U-unsplash-scaled-e1623158216107.jpg\" alt=\"blah blah blah\" width=\"700\" height=\"1049\" />\r\nBlah More Blah\r\n<!--more-->','Test Post 1','','inherit','closed','closed','','11-revision-v1','','','2021-06-08 13:21:21','2021-06-08 13:21:21','',11,'https://craftswelove.easypapercrafts.com/?p=13',0,'revision','',0),(38,1,'2022-07-20 03:09:33','2022-07-20 03:09:33','{\n    \"show_on_front\": {\n        \"value\": \"posts\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-07-20 03:09:32\"\n    }\n}','','','trash','closed','closed','','39c402ff-fe35-4954-ba55-4b47a1485519','','','2022-07-20 03:09:33','2022-07-20 03:09:33','',0,'https://craftswelove.easypapercrafts.com/?p=38',0,'customize_changeset','',0),(16,1,'2021-06-08 13:34:39','2021-06-08 13:34:39','<img class=\"aligncenter wp-image-10 size-full\" src=\"https://craftswelove.easypapercrafts.com/wp-content/uploads/2021/06/jake-johnson-MHnC1hq1a-U-unsplash-scaled-e1623158216107.jpg\" alt=\"blah blah blah\" width=\"700\" height=\"1049\" />\n<a href=\"http://easypapercrafts.com\">Blah</a> More<a href=\"http://easypapercrafts,com\"> Blah</a>\n<!--more-->','Test Post 1','','inherit','closed','closed','','11-autosave-v1','','','2021-06-08 13:34:39','2021-06-08 13:34:39','',11,'https://craftswelove.easypapercrafts.com/?p=16',0,'revision','',0),(20,1,'2021-06-08 13:54:59','2021-06-08 13:54:59','<!-- wp:paragraph -->\r\n<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\r\n<!-- /wp:paragraph -->','Hello world!','','inherit','closed','closed','','1-revision-v1','','','2021-06-08 13:54:59','2021-06-08 13:54:59','',1,'https://craftswelove.easypapercrafts.com/?p=20',0,'revision','',0),(36,1,'2022-07-20 03:05:38','2022-07-20 03:05:38','{\n    \"show_on_front\": {\n        \"value\": \"page\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-07-20 03:05:38\"\n    },\n    \"page_for_posts\": {\n        \"value\": \"2\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-07-20 03:05:38\"\n    }\n}','','','trash','closed','closed','','cc50cea0-fe0e-406b-8f25-fe0c11a54516','','','2022-07-20 03:05:38','2022-07-20 03:05:38','',0,'https://craftswelove.easypapercrafts.com/2022/07/20/cc50cea0-fe0e-406b-8f25-fe0c11a54516/',0,'customize_changeset','',0),(37,1,'2022-07-20 03:09:08','2022-07-20 03:09:08','{\n    \"old_sidebars_widgets_data\": {\n        \"value\": {\n            \"wp_inactive_widgets\": [],\n            \"sidebar-1\": [\n                \"search-2\",\n                \"recent-posts-2\",\n                \"recent-comments-2\",\n                \"archives-2\",\n                \"categories-2\",\n                \"meta-2\",\n                \"custom_html-2\"\n            ],\n            \"sidebar-2\": [],\n            \"sidebar-3\": [],\n            \"footer-1\": [],\n            \"footer-2\": [],\n            \"footer-3\": [],\n            \"footer-4\": []\n        },\n        \"type\": \"global_variable\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-07-20 03:08:32\"\n    },\n    \"grid-blogwaves::blogwaves_theme_layout\": {\n        \"value\": \"box\",\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-07-20 03:08:32\"\n    },\n    \"grid-blogwaves::blogwaves_archive_co_post_date\": {\n        \"value\": false,\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-07-20 03:08:32\"\n    },\n    \"grid-blogwaves::blogwaves_archive_co_post_comments\": {\n        \"value\": false,\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-07-20 03:08:32\"\n    },\n    \"grid-blogwaves::blogwaves_single_co_post_author\": {\n        \"value\": false,\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-07-20 03:08:32\"\n    },\n    \"grid-blogwaves::blogwaves_single_co_post_date\": {\n        \"value\": false,\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-07-20 03:08:32\"\n    },\n    \"grid-blogwaves::blogwaves_single_co_post_comments\": {\n        \"value\": false,\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-07-20 03:08:32\"\n    },\n    \"grid-blogwaves::blogwaves_single_co_post_tags\": {\n        \"value\": false,\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-07-20 03:08:32\"\n    },\n    \"grid-blogwaves::grid_blogwaves_archive_co_view\": {\n        \"value\": false,\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-07-20 03:08:32\"\n    },\n    \"grid-blogwaves::grid_blogwaves_single_co_view\": {\n        \"value\": false,\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-07-20 03:08:32\"\n    },\n    \"grid-blogwaves::grid_blogwaves_grid_sidebar_position\": {\n        \"value\": \"grid\",\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-07-20 03:08:32\"\n    },\n    \"grid-blogwaves::blogwaves_copyright\": {\n        \"value\": \"Copyright 2022 \",\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-07-20 03:09:08\"\n    }\n}','','','trash','closed','closed','','3e8f9abc-d368-4589-8342-fdf99ccf5b1d','','','2022-07-20 03:09:08','2022-07-20 03:09:08','',0,'https://craftswelove.easypapercrafts.com/?p=37',0,'customize_changeset','',0),(35,1,'2022-07-20 02:41:32','2022-07-20 02:41:32','{\n    \"gridshow::header_image\": {\n        \"value\": \"remove-header\",\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-07-20 02:38:20\"\n    },\n    \"gridshow::header_image_data\": {\n        \"value\": \"remove-header\",\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-07-20 02:38:20\"\n    },\n    \"gridshow_options[grid_thumb_style]\": {\n        \"value\": \"gridshow-360w-autoh-image\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-07-20 02:41:32\"\n    }\n}','','','trash','closed','closed','','da9850ab-60dd-4a5e-94b6-d6ffa6f0a1ba','','','2022-07-20 02:41:32','2022-07-20 02:41:32','',0,'https://craftswelove.easypapercrafts.com/?p=35',0,'customize_changeset','',0),(31,1,'2022-07-20 01:23:47','2022-07-20 01:23:47','{\n    \"gridshow_options[grid_thumb_style]\": {\n        \"value\": \"gridshow-360w-270h-image\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-07-20 01:23:47\"\n    },\n    \"gridshow_options[post_title_link_home]\": {\n        \"value\": \"no\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-07-20 01:23:47\"\n    }\n}','','','trash','closed','closed','','ed0f4540-0789-4c8c-bd81-40ff7b90b982','','','2022-07-20 01:23:47','2022-07-20 01:23:47','',0,'https://craftswelove.easypapercrafts.com/2022/07/20/ed0f4540-0789-4c8c-bd81-40ff7b90b982/',0,'customize_changeset','',0),(32,1,'2022-07-20 01:25:12','2022-07-20 01:25:12','{\n    \"gridshow_options[post_summaries_style]\": {\n        \"value\": \"non-grid\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-07-20 01:25:12\"\n    }\n}','','','trash','closed','closed','','faf3a00b-5374-4b06-8cad-9151d07ecf40','','','2022-07-20 01:25:12','2022-07-20 01:25:12','',0,'https://craftswelove.easypapercrafts.com/2022/07/20/faf3a00b-5374-4b06-8cad-9151d07ecf40/',0,'customize_changeset','',0),(33,1,'2022-07-20 01:25:23','2022-07-20 01:25:23','{\n    \"gridshow_options[post_summaries_style]\": {\n        \"value\": \"grid\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-07-20 01:25:23\"\n    }\n}','','','trash','closed','closed','','f1dbbc80-f6b0-4bfe-8822-9c7bdcf44d6b','','','2022-07-20 01:25:23','2022-07-20 01:25:23','',0,'https://craftswelove.easypapercrafts.com/2022/07/20/f1dbbc80-f6b0-4bfe-8822-9c7bdcf44d6b/',0,'customize_changeset','',0),(34,1,'2022-07-20 02:35:11','2022-07-20 02:35:11','','cropped-crystal-geode-800x500-1.jpg','','inherit','open','closed','','cropped-crystal-geode-800x500-1-jpg','','','2022-07-20 02:35:11','2022-07-20 02:35:11','',0,'https://craftswelove.easypapercrafts.com/wp-content/uploads/2022/07/cropped-crystal-geode-800x500-1.jpg',0,'attachment','image/jpeg',0),(27,1,'2022-07-20 00:15:10','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2022-07-20 00:15:10','0000-00-00 00:00:00','',0,'https://craftswelove.easypapercrafts.com/?p=27',0,'post','',0),(28,1,'2022-07-20 00:17:06','2022-07-20 00:17:06','','crystal-geode-800x500','','inherit','open','closed','','crystal-geode-800x500','','','2022-07-20 00:18:35','2022-07-20 00:18:35','',0,'https://craftswelove.easypapercrafts.com/wp-content/uploads/2022/07/crystal-geode-800x500-1.jpg',0,'attachment','image/jpeg',0),(29,1,'2022-07-20 00:20:10','2022-07-20 00:20:10','{\n    \"old_sidebars_widgets_data\": {\n        \"value\": {\n            \"wp_inactive_widgets\": [],\n            \"primary\": [\n                \"search-2\",\n                \"recent-posts-2\",\n                \"recent-comments-2\",\n                \"archives-2\",\n                \"categories-2\",\n                \"meta-2\",\n                \"custom_html-2\"\n            ],\n            \"footer-1\": [],\n            \"footer-2\": [],\n            \"footer-3\": [],\n            \"footer-4\": []\n        },\n        \"type\": \"global_variable\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-07-20 00:20:10\"\n    }\n}','','','trash','closed','closed','','6113e4d0-e0fa-4880-8de2-b99c62dd6d31','','','2022-07-20 00:20:10','2022-07-20 00:20:10','',0,'https://craftswelove.easypapercrafts.com/2022/07/20/6113e4d0-e0fa-4880-8de2-b99c62dd6d31/',0,'customize_changeset','',0),(30,1,'2022-07-20 00:22:43','2022-07-20 00:22:43','{\n    \"old_sidebars_widgets_data\": {\n        \"value\": {\n            \"wp_inactive_widgets\": [],\n            \"sidebar-1\": [\n                \"search-2\",\n                \"recent-posts-2\",\n                \"recent-comments-2\",\n                \"archives-2\",\n                \"categories-2\",\n                \"meta-2\",\n                \"custom_html-2\"\n            ],\n            \"sidebar-2\": [],\n            \"sidebar-3\": [],\n            \"footer-1\": [],\n            \"footer-2\": [],\n            \"footer-3\": [],\n            \"footer-4\": []\n        },\n        \"type\": \"global_variable\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-07-20 00:22:43\"\n    },\n    \"gridzone::social-links\": {\n        \"value\": \"%5B%5D\",\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-07-20 00:22:43\"\n    },\n    \"gridzone::single-content-width\": {\n        \"value\": \"533\",\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-07-20 00:22:43\"\n    },\n    \"gridzone::page-box-width\": {\n        \"value\": \"528\",\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-07-20 00:22:43\"\n    },\n    \"gridzone::page-content-width\": {\n        \"value\": \"528\",\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-07-20 00:22:43\"\n    },\n    \"gridzone::sidebar-areas\": {\n        \"value\": \"%5B%5D\",\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-07-20 00:22:43\"\n    }\n}','','','trash','closed','closed','','dd94a4ea-47e7-4aa3-929a-d7f3107af0eb','','','2022-07-20 00:22:43','2022-07-20 00:22:43','',0,'https://craftswelove.easypapercrafts.com/2022/07/20/dd94a4ea-47e7-4aa3-929a-d7f3107af0eb/',0,'customize_changeset','',0);
/*!40000 ALTER TABLE `wpeb_posts` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpeb_posts` with 22 row(s)
--

--
-- Table structure for table `wpeb_term_relationships`
--

DROP TABLE IF EXISTS `wpeb_term_relationships`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpeb_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 `wpeb_term_relationships`
--

LOCK TABLES `wpeb_term_relationships` WRITE;
/*!40000 ALTER TABLE `wpeb_term_relationships` DISABLE KEYS */;
INSERT INTO `wpeb_term_relationships` VALUES (1,1,0),(11,1,0);
/*!40000 ALTER TABLE `wpeb_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpeb_term_relationships` with 2 row(s)
--

--
-- Table structure for table `wpeb_term_taxonomy`
--

DROP TABLE IF EXISTS `wpeb_term_taxonomy`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpeb_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_ci NOT NULL DEFAULT '',
  `description` longtext COLLATE utf8mb4_unicode_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=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpeb_term_taxonomy`
--

LOCK TABLES `wpeb_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wpeb_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wpeb_term_taxonomy` VALUES (1,1,'category','',0,2);
/*!40000 ALTER TABLE `wpeb_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpeb_term_taxonomy` with 1 row(s)
--

--
-- Table structure for table `wpeb_termmeta`
--

DROP TABLE IF EXISTS `wpeb_termmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpeb_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_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci 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 `wpeb_termmeta`
--

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

-- Dumped table `wpeb_termmeta` with 0 row(s)
--

--
-- Table structure for table `wpeb_terms`
--

DROP TABLE IF EXISTS `wpeb_terms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpeb_terms` (
  `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `slug` varchar(200) COLLATE utf8mb4_unicode_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=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpeb_terms`
--

LOCK TABLES `wpeb_terms` WRITE;
/*!40000 ALTER TABLE `wpeb_terms` DISABLE KEYS */;
INSERT INTO `wpeb_terms` VALUES (1,'Uncategorized','uncategorized',0);
/*!40000 ALTER TABLE `wpeb_terms` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpeb_terms` with 1 row(s)
--

--
-- Table structure for table `wpeb_usermeta`
--

DROP TABLE IF EXISTS `wpeb_usermeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpeb_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_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`umeta_id`),
  KEY `user_id` (`user_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=26 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpeb_usermeta`
--

LOCK TABLES `wpeb_usermeta` WRITE;
/*!40000 ALTER TABLE `wpeb_usermeta` DISABLE KEYS */;
INSERT INTO `wpeb_usermeta` VALUES (1,1,'nickname','regina6223'),(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,'wpeb_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'wpeb_user_level','10'),(14,1,'dismissed_wp_pointers','theme_editor_notice'),(15,1,'show_welcome_panel','1'),(16,1,'session_tokens','a:3:{s:64:\"04ba362c026ab8dd1ed98ed35fa374df8cbcbdf819ef20ac6400404c8107553e\";a:4:{s:10:\"expiration\";i:1658448896;s:2:\"ip\";s:12:\"131.93.213.1\";s:2:\"ua\";s:134:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Safari/537.36 Edg/103.0.1264.62\";s:5:\"login\";i:1658276096;}s:64:\"16a18395cfd072b9379584df0d3b2d9aca86b0217d7a9bbb24e649cfb9d2a90c\";a:4:{s:10:\"expiration\";i:1658452603;s:2:\"ip\";s:12:\"131.93.213.1\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36\";s:5:\"login\";i:1658279803;}s:64:\"0b1ed373adca181427b562a696b46bbaf9dd86d9c4d3b69cfc9535a2cae67895\";a:4:{s:10:\"expiration\";i:1658516006;s:2:\"ip\";s:15:\"205.213.104.154\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36\";s:5:\"login\";i:1658343206;}}'),(17,1,'bglibDashboardOrder','1'),(22,1,'jetpack_tracks_anon_id','jetpack:W8K0vIjb0TTK1v1PRicFUYml'),(19,1,'wpeb_dashboard_quick_press_last_post_id','27'),(20,1,'community-events-location','a:1:{s:2:\"ip\";s:12:\"131.93.213.0\";}'),(21,1,'boldgrid_dismissed_admin_notices','a:2:{s:2:\"id\";s:13:\"bg-key-prompt\";s:9:\"timestamp\";i:1622734374;}'),(23,1,'jetpack_tracks_wpcom_id','23649896'),(24,1,'wpeb_user-settings','libraryContent=browse&editor=tinymce'),(25,1,'wpeb_user-settings-time','1623158478');
/*!40000 ALTER TABLE `wpeb_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpeb_usermeta` with 24 row(s)
--

--
-- Table structure for table `wpeb_users`
--

DROP TABLE IF EXISTS `wpeb_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpeb_users` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_login` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_pass` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_nicename` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_url` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `user_activation_key` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_status` int(11) NOT NULL DEFAULT 0,
  `display_name` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`ID`),
  KEY `user_login_key` (`user_login`),
  KEY `user_nicename` (`user_nicename`),
  KEY `user_email` (`user_email`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpeb_users`
--

LOCK TABLES `wpeb_users` WRITE;
/*!40000 ALTER TABLE `wpeb_users` DISABLE KEYS */;
INSERT INTO `wpeb_users` VALUES (1,'regina6223','$P$BKNShKAdxrqmosEt3tFfaS4xvuBdhy/','regina6223','rita.shehan@gmail.com','https://craftswelove.easypapercrafts.com','2021-06-03 15:27:26','',0,'regina6223');
/*!40000 ALTER TABLE `wpeb_users` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpeb_users` with 1 row(s)
--

--
-- Table structure for table `wpeb_wpforms_lite`
--

DROP TABLE IF EXISTS `wpeb_wpforms_lite`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpeb_wpforms_lite` (
  `rid` int(10) NOT NULL AUTO_INCREMENT,
  `start` bigint(20) NOT NULL,
  `end` bigint(20) NOT NULL,
  `status` tinyint(2) NOT NULL DEFAULT 1,
  `date` int(10) NOT NULL,
  PRIMARY KEY (`rid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpeb_wpforms_lite`
--

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

-- Dumped table `wpeb_wpforms_lite` with 0 row(s)
--

/*!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: Wed, 20 Jul 2022 18:55:43 +0000
