-- mysqldump-php https://github.com/ifsnop/mysqldump-php
--
-- Host: localhost	Database: ndd6915_m9tymdz
-- ------------------------------------------------------
-- Server version 	5.5.5-10.6.20-MariaDB-log
-- Date: Mon, 27 Jan 2025 18:31:33 +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 utf8mb4 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;

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

DROP TABLE IF EXISTS `wp_commentmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_commentmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `comment_id` (`comment_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

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

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

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

DROP TABLE IF EXISTS `wp_comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_comments` (
  `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT 0,
  `comment_author` tinytext NOT NULL,
  `comment_author_email` varchar(100) NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) NOT NULL DEFAULT '',
  `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_content` text NOT NULL,
  `comment_karma` int(11) NOT NULL DEFAULT 0,
  `comment_approved` varchar(20) NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) NOT NULL DEFAULT '',
  `comment_type` varchar(20) NOT NULL DEFAULT 'comment',
  `comment_parent` bigint(20) unsigned NOT NULL DEFAULT 0,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`comment_ID`),
  KEY `comment_post_ID` (`comment_post_ID`),
  KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
  KEY `comment_date_gmt` (`comment_date_gmt`),
  KEY `comment_parent` (`comment_parent`),
  KEY `comment_author_email` (`comment_author_email`(10))
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

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

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

--
-- Table structure for table `wp_links`
--

DROP TABLE IF EXISTS `wp_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_links` (
  `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `link_url` varchar(255) NOT NULL DEFAULT '',
  `link_name` varchar(255) NOT NULL DEFAULT '',
  `link_image` varchar(255) NOT NULL DEFAULT '',
  `link_target` varchar(25) NOT NULL DEFAULT '',
  `link_description` varchar(255) NOT NULL DEFAULT '',
  `link_visible` varchar(20) NOT NULL DEFAULT 'Y',
  `link_owner` bigint(20) unsigned NOT NULL DEFAULT 1,
  `link_rating` int(11) NOT NULL DEFAULT 0,
  `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `link_rel` varchar(255) NOT NULL DEFAULT '',
  `link_notes` mediumtext NOT NULL,
  `link_rss` varchar(255) NOT NULL DEFAULT '',
  PRIMARY KEY (`link_id`),
  KEY `link_visible` (`link_visible`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

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

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

--
-- Table structure for table `wp_options`
--

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

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

LOCK TABLES `wp_options` WRITE;
/*!40000 ALTER TABLE `wp_options` DISABLE KEYS */;
INSERT INTO `wp_options` VALUES (1,'siteurl','https://naplesirrigation.com','yes'),(2,'home','https://naplesirrigation.com','yes'),(3,'blogname','NAPLES IRRIGATION  239-793-7755 www.NAPLESIRRIGATION.COM','yes'),(4,'blogdescription','','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','marie@aiinst.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','/%postname%/','yes'),(29,'rewrite_rules','a:158:{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:13:\"^attribution$\";s:36:\"index.php?bg_attribution=attribution\";s:21:\"^attribution-staging$\";s:44:\"index.php?bg_attribution=attribution-staging\";s:40:\"./(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:35:\"./(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:16:\"./(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:28:\"./(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:10:\"./(.+?)/?$\";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:44:\"crio_page_header/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:54:\"crio_page_header/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:74:\"crio_page_header/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"crio_page_header/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"crio_page_header/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:50:\"crio_page_header/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:33:\"crio_page_header/([^/]+)/embed/?$\";s:49:\"index.php?crio_page_header=$matches[1]&embed=true\";s:37:\"crio_page_header/([^/]+)/trackback/?$\";s:43:\"index.php?crio_page_header=$matches[1]&tb=1\";s:45:\"crio_page_header/([^/]+)/page/?([0-9]{1,})/?$\";s:56:\"index.php?crio_page_header=$matches[1]&paged=$matches[2]\";s:52:\"crio_page_header/([^/]+)/comment-page-([0-9]{1,})/?$\";s:56:\"index.php?crio_page_header=$matches[1]&cpage=$matches[2]\";s:41:\"crio_page_header/([^/]+)(?:/([0-9]+))?/?$\";s:55:\"index.php?crio_page_header=$matches[1]&page=$matches[2]\";s:33:\"crio_page_header/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:43:\"crio_page_header/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:63:\"crio_page_header/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"crio_page_header/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"crio_page_header/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:39:\"crio_page_header/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:58:\"template_location/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:57:\"index.php?template_locations=$matches[1]&feed=$matches[2]\";s:53:\"template_location/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:57:\"index.php?template_locations=$matches[1]&feed=$matches[2]\";s:34:\"template_location/([^/]+)/embed/?$\";s:51:\"index.php?template_locations=$matches[1]&embed=true\";s:46:\"template_location/([^/]+)/page/?([0-9]{1,})/?$\";s:58:\"index.php?template_locations=$matches[1]&paged=$matches[2]\";s:28:\"template_location/([^/]+)/?$\";s:40:\"index.php?template_locations=$matches[1]\";s:42:\"bg_attribution/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:52:\"bg_attribution/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:72:\"bg_attribution/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"bg_attribution/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"bg_attribution/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:48:\"bg_attribution/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:31:\"bg_attribution/([^/]+)/embed/?$\";s:47:\"index.php?bg_attribution=$matches[1]&embed=true\";s:35:\"bg_attribution/([^/]+)/trackback/?$\";s:41:\"index.php?bg_attribution=$matches[1]&tb=1\";s:43:\"bg_attribution/([^/]+)/page/?([0-9]{1,})/?$\";s:54:\"index.php?bg_attribution=$matches[1]&paged=$matches[2]\";s:50:\"bg_attribution/([^/]+)/comment-page-([0-9]{1,})/?$\";s:54:\"index.php?bg_attribution=$matches[1]&cpage=$matches[2]\";s:39:\"bg_attribution/([^/]+)(?:/([0-9]+))?/?$\";s:53:\"index.php?bg_attribution=$matches[1]&page=$matches[2]\";s:31:\"bg_attribution/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:41:\"bg_attribution/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:61:\"bg_attribution/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"bg_attribution/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"bg_attribution/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:37:\"bg_attribution/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:55:\"bg-block-types/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?bg_block_type=$matches[1]&feed=$matches[2]\";s:50:\"bg-block-types/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?bg_block_type=$matches[1]&feed=$matches[2]\";s:31:\"bg-block-types/([^/]+)/embed/?$\";s:46:\"index.php?bg_block_type=$matches[1]&embed=true\";s:43:\"bg-block-types/([^/]+)/page/?([0-9]{1,})/?$\";s:53:\"index.php?bg_block_type=$matches[1]&paged=$matches[2]\";s:25:\"bg-block-types/([^/]+)/?$\";s:35:\"index.php?bg_block_type=$matches[1]\";s:36:\"bg-block/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:46:\"bg-block/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:66:\"bg-block/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"bg-block/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"bg-block/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:42:\"bg-block/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:25:\"bg-block/([^/]+)/embed/?$\";s:41:\"index.php?bg_block=$matches[1]&embed=true\";s:29:\"bg-block/([^/]+)/trackback/?$\";s:35:\"index.php?bg_block=$matches[1]&tb=1\";s:37:\"bg-block/([^/]+)/page/?([0-9]{1,})/?$\";s:48:\"index.php?bg_block=$matches[1]&paged=$matches[2]\";s:44:\"bg-block/([^/]+)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?bg_block=$matches[1]&cpage=$matches[2]\";s:33:\"bg-block/([^/]+)(?:/([0-9]+))?/?$\";s:47:\"index.php?bg_block=$matches[1]&page=$matches[2]\";s:25:\"bg-block/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:35:\"bg-block/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:55:\"bg-block/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\"bg-block/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\"bg-block/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:31:\"bg-block/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=1\";s:12:\"sitemap\\.xml\";s:24:\"index.php??sitemap=index\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:40:\"index.php?&page_id=103&cpage=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"([^/]+)/embed/?$\";s:37:\"index.php?name=$matches[1]&embed=true\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:24:\"([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:22:\"[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:10:{i:0;s:51:\"boldgrid-backup-premium/boldgrid-backup-premium.php\";i:1;s:35:\"boldgrid-backup/boldgrid-backup.php\";i:2;s:37:\"boldgrid-connect/boldgrid-connect.php\";i:3;s:39:\"boldgrid-easy-seo/boldgrid-easy-seo.php\";i:4;s:47:\"boldgrid-inspirations/boldgrid-inspirations.php\";i:5;s:29:\"crio-premium/crio-premium.php\";i:6;s:29:\"nginx-helper/nginx-helper.php\";i:7;s:63:\"post-and-page-builder-premium/post-and-page-builder-premium.php\";i:8;s:47:\"post-and-page-builder/post-and-page-builder.php\";i:9;s:19:\"weforms/weforms.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:67:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/style.css\";i:2;s:0:\"\";}','no'),(40,'template','crio','yes'),(41,'stylesheet','crio','yes'),(42,'comment_registration','0','yes'),(43,'html_type','text/html','yes'),(44,'use_trackback','0','yes'),(45,'default_role','subscriber','yes'),(46,'db_version','58975','yes'),(47,'uploads_use_yearmonth_folders','1','yes'),(48,'upload_path','','yes'),(49,'blog_public','1','yes'),(50,'default_link_category','2','yes'),(51,'show_on_front','page','yes'),(52,'tag_base','','yes'),(53,'show_avatars','1','yes'),(54,'avatar_rating','G','yes'),(55,'upload_url_path','','yes'),(56,'thumbnail_size_w','150','yes'),(57,'thumbnail_size_h','150','yes'),(58,'thumbnail_crop','1','yes'),(59,'medium_size_w','300','yes'),(60,'medium_size_h','300','yes'),(61,'avatar_default','mystery','yes'),(62,'large_size_w','1024','yes'),(63,'large_size_h','1024','yes'),(64,'image_default_link_type','none','yes'),(65,'image_default_size','','yes'),(66,'image_default_align','','yes'),(67,'close_comments_for_old_posts','0','yes'),(68,'close_comments_days_old','14','yes'),(69,'thread_comments','1','yes'),(70,'thread_comments_depth','5','yes'),(71,'page_comments','0','yes'),(72,'comments_per_page','50','yes'),(73,'default_comments_page','newest','yes'),(74,'comment_order','asc','yes'),(75,'sticky_posts','a:0:{}','yes'),(76,'widget_categories','a: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:0:{}','no'),(80,'timezone_string','','yes'),(81,'page_for_posts','0','yes'),(82,'page_on_front','103','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','1678036284','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,'wp_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:61:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','yes'),(100,'fresh_site','0','off'),(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:13:{s:19:\"wp_inactive_widgets\";a:3:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";}s:8:\"header-1\";a:0:{}s:8:\"header-2\";a:0:{}s:8:\"header-3\";a:0:{}s:8:\"header-4\";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:15:\"primary-sidebar\";a:3:{i:0;s:10:\"archives-2\";i:1;s:12:\"categories-2\";i:2;s:6:\"meta-2\";}s:9:\"sidebar-1\";a:0:{}s:9:\"sidebar-2\";a:0:{}s:13:\"array_version\";i:3;}','yes'),(107,'cron','a:10:{i:1738002672;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:1738002904;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:1738006271;a:3:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s: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:1738006327;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:1738019775;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:1738026291;a:1:{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;}}}i:1738027565;a:1:{s:18:\"wp_https_detection\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1738078356;a:1:{s:30:\"wp_delete_temp_updater_backups\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1738265471;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}s:7:\"version\";i:2;}','on'),(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:1:{s:12:\"_multiwidget\";i:1;}','yes'),(118,'recovery_keys','a:0:{}','off'),(119,'theme_mods_twentytwentyone','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1645644680;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\";}}}}','no'),(120,'https_detection_errors','a:0:{}','off'),(121,'boldgrid_settings','a:4:{s:7:\"library\";a:5:{s:35:\"boldgrid-backup/boldgrid-backup.php\";s:8:\"2.13.3.0\";s:37:\"boldgrid-connect/boldgrid-connect.php\";s:8:\"2.10.4.0\";s:29:\"crio-premium/crio-premium.php\";s:8:\"2.13.3.0\";s:47:\"boldgrid-inspirations/boldgrid-inspirations.php\";s:8:\"2.13.4.0\";s:47:\"post-and-page-builder/post-and-page-builder.php\";s:8:\"2.13.8.0\";}s:15:\"plugins_checked\";a:7:{s:37:\"boldgrid-connect/boldgrid-connect.php\";a:1:{s:5:\"1.0.2\";i:1657210562;}s:47:\"boldgrid-inspirations/boldgrid-inspirations.php\";a:2:{s:5:\"2.6.3\";i:1645645868;s:5:\"2.6.5\";i:1657210562;}s:47:\"post-and-page-builder/post-and-page-builder.php\";a:2:{s:6:\"1.14.0\";i:1657210470;s:6:\"1.20.0\";i:1657210562;}s:63:\"post-and-page-builder-premium/post-and-page-builder-premium.php\";a:1:{s:5:\"1.0.5\";i:1657210562;}s:35:\"boldgrid-backup/boldgrid-backup.php\";a:1:{s:7:\"1.14.12\";i:1657210562;}s:51:\"boldgrid-backup-premium/boldgrid-backup-premium.php\";a:1:{s:5:\"1.5.9\";i:1657210562;}s:39:\"boldgrid-easy-seo/boldgrid-easy-seo.php\";a:1:{s:6:\"1.6.10\";i:1657210562;}}s:15:\"release_channel\";s:6:\"stable\";s:21:\"theme_release_channel\";s:6:\"stable\";}','yes'),(149,'boldgrid_backup_in_progress_data','a:3:{s:6:\"status\";s:22:\"Backing up database...\";s:6:\"tables\";a:14:{i:0;s:14:\"wp_commentmeta\";i:1;s:11:\"wp_comments\";i:2;s:8:\"wp_links\";i:3;s:10:\"wp_options\";i:4;s:11:\"wp_postmeta\";i:5;s:8:\"wp_posts\";i:6;s:21:\"wp_term_relationships\";i:7;s:16:\"wp_term_taxonomy\";i:8;s:11:\"wp_termmeta\";i:9;s:8:\"wp_terms\";i:10;s:11:\"wp_usermeta\";i:11;s:8:\"wp_users\";i:12;s:18:\"wp_weforms_entries\";i:13;s:20:\"wp_weforms_entrymeta\";}s:4:\"step\";i:1;}','yes'),(150,'boldgrid_backup_environment','a:3:{s:8:\"hostname\";s:28:\"ecngx362.inmotionhosting.com\";s:10:\"phpversion\";s:6:\"7.4.33\";s:9:\"wpversion\";s:5:\"6.7.1\";}','yes'),(7851,'recently_activated','a:0:{}','off'),(126,'widget_boldgrid_component_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(127,'widget_boldgrid_component_page_title','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(128,'widget_boldgrid_component_site_title','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(129,'widget_boldgrid_component_site_description','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(130,'widget_boldgrid_component_logo','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(131,'widget_boldgrid_component_post','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(132,'widget_boldgrid_component_postlist','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(133,'boldgrid_attribution_rebuild','1','yes'),(134,'boldgrid_staging_boldgrid_attribution_rebuild','1','yes'),(135,'boldgrid_attribution_upgraded_to_cpt','1','yes'),(136,'boldgrid_editor','a:9:{s:19:\"has_flushed_rewrite\";b:1;s:15:\"preview_page_id\";i:131;s:7:\"notices\";a:1:{s:13:\"editor_choice\";a:1:{s:9:\"dismissed\";b:1;}}s:21:\"displayed_v1.3_notice\";i:1;s:12:\"preview_meta\";a:2:{s:8:\"template\";s:7:\"default\";s:24:\"boldgrid_hide_page_title\";N;}s:13:\"custom_colors\";a:0:{}s:18:\"count_usage_blocks\";i:10;s:22:\"block_default_industry\";s:6:\"design\";s:19:\"has_checked_version\";i:0;}','yes'),(236,'boldgrid_survey','a:5:{s:8:\"blogname\";a:1:{s:5:\"value\";s:29:\"NAPLES IRRIGATION Brad Hooper\";}s:5:\"email\";a:1:{s:5:\"value\";s:26:\"hooperirrigation@gmail.com\";}s:5:\"phone\";a:1:{s:5:\"value\";s:28:\"239-793-7755 or 239-250-5265\";}s:7:\"address\";a:1:{s:5:\"value\";s:28:\"PO Box 2857, Naples FL 34106\";}s:6:\"social\";a:2:{s:8:\"facebook\";s:8:\"https://\";s:7:\"twitter\";s:8:\"https://\";}}','yes'),(239,'boldgrid_install_options','a:22:{s:11:\"author_type\";N;s:11:\"language_id\";N;s:14:\"theme_group_id\";N;s:8:\"theme_id\";i:61;s:18:\"theme_version_type\";s:6:\"stable\";s:11:\"category_id\";i:2;s:14:\"subcategory_id\";i:15;s:11:\"page_set_id\";i:11;s:21:\"page_set_version_type\";s:6:\"stable\";s:3:\"pde\";s:5:\"false\";s:8:\"new_path\";s:19:\"0875572001645644728\";s:13:\"ticket_number\";s:0:\"\";s:16:\"build_profile_id\";i:1069864;s:12:\"custom_pages\";N;s:12:\"install_blog\";b:0;s:15:\"install_invoice\";b:0;s:13:\"install_cache\";b:0;s:17:\"install_timestamp\";i:1645645842;s:15:\"subcategory_key\";s:7:\"Fitness\";s:16:\"subcategory_name\";s:7:\"Fitness\";s:15:\"is_base_pageset\";b:1;s:20:\"parent_category_name\";s:15:\"Health & Beauty\";}','yes'),(266,'boldgrid_installed_page_ids','a:3:{i:658;i:103;i:9;i:105;i:10;i:107;}','yes'),(138,'boldgrid_backup_id','23761a18','no'),(139,'rt_wp_nginx_helper_options','a:25:{s:12:\"enable_purge\";i:1;s:12:\"cache_method\";s:14:\"enable_fastcgi\";s:12:\"purge_method\";s:11:\"get_request\";s:10:\"enable_map\";i:0;s:10:\"enable_log\";i:0;s:9:\"log_level\";s:4:\"INFO\";s:12:\"log_filesize\";i:5;s:12:\"enable_stamp\";i:0;s:22:\"purge_homepage_on_edit\";i:1;s:21:\"purge_homepage_on_del\";i:1;s:21:\"purge_archive_on_edit\";i:1;s:20:\"purge_archive_on_del\";i:1;s:28:\"purge_archive_on_new_comment\";i:0;s:32:\"purge_archive_on_deleted_comment\";i:0;s:17:\"purge_page_on_mod\";i:1;s:25:\"purge_page_on_new_comment\";i:1;s:29:\"purge_page_on_deleted_comment\";i:1;s:14:\"redis_hostname\";s:9:\"127.0.0.1\";s:10:\"redis_port\";s:4:\"6379\";s:12:\"redis_prefix\";s:12:\"nginx-cache:\";s:9:\"purge_url\";s:0:\"\";s:25:\"redis_enabled_by_constant\";i:0;s:21:\"purge_homepage_on_new\";i:1;s:20:\"purge_archive_on_new\";i:1;s:12:\"future_posts\";a:1:{i:1;a:1:{i:105;i:1650743519;}}}','no'),(140,'boldgrid_backup_settings','a:25:{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:5;s:5:\"tod_m\";s:2:\"00\";s:5:\"tod_a\";s:2:\"AM\";}s:15:\"retention_count\";i:5;s:18:\"notification_email\";s:16:\"marie@aiinst.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:30;}s:10:\"encrypt_db\";b:0;s:11:\"auto_update\";a:5:{s:22:\"timely-updates-enabled\";s:1:\"0\";s:4:\"days\";s:1:\"0\";s:6:\"wpcore\";a:5:{s:3:\"all\";s:1:\"0\";s:5:\"major\";s:1:\"0\";s:5:\"minor\";s:1:\"1\";s:3:\"dev\";s:1:\"0\";s:11:\"translation\";s:1:\"0\";}s:7:\"plugins\";a:13:{s:7:\"default\";s:1:\"0\";s:37:\"boldgrid-connect/boldgrid-connect.php\";s:1:\"0\";s:39:\"boldgrid-easy-seo/boldgrid-easy-seo.php\";s:1:\"0\";s:47:\"boldgrid-inspirations/boldgrid-inspirations.php\";s:1:\"0\";s:29:\"crio-premium/crio-premium.php\";s:1:\"0\";s:29:\"nginx-helper/nginx-helper.php\";s:1:\"0\";s:47:\"post-and-page-builder/post-and-page-builder.php\";s:1:\"0\";s:63:\"post-and-page-builder-premium/post-and-page-builder-premium.php\";s:1:\"0\";s:35:\"boldgrid-backup/boldgrid-backup.php\";s:1:\"0\";s:51:\"boldgrid-backup-premium/boldgrid-backup-premium.php\";s:1:\"0\";s:19:\"weforms/weforms.php\";s:1:\"0\";s:19:\"akismet/akismet.php\";s:1:\"0\";s:9:\"hello.php\";s:1:\"0\";}s:6:\"themes\";a:7:{s:7:\"default\";s:1:\"0\";s:4:\"crio\";s:1:\"0\";s:16:\"boldgrid-gridone\";s:1:\"0\";s:14:\"twentynineteen\";s:1:\"0\";s:12:\"twentytwenty\";s:1:\"0\";s:15:\"twentytwentyone\";s:1:\"0\";s:15:\"twentytwentytwo\";s:1:\"0\";}}s:16:\"backup_directory\";s:29:\"/home/ndd6915/boldgrid_backup\";s:11:\"cron_secret\";s:64:\"64f00ddb45a0b557217bd0c80452f6b745c12d35cbac34c3e79bf825cb9e7ef7\";s:7:\"updated\";i:1657213327;s:7:\"openssl\";a:3:{s:6:\"cipher\";s:11:\"AES-256-CBC\";s:2:\"iv\";s:32:\"6e75f10e05b411ef9cbf5227e36aa8ba\";s:3:\"key\";s:64:\"6acabff761855fe99819cf3364a2c2234ad9044f47fd3b58860e7d0113b00ba5\";}s:10:\"compressor\";s:7:\"php_zip\";s:17:\"filelist_analysis\";i:0;s:17:\"compression_level\";s:1:\"6\";s:9:\"scheduler\";s:4:\"cron\";s:11:\"crons_added\";b:1;s:15:\"crontab_version\";s:5:\"1.6.4\";s:19:\"exclude_tables_type\";s:4:\"full\";s:21:\"folder_exclusion_type\";s:4:\"full\";}','off'),(1463388,'_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.7.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.7.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.7.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.7.1-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.7.1\";s:7:\"version\";s:5:\"6.7.1\";s:11:\"php_version\";s:6:\"7.2.24\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1738002602;s:15:\"version_checked\";s:5:\"6.7.1\";s:12:\"translations\";a:0:{}}','off'),(116138,'boldgrid_plugin_page_notices','a:2:{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\";}i:1;a:4:{s:2:\"id\";s:26:\"bgbkup_timely_auto_updates\";s:8:\"isUnread\";b:0;s:7:\"version\";s:6:\"1.14.0\";s:4:\"page\";s:32:\"boldgrid-backup-premium-features\";}}','yes'),(116144,'_transient_dirsize_cache','a:1948:{s:60:\"/home/ndd6915/Naplesirrigation.com/wp-admin/css/colors/light\";i:78840;s:59:\"/home/ndd6915/Naplesirrigation.com/wp-admin/css/colors/blue\";i:78246;s:61:\"/home/ndd6915/Naplesirrigation.com/wp-admin/css/colors/modern\";i:78738;s:62:\"/home/ndd6915/Naplesirrigation.com/wp-admin/css/colors/sunrise\";i:78983;s:61:\"/home/ndd6915/Naplesirrigation.com/wp-admin/css/colors/coffee\";i:76468;s:64:\"/home/ndd6915/Naplesirrigation.com/wp-admin/css/colors/ectoplasm\";i:78210;s:60:\"/home/ndd6915/Naplesirrigation.com/wp-admin/css/colors/ocean\";i:75697;s:63:\"/home/ndd6915/Naplesirrigation.com/wp-admin/css/colors/midnight\";i:79043;s:54:\"/home/ndd6915/Naplesirrigation.com/wp-admin/css/colors\";i:647862;s:47:\"/home/ndd6915/Naplesirrigation.com/wp-admin/css\";i:2512043;s:49:\"/home/ndd6915/Naplesirrigation.com/wp-admin/maint\";i:7260;s:51:\"/home/ndd6915/Naplesirrigation.com/wp-admin/network\";i:124247;s:48:\"/home/ndd6915/Naplesirrigation.com/wp-admin/user\";i:3418;s:52:\"/home/ndd6915/Naplesirrigation.com/wp-admin/includes\";i:2903368;s:50:\"/home/ndd6915/Naplesirrigation.com/wp-admin/images\";i:390372;s:54:\"/home/ndd6915/Naplesirrigation.com/wp-admin/js/widgets\";i:139404;s:46:\"/home/ndd6915/Naplesirrigation.com/wp-admin/js\";i:1906208;s:43:\"/home/ndd6915/Naplesirrigation.com/wp-admin\";i:8729943;s:74:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/templates/footer\";i:1055;s:74:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/templates/header\";i:575;s:67:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/templates\";i:21686;s:61:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/css\";i:607315;s:76:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/woocommerce/global\";i:3265;s:96:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/woocommerce/single-product/add-to-cart\";i:10513;s:89:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/woocommerce/single-product/tabs\";i:2121;s:84:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/woocommerce/single-product\";i:13731;s:77:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/woocommerce/notices\";i:3231;s:78:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/woocommerce/checkout\";i:4580;s:79:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/woocommerce/myaccount\";i:13238;s:74:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/woocommerce/loop\";i:1652;s:69:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/woocommerce\";i:44417;s:66:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/partials\";i:14004;s:67:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/languages\";i:163874;s:70:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/sa_templates\";i:18826;s:72:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/images/welcome\";i:999339;s:64:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/images\";i:2101542;s:98:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework-config/scss\";i:1027;s:93:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework-config\";i:24859;s:70:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/partials\";i:10501;s:98:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/assets/json\";i:616846;s:109:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/assets/css/animate-css\";i:136036;s:108:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/assets/css/smartmenus\";i:900;s:105:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/assets/css/icomoon\";i:3967;s:105:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/assets/css/buttons\";i:184287;s:113:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/assets/css/float-labels.js\";i:8381;s:107:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/assets/css/hover.css\";i:281522;s:107:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/assets/css/bootstrap\";i:160353;s:110:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/assets/css/font-awesome\";i:65545;s:108:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/assets/css/customizer\";i:2176995;s:108:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/assets/css/hamburgers\";i:49221;s:97:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/assets/css\";i:3712989;s:105:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/assets/img/presets\";i:60960;s:105:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/assets/img/devices\";i:1036;s:97:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/assets/img\";i:1070752;s:99:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/assets/fonts\";i:1145300;s:106:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/assets/scss/icomoon\";i:2169;s:118:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/assets/scss/boldgrid/navigation\";i:16124;s:113:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/assets/scss/boldgrid/media\";i:2210;s:114:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/assets/scss/boldgrid/mixins\";i:2928;s:114:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/assets/scss/boldgrid/footer\";i:3966;s:119:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/assets/scss/boldgrid/woocommerce\";i:10495;s:119:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/assets/scss/boldgrid/blog/design\";i:3499;s:112:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/assets/scss/boldgrid/blog\";i:4508;s:121:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/assets/scss/boldgrid/site-branding\";i:714;s:114:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/assets/scss/boldgrid/header\";i:1092;s:113:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/assets/scss/boldgrid/forms\";i:6236;s:115:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/assets/scss/boldgrid/sidebar\";i:761;s:107:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/assets/scss/boldgrid\";i:114642;s:112:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/assets/scss/buttons/types\";i:18891;s:106:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/assets/scss/buttons\";i:27607;s:114:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/assets/scss/float-labels.js\";i:7027;s:119:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/assets/scss/custom-color/buttons\";i:6333;s:111:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/assets/scss/custom-color\";i:14706;s:125:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/assets/scss/bootstrap/bootstrap/mixins\";i:29926;s:118:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/assets/scss/bootstrap/bootstrap\";i:217613;s:108:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/assets/scss/bootstrap\";i:220214;s:111:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/assets/scss/font-awesome\";i:79922;s:124:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/assets/scss/customizer/controls/icons\";i:3882;s:131:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/assets/scss/customizer/controls/descriptions\";i:618;s:118:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/assets/scss/customizer/controls\";i:781331;s:109:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/assets/scss/customizer\";i:815343;s:98:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/assets/scss\";i:1325985;s:107:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/assets/js/niceScroll\";i:183922;s:101:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/assets/js/goup\";i:8325;s:107:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/assets/js/smartmenus\";i:69972;s:108:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/assets/js/woocommerce\";i:6493;s:112:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/assets/js/float-labels.js\";i:15871;s:105:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/assets/js/color-js\";i:43173;s:108:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/assets/js/multislider\";i:6222;s:100:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/assets/js/wow\";i:27245;s:106:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/assets/js/bootstrap\";i:115164;s:104:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/assets/js/sass-js\";i:9218554;s:114:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/assets/js/customizer/widget\";i:1587;s:121:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/assets/js/customizer/footer-layout\";i:434;s:121:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/assets/js/customizer/controls/edit\";i:301;s:116:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/assets/js/customizer/controls\";i:98011;s:115:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/assets/js/customizer/generic\";i:13302;s:113:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/assets/js/customizer/menus\";i:13051;s:123:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/assets/js/customizer/design/homepage\";i:1339;s:126:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/assets/js/customizer/design/woocommerce\";i:1529;s:129:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/assets/js/customizer/design/blog/blog-page\";i:2474;s:125:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/assets/js/customizer/design/blog/posts\";i:1427;s:119:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/assets/js/customizer/design/blog\";i:3901;s:114:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/assets/js/customizer/design\";i:6769;s:118:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/assets/js/customizer/typography\";i:16507;s:115:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/assets/js/customizer/buttons\";i:8143;s:114:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/assets/js/customizer/expand\";i:3587;s:114:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/assets/js/customizer/toggle\";i:3309;s:118:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/assets/js/customizer/background\";i:5791;s:123:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/assets/js/customizer/layout/homepage\";i:928;s:136:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/assets/js/customizer/layout/blog/blog-page/layout\";i:2209;s:129:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/assets/js/customizer/layout/blog/blog-page\";i:2209;s:132:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/assets/js/customizer/layout/blog/posts/layout\";i:567;s:125:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/assets/js/customizer/layout/blog/posts\";i:567;s:119:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/assets/js/customizer/layout/blog\";i:2776;s:114:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/assets/js/customizer/layout\";i:3704;s:113:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/assets/js/customizer/color\";i:31531;s:121:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/assets/js/customizer/header-layout\";i:58648;s:119:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/assets/js/customizer/widget-meta\";i:19863;s:129:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/assets/js/customizer/responsive-font-sizes\";i:3711;s:107:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/assets/js/customizer\";i:825336;s:96:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/assets/js\";i:11015933;s:93:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/assets\";i:18887805;s:114:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/includes/configs/components\";i:1444;s:122:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/includes/configs/customizer-options\";i:26469;s:123:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/includes/configs/customizer/controls\";i:212623;s:114:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/includes/configs/customizer\";i:250099;s:103:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/includes/configs\";i:304890;s:103:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/includes/control\";i:19758;s:112:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/includes/scssphp/src/Base\";i:871;s:117:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/includes/scssphp/src/Formatter\";i:15771;s:114:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/includes/scssphp/src/Logger\";i:2827;s:117:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/includes/scssphp/src/SourceMap\";i:19274;s:116:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/includes/scssphp/src/Compiler\";i:2519;s:112:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/includes/scssphp/src/Util\";i:1389;s:113:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/includes/scssphp/src/Block\";i:6209;s:112:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/includes/scssphp/src/Node\";i:21303;s:117:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/includes/scssphp/src/Exception\";i:3082;s:107:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/includes/scssphp/src\";i:536858;s:103:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/includes/scssphp\";i:537423;s:116:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/includes/kirki/modules/preset\";i:2301;s:119:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/includes/kirki/modules/css/field\";i:9354;s:122:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/includes/kirki/modules/css/property\";i:4830;s:113:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/includes/kirki/modules/css\";i:40010;s:118:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/includes/kirki/modules/css-vars\";i:5910;s:127:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/includes/kirki/modules/selective-refresh\";i:2357;s:128:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/includes/kirki/modules/field-dependencies\";i:7681;s:132:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/includes/kirki/modules/custom-sections/panels\";i:1163;s:134:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/includes/kirki/modules/custom-sections/sections\";i:3941;s:125:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/includes/kirki/modules/custom-sections\";i:16977;s:119:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/includes/kirki/modules/post-meta\";i:3239;s:118:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/includes/kirki/modules/webfonts\";i:466501;s:119:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/includes/kirki/modules/gutenberg\";i:5523;s:117:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/includes/kirki/modules/loading\";i:3743;s:115:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/includes/kirki/modules/icons\";i:3447;s:118:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/includes/kirki/modules/tooltips\";i:5208;s:121:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/includes/kirki/modules/postmessage\";i:11609;s:158:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/includes/kirki/modules/webfont-loader/vendor-typekit/src/modules/google\";i:8266;s:151:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/includes/kirki/modules/webfont-loader/vendor-typekit/src/modules\";i:17142;s:148:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/includes/kirki/modules/webfont-loader/vendor-typekit/src/core\";i:46510;s:143:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/includes/kirki/modules/webfont-loader/vendor-typekit/src\";i:64381;s:139:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/includes/kirki/modules/webfont-loader/vendor-typekit\";i:76886;s:124:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/includes/kirki/modules/webfont-loader\";i:78844;s:109:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/includes/kirki/modules\";i:653350;s:114:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/includes/kirki/controls/css\";i:23086;s:114:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/includes/kirki/controls/php\";i:96659;s:117:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/includes/kirki/controls/js/src\";i:101761;s:113:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/includes/kirki/controls/js\";i:247698;s:116:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/includes/kirki/controls/views\";i:10759;s:110:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/includes/kirki/controls\";i:379641;s:113:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/includes/kirki/assets/json\";i:586613;s:129:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/includes/kirki/assets/vendor/selectWoo/css\";i:65600;s:133:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/includes/kirki/assets/vendor/selectWoo/js/i18n\";i:44151;s:128:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/includes/kirki/assets/vendor/selectWoo/js\";i:961039;s:125:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/includes/kirki/assets/vendor/selectWoo\";i:1027580;s:127:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/includes/kirki/assets/vendor/fontawesome\";i:128232;s:137:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/includes/kirki/assets/vendor/wp-color-picker-alpha\";i:14493;s:115:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/includes/kirki/assets/vendor\";i:1170305;s:115:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/includes/kirki/assets/images\";i:8423;s:108:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/includes/kirki/assets\";i:1765341;s:112:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/includes/kirki/deprecated\";i:7364;s:107:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/includes/kirki/field\";i:50990;s:105:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/includes/kirki/lib\";i:39660;s:106:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/includes/kirki/core\";i:99438;s:101:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/includes/kirki\";i:3083851;s:113:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/includes/pro-feature-cards\";i:5586;s:99:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/includes/tgm\";i:140516;s:104:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/includes/partials\";i:41982;s:106:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/includes/customizer\";i:221601;s:95:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework/includes\";i:4708422;s:86:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc/boldgrid-theme-framework\";i:23675949;s:61:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio/inc\";i:23713694;s:57:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/crio\";i:26878895;s:90:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentytwentyone/template-parts/footer\";i:307;s:88:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentytwentyone/template-parts/post\";i:1148;s:90:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentytwentyone/template-parts/header\";i:4252;s:91:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentytwentyone/template-parts/excerpt\";i:4682;s:91:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentytwentyone/template-parts/content\";i:6469;s:83:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentytwentyone/template-parts\";i:16858;s:79:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentytwentyone/assets/css\";i:315967;s:92:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentytwentyone/assets/sass/01-settings\";i:11555;s:97:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentytwentyone/assets/sass/05-blocks/button\";i:5853;s:101:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentytwentyone/assets/sass/05-blocks/tag-clould\";i:201;s:103:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentytwentyone/assets/sass/05-blocks/social-icons\";i:615;s:100:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentytwentyone/assets/sass/05-blocks/utilities\";i:7640;s:96:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentytwentyone/assets/sass/05-blocks/group\";i:3040;s:96:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentytwentyone/assets/sass/05-blocks/video\";i:324;s:101:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentytwentyone/assets/sass/05-blocks/navigation\";i:3141;s:97:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentytwentyone/assets/sass/05-blocks/legacy\";i:1192;s:100:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentytwentyone/assets/sass/05-blocks/separator\";i:2204;s:97:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentytwentyone/assets/sass/05-blocks/search\";i:5410;s:95:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentytwentyone/assets/sass/05-blocks/code\";i:537;s:100:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentytwentyone/assets/sass/05-blocks/pullquote\";i:4215;s:96:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentytwentyone/assets/sass/05-blocks/quote\";i:5726;s:96:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentytwentyone/assets/sass/05-blocks/table\";i:2937;s:103:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentytwentyone/assets/sass/05-blocks/preformatted\";i:189;s:95:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentytwentyone/assets/sass/05-blocks/html\";i:223;s:97:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentytwentyone/assets/sass/05-blocks/spacer\";i:227;s:96:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentytwentyone/assets/sass/05-blocks/image\";i:1868;s:106:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentytwentyone/assets/sass/05-blocks/latest-comments\";i:815;s:96:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentytwentyone/assets/sass/05-blocks/verse\";i:127;s:95:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentytwentyone/assets/sass/05-blocks/file\";i:675;s:96:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentytwentyone/assets/sass/05-blocks/audio\";i:113;s:98:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentytwentyone/assets/sass/05-blocks/heading\";i:2977;s:98:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentytwentyone/assets/sass/05-blocks/gallery\";i:801;s:94:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentytwentyone/assets/sass/05-blocks/rss\";i:5502;s:103:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentytwentyone/assets/sass/05-blocks/latest-posts\";i:8365;s:100:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentytwentyone/assets/sass/05-blocks/paragraph\";i:497;s:96:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentytwentyone/assets/sass/05-blocks/cover\";i:4533;s:95:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentytwentyone/assets/sass/05-blocks/list\";i:1061;s:98:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentytwentyone/assets/sass/05-blocks/columns\";i:3506;s:101:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentytwentyone/assets/sass/05-blocks/media-text\";i:1389;s:90:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentytwentyone/assets/sass/05-blocks\";i:78368;s:94:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentytwentyone/assets/sass/06-components\";i:36019;s:92:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentytwentyone/assets/sass/04-elements\";i:12298;s:89:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentytwentyone/assets/sass/02-tools\";i:6931;s:91:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentytwentyone/assets/sass/03-generic\";i:15865;s:93:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentytwentyone/assets/sass/07-utilities\";i:13585;s:80:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentytwentyone/assets/sass\";i:182764;s:82:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentytwentyone/assets/images\";i:2128437;s:78:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentytwentyone/assets/js\";i:19245;s:75:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentytwentyone/assets\";i:2646413;s:76:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentytwentyone/classes\";i:78406;s:72:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentytwentyone/inc\";i:62695;s:68:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentytwentyone\";i:3614387;s:75:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentytwenty/templates\";i:690;s:80:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentytwenty/template-parts\";i:22791;s:76:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentytwenty/assets/css\";i:113279;s:84:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentytwenty/assets/fonts/inter\";i:460724;s:78:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentytwenty/assets/fonts\";i:460724;s:79:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentytwenty/assets/images\";i:48358;s:75:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentytwenty/assets/js\";i:41414;s:72:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentytwenty/assets\";i:663775;s:73:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentytwenty/classes\";i:100891;s:69:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentytwenty/inc\";i:55406;s:65:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentytwenty\";i:1821959;s:89:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentynineteen/template-parts/footer\";i:528;s:87:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentynineteen/template-parts/post\";i:1689;s:89:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentynineteen/template-parts/header\";i:2987;s:90:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentynineteen/template-parts/content\";i:6366;s:82:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentynineteen/template-parts\";i:11570;s:73:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentynineteen/fonts\";i:1976;s:87:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentynineteen/sass/site/secondary\";i:1524;s:84:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentynineteen/sass/site/footer\";i:908;s:84:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentynineteen/sass/site/header\";i:8128;s:85:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentynineteen/sass/site/primary\";i:12552;s:77:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentynineteen/sass/site\";i:24020;s:80:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentynineteen/sass/modules\";i:1785;s:83:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentynineteen/sass/navigation\";i:13621;s:78:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentynineteen/sass/media\";i:2392;s:79:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentynineteen/sass/mixins\";i:3747;s:87:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentynineteen/sass/variables-site\";i:8527;s:83:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentynineteen/sass/typography\";i:3848;s:79:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentynineteen/sass/blocks\";i:20572;s:79:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentynineteen/sass/layout\";i:87;s:78:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentynineteen/sass/forms\";i:1804;s:81:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentynineteen/sass/elements\";i:1614;s:72:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentynineteen/sass\";i:88003;s:74:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentynineteen/images\";i:210233;s:70:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentynineteen/js\";i:18021;s:75:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentynineteen/classes\";i:65503;s:71:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentynineteen/inc\";i:51888;s:67:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentynineteen\";i:1319323;s:78:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentytwentytwo/templates\";i:13966;s:81:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentytwentytwo/assets/fonts\";i:1404572;s:82:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentytwentytwo/assets/images\";i:1453963;s:82:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentytwentytwo/assets/videos\";i:468755;s:75:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentytwentytwo/assets\";i:3327290;s:74:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentytwentytwo/parts\";i:2791;s:81:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentytwentytwo/inc/patterns\";i:157180;s:72:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentytwentytwo/inc\";i:161123;s:68:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/twentytwentytwo\";i:3689605;s:86:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/templates/footer\";i:2146;s:86:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/templates/header\";i:3622;s:79:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/templates\";i:18189;s:73:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/css\";i:45255;s:75:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/fonts\";i:0;s:88:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/woocommerce/global\";i:6450;s:108:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/woocommerce/single-product/add-to-cart\";i:10513;s:96:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/woocommerce/single-product\";i:11362;s:86:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/woocommerce/cart\";i:9419;s:90:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/woocommerce/checkout\";i:7714;s:91:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/woocommerce/myaccount\";i:27494;s:86:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/woocommerce/loop\";i:2640;s:81:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/woocommerce\";i:70797;s:82:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/sa_templates\";i:19028;s:76:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/images\";i:0;s:72:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/js\";i:0;s:110:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework-config/scss\";i:4638;s:105:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework-config\";i:10502;s:110:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/assets/json\";i:426032;s:127:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/assets/css/select2-bootstrap\";i:27302;s:121:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/assets/css/animate-css\";i:136036;s:132:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/assets/css/smartmenus/bootstrap-4\";i:3242;s:130:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/assets/css/smartmenus/bootstrap\";i:3632;s:120:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/assets/css/smartmenus\";i:7774;s:117:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/assets/css/buttons\";i:127524;s:119:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/assets/css/bootstrap\";i:237038;s:122:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/assets/css/font-awesome\";i:66067;s:120:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/assets/css/customizer\";i:477735;s:109:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/assets/css\";i:1364503;s:118:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/assets/img/patterns\";i:817518;s:109:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/assets/img\";i:1766078;s:111:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/assets/fonts\";i:1085661;s:125:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/assets/scss/boldgrid/media\";i:1946;s:126:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/assets/scss/boldgrid/mixins\";i:651;s:126:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/assets/scss/boldgrid/footer\";i:2703;s:131:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/assets/scss/boldgrid/woocommerce\";i:9345;s:127:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/assets/scss/boldgrid/sidebar\";i:415;s:119:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/assets/scss/boldgrid\";i:41006;s:124:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/assets/scss/buttons/types\";i:18268;s:118:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/assets/scss/buttons\";i:27174;s:131:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/assets/scss/custom-color/buttons\";i:6333;s:123:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/assets/scss/custom-color\";i:13417;s:137:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/assets/scss/bootstrap/bootstrap/mixins\";i:30222;s:130:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/assets/scss/bootstrap/bootstrap\";i:218072;s:120:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/assets/scss/bootstrap\";i:220665;s:123:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/assets/scss/font-awesome\";i:79922;s:121:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/assets/scss/customizer\";i:26444;s:110:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/assets/scss\";i:459353;s:119:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/assets/js/niceScroll\";i:184746;s:113:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/assets/js/goup\";i:8325;s:118:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/assets/js/offcanvas\";i:23253;s:135:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/assets/js/smartmenus/addons/keyboard\";i:12757;s:138:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/assets/js/smartmenus/addons/bootstrap-4\";i:8736;s:136:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/assets/js/smartmenus/addons/bootstrap\";i:8477;s:126:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/assets/js/smartmenus/addons\";i:29970;s:119:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/assets/js/smartmenus\";i:99942;s:123:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/assets/js/jquery-stellar\";i:35919;s:120:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/assets/js/woocommerce\";i:6088;s:117:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/assets/js/color-js\";i:39804;s:112:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/assets/js/wow\";i:23424;s:118:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/assets/js/bootstrap\";i:106752;s:116:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/assets/js/sass-js\";i:2847492;s:119:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/assets/js/customizer\";i:223741;s:108:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/assets/js\";i:3663902;s:105:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/assets\";i:8765529;s:108:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/languages\";i:37991;s:126:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes/configs/components\";i:1444;s:134:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes/configs/customizer-options\";i:7652;s:115:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes/configs\";i:39272;s:115:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes/control\";i:8466;s:139:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes/black-studio-tinymce-widget/css\";i:8420;s:142:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes/black-studio-tinymce-widget/assets\";i:657251;s:145:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes/black-studio-tinymce-widget/languages\";i:131154;s:144:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes/black-studio-tinymce-widget/includes\";i:56467;s:138:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes/black-studio-tinymce-widget/js\";i:59183;s:135:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes/black-studio-tinymce-widget\";i:954376;s:124:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes/scssphp/src/Base\";i:788;s:129:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes/scssphp/src/Formatter\";i:12970;s:129:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes/scssphp/src/SourceMap\";i:16377;s:128:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes/scssphp/src/Compiler\";i:566;s:124:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes/scssphp/src/Node\";i:7780;s:129:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes/scssphp/src/Exception\";i:1308;s:119:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes/scssphp/src\";i:261455;s:123:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes/scssphp/example\";i:13976;s:115:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes/scssphp\";i:276980;s:131:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes/kirki/modules/css/field\";i:8054;s:134:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes/kirki/modules/css/property\";i:5637;s:125:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes/kirki/modules/css\";i:42164;s:139:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes/kirki/modules/selective-refresh\";i:2370;s:140:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes/kirki/modules/field-dependencies\";i:5828;s:127:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes/kirki/modules/reset\";i:12577;s:144:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes/kirki/modules/custom-sections/panels\";i:1190;s:146:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes/kirki/modules/custom-sections/sections\";i:2468;s:137:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes/kirki/modules/custom-sections\";i:16002;s:131:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes/kirki/modules/post-meta\";i:3256;s:130:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes/kirki/modules/webfonts\";i:438966;s:129:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes/kirki/modules/loading\";i:3785;s:140:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes/kirki/modules/customizer-styling\";i:18304;s:141:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes/kirki/modules/customizer-branding\";i:2689;s:127:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes/kirki/modules/icons\";i:3477;s:133:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes/kirki/modules/collapsible\";i:5057;s:130:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes/kirki/modules/tooltips\";i:6423;s:133:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes/kirki/modules/postmessage\";i:18695;s:121:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes/kirki/modules\";i:579593;s:129:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes/kirki/controls/preset\";i:11682;s:132:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes/kirki/controls/dashicons\";i:14021;s:131:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes/kirki/controls/repeater\";i:57825;s:130:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes/kirki/controls/generic\";i:4253;s:129:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes/kirki/controls/custom\";i:1988;s:127:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes/kirki/controls/code\";i:4358;s:128:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes/kirki/controls/radio\";i:4601;s:127:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes/kirki/controls/date\";i:9539;s:129:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes/kirki/controls/editor\";i:4211;s:129:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes/kirki/controls/slider\";i:10186;s:129:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes/kirki/controls/select\";i:5812;s:133:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes/kirki/controls/typography\";i:45402;s:132:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes/kirki/controls/dimension\";i:4283;s:129:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes/kirki/controls/number\";i:8812;s:128:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes/kirki/controls/image\";i:10058;s:129:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes/kirki/controls/toggle\";i:8213;s:133:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes/kirki/controls/background\";i:23907;s:131:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes/kirki/controls/sortable\";i:6498;s:133:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes/kirki/controls/dimensions\";i:9893;s:136:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes/kirki/controls/color-palette\";i:8599;s:129:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes/kirki/controls/switch\";i:9541;s:133:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes/kirki/controls/multicheck\";i:4007;s:128:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes/kirki/controls/color\";i:7681;s:130:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes/kirki/controls/palette\";i:6733;s:134:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes/kirki/controls/radio-image\";i:7081;s:138:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes/kirki/controls/radio-buttonset\";i:4737;s:134:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes/kirki/controls/fontawesome\";i:527050;s:133:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes/kirki/controls/multicolor\";i:17856;s:122:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes/kirki/controls\";i:838827;s:125:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes/kirki/assets/json\";i:400081;s:124:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes/kirki/assets/css\";i:0;s:139:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes/kirki/assets/vendor/select2/css\";i:32800;s:143:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes/kirki/assets/vendor/select2/js/i18n\";i:41817;s:138:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes/kirki/assets/vendor/select2/js\";i:487252;s:135:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes/kirki/assets/vendor/select2\";i:522559;s:149:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes/kirki/assets/vendor/wp-color-picker-alpha\";i:18399;s:127:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes/kirki/assets/vendor\";i:540958;s:127:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes/kirki/assets/images\";i:9984;s:123:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes/kirki/assets/js\";i:5624;s:120:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes/kirki/assets\";i:956647;s:119:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes/kirki/field\";i:50846;s:117:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes/kirki/lib\";i:39715;s:118:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes/kirki/core\";i:97249;s:113:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes/kirki\";i:2645473;s:121:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes/tgm/languages\";i:482354;s:111:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes/tgm\";i:609019;s:116:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes/partials\";i:31087;s:118:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes/customizer\";i:133902;s:107:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework/includes\";i:4934333;s:98:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc/boldgrid-theme-framework\";i:13739078;s:73:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone/inc\";i:13749580;s:69:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes/boldgrid-gridone\";i:14049540;s:52:\"/home/ndd6915/Naplesirrigation.com/wp-content/themes\";i:51373737;s:91:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-inspirations/pages/templates\";i:27538;s:86:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-inspirations/pages/cart\";i:2294;s:112:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-inspirations/pages/includes/boldgrid-inspirations\";i:6788;s:108:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-inspirations/pages/includes/boldgrid-settings\";i:3817;s:90:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-inspirations/pages/includes\";i:14288;s:81:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-inspirations/pages\";i:86874;s:96:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-inspirations/assets/css/bootstrap\";i:105102;s:103:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-inspirations/assets/css/font-awesome/css\";i:90192;s:105:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-inspirations/assets/css/font-awesome/fonts\";i:1085661;s:99:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-inspirations/assets/css/font-awesome\";i:1175853;s:101:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-inspirations/assets/css/jquery-toggles\";i:6509;s:86:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-inspirations/assets/css\";i:1351096;s:88:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-inspirations/assets/fonts\";i:7679;s:108:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-inspirations/assets/images/inspirations/cache\";i:4272;s:110:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-inspirations/assets/images/inspirations/invoice\";i:16436;s:102:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-inspirations/assets/images/inspirations\";i:114835;s:98:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-inspirations/assets/images/fancybox\";i:24312;s:92:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-inspirations/assets/images/cc\";i:1674;s:89:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-inspirations/assets/images\";i:267902;s:92:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-inspirations/assets/js/inline\";i:3921;s:95:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-inspirations/assets/js/screen/id\";i:4469;s:92:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-inspirations/assets/js/screen\";i:4469;s:106:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-inspirations/assets/js/handlebars/templates\";i:6497;s:96:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-inspirations/assets/js/handlebars\";i:109412;s:100:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-inspirations/assets/js/jquery-toggles\";i:9878;s:90:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-inspirations/assets/js/ajax\";i:3548;s:85:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-inspirations/assets/js\";i:332592;s:82:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-inspirations/assets\";i:1959269;s:85:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-inspirations/languages\";i:158664;s:105:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-inspirations/includes/deploy/invoice/posts\";i:688;s:105:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-inspirations/includes/deploy/invoice/forms\";i:5902;s:99:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-inspirations/includes/deploy/invoice\";i:6590;s:91:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-inspirations/includes/deploy\";i:12978;s:89:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-inspirations/includes/w3tc\";i:1425;s:91:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-inspirations/includes/config\";i:22739;s:91:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-inspirations/includes/sprout\";i:1211;s:92:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-inspirations/includes/weforms\";i:1491;s:101:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-inspirations/includes/configure_plugin\";i:1179;s:84:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-inspirations/includes\";i:658309;s:105:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-inspirations/vendor/boldgrid/library/build\";i:8907;s:109:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-inspirations/vendor/boldgrid/library/languages\";i:34936;s:114:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-inspirations/vendor/boldgrid/library/src/assets/css\";i:20520;s:116:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-inspirations/vendor/boldgrid/library/src/assets/fonts\";i:41828;s:113:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-inspirations/vendor/boldgrid/library/src/assets/js\";i:37272;s:110:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-inspirations/vendor/boldgrid/library/src/assets\";i:99620;s:117:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-inspirations/vendor/boldgrid/library/src/Library/Theme\";i:11537;s:114:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-inspirations/vendor/boldgrid/library/src/Library/Ui\";i:6193;s:116:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-inspirations/vendor/boldgrid/library/src/Library/Page\";i:7390;s:118:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-inspirations/vendor/boldgrid/library/src/Library/Plugin\";i:45909;s:125:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-inspirations/vendor/boldgrid/library/src/Library/Views/Connect\";i:16487;s:117:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-inspirations/vendor/boldgrid/library/src/Library/Views\";i:28153;s:116:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-inspirations/vendor/boldgrid/library/src/Library/Menu\";i:7506;s:125:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-inspirations/vendor/boldgrid/library/src/Library/Notifications\";i:6336;s:117:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-inspirations/vendor/boldgrid/library/src/Library/Usage\";i:6639;s:115:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-inspirations/vendor/boldgrid/library/src/Library/Key\";i:7575;s:116:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-inspirations/vendor/boldgrid/library/src/Library/Util\";i:1465;s:115:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-inspirations/vendor/boldgrid/library/src/Library/Api\";i:8189;s:121:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-inspirations/vendor/boldgrid/library/src/Library/Dashboard\";i:7233;s:118:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-inspirations/vendor/boldgrid/library/src/Library/Notice\";i:9892;s:111:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-inspirations/vendor/boldgrid/library/src/Library\";i:233681;s:121:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-inspirations/vendor/boldgrid/library/src/Util/Registration\";i:2747;s:108:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-inspirations/vendor/boldgrid/library/src/Util\";i:25737;s:103:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-inspirations/vendor/boldgrid/library/src\";i:363333;s:99:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-inspirations/vendor/boldgrid/library\";i:425230;s:116:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-inspirations/vendor/boldgrid/bgforms/src/Form/Wpforms\";i:2069;s:108:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-inspirations/vendor/boldgrid/bgforms/src/Form\";i:42511;s:103:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-inspirations/vendor/boldgrid/bgforms/src\";i:42511;s:99:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-inspirations/vendor/boldgrid/bgforms\";i:60557;s:133:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-inspirations/vendor/boldgrid/boldgrid-inspirations-premium/src/Premium\";i:9804;s:125:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-inspirations/vendor/boldgrid/boldgrid-inspirations-premium/src\";i:9804;s:121:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-inspirations/vendor/boldgrid/boldgrid-inspirations-premium\";i:27850;s:129:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-inspirations/vendor/boldgrid/plugin-installer/src/Plugin/Installer\";i:3967;s:125:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-inspirations/vendor/boldgrid/plugin-installer/src/Plugin/Views\";i:1475;s:119:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-inspirations/vendor/boldgrid/plugin-installer/src/Plugin\";i:36254;s:123:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-inspirations/vendor/boldgrid/plugin-installer/src/assets/css\";i:4968;s:126:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-inspirations/vendor/boldgrid/plugin-installer/src/assets/images\";i:990;s:122:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-inspirations/vendor/boldgrid/plugin-installer/src/assets/js\";i:11579;s:119:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-inspirations/vendor/boldgrid/plugin-installer/src/assets\";i:17537;s:122:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-inspirations/vendor/boldgrid/plugin-installer/src/languages\";i:7771;s:112:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-inspirations/vendor/boldgrid/plugin-installer/src\";i:61562;s:108:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-inspirations/vendor/boldgrid/plugin-installer\";i:79608;s:91:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-inspirations/vendor/boldgrid\";i:593245;s:91:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-inspirations/vendor/composer\";i:29634;s:82:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-inspirations/vendor\";i:623057;s:75:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-inspirations\";i:3548598;s:84:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/controls\";i:4688;s:89:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/support/bgtfw\";i:1273;s:101:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/support/wpforms/templates\";i:2966;s:102:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/support/wpforms/assets/css\";i:1120;s:101:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/support/wpforms/assets/js\";i:2599;s:98:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/support/wpforms/assets\";i:3719;s:107:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/support/wpforms/includes/config\";i:755;s:100:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/support/wpforms/includes\";i:10291;s:91:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/support/wpforms\";i:16976;s:83:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/support\";i:18249;s:81:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/pages\";i:4019;s:87:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/json\";i:980026;s:86:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/css\";i:1041535;s:87:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/dist\";i:2463980;s:100:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/image/maps/google\";i:332081;s:93:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/image/maps\";i:332081;s:97:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/image/patterns\";i:823658;s:103:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/image/page-templates\";i:1578;s:95:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/image/notice\";i:94902;s:108:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/image/icons/customize-nav\";i:52344;s:99:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/image/icons/grid\";i:1827;s:94:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/image/icons\";i:60765;s:105:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/image/section-dividers\";i:26201;s:88:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/image\";i:5997327;s:97:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/fonts/redacted\";i:194865;s:88:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/fonts\";i:974756;s:96:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/scss/controls\";i:2182;s:93:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/scss/admin\";i:7032;s:120:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/scss/color-palette-scss/buttons/types\";i:18281;s:114:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/scss/color-palette-scss/buttons\";i:27069;s:114:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/scss/color-palette-scss/classes\";i:4227;s:106:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/scss/color-palette-scss\";i:31296;s:97:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/scss/bootstrap\";i:4127;s:103:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/scss/builder/section\";i:17400;s:101:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/scss/builder/panel\";i:21471;s:95:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/scss/builder\";i:61294;s:97:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/scss/front-end\";i:2050;s:87:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/scss\";i:113351;s:91:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/js/media\";i:58030;s:92:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/js/editor\";i:45604;s:100:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/js/jquery-stellar\";i:23282;s:105:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/js/forms/editor-select\";i:4579;s:106:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/js/forms/default-editor\";i:2434;s:91:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/js/forms\";i:7690;s:93:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/js/camanjs\";i:80693;s:93:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/js/sass-js\";i:3612074;s:107:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/js/builder/compatibility\";i:877;s:98:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/js/builder/drag\";i:23386;s:97:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/js/builder/css\";i:20305;s:110:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/js/builder/controls/element\";i:105322;s:110:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/js/builder/controls/generic\";i:26758;s:108:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/js/builder/controls/media\";i:990;s:108:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/js/builder/controls/image\";i:11546;s:108:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/js/builder/controls/color\";i:4537;s:102:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/js/builder/controls\";i:184754;s:101:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/js/builder/browser\";i:810;s:101:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/js/builder/library\";i:3835;s:105:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/js/builder/connect-key\";i:11896;s:104:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/js/builder/resize/row\";i:3069;s:100:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/js/builder/resize\";i:9129;s:99:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/js/builder/style\";i:3290;s:103:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/js/builder/customize\";i:5410;s:114:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/js/builder/notice/editor-choice\";i:1713;s:106:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/js/builder/notice/intro\";i:10385;s:100:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/js/builder/notice\";i:16233;s:104:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/js/builder/validation\";i:4602;s:103:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/js/builder/gridblock\";i:66956;s:109:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/js/builder/popover/actions\";i:10921;s:101:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/js/builder/popover\";i:33905;s:101:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/js/builder/premium\";i:2149;s:101:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/js/builder/tinymce\";i:19002;s:113:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/js/builder/component/shortcode\";i:3582;s:111:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/js/builder/component/divider\";i:4431;s:110:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/js/builder/component/widget\";i:22631;s:110:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/js/builder/component/button\";i:11921;s:108:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/js/builder/component/icon\";i:5480;s:109:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/js/builder/component/media\";i:1552;s:107:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/js/builder/component/map\";i:1690;s:110:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/js/builder/component/spacer\";i:1577;s:109:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/js/builder/component/block\";i:1465;s:119:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/js/builder/component/layout/design-9\";i:2810;s:119:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/js/builder/component/layout/design-2\";i:2642;s:119:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/js/builder/component/layout/design-8\";i:1754;s:120:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/js/builder/component/layout/design-10\";i:1673;s:119:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/js/builder/component/layout/design-4\";i:1895;s:119:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/js/builder/component/layout/design-1\";i:2133;s:119:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/js/builder/component/layout/design-5\";i:2787;s:119:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/js/builder/component/layout/design-7\";i:2461;s:119:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/js/builder/component/layout/design-6\";i:1421;s:119:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/js/builder/component/layout/design-3\";i:1863;s:110:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/js/builder/component/layout\";i:27121;s:108:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/js/builder/component/list\";i:1365;s:114:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/js/builder/component/blockquote\";i:879;s:103:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/js/builder/component\";i:98256;s:93:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/js/builder\";i:623418;s:100:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/js/view/gutenberg\";i:2119;s:98:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/js/view/loading\";i:1620;s:98:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/js/view/classic\";i:154;s:97:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/js/view/banner\";i:1663;s:99:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/js/view/settings\";i:1610;s:90:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/js/view\";i:7166;s:85:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets/js\";i:4476918;s:82:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/assets\";i:16047893;s:86:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/components\";i:7765;s:91:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/includes/Widget\";i:57491;s:90:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/includes/media\";i:14627;s:91:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/includes/config\";i:8592;s:91:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/includes/Rating\";i:7617;s:94:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/includes/View/Card\";i:2739;s:97:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/includes/View/Feature\";i:6600;s:89:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/includes/View\";i:17431;s:98:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/includes/template/page\";i:2265;s:103:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/includes/template/customize\";i:710;s:103:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/includes/template/gridblock\";i:641;s:101:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/includes/template/popover\";i:7528;s:93:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/includes/template\";i:59780;s:94:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/includes/gridblock\";i:5675;s:92:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/includes/builder\";i:28140;s:84:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/includes\";i:330290;s:103:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/vendor/boldgrid/library/bin\";i:2386;s:119:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/vendor/boldgrid/library/tests/Library/Theme\";i:4880;s:120:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/vendor/boldgrid/library/tests/Library/Plugin\";i:19633;s:121:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/vendor/boldgrid/library/tests/Library/Library\";i:19160;s:118:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/vendor/boldgrid/library/tests/Library/Util\";i:1019;s:113:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/vendor/boldgrid/library/tests/Library\";i:44692;s:110:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/vendor/boldgrid/library/tests/Util\";i:1071;s:105:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/vendor/boldgrid/library/tests\";i:49676;s:105:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/vendor/boldgrid/library/build\";i:8907;s:109:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/vendor/boldgrid/library/languages\";i:34936;s:114:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/vendor/boldgrid/library/src/assets/css\";i:20520;s:116:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/vendor/boldgrid/library/src/assets/fonts\";i:41828;s:113:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/vendor/boldgrid/library/src/assets/js\";i:37443;s:110:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/vendor/boldgrid/library/src/assets\";i:99791;s:117:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/vendor/boldgrid/library/src/Library/Theme\";i:11537;s:114:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/vendor/boldgrid/library/src/Library/Ui\";i:6193;s:116:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/vendor/boldgrid/library/src/Library/Page\";i:7390;s:118:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/vendor/boldgrid/library/src/Library/Plugin\";i:45909;s:119:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/vendor/boldgrid/library/src/Library/Configs\";i:3207;s:125:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/vendor/boldgrid/library/src/Library/Views/Connect\";i:16487;s:117:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/vendor/boldgrid/library/src/Library/Views\";i:28153;s:116:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/vendor/boldgrid/library/src/Library/Menu\";i:7506;s:125:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/vendor/boldgrid/library/src/Library/Notifications\";i:6336;s:117:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/vendor/boldgrid/library/src/Library/Usage\";i:6639;s:115:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/vendor/boldgrid/library/src/Library/Key\";i:7658;s:116:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/vendor/boldgrid/library/src/Library/Util\";i:1465;s:115:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/vendor/boldgrid/library/src/Library/Api\";i:8199;s:121:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/vendor/boldgrid/library/src/Library/Dashboard\";i:7233;s:118:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/vendor/boldgrid/library/src/Library/Notice\";i:9892;s:111:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/vendor/boldgrid/library/src/Library\";i:237461;s:121:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/vendor/boldgrid/library/src/Util/Registration\";i:2747;s:108:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/vendor/boldgrid/library/src/Util\";i:26032;s:103:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/vendor/boldgrid/library/src\";i:367579;s:99:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/vendor/boldgrid/library\";i:681590;s:91:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/vendor/boldgrid\";i:681590;s:91:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/vendor/composer\";i:19581;s:82:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder/vendor\";i:701349;s:75:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder\";i:17167609;s:76:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/crio-premium/admin/css\";i:217892;s:76:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/crio-premium/admin/img\";i:25545;s:81:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/crio-premium/admin/partials\";i:354;s:75:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/crio-premium/admin/js\";i:22878;s:72:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/crio-premium/admin\";i:273158;s:77:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/crio-premium/public/css\";i:2157;s:82:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/crio-premium/public/partials\";i:359;s:76:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/crio-premium/public/js\";i:2239;s:73:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/crio-premium/public\";i:8161;s:76:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/crio-premium/languages\";i:0;s:105:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/crio-premium/includes/page-headers/templates/editor\";i:15151;s:114:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/crio-premium/includes/page-headers/templates/samples/configs\";i:16748;s:106:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/crio-premium/includes/page-headers/templates/samples\";i:25194;s:98:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/crio-premium/includes/page-headers/templates\";i:89501;s:88:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/crio-premium/includes/page-headers\";i:124529;s:75:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/crio-premium/includes\";i:151792;s:117:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/crio-premium/vendor/collizo4sky/persist-admin-notices-dismissal\";i:6428;s:85:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/crio-premium/vendor/collizo4sky\";i:6428;s:103:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/crio-premium/vendor/boldgrid/wp-php-version-check\";i:22870;s:96:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/crio-premium/vendor/boldgrid/library/build\";i:8907;s:100:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/crio-premium/vendor/boldgrid/library/languages\";i:34936;s:105:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/crio-premium/vendor/boldgrid/library/src/assets/css\";i:20520;s:107:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/crio-premium/vendor/boldgrid/library/src/assets/fonts\";i:41828;s:104:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/crio-premium/vendor/boldgrid/library/src/assets/js\";i:37272;s:101:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/crio-premium/vendor/boldgrid/library/src/assets\";i:99620;s:108:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/crio-premium/vendor/boldgrid/library/src/Library/Theme\";i:11537;s:105:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/crio-premium/vendor/boldgrid/library/src/Library/Ui\";i:6193;s:107:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/crio-premium/vendor/boldgrid/library/src/Library/Page\";i:7390;s:109:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/crio-premium/vendor/boldgrid/library/src/Library/Plugin\";i:45909;s:116:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/crio-premium/vendor/boldgrid/library/src/Library/Views/Connect\";i:16487;s:108:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/crio-premium/vendor/boldgrid/library/src/Library/Views\";i:28153;s:107:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/crio-premium/vendor/boldgrid/library/src/Library/Menu\";i:7506;s:116:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/crio-premium/vendor/boldgrid/library/src/Library/Notifications\";i:6336;s:108:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/crio-premium/vendor/boldgrid/library/src/Library/Usage\";i:6639;s:106:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/crio-premium/vendor/boldgrid/library/src/Library/Key\";i:7575;s:107:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/crio-premium/vendor/boldgrid/library/src/Library/Util\";i:1465;s:106:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/crio-premium/vendor/boldgrid/library/src/Library/Api\";i:8189;s:112:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/crio-premium/vendor/boldgrid/library/src/Library/Dashboard\";i:5644;s:109:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/crio-premium/vendor/boldgrid/library/src/Library/Notice\";i:9892;s:102:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/crio-premium/vendor/boldgrid/library/src/Library\";i:232092;s:112:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/crio-premium/vendor/boldgrid/library/src/Util/Registration\";i:2747;s:99:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/crio-premium/vendor/boldgrid/library/src/Util\";i:25737;s:94:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/crio-premium/vendor/boldgrid/library/src\";i:361744;s:90:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/crio-premium/vendor/boldgrid/library\";i:423641;s:120:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/crio-premium/vendor/boldgrid/plugin-installer/src/Plugin/Installer\";i:3967;s:116:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/crio-premium/vendor/boldgrid/plugin-installer/src/Plugin/Views\";i:1475;s:110:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/crio-premium/vendor/boldgrid/plugin-installer/src/Plugin\";i:36254;s:114:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/crio-premium/vendor/boldgrid/plugin-installer/src/assets/css\";i:4968;s:117:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/crio-premium/vendor/boldgrid/plugin-installer/src/assets/images\";i:990;s:113:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/crio-premium/vendor/boldgrid/plugin-installer/src/assets/js\";i:11579;s:110:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/crio-premium/vendor/boldgrid/plugin-installer/src/assets\";i:17537;s:113:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/crio-premium/vendor/boldgrid/plugin-installer/src/languages\";i:7771;s:103:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/crio-premium/vendor/boldgrid/plugin-installer/src\";i:61562;s:99:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/crio-premium/vendor/boldgrid/plugin-installer\";i:79608;s:82:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/crio-premium/vendor/boldgrid\";i:526119;s:82:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/crio-premium/vendor/composer\";i:26136;s:73:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/crio-premium/vendor\";i:558861;s:77:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/crio-premium/customizer\";i:37482;s:66:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/crio-premium\";i:1039544;s:82:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-easy-seo/assets/css\";i:7117;s:87:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-easy-seo/assets/partials\";i:1920;s:87:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-easy-seo/assets/js/bgseo\";i:77335;s:89:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-easy-seo/assets/js/control\";i:4112;s:97:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-easy-seo/assets/js/text-statistics\";i:8962;s:81:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-easy-seo/assets/js\";i:200342;s:78:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-easy-seo/assets\";i:209379;s:81:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-easy-seo/languages\";i:13528;s:93:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-easy-seo/includes/configs/i18n\";i:16914;s:88:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-easy-seo/includes/configs\";i:22578;s:99:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-easy-seo/includes/lib/butterbean/css\";i:13399;s:100:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-easy-seo/includes/lib/butterbean/tmpl\";i:9128;s:98:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-easy-seo/includes/lib/butterbean/js\";i:32579;s:108:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-easy-seo/includes/lib/butterbean/inc/controls\";i:21876;s:108:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-easy-seo/includes/lib/butterbean/inc/settings\";i:7862;s:99:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-easy-seo/includes/lib/butterbean/inc\";i:64100;s:95:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-easy-seo/includes/lib/butterbean\";i:169860;s:84:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-easy-seo/includes/lib\";i:169860;s:80:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-easy-seo/includes\";i:243809;s:71:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-easy-seo\";i:501638;s:94:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder-premium/dist/fonts\";i:5320;s:88:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder-premium/dist\";i:392749;s:94:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder-premium/src/config\";i:828;s:97:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder-premium/src/Component\";i:17699;s:99:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder-premium/src/assets/scss\";i:3953;s:114:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder-premium/src/assets/js/component/slider\";i:26600;s:107:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder-premium/src/assets/js/component\";i:26600;s:97:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder-premium/src/assets/js\";i:27355;s:94:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder-premium/src/assets\";i:31308;s:87:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder-premium/src\";i:67541;s:83:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/post-and-page-builder-premium\";i:488234;s:76:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/nginx-helper/admin/css\";i:1828;s:81:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/nginx-helper/admin/partials\";i:33039;s:82:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/nginx-helper/admin/icons/css\";i:1743;s:83:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/nginx-helper/admin/icons/font\";i:16386;s:78:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/nginx-helper/admin/icons\";i:22767;s:75:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/nginx-helper/admin/js\";i:2576;s:72:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/nginx-helper/admin\";i:550482;s:76:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/nginx-helper/languages\";i:16081;s:75:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/nginx-helper/includes\";i:17463;s:66:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/nginx-helper\";i:620739;s:87:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/admin/css\";i:387;s:101:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/admin/partials/archives\";i:897;s:99:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/admin/partials/remote\";i:8396;s:103:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/admin/partials/historical\";i:2884;s:92:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/admin/partials\";i:18664;s:90:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/admin/remote\";i:148287;s:86:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/admin/js\";i:14279;s:83:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/admin\";i:281647;s:93:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/includes/config\";i:2571;s:86:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/includes\";i:26568;s:112:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/ralouphie/getallheaders/src\";i:1640;s:108:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/ralouphie/getallheaders\";i:2720;s:94:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/ralouphie\";i:2720;s:111:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/google/apiclient/src/Utils\";i:9458;s:110:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/google/apiclient/src/Task\";i:11960;s:113:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/google/apiclient/src/Service\";i:11948;s:117:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/google/apiclient/src/AccessToken\";i:10550;s:117:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/google/apiclient/src/AuthHandler\";i:8245;s:110:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/google/apiclient/src/Http\";i:22119;s:105:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/google/apiclient/src\";i:127761;s:101:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/google/apiclient\";i:138017;s:144:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/google/apiclient-services/src/Google/Service/Drive/Resource\";i:54257;s:135:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/google/apiclient-services/src/Google/Service/Drive\";i:159451;s:152:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/google/apiclient-services/src/Google/Service/DriveActivity/Resource\";i:1492;s:143:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/google/apiclient-services/src/Google/Service/DriveActivity\";i:77438;s:129:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/google/apiclient-services/src/Google/Service\";i:280288;s:121:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/google/apiclient-services/src/Google\";i:280288;s:114:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/google/apiclient-services/src\";i:280288;s:110:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/google/apiclient-services\";i:294680;s:111:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/google/auth/src/Middleware\";i:12518;s:106:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/google/auth/src/Cache\";i:14296;s:112:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/google/auth/src/Credentials\";i:45794;s:112:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/google/auth/src/HttpHandler\";i:9417;s:111:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/google/auth/src/Subscriber\";i:11944;s:100:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/google/auth/src\";i:192411;s:96:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/google/auth\";i:222236;s:91:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/google\";i:654933;s:105:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/psr/log/Psr/Log/Test\";i:9427;s:100:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/psr/log/Psr/Log\";i:20877;s:96:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/psr/log/Psr\";i:20877;s:92:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/psr/log\";i:21962;s:98:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/psr/cache/src\";i:8603;s:94:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/psr/cache\";i:10429;s:105:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/psr/http-message/src\";i:46455;s:101:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/psr/http-message\";i:48615;s:88:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/psr\";i:81006;s:128:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/symfony/polyfill-mbstring/Resources/unidata\";i:55556;s:120:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/symfony/polyfill-mbstring/Resources\";i:55556;s:110:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/symfony/polyfill-mbstring\";i:101622;s:92:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/symfony\";i:101622;s:111:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/Arn/S3\";i:7580;s:118:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/Arn/Exception\";i:150;s:108:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/Arn\";i:18179;s:113:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/Endpoint\";i:18356;s:124:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/S3Control/Exception\";i:204;s:114:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/S3Control\";i:24569;s:132:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/EndpointDiscovery/Exception\";i:339;s:122:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/EndpointDiscovery\";i:26258;s:125:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/S3Outposts/Exception\";i:213;s:115:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/S3Outposts\";i:794;s:121:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/Handler/GuzzleV5\";i:8033;s:121:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/Handler/GuzzleV6\";i:2790;s:112:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/Handler\";i:10823;s:135:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/ClientSideMonitoring/Exception\";i:348;s:125:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/ClientSideMonitoring\";i:33694;s:132:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/rekognition/2016-06-27\";i:84286;s:121:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/rekognition\";i:84286;s:125:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/mwaa/2020-07-01\";i:21948;s:114:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/mwaa\";i:21948;s:131:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/greengrass/2017-06-07\";i:101484;s:120:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/greengrass\";i:101484;s:132:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/cloudsearch/2013-01-01\";i:36908;s:121:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/cloudsearch\";i:36908;s:124:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/acm/2015-12-08\";i:24155;s:113:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/acm\";i:24155;s:135:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/clouddirectory/2016-05-10\";i:116345;s:135:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/clouddirectory/2017-01-11\";i:118792;s:124:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/clouddirectory\";i:235137;s:129:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/outposts/2019-12-03\";i:12832;s:118:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/outposts\";i:12832;s:124:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/rds/2014-10-31\";i:230202;s:124:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/rds/2014-09-01\";i:85216;s:113:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/rds\";i:315418;s:130:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/sagemaker/2017-07-24\";i:396684;s:119:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/sagemaker\";i:396684;s:129:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/pinpoint/2016-12-01\";i:203859;s:118:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/pinpoint\";i:203859;s:124:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/swf/2012-01-25\";i:77176;s:113:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/swf\";i:77176;s:129:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/databrew/2017-07-25\";i:53017;s:118:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/databrew\";i:53017;s:133:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/codeartifact/2018-09-22\";i:58674;s:122:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/codeartifact\";i:58674;s:131:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/opsworkscm/2016-11-01\";i:24398;s:120:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/opsworkscm\";i:24398;s:131:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/devicefarm/2015-06-23\";i:91516;s:120:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/devicefarm\";i:91516;s:131:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/healthlake/2017-07-01\";i:13597;s:120:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/healthlake\";i:13597;s:124:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/dlm/2018-01-12\";i:19309;s:113:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/dlm\";i:19309;s:139:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/iotsecuretunneling/2018-10-05\";i:8512;s:128:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/iotsecuretunneling\";i:8512;s:134:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/groundstation/2019-05-23\";i:35926;s:123:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/groundstation\";i:35926;s:135:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/servicecatalog/2015-12-10\";i:116294;s:124:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/servicecatalog\";i:116294;s:124:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/sts/2011-06-15\";i:15318;s:113:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/sts\";i:15318;s:131:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/transcribe/2017-10-26\";i:35897;s:120:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/transcribe\";i:35897;s:129:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/location/2020-11-19\";i:54081;s:118:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/location\";i:54081;s:137:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/elasticbeanstalk/2010-12-01\";i:72797;s:126:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/elasticbeanstalk\";i:72797;s:132:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/autoscaling/2011-01-01\";i:76976;s:121:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/autoscaling\";i:76976;s:135:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/iotevents-data/2018-10-23\";i:10546;s:124:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/iotevents-data\";i:10546;s:126:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/chime/2018-05-01\";i:238975;s:115:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/chime\";i:238975;s:135:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/pinpoint-email/2018-07-26\";i:55426;s:124:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/pinpoint-email\";i:55426;s:134:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/lakeformation/2017-03-31\";i:18605;s:123:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/lakeformation\";i:18605;s:144:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/apigatewaymanagementapi/2018-11-29\";i:3808;s:133:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/apigatewaymanagementapi\";i:3808;s:130:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/s3control/2018-08-20\";i:63265;s:119:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/s3control\";i:63265;s:125:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/glue/2017-03-31\";i:217983;s:114:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/glue\";i:217983;s:132:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/devops-guru/2020-12-01\";i:40797;s:121:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/devops-guru\";i:40797;s:138:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/compute-optimizer/2019-11-01\";i:34302;s:127:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/compute-optimizer\";i:34302;s:124:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/fsx/2018-03-01\";i:41743;s:113:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/fsx\";i:41743;s:131:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/synthetics/2017-10-11\";i:19101;s:120:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/synthetics\";i:19101;s:132:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/cognito-idp/2016-04-18\";i:152337;s:121:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/cognito-idp\";i:152337;s:138:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/customer-profiles/2020-08-15\";i:40760;s:127:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/customer-profiles\";i:40760;s:128:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/schemas/2019-12-02\";i:49156;s:117:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/schemas\";i:49156;s:135:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/storagegateway/2013-06-30\";i:94655;s:124:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/storagegateway\";i:94655;s:138:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/cloudsearchdomain/2013-01-01\";i:8078;s:127:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/cloudsearchdomain\";i:8078;s:131:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/monitoring/2010-08-01\";i:49328;s:120:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/monitoring\";i:49328;s:131:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/ecr-public/2020-10-30\";i:34187;s:120:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/ecr-public\";i:34187;s:138:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/runtime.sagemaker/2017-05-13\";i:4621;s:127:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/runtime.sagemaker\";i:4621;s:124:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/waf/2015-08-24\";i:91394;s:113:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/waf\";i:91394;s:135:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/sagemaker-edge/2020-09-23\";i:3739;s:124:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/sagemaker-edge\";i:3739;s:128:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/support/2013-04-15\";i:21132;s:117:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/support\";i:21132;s:130:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/lightsail/2016-11-28\";i:186285;s:119:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/lightsail\";i:186285;s:141:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/connect-contact-lens/2020-08-21\";i:6416;s:130:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/connect-contact-lens\";i:6416;s:124:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/ssm/2014-11-06\";i:269958;s:113:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/ssm\";i:269958;s:134:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/iot-jobs-data/2017-09-29\";i:9256;s:123:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/iot-jobs-data\";i:9256;s:125:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/qldb/2019-01-02\";i:23715;s:114:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/qldb\";i:23715;s:133:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/qldb-session/2019-07-11\";i:7159;s:122:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/qldb-session\";i:7159;s:134:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/directconnect/2012-10-25\";i:62431;s:123:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/directconnect\";i:62431;s:133:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/apigatewayv2/2018-11-29\";i:152731;s:122:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/apigatewayv2\";i:152731;s:131:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/comprehend/2017-11-27\";i:85965;s:120:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/comprehend\";i:85965;s:138:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/elasticfilesystem/2015-02-01\";i:37837;s:127:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/elasticfilesystem\";i:37837;s:133:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/codepipeline/2015-07-09\";i:66381;s:122:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/codepipeline\";i:66381;s:133:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/importexport/2010-06-01\";i:14818;s:122:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/importexport\";i:14818;s:137:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/servicediscovery/2017-03-14\";i:31291;s:126:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/servicediscovery\";i:31291;s:123:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/ce/2017-10-25\";i:67333;s:112:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/ce\";i:67333;s:137:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/cognito-identity/2014-06-30\";i:30656;s:126:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/cognito-identity\";i:30656;s:127:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/config/2014-11-12\";i:127160;s:116:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/config\";i:127160;s:129:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/workmail/2017-10-01\";i:60641;s:118:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/workmail\";i:60641;s:128:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/neptune/2014-10-31\";i:106844;s:117:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/neptune\";i:106844;s:133:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/cognito-sync/2014-06-30\";i:38045;s:122:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/cognito-sync\";i:38045;s:126:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/kafka/2018-11-14\";i:55039;s:115:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/kafka\";i:55039;s:130:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/iotevents/2018-07-27\";i:35438;s:119:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/iotevents\";i:35438;s:127:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/backup/2018-11-15\";i:68130;s:116:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/backup\";i:68130;s:125:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/logs/2014-03-28\";i:46407;s:114:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/logs\";i:46407;s:129:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/opsworks/2013-02-18\";i:79003;s:118:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/opsworks\";i:79003;s:138:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/elastic-inference/2017-07-25\";i:9811;s:127:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/elastic-inference\";i:9811;s:131:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/quicksight/2018-04-01\";i:192202;s:120:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/quicksight\";i:192202;s:124:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/ecr/2015-09-21\";i:50833;s:113:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/ecr\";i:50833;s:131:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/apigateway/2015-07-09\";i:129719;s:120:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/apigateway\";i:129719;s:144:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/application-autoscaling/2016-02-06\";i:23214;s:133:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/application-autoscaling\";i:23214;s:134:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/identitystore/2020-06-15\";i:7531;s:123:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/identitystore\";i:7531;s:127:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/macie2/2020-01-01\";i:103255;s:116:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/macie2\";i:103255;s:132:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/elasticache/2015-02-02\";i:122221;s:121:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/elasticache\";i:122221;s:130:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/robomaker/2018-06-29\";i:86751;s:119:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/robomaker\";i:86751;s:124:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/eks/2017-11-01\";i:55343;s:113:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/eks\";i:55343;s:133:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/mediaconnect/2018-11-14\";i:49318;s:122:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/mediaconnect\";i:49318;s:124:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/fms/2018-01-01\";i:37031;s:113:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/fms\";i:37031;s:127:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/braket/2019-09-01\";i:15886;s:116:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/braket\";i:15886;s:141:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/ec2-instance-connect/2018-04-02\";i:2888;s:130:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/ec2-instance-connect\";i:2888;s:135:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/iotthingsgraph/2018-09-06\";i:41182;s:124:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/iotthingsgraph\";i:41182;s:126:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/sesv2/2019-09-27\";i:105308;s:115:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/sesv2\";i:105308;s:125:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/xray/2016-04-12\";i:46594;s:114:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/xray\";i:46594;s:143:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/elasticloadbalancingv2/2015-12-01\";i:63035;s:132:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/elasticloadbalancingv2\";i:63035;s:130:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/sms-voice/2018-09-05\";i:12596;s:119:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/sms-voice\";i:12596;s:133:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/mediaconvert/2017-08-29\";i:185250;s:122:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/mediaconvert\";i:185250;s:138:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/autoscaling-plans/2018-01-06\";i:17514;s:127:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/autoscaling-plans\";i:17514;s:132:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/eventbridge/2015-10-07\";i:69592;s:121:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/eventbridge\";i:69592;s:128:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/acm-pca/2017-08-22\";i:35168;s:117:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/acm-pca\";i:35168;s:134:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/organizations/2016-11-28\";i:71340;s:123:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/organizations\";i:71340;s:138:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/globalaccelerator/2018-08-08\";i:55855;s:127:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/globalaccelerator\";i:55855;s:130:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/medialive/2017-10-14\";i:243438;s:119:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/medialive\";i:243438;s:127:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/lambda/2015-03-31\";i:96798;s:116:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/lambda\";i:96798;s:131:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/mediastore/2017-09-01\";i:19797;s:120:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/mediastore\";i:19797;s:135:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/secretsmanager/2017-10-17\";i:31148;s:124:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/secretsmanager\";i:31148;s:127:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/events/2015-10-07\";i:69584;s:116:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/events\";i:69584;s:127:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/shield/2016-06-02\";i:35906;s:116:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/shield\";i:35906;s:136:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/mturk-requester/2017-01-17\";i:43205;s:125:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/mturk-requester\";i:43205;s:137:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/iotdeviceadvisor/2020-09-18\";i:19845;s:126:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/iotdeviceadvisor\";i:19845;s:131:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/workspaces/2015-04-08\";i:63097;s:120:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/workspaces\";i:63097;s:128:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/route53/2013-04-01\";i:103204;s:117:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/route53\";i:103204;s:131:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/codecommit/2015-04-13\";i:163153;s:120:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/codecommit\";i:163153;s:130:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/inspector/2016-02-16\";i:59578;s:119:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/inspector\";i:59578;s:124:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/cur/2017-01-06\";i:6885;s:113:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/cur\";i:6885;s:124:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/sms/2016-10-24\";i:49099;s:113:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/sms\";i:49099;s:126:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/polly/2016-06-10\";i:19323;s:115:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/polly\";i:19323;s:133:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/datapipeline/2012-10-29\";i:24288;s:122:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/datapipeline\";i:24288;s:128:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/budgets/2016-10-20\";i:35625;s:117:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/budgets\";i:35625;s:128:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/glacier/2012-06-01\";i:45836;s:117:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/glacier\";i:45836;s:124:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/ram/2018-01-04\";i:38793;s:113:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/ram\";i:38793;s:132:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/mediatailor/2018-04-23\";i:11890;s:121:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/mediatailor\";i:11890;s:127:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/mobile/2017-07-01\";i:13774;s:116:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/mobile\";i:13774;s:131:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/cloudfront/2018-06-18\";i:99777;s:131:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/cloudfront/2016-01-28\";i:55365;s:131:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/cloudfront/2017-03-25\";i:69334;s:131:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/cloudfront/2017-10-30\";i:99733;s:131:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/cloudfront/2016-08-01\";i:63714;s:131:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/cloudfront/2016-08-20\";i:64746;s:131:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/cloudfront/2015-07-27\";i:62725;s:131:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/cloudfront/2016-11-25\";i:67760;s:131:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/cloudfront/2016-09-29\";i:65866;s:131:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/cloudfront/2016-09-07\";i:65757;s:131:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/cloudfront/2018-11-05\";i:101791;s:131:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/cloudfront/2019-03-26\";i:102498;s:131:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/cloudfront/2020-05-31\";i:149421;s:120:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/cloudfront\";i:1068487;s:135:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/emr-containers/2020-10-01\";i:25810;s:124:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/emr-containers\";i:25810;s:129:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/worklink/2018-09-25\";i:37411;s:118:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/worklink\";i:37411;s:124:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/dax/2017-04-19\";i:28916;s:113:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/dax\";i:28916;s:142:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/sagemaker-a2i-runtime/2019-11-07\";i:8992;s:131:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/sagemaker-a2i-runtime\";i:8992;s:129:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/datasync/2018-11-09\";i:42577;s:118:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/datasync\";i:42577;s:149:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/marketplacecommerceanalytics/2015-07-01\";i:5434;s:138:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/marketplacecommerceanalytics\";i:5434;s:126:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/batch/2016-08-10\";i:35922;s:115:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/batch\";i:35922;s:137:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/elasticmapreduce/2009-03-31\";i:77771;s:126:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/elasticmapreduce\";i:77771;s:133:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/greengrassv2/2020-11-30\";i:42572;s:122:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/greengrassv2\";i:42572;s:135:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/service-quotas/2019-06-24\";i:28893;s:124:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/service-quotas\";i:28893;s:132:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/iotwireless/2020-11-22\";i:70528;s:121:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/iotwireless\";i:70528;s:129:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/gamelift/2015-10-01\";i:121650;s:118:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/gamelift\";i:121650;s:124:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/ecs/2014-11-13\";i:88639;s:113:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/ecs\";i:88639;s:134:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/lookoutvision/2020-11-20\";i:32316;s:123:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/lookoutvision\";i:32316;s:137:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/timestream-write/2018-11-01\";i:18993;s:126:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/timestream-write\";i:18993;s:141:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/elasticloadbalancing/2012-06-01\";i:42315;s:130:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/elasticloadbalancing\";i:42315;s:136:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/mediastore-data/2017-09-01\";i:8862;s:125:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/mediastore-data\";i:8862;s:124:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/sso/2019-06-10\";i:6990;s:113:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/sso\";i:6990;s:128:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/amplify/2017-07-25\";i:56595;s:117:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/amplify\";i:56595;s:124:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/iam/2010-05-08\";i:165481;s:113:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/iam\";i:165481;s:132:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/iotsitewise/2019-12-02\";i:95715;s:121:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/iotsitewise\";i:95715;s:144:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/entitlement.marketplace/2017-01-11\";i:3390;s:133:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/entitlement.marketplace\";i:3390;s:123:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/pi/2018-02-27\";i:6344;s:112:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/pi\";i:6344;s:126:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/macie/2017-12-19\";i:9037;s:115:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/macie\";i:9037;s:126:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/wafv2/2019-07-29\";i:62746;s:115:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/wafv2\";i:62746;s:128:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/kinesis/2013-12-02\";i:35158;s:117:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/kinesis\";i:35158;s:127:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/health/2016-08-04\";i:22999;s:116:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/health\";i:22999;s:130:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/appconfig/2019-10-09\";i:41318;s:119:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/appconfig\";i:41318;s:135:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/runtime.lex.v2/2020-08-07\";i:23596;s:124:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/runtime.lex.v2\";i:23596;s:130:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/codebuild/2016-10-06\";i:65201;s:119:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/codebuild\";i:65201;s:133:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/iotanalytics/2017-11-27\";i:57567;s:122:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/iotanalytics\";i:57567;s:132:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/iotfleethub/2020-11-03\";i:11272;s:121:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/iotfleethub\";i:11272;s:135:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/accessanalyzer/2019-11-01\";i:28457;s:124:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/accessanalyzer\";i:28457;s:129:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/sso-oidc/2019-06-10\";i:8043;s:118:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/sso-oidc\";i:8043;s:141:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/application-insights/2018-11-25\";i:36616;s:130:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/application-insights\";i:36616;s:144:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/kinesis-video-signaling/2019-12-04\";i:4866;s:133:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/kinesis-video-signaling\";i:4866;s:124:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/sqs/2012-11-05\";i:25685;s:113:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/sqs\";i:25685;s:136:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/license-manager/2018-08-01\";i:59922;s:125:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/license-manager\";i:59922;s:135:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/networkmanager/2019-07-05\";i:50405;s:124:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/networkmanager\";i:50405;s:136:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/wellarchitected/2020-03-31\";i:51956;s:125:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/wellarchitected\";i:51956;s:126:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/email/2010-12-01\";i:80128;s:115:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/email\";i:80128;s:137:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/network-firewall/2020-11-12\";i:46232;s:126:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/network-firewall\";i:46232;s:124:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/ebs/2019-11-02\";i:15366;s:113:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/ebs\";i:15366;s:133:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/waf-regional/2016-11-28\";i:94807;s:122:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/waf-regional\";i:94807;s:130:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/translate/2017-07-01\";i:23835;s:119:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/translate\";i:23835;s:141:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/codestar-connections/2019-12-01\";i:12736;s:130:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/codestar-connections\";i:12736;s:133:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/auditmanager/2017-07-25\";i:77439;s:122:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/auditmanager\";i:77439;s:138:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/comprehendmedical/2018-10-30\";i:30305;s:127:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/comprehendmedical\";i:30305;s:139:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/personalize-events/2018-03-22\";i:4645;s:128:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/personalize-events\";i:4645;s:134:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/forecastquery/2018-06-26\";i:3370;s:123:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/forecastquery\";i:3370;s:136:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/route53resolver/2018-04-01\";i:46883;s:125:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/route53resolver\";i:46883;s:124:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/ivs/2020-07-14\";i:24260;s:113:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/ivs\";i:24260;s:139:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/iot1click-projects/2018-05-14\";i:20491;s:128:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/iot1click-projects\";i:20491;s:136:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/appintegrations/2020-07-29\";i:13011;s:125:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/appintegrations\";i:13011;s:137:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/codeguruprofiler/2019-07-18\";i:38331;s:126:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/codeguruprofiler\";i:38331;s:129:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/dynamodb/2011-12-05\";i:22072;s:129:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/dynamodb/2012-08-10\";i:101036;s:118:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/dynamodb\";i:123108;s:131:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/lex-models/2017-04-19\";i:65265;s:120:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/lex-models\";i:65265;s:137:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/streams.dynamodb/2012-08-10\";i:9730;s:126:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/streams.dynamodb\";i:9730;s:130:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/detective/2018-10-26\";i:12280;s:119:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/detective\";i:12280;s:130:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/discovery/2015-11-01\";i:36711;s:119:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/discovery\";i:36711;s:123:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/es/2015-01-01\";i:74893;s:112:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/es\";i:74893;s:149:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/kinesis-video-archived-media/2017-09-30\";i:12630;s:138:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/kinesis-video-archived-media\";i:12630;s:129:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/transfer/2018-11-05\";i:27792;s:118:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/transfer\";i:27792;s:133:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/kinesisvideo/2017-09-30\";i:24380;s:122:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/kinesisvideo\";i:24380;s:128:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/pricing/2017-10-15\";i:5697;s:117:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/pricing\";i:5697;s:132:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/personalize/2018-05-22\";i:53040;s:121:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/personalize\";i:53040;s:135:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/route53domains/2014-05-15\";i:33194;s:124:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/route53domains\";i:33194;s:130:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/sso-admin/2020-07-20\";i:42396;s:119:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/sso-admin\";i:42396;s:124:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/ec2/2015-10-01\";i:290643;s:124:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/ec2/2016-11-15\";i:758018;s:124:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/ec2/2016-04-01\";i:295527;s:124:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/ec2/2016-09-15\";i:304730;s:113:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/ec2\";i:1648918;s:123:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/mq/2017-11-27\";i:54635;s:112:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/mq\";i:54635;s:127:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/kendra/2019-02-03\";i:70738;s:116:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/kendra\";i:70738;s:137:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/mediapackage-vod/2018-11-07\";i:35207;s:126:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/mediapackage-vod\";i:35207;s:123:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/s3/2006-03-01\";i:181833;s:112:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/s3\";i:181833;s:133:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/imagebuilder/2019-12-02\";i:85520;s:122:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/imagebuilder\";i:85520;s:139:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/kinesisanalyticsv2/2018-05-23\";i:63772;s:128:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/kinesisanalyticsv2\";i:63772;s:124:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/amp/2020-08-01\";i:10182;s:113:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/amp\";i:10182;s:132:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/runtime.lex/2016-11-28\";i:19458;s:121:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/runtime.lex\";i:19458;s:126:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/docdb/2014-10-31\";i:70377;s:115:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/docdb\";i:70377;s:127:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/athena/2017-05-18\";i:35775;s:116:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/athena\";i:35775;s:137:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/kinesisanalytics/2015-08-14\";i:39159;s:126:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/kinesisanalytics\";i:39159;s:140:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/marketplace-catalog/2018-09-17\";i:13361;s:129:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/marketplace-catalog\";i:13361;s:128:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/connect/2017-08-08\";i:137520;s:117:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/connect\";i:137520;s:124:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/iot/2015-05-28\";i:334708;s:113:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/iot\";i:334708;s:130:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/guardduty/2017-11-28\";i:88027;s:119:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/guardduty\";i:88027;s:130:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/appstream/2016-12-01\";i:61300;s:119:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/appstream\";i:61300;s:138:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/iot1click-devices/2018-05-14\";i:16589;s:127:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/iot1click-devices\";i:16589;s:140:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/personalize-runtime/2018-05-22\";i:4252;s:129:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/personalize-runtime\";i:4252;s:138:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/managedblockchain/2018-09-24\";i:40536;s:127:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/managedblockchain\";i:40536;s:137:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/timestream-query/2018-11-01\";i:7245;s:126:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/timestream-query\";i:7245;s:136:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/resource-groups/2017-11-27\";i:24396;s:125:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/resource-groups\";i:24396;s:127:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/signer/2017-08-25\";i:30922;s:116:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/signer\";i:30922;s:131:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/cloudtrail/2013-11-01\";i:32981;s:120:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/cloudtrail\";i:32981;s:129:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/snowball/2016-06-30\";i:27389;s:118:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/snowball\";i:27389;s:138:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/codeguru-reviewer/2019-09-19\";i:25788;s:127:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/codeguru-reviewer\";i:25788;s:124:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/sns/2010-03-31\";i:36278;s:113:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/sns\";i:36278;s:128:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/appmesh/2019-01-25\";i:91425;s:128:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/appmesh/2018-10-01\";i:31977;s:117:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/appmesh\";i:123402;s:151:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/sagemaker-featurestore-runtime/2020-07-01\";i:4977;s:140:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/sagemaker-featurestore-runtime\";i:4977;s:129:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/rds-data/2018-08-01\";i:13354;s:118:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/rds-data\";i:13354;s:134:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/redshift-data/2019-12-20\";i:13926;s:123:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/redshift-data\";i:13926;s:140:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/kinesis-video-media/2017-09-30\";i:3938;s:129:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/kinesis-video-media\";i:3938;s:129:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/codestar/2017-04-19\";i:24576;s:118:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/codestar\";i:24576;s:133:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/mediapackage/2017-10-12\";i:48710;s:122:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/mediapackage\";i:48710;s:123:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/ds/2015-04-16\";i:82954;s:112:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/ds\";i:82954;s:133:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/savingsplans/2019-06-28\";i:20956;s:122:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/savingsplans\";i:20956;s:129:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/forecast/2018-06-26\";i:44627;s:118:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/forecast\";i:44627;s:128:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/appflow/2020-08-23\";i:59649;s:117:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/appflow\";i:59649;s:134:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/models.lex.v2/2020-08-07\";i:87114;s:123:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/models.lex.v2\";i:87114;s:127:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/states/2016-11-23\";i:39630;s:116:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/states\";i:39630;s:131:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/cloudhsmv2/2017-04-28\";i:21200;s:120:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/cloudhsmv2\";i:21200;s:141:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/metering.marketplace/2016-01-14\";i:9865;s:130:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/metering.marketplace\";i:9865;s:129:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/workdocs/2016-05-01\";i:71801;s:118:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/workdocs\";i:71801;s:130:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/honeycode/2020-03-01\";i:28921;s:119:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/honeycode\";i:28921;s:131:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/codedeploy/2014-10-06\";i:89160;s:120:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/codedeploy\";i:89160;s:134:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/frauddetector/2019-11-15\";i:62482;s:123:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/frauddetector\";i:62482;s:143:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/codestar-notifications/2019-10-15\";i:17399;s:132:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/codestar-notifications\";i:17399;s:124:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/kms/2014-11-01\";i:56044;s:113:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/kms\";i:56044;s:140:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/migrationhub-config/2019-06-30\";i:5569;s:129:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/migrationhub-config\";i:5569;s:124:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/dms/2016-01-01\";i:94052;s:113:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/dms\";i:94052;s:139:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/connectparticipant/2018-09-07\";i:14560;s:128:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/connectparticipant\";i:14560;s:135:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/serverlessrepo/2017-09-08\";i:37632;s:124:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/serverlessrepo\";i:37632;s:129:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/data.iot/2015-05-28\";i:8681;s:118:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/data.iot\";i:8681;s:131:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/s3outposts/2017-07-25\";i:5955;s:120:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/s3outposts\";i:5955;s:132:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/securityhub/2018-10-26\";i:148728;s:121:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/securityhub\";i:148728;s:129:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/cloudhsm/2014-05-30\";i:20147;s:118:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/cloudhsm\";i:20147;s:135:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/cloudformation/2010-05-15\";i:97027;s:124:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/cloudformation\";i:97027;s:135:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/amplifybackend/2020-08-11\";i:58880;s:124:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/amplifybackend\";i:58880;s:140:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/workmailmessageflow/2019-05-01\";i:3623;s:129:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/workmailmessageflow\";i:3623;s:124:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/mgh/2017-05-31\";i:25940;s:113:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/mgh\";i:25940;s:138:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/elastictranscoder/2012-09-25\";i:39358;s:127:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/elastictranscoder\";i:39358;s:137:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/alexaforbusiness/2017-11-09\";i:102549;s:126:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/alexaforbusiness\";i:102549;s:133:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/dataexchange/2017-07-25\";i:36526;s:122:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/dataexchange\";i:36526;s:145:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/resourcegroupstaggingapi/2017-01-26\";i:13502;s:134:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/resourcegroupstaggingapi\";i:13502;s:147:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/servicecatalog-appregistry/2020-06-24\";i:25060;s:136:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/servicecatalog-appregistry\";i:25060;s:127:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/cloud9/2017-09-23\";i:16835;s:116:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/cloud9\";i:16835;s:129:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/redshift/2012-12-01\";i:148470;s:118:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/redshift\";i:148470;s:129:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/textract/2018-06-27\";i:16408;s:118:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/textract\";i:16408;s:129:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/firehose/2015-08-04\";i:46817;s:118:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/firehose\";i:46817;s:128:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/appsync/2017-07-25\";i:53343;s:117:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/appsync\";i:53343;s:136:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/machinelearning/2014-12-12\";i:49086;s:125:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data/machinelearning\";i:49086;s:109:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/data\";i:17119946;s:114:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/Multipart\";i:18553;s:116:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/Credentials\";i:57275;s:114:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/Signature\";i:23910;s:125:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/Api/Parser/Exception\";i:1370;s:115:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/Api/Parser\";i:37236;s:120:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/Api/ErrorParser\";i:9967;s:119:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/Api/Serializer\";i:26115;s:108:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/Api\";i:120007;s:134:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/S3/RegionalEndpoint/Exception\";i:345;s:124:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/S3/RegionalEndpoint\";i:8699;s:130:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/S3/UseArnRegion/Exception\";i:336;s:120:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/S3/UseArnRegion\";i:8009;s:114:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/S3/Crypto\";i:54902;s:117:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/S3/Exception\";i:4821;s:107:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/S3\";i:291813;s:120:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/Retry/Exception\";i:310;s:110:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/Retry\";i:19442;s:114:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src/Exception\";i:12787;s:104:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php/src\";i:18059203;s:100:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws/aws-sdk-php\";i:18071596;s:88:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/aws\";i:18071596;s:111:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/mtdowling/jmespath.php/src\";i:81561;s:107:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/mtdowling/jmespath.php\";i:86683;s:94:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/mtdowling\";i:86683;s:122:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/monolog/monolog/src/Monolog/Formatter\";i:48602;s:122:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/monolog/monolog/src/Monolog/Processor\";i:17582;s:125:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/monolog/monolog/src/Monolog/Handler/Curl\";i:1497;s:126:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/monolog/monolog/src/Monolog/Handler/Slack\";i:8420;s:135:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/monolog/monolog/src/Monolog/Handler/FingersCrossed\";i:3340;s:130:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/monolog/monolog/src/Monolog/Handler/SyslogUdp\";i:1401;s:120:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/monolog/monolog/src/Monolog/Handler\";i:230327;s:112:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/monolog/monolog/src/Monolog\";i:342262;s:104:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/monolog/monolog/src\";i:342262;s:100:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/monolog/monolog\";i:367145;s:92:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/monolog\";i:367145;s:105:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/firebase/php-jwt/src\";i:24417;s:101:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/firebase/php-jwt\";i:25937;s:93:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/firebase\";i:25937;s:112:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/react/promise/src/Exception\";i:94;s:102:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/react/promise/src\";i:36130;s:98:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/react/promise\";i:43691;s:90:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/react\";i:43691;s:156:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/BCMath/Reductions\";i:9886;s:145:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/BCMath\";i:14896;s:142:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/GMP\";i:970;s:153:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP/Reductions\";i:37082;s:142:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP\";i:45882;s:138:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines\";i:195221;s:130:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger\";i:195221;s:130:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/phpseclib/phpseclib/phpseclib/Math/PrimeField\";i:9748;s:131:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/phpseclib/phpseclib/phpseclib/Math/BinaryField\";i:13810;s:138:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/phpseclib/phpseclib/phpseclib/Math/Common/FiniteField\";i:476;s:126:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/phpseclib/phpseclib/phpseclib/Math/Common\";i:930;s:119:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/phpseclib/phpseclib/phpseclib/Math\";i:248928;s:123:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/phpseclib/phpseclib/phpseclib/Net/SFTP\";i:22060;s:118:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/phpseclib/phpseclib/phpseclib/Net\";i:294688;s:129:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/phpseclib/phpseclib/phpseclib/File/ASN1/Maps\";i:113330;s:124:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/phpseclib/phpseclib/phpseclib/File/ASN1\";i:114291;s:119:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/phpseclib/phpseclib/phpseclib/File\";i:337800;s:137:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA/Formats/Keys\";i:42345;s:132:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA/Formats\";i:42345;s:124:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA\";i:74280;s:137:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/phpseclib/phpseclib/phpseclib/Crypt/DSA/Formats/Keys\";i:24761;s:142:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/phpseclib/phpseclib/phpseclib/Crypt/DSA/Formats/Signature\";i:3969;s:132:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/phpseclib/phpseclib/phpseclib/Crypt/DSA/Formats\";i:28730;s:124:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/phpseclib/phpseclib/phpseclib/Crypt/DSA\";i:37037;s:136:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Keys\";i:78478;s:141:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Signature\";i:4471;s:131:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats\";i:82949;s:134:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/BaseCurves\";i:58811;s:130:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves\";i:95510;s:123:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC\";i:253253;s:134:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/Traits\";i:2979;s:140:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/Formats/Keys\";i:53981;s:145:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/Formats/Signature\";i:1414;s:135:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/Formats\";i:55395;s:127:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common\";i:199965;s:136:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/phpseclib/phpseclib/phpseclib/Crypt/DH/Formats/Keys\";i:7079;s:131:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/phpseclib/phpseclib/phpseclib/Crypt/DH/Formats\";i:7079;s:123:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/phpseclib/phpseclib/phpseclib/Crypt/DH\";i:10879;s:120:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/phpseclib/phpseclib/phpseclib/Crypt\";i:972436;s:139:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/phpseclib/phpseclib/phpseclib/System/SSH/Common/Traits\";i:885;s:132:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/phpseclib/phpseclib/phpseclib/System/SSH/Common\";i:885;s:131:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/phpseclib/phpseclib/phpseclib/System/SSH/Agent\";i:9072;s:125:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/phpseclib/phpseclib/phpseclib/System/SSH\";i:18412;s:121:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/phpseclib/phpseclib/phpseclib/System\";i:18412;s:131:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/phpseclib/phpseclib/phpseclib/Common/Functions\";i:11836;s:121:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/phpseclib/phpseclib/phpseclib/Common\";i:11836;s:124:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/phpseclib/phpseclib/phpseclib/Exception\";i:7810;s:114:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/phpseclib/phpseclib/phpseclib\";i:1892630;s:104:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/phpseclib/phpseclib\";i:1895120;s:94:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/phpseclib\";i:1895120;s:114:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/guzzlehttp/ringphp/src/Future\";i:9420;s:114:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/guzzlehttp/ringphp/src/Client\";i:50932;s:117:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/guzzlehttp/ringphp/src/Exception\";i:498;s:107:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/guzzlehttp/ringphp/src\";i:71865;s:108:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/guzzlehttp/ringphp/docs\";i:38389;s:103:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/guzzlehttp/ringphp\";i:116581;s:113:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/guzzlehttp/guzzle/src/Cookie\";i:23032;s:114:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/guzzlehttp/guzzle/src/Message\";i:54216;s:111:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/guzzlehttp/guzzle/src/Post\";i:16584;s:112:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/guzzlehttp/guzzle/src/Event\";i:24480;s:117:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/guzzlehttp/guzzle/src/Subscriber\";i:22230;s:116:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/guzzlehttp/guzzle/src/Exception\";i:5773;s:106:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/guzzlehttp/guzzle/src\";i:283701;s:102:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/guzzlehttp/guzzle\";i:392170;s:108:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/guzzlehttp/promises/src\";i:57773;s:104:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/guzzlehttp/promises\";i:65059;s:104:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/guzzlehttp/psr7/src\";i:165423;s:100:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/guzzlehttp/psr7\";i:174168;s:117:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/guzzlehttp/streams/src/Exception\";i:672;s:107:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/guzzlehttp/streams/src\";i:60000;s:103:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/guzzlehttp/streams\";i:66134;s:95:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/guzzlehttp\";i:814112;s:114:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/paragonie/random_compat/other\";i:1633;s:113:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/paragonie/random_compat/dist\";i:703;s:112:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/paragonie/random_compat/lib\";i:1327;s:108:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/paragonie/random_compat\";i:5722;s:121:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/paragonie/constant_time_encoding/src\";i:58109;s:117:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/paragonie/constant_time_encoding\";i:60678;s:94:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/paragonie\";i:66400;s:93:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor/composer\";i:320978;s:84:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium/vendor\";i:22532121;s:77:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup-premium\";i:22846446;s:76:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-connect/admin\";i:11364;s:86:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-connect/includes/config\";i:1610;s:79:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-connect/includes\";i:17104;s:100:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-connect/vendor/boldgrid/library/build\";i:8907;s:104:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-connect/vendor/boldgrid/library/languages\";i:34255;s:109:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-connect/vendor/boldgrid/library/src/assets/css\";i:16752;s:111:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-connect/vendor/boldgrid/library/src/assets/fonts\";i:41828;s:108:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-connect/vendor/boldgrid/library/src/assets/js\";i:31541;s:105:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-connect/vendor/boldgrid/library/src/assets\";i:90121;s:109:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-connect/vendor/boldgrid/library/src/Library/Ui\";i:4159;s:111:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-connect/vendor/boldgrid/library/src/Library/Page\";i:7390;s:113:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-connect/vendor/boldgrid/library/src/Library/Plugin\";i:11674;s:120:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-connect/vendor/boldgrid/library/src/Library/Views/Connect\";i:16439;s:112:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-connect/vendor/boldgrid/library/src/Library/Views\";i:28105;s:111:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-connect/vendor/boldgrid/library/src/Library/Menu\";i:7506;s:120:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-connect/vendor/boldgrid/library/src/Library/Notifications\";i:6060;s:110:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-connect/vendor/boldgrid/library/src/Library/Key\";i:7575;s:111:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-connect/vendor/boldgrid/library/src/Library/Util\";i:1465;s:110:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-connect/vendor/boldgrid/library/src/Library/Api\";i:8189;s:116:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-connect/vendor/boldgrid/library/src/Library/Dashboard\";i:5287;s:113:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-connect/vendor/boldgrid/library/src/Library/Notice\";i:8970;s:106:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-connect/vendor/boldgrid/library/src/Library\";i:174889;s:116:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-connect/vendor/boldgrid/library/src/Util/Registration\";i:2747;s:103:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-connect/vendor/boldgrid/library/src/Util\";i:24852;s:98:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-connect/vendor/boldgrid/library/src\";i:294072;s:94:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-connect/vendor/boldgrid/library\";i:355280;s:86:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-connect/vendor/boldgrid\";i:355280;s:86:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-connect/vendor/composer\";i:21394;s:77:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-connect/vendor\";i:376852;s:70:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-connect\";i:426534;s:72:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/weforms/assets/css\";i:100204;s:84:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/weforms/assets/wpuf/css/images\";i:27273;s:77:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/weforms/assets/wpuf/css\";i:142850;s:86:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/weforms/assets/wpuf/js-templates\";i:39246;s:84:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/weforms/assets/wpuf/vendor/vue\";i:327392;s:94:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/weforms/assets/wpuf/vendor/selectize/css\";i:12086;s:104:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/weforms/assets/wpuf/vendor/selectize/js/standalone\";i:153067;s:93:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/weforms/assets/wpuf/vendor/selectize/js\";i:153067;s:90:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/weforms/assets/wpuf/vendor/selectize\";i:165153;s:87:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/weforms/assets/wpuf/vendor/toastr\";i:37714;s:90:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/weforms/assets/wpuf/vendor/clipboard\";i:35726;s:88:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/weforms/assets/wpuf/vendor/tooltip\";i:31640;s:96:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/weforms/assets/wpuf/vendor/jquery.scrollTo\";i:8391;s:85:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/weforms/assets/wpuf/vendor/vuex\";i:33769;s:97:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/weforms/assets/wpuf/vendor/font-awesome/css\";i:31004;s:99:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/weforms/assets/wpuf/vendor/font-awesome/fonts\";i:1076849;s:93:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/weforms/assets/wpuf/vendor/font-awesome\";i:1107853;s:97:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/weforms/assets/wpuf/vendor/sweetalert2/dist\";i:161913;s:102:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/weforms/assets/wpuf/vendor/sweetalert2/src/utils\";i:13162;s:96:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/weforms/assets/wpuf/vendor/sweetalert2/src\";i:64741;s:92:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/weforms/assets/wpuf/vendor/sweetalert2\";i:227773;s:91:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/weforms/assets/wpuf/vendor/vue-router\";i:67920;s:80:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/weforms/assets/wpuf/vendor\";i:2043331;s:80:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/weforms/assets/wpuf/images\";i:2051;s:76:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/weforms/assets/wpuf/js\";i:269224;s:73:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/weforms/assets/wpuf\";i:2496702;s:81:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/weforms/assets/js-templates\";i:134368;s:88:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/weforms/assets/images/integrations\";i:122403;s:80:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/weforms/assets/images/help\";i:6037;s:92:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/weforms/assets/images/premium/features\";i:165004;s:96:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/weforms/assets/images/premium/integrations\";i:77470;s:83:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/weforms/assets/images/premium\";i:254783;s:89:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/weforms/assets/images/form-template\";i:153698;s:75:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/weforms/assets/images\";i:1539017;s:77:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/weforms/assets/js/utils\";i:3797;s:99:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/weforms/assets/js/vendor/tinymce/plugins/code\";i:721;s:97:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/weforms/assets/js/vendor/tinymce/plugins/hr\";i:322;s:94:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/weforms/assets/js/vendor/tinymce/plugins\";i:1043;s:86:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/weforms/assets/js/vendor/tinymce\";i:1043;s:78:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/weforms/assets/js/vendor\";i:98484;s:71:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/weforms/assets/js\";i:1209125;s:74:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/weforms/assets/modal\";i:16421;s:68:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/weforms/assets\";i:5495837;s:78:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/weforms/.idea/codeStyles\";i:1497;s:86:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/weforms/.idea/inspectionProfiles\";i:253;s:67:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/weforms/.idea\";i:5468;s:71:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/weforms/languages\";i:126419;s:86:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/weforms/includes/templates/dokan\";i:3010;s:80:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/weforms/includes/templates\";i:169383;s:82:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/weforms/includes/admin/views\";i:19697;s:76:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/weforms/includes/admin\";i:106855;s:74:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/weforms/includes/api\";i:135698;s:99:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/weforms/includes/integrations/sprout-invoices\";i:18288;s:102:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/weforms/includes/integrations/mailpoet/component\";i:4153;s:92:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/weforms/includes/integrations/mailpoet\";i:7635;s:87:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/weforms/includes/integrations/erp\";i:2938;s:89:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/weforms/includes/integrations/slack\";i:3297;s:83:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/weforms/includes/integrations\";i:36756;s:88:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/weforms/includes/library/reCaptcha\";i:16060;s:86:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/weforms/includes/library/appsero\";i:63479;s:78:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/weforms/includes/library\";i:129021;s:77:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/weforms/includes/compat\";i:2716;s:85:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/weforms/includes/email/gateways\";i:1277;s:85:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/weforms/includes/email/template\";i:10799;s:76:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/weforms/includes/email\";i:12076;s:77:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/weforms/includes/fields\";i:106767;s:79:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/weforms/includes/importer\";i:98778;s:70:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/weforms/includes\";i:1043140;s:61:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/weforms\";i:6721026;s:86:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup/admin/compressor\";i:45987;s:79:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup/admin/css\";i:16043;s:88:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup/admin/card/feature\";i:20172;s:80:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup/admin/card\";i:39577;s:82:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup/admin/orphan\";i:6004;s:86:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup/admin/cron/entry\";i:6312;s:80:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup/admin/cron\";i:9219;s:83:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup/admin/storage\";i:9870;s:88:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup/admin/image/remote\";i:15448;s:81:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup/admin/image\";i:30495;s:93:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup/admin/partials/archives\";i:6919;s:100:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup/admin/partials/archive-details\";i:12590;s:94:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup/admin/partials/transfers\";i:9232;s:91:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup/admin/partials/remote\";i:5820;s:90:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup/admin/partials/tools\";i:8386;s:101:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup/admin/partials/backup-now-modal\";i:917;s:93:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup/admin/partials/settings\";i:66409;s:84:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup/admin/partials\";i:177169;s:82:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup/admin/remote\";i:47584;s:78:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup/admin/js\";i:107814;s:75:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup/admin\";i:1082647;s:74:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup/cron\";i:7926;s:73:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup/cli\";i:53163;s:79:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup/languages\";i:0;s:85:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup/includes/config\";i:12540;s:78:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup/includes\";i:62145;s:97:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup/vendor/boldgrid/library/bin\";i:2185;s:113:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup/vendor/boldgrid/library/tests/Library/Theme\";i:4877;s:114:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup/vendor/boldgrid/library/tests/Library/Plugin\";i:19628;s:115:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup/vendor/boldgrid/library/tests/Library/Library\";i:19158;s:112:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup/vendor/boldgrid/library/tests/Library/Util\";i:1019;s:107:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup/vendor/boldgrid/library/tests/Library\";i:44682;s:104:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup/vendor/boldgrid/library/tests/Util\";i:1071;s:99:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup/vendor/boldgrid/library/tests\";i:49076;s:99:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup/vendor/boldgrid/library/build\";i:8907;s:103:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup/vendor/boldgrid/library/languages\";i:34936;s:108:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup/vendor/boldgrid/library/src/assets/css\";i:20520;s:110:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup/vendor/boldgrid/library/src/assets/fonts\";i:41828;s:107:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup/vendor/boldgrid/library/src/assets/js\";i:37272;s:104:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup/vendor/boldgrid/library/src/assets\";i:99620;s:111:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup/vendor/boldgrid/library/src/Library/Theme\";i:11537;s:108:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup/vendor/boldgrid/library/src/Library/Ui\";i:6193;s:110:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup/vendor/boldgrid/library/src/Library/Page\";i:7390;s:112:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup/vendor/boldgrid/library/src/Library/Plugin\";i:45909;s:119:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup/vendor/boldgrid/library/src/Library/Views/Connect\";i:16487;s:111:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup/vendor/boldgrid/library/src/Library/Views\";i:28153;s:110:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup/vendor/boldgrid/library/src/Library/Menu\";i:7506;s:119:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup/vendor/boldgrid/library/src/Library/Notifications\";i:6336;s:111:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup/vendor/boldgrid/library/src/Library/Usage\";i:6639;s:109:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup/vendor/boldgrid/library/src/Library/Key\";i:7575;s:110:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup/vendor/boldgrid/library/src/Library/Util\";i:1465;s:109:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup/vendor/boldgrid/library/src/Library/Api\";i:8189;s:115:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup/vendor/boldgrid/library/src/Library/Dashboard\";i:5644;s:112:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup/vendor/boldgrid/library/src/Library/Notice\";i:9892;s:105:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup/vendor/boldgrid/library/src/Library\";i:232092;s:115:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup/vendor/boldgrid/library/src/Util/Registration\";i:2747;s:102:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup/vendor/boldgrid/library/src/Util\";i:25737;s:97:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup/vendor/boldgrid/library/src\";i:361744;s:93:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup/vendor/boldgrid/library\";i:601459;s:85:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup/vendor/boldgrid\";i:601459;s:103:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup/vendor/ifsnop/mysqldump-php/tests\";i:36364;s:108:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup/vendor/ifsnop/mysqldump-php/unit-tests\";i:1461;s:118:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup/vendor/ifsnop/mysqldump-php/src/Ifsnop/Mysqldump\";i:71148;s:108:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup/vendor/ifsnop/mysqldump-php/src/Ifsnop\";i:71148;s:101:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup/vendor/ifsnop/mysqldump-php/src\";i:71148;s:97:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup/vendor/ifsnop/mysqldump-php\";i:173644;s:83:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup/vendor/ifsnop\";i:173644;s:111:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup/vendor/phpseclib/phpseclib/phpseclib/Math\";i:126017;s:115:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup/vendor/phpseclib/phpseclib/phpseclib/Net/SFTP\";i:21793;s:110:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup/vendor/phpseclib/phpseclib/phpseclib/Net\";i:357443;s:116:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup/vendor/phpseclib/phpseclib/phpseclib/File/ASN1\";i:870;s:111:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup/vendor/phpseclib/phpseclib/phpseclib/File\";i:264608;s:112:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup/vendor/phpseclib/phpseclib/phpseclib/Crypt\";i:483270;s:123:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup/vendor/phpseclib/phpseclib/phpseclib/System/SSH/Agent\";i:6238;s:117:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup/vendor/phpseclib/phpseclib/phpseclib/System/SSH\";i:16474;s:113:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup/vendor/phpseclib/phpseclib/phpseclib/System\";i:16474;s:106:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup/vendor/phpseclib/phpseclib/phpseclib\";i:1248348;s:96:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup/vendor/phpseclib/phpseclib\";i:1255747;s:86:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup/vendor/phpseclib\";i:1255747;s:90:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup/vendor/chland/tdcron\";i:29030;s:83:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup/vendor/chland\";i:29030;s:85:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup/vendor/composer\";i:36928;s:76:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup/vendor\";i:2096986;s:69:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/boldgrid-backup\";i:8509873;s:70:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/akismet/_inc/img\";i:5956;s:66:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/akismet/_inc\";i:32922;s:67:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/akismet/views\";i:35230;s:61:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins/akismet\";i:259241;s:53:\"/home/ndd6915/Naplesirrigation.com/wp-content/plugins\";i:62132088;s:63:\"/home/ndd6915/Naplesirrigation.com/wp-content/uploads/kirki-css\";i:4285;s:61:\"/home/ndd6915/Naplesirrigation.com/wp-content/uploads/2022/04\";i:115213577;s:61:\"/home/ndd6915/Naplesirrigation.com/wp-content/uploads/2022/03\";i:51311854;s:61:\"/home/ndd6915/Naplesirrigation.com/wp-content/uploads/2022/06\";i:0;s:61:\"/home/ndd6915/Naplesirrigation.com/wp-content/uploads/2022/02\";i:189764411;s:61:\"/home/ndd6915/Naplesirrigation.com/wp-content/uploads/2022/05\";i:0;s:61:\"/home/ndd6915/Naplesirrigation.com/wp-content/uploads/2022/07\";i:0;s:58:\"/home/ndd6915/Naplesirrigation.com/wp-content/uploads/2022\";i:356289842;s:53:\"/home/ndd6915/Naplesirrigation.com/wp-content/uploads\";i:356294127;s:58:\"/home/ndd6915/Naplesirrigation.com/wp-content/fonts/roboto\";i:58800;s:61:\"/home/ndd6915/Naplesirrigation.com/wp-content/fonts/open-sans\";i:68448;s:67:\"/home/ndd6915/Naplesirrigation.com/wp-content/fonts/julius-sans-one\";i:16112;s:51:\"/home/ndd6915/Naplesirrigation.com/wp-content/fonts\";i:143360;s:53:\"/home/ndd6915/Naplesirrigation.com/wp-content/upgrade\";i:0;s:45:\"/home/ndd6915/Naplesirrigation.com/wp-content\";i:469943340;s:61:\"/home/ndd6915/Naplesirrigation.com/wp-includes/block-supports\";i:64464;s:71:\"/home/ndd6915/Naplesirrigation.com/wp-includes/css/dist/reusable-blocks\";i:5178;s:65:\"/home/ndd6915/Naplesirrigation.com/wp-includes/css/dist/edit-site\";i:211045;s:63:\"/home/ndd6915/Naplesirrigation.com/wp-includes/css/dist/widgets\";i:27172;s:62:\"/home/ndd6915/Naplesirrigation.com/wp-includes/css/dist/editor\";i:91556;s:71:\"/home/ndd6915/Naplesirrigation.com/wp-includes/css/dist/block-directory\";i:17844;s:65:\"/home/ndd6915/Naplesirrigation.com/wp-includes/css/dist/edit-post\";i:210007;s:68:\"/home/ndd6915/Naplesirrigation.com/wp-includes/css/dist/block-editor\";i:530671;s:73:\"/home/ndd6915/Naplesirrigation.com/wp-includes/css/dist/customize-widgets\";i:27716;s:68:\"/home/ndd6915/Naplesirrigation.com/wp-includes/css/dist/edit-widgets\";i:108787;s:59:\"/home/ndd6915/Naplesirrigation.com/wp-includes/css/dist/nux\";i:14748;s:66:\"/home/ndd6915/Naplesirrigation.com/wp-includes/css/dist/components\";i:462356;s:70:\"/home/ndd6915/Naplesirrigation.com/wp-includes/css/dist/format-library\";i:10926;s:76:\"/home/ndd6915/Naplesirrigation.com/wp-includes/css/dist/list-reusable-blocks\";i:21928;s:69:\"/home/ndd6915/Naplesirrigation.com/wp-includes/css/dist/block-library\";i:695916;s:55:\"/home/ndd6915/Naplesirrigation.com/wp-includes/css/dist\";i:2435850;s:50:\"/home/ndd6915/Naplesirrigation.com/wp-includes/css\";i:3082373;s:54:\"/home/ndd6915/Naplesirrigation.com/wp-includes/widgets\";i:157313;s:60:\"/home/ndd6915/Naplesirrigation.com/wp-includes/random_compat\";i:43330;s:65:\"/home/ndd6915/Naplesirrigation.com/wp-includes/sitemaps/providers\";i:16471;s:55:\"/home/ndd6915/Naplesirrigation.com/wp-includes/sitemaps\";i:46403;s:53:\"/home/ndd6915/Naplesirrigation.com/wp-includes/assets\";i:11605;s:50:\"/home/ndd6915/Naplesirrigation.com/wp-includes/IXR\";i:33914;s:64:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/post-terms\";i:4087;s:63:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/shortcode\";i:8171;s:70:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/term-description\";i:728;s:66:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/comment-date\";i:1023;s:60:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/button\";i:21550;s:74:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/post-navigation-link\";i:920;s:65:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/social-link\";i:5172;s:64:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/categories\";i:7362;s:67:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/template-part\";i:8133;s:66:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/post-excerpt\";i:7543;s:65:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/query-title\";i:1027;s:72:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/navigation-submenu\";i:8840;s:59:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/group\";i:15315;s:59:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/video\";i:22069;s:64:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/navigation\";i:133286;s:63:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/separator\";i:14141;s:78:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/comments-pagination-next\";i:870;s:60:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/search\";i:17006;s:63:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/tag-cloud\";i:5886;s:58:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/code\";i:7942;s:63:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/pullquote\";i:18862;s:73:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/comments-pagination\";i:14298;s:73:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/post-featured-image\";i:23813;s:59:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/quote\";i:11894;s:59:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/table\";i:30710;s:63:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/site-logo\";i:20569;s:66:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/post-content\";i:439;s:66:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/preformatted\";i:4338;s:60:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/avatar\";i:7577;s:81:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/comments-pagination-numbers\";i:4253;s:71:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/comment-edit-link\";i:1059;s:58:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/html\";i:6703;s:64:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/post-title\";i:4622;s:60:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/column\";i:880;s:60:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/spacer\";i:10019;s:62:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/loginout\";i:510;s:62:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/archives\";i:6812;s:66:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/site-tagline\";i:4317;s:59:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/image\";i:29712;s:59:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/embed\";i:19754;s:69:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/latest-comments\";i:7625;s:61:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/missing\";i:564;s:59:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/verse\";i:4425;s:61:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/buttons\";i:15823;s:64:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/site-title\";i:4627;s:70:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/query-no-results\";i:483;s:79:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/query-pagination-previous\";i:873;s:73:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/comments-query-loop\";i:3955;s:63:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/post-date\";i:950;s:63:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/home-link\";i:714;s:68:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/comments-title\";i:4520;s:67:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/post-template\";i:12873;s:59:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/query\";i:8879;s:59:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/block\";i:4929;s:65:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/post-author\";i:5670;s:58:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/file\";i:15738;s:59:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/audio\";i:12016;s:73:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/comment-author-name\";i:1096;s:75:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/post-author-biography\";i:881;s:67:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/legacy-widget\";i:501;s:62:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/calendar\";i:5144;s:61:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/heading\";i:4933;s:61:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/gallery\";i:84238;s:78:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/query-pagination-numbers\";i:4670;s:57:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/rss\";i:11940;s:75:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/query-pagination-next\";i:861;s:63:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/page-list\";i:12661;s:69:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/navigation-link\";i:17439;s:66:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/widget-group\";i:319;s:70:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/query-pagination\";i:13862;s:66:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/latest-posts\";i:16573;s:72:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/comment-reply-link\";i:901;s:61:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/pattern\";i:324;s:70:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/comment-template\";i:4411;s:62:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/freeform\";i:42245;s:67:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/post-comments\";i:17063;s:63:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/read-more\";i:5292;s:63:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/paragraph\";i:10449;s:59:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/cover\";i:82890;s:58:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/more\";i:6746;s:72:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/post-comments-form\";i:14950;s:62:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/nextpage\";i:6021;s:58:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/list\";i:4797;s:66:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/social-links\";i:56664;s:61:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/columns\";i:14308;s:64:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/media-text\";i:19937;s:69:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/comment-content\";i:4213;s:82:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/comments-pagination-previous\";i:882;s:66:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks/text-columns\";i:8990;s:53:\"/home/ndd6915/Naplesirrigation.com/wp-includes/blocks\";i:1367232;s:52:\"/home/ndd6915/Naplesirrigation.com/wp-includes/fonts\";i:289826;s:56:\"/home/ndd6915/Naplesirrigation.com/wp-includes/PHPMailer\";i:226303;s:64:\"/home/ndd6915/Naplesirrigation.com/wp-includes/sodium_compat/lib\";i:84845;s:85:\"/home/ndd6915/Naplesirrigation.com/wp-includes/sodium_compat/src/Core32/Curve25519/Ge\";i:8177;s:82:\"/home/ndd6915/Naplesirrigation.com/wp-includes/sodium_compat/src/Core32/Curve25519\";i:122690;s:84:\"/home/ndd6915/Naplesirrigation.com/wp-includes/sodium_compat/src/Core32/SecretStream\";i:3656;s:80:\"/home/ndd6915/Naplesirrigation.com/wp-includes/sodium_compat/src/Core32/ChaCha20\";i:6407;s:80:\"/home/ndd6915/Naplesirrigation.com/wp-includes/sodium_compat/src/Core32/Poly1305\";i:15965;s:71:\"/home/ndd6915/Naplesirrigation.com/wp-includes/sodium_compat/src/Core32\";i:436924;s:83:\"/home/ndd6915/Naplesirrigation.com/wp-includes/sodium_compat/src/Core/Curve25519/Ge\";i:7881;s:80:\"/home/ndd6915/Naplesirrigation.com/wp-includes/sodium_compat/src/Core/Curve25519\";i:121645;s:82:\"/home/ndd6915/Naplesirrigation.com/wp-includes/sodium_compat/src/Core/SecretStream\";i:3624;s:78:\"/home/ndd6915/Naplesirrigation.com/wp-includes/sodium_compat/src/Core/ChaCha20\";i:5264;s:76:\"/home/ndd6915/Naplesirrigation.com/wp-includes/sodium_compat/src/Core/Base64\";i:22135;s:78:\"/home/ndd6915/Naplesirrigation.com/wp-includes/sodium_compat/src/Core/Poly1305\";i:12912;s:69:\"/home/ndd6915/Naplesirrigation.com/wp-includes/sodium_compat/src/Core\";i:452672;s:70:\"/home/ndd6915/Naplesirrigation.com/wp-includes/sodium_compat/src/PHP52\";i:4116;s:64:\"/home/ndd6915/Naplesirrigation.com/wp-includes/sodium_compat/src\";i:1204643;s:90:\"/home/ndd6915/Naplesirrigation.com/wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge\";i:602;s:87:\"/home/ndd6915/Naplesirrigation.com/wp-includes/sodium_compat/namespaced/Core/Curve25519\";i:820;s:85:\"/home/ndd6915/Naplesirrigation.com/wp-includes/sodium_compat/namespaced/Core/ChaCha20\";i:224;s:85:\"/home/ndd6915/Naplesirrigation.com/wp-includes/sodium_compat/namespaced/Core/Poly1305\";i:112;s:76:\"/home/ndd6915/Naplesirrigation.com/wp-includes/sodium_compat/namespaced/Core\";i:2444;s:71:\"/home/ndd6915/Naplesirrigation.com/wp-includes/sodium_compat/namespaced\";i:2698;s:60:\"/home/ndd6915/Naplesirrigation.com/wp-includes/sodium_compat\";i:1298275;s:57:\"/home/ndd6915/Naplesirrigation.com/wp-includes/php-compat\";i:1203;s:56:\"/home/ndd6915/Naplesirrigation.com/wp-includes/customize\";i:173478;s:61:\"/home/ndd6915/Naplesirrigation.com/wp-includes/block-patterns\";i:8843;s:60:\"/home/ndd6915/Naplesirrigation.com/wp-includes/SimplePie/Net\";i:7493;s:68:\"/home/ndd6915/Naplesirrigation.com/wp-includes/SimplePie/Decode/HTML\";i:17241;s:63:\"/home/ndd6915/Naplesirrigation.com/wp-includes/SimplePie/Decode\";i:17241;s:62:\"/home/ndd6915/Naplesirrigation.com/wp-includes/SimplePie/Cache\";i:39607;s:62:\"/home/ndd6915/Naplesirrigation.com/wp-includes/SimplePie/Parse\";i:20551;s:61:\"/home/ndd6915/Naplesirrigation.com/wp-includes/SimplePie/HTTP\";i:11487;s:69:\"/home/ndd6915/Naplesirrigation.com/wp-includes/SimplePie/Content/Type\";i:8015;s:64:\"/home/ndd6915/Naplesirrigation.com/wp-includes/SimplePie/Content\";i:8015;s:72:\"/home/ndd6915/Naplesirrigation.com/wp-includes/SimplePie/XML/Declaration\";i:7098;s:60:\"/home/ndd6915/Naplesirrigation.com/wp-includes/SimplePie/XML\";i:7098;s:56:\"/home/ndd6915/Naplesirrigation.com/wp-includes/SimplePie\";i:458625;s:51:\"/home/ndd6915/Naplesirrigation.com/wp-includes/pomo\";i:53510;s:59:\"/home/ndd6915/Naplesirrigation.com/wp-includes/certificates\";i:233231;s:59:\"/home/ndd6915/Naplesirrigation.com/wp-includes/images/media\";i:2419;s:57:\"/home/ndd6915/Naplesirrigation.com/wp-includes/images/wlw\";i:4413;s:61:\"/home/ndd6915/Naplesirrigation.com/wp-includes/images/crystal\";i:15541;s:61:\"/home/ndd6915/Naplesirrigation.com/wp-includes/images/smilies\";i:10082;s:53:\"/home/ndd6915/Naplesirrigation.com/wp-includes/images\";i:103747;s:58:\"/home/ndd6915/Naplesirrigation.com/wp-includes/js/plupload\";i:490126;s:55:\"/home/ndd6915/Naplesirrigation.com/wp-includes/js/jcrop\";i:24976;s:58:\"/home/ndd6915/Naplesirrigation.com/wp-includes/js/thickbox\";i:31185;s:63:\"/home/ndd6915/Naplesirrigation.com/wp-includes/js/imgareaselect\";i:49024;s:72:\"/home/ndd6915/Naplesirrigation.com/wp-includes/js/mediaelement/renderers\";i:18880;s:62:\"/home/ndd6915/Naplesirrigation.com/wp-includes/js/mediaelement\";i:719403;s:66:\"/home/ndd6915/Naplesirrigation.com/wp-includes/js/dist/development\";i:178306;s:61:\"/home/ndd6915/Naplesirrigation.com/wp-includes/js/dist/vendor\";i:2361962;s:54:\"/home/ndd6915/Naplesirrigation.com/wp-includes/js/dist\";i:14922213;s:54:\"/home/ndd6915/Naplesirrigation.com/wp-includes/js/crop\";i:20004;s:59:\"/home/ndd6915/Naplesirrigation.com/wp-includes/js/swfupload\";i:8715;s:59:\"/home/ndd6915/Naplesirrigation.com/wp-includes/js/jquery/ui\";i:807133;s:56:\"/home/ndd6915/Naplesirrigation.com/wp-includes/js/jquery\";i:1321204;s:60:\"/home/ndd6915/Naplesirrigation.com/wp-includes/js/codemirror\";i:1287141;s:71:\"/home/ndd6915/Naplesirrigation.com/wp-includes/js/tinymce/themes/modern\";i:446221;s:71:\"/home/ndd6915/Naplesirrigation.com/wp-includes/js/tinymce/themes/inlite\";i:452642;s:64:\"/home/ndd6915/Naplesirrigation.com/wp-includes/js/tinymce/themes\";i:898863;s:71:\"/home/ndd6915/Naplesirrigation.com/wp-includes/js/tinymce/plugins/media\";i:57914;s:73:\"/home/ndd6915/Naplesirrigation.com/wp-includes/js/tinymce/plugins/charmap\";i:31811;s:77:\"/home/ndd6915/Naplesirrigation.com/wp-includes/js/tinymce/plugins/wpeditimage\";i:37713;s:75:\"/home/ndd6915/Naplesirrigation.com/wp-includes/js/tinymce/plugins/wpgallery\";i:4806;s:75:\"/home/ndd6915/Naplesirrigation.com/wp-includes/js/tinymce/plugins/wpdialogs\";i:3761;s:78:\"/home/ndd6915/Naplesirrigation.com/wp-includes/js/tinymce/plugins/compat3x/css\";i:8179;s:74:\"/home/ndd6915/Naplesirrigation.com/wp-includes/js/tinymce/plugins/compat3x\";i:21758;s:75:\"/home/ndd6915/Naplesirrigation.com/wp-includes/js/tinymce/plugins/textcolor\";i:16237;s:71:\"/home/ndd6915/Naplesirrigation.com/wp-includes/js/tinymce/plugins/image\";i:55874;s:71:\"/home/ndd6915/Naplesirrigation.com/wp-includes/js/tinymce/plugins/paste\";i:113193;s:77:\"/home/ndd6915/Naplesirrigation.com/wp-includes/js/tinymce/plugins/colorpicker\";i:4910;s:72:\"/home/ndd6915/Naplesirrigation.com/wp-includes/js/tinymce/plugins/wplink\";i:26476;s:68:\"/home/ndd6915/Naplesirrigation.com/wp-includes/js/tinymce/plugins/hr\";i:1347;s:80:\"/home/ndd6915/Naplesirrigation.com/wp-includes/js/tinymce/plugins/directionality\";i:2749;s:74:\"/home/ndd6915/Naplesirrigation.com/wp-includes/js/tinymce/plugins/tabfocus\";i:5336;s:72:\"/home/ndd6915/Naplesirrigation.com/wp-includes/js/tinymce/plugins/wpview\";i:8994;s:71:\"/home/ndd6915/Naplesirrigation.com/wp-includes/js/tinymce/plugins/lists\";i:97383;s:79:\"/home/ndd6915/Naplesirrigation.com/wp-includes/js/tinymce/plugins/wptextpattern\";i:11923;s:75:\"/home/ndd6915/Naplesirrigation.com/wp-includes/js/tinymce/plugins/wordpress\";i:50609;s:78:\"/home/ndd6915/Naplesirrigation.com/wp-includes/js/tinymce/plugins/wpautoresize\";i:8332;s:76:\"/home/ndd6915/Naplesirrigation.com/wp-includes/js/tinymce/plugins/fullscreen\";i:7779;s:70:\"/home/ndd6915/Naplesirrigation.com/wp-includes/js/tinymce/plugins/link\";i:32949;s:73:\"/home/ndd6915/Naplesirrigation.com/wp-includes/js/tinymce/plugins/wpemoji\";i:5099;s:65:\"/home/ndd6915/Naplesirrigation.com/wp-includes/js/tinymce/plugins\";i:606953;s:63:\"/home/ndd6915/Naplesirrigation.com/wp-includes/js/tinymce/utils\";i:18822;s:77:\"/home/ndd6915/Naplesirrigation.com/wp-includes/js/tinymce/skins/lightgray/img\";i:2856;s:79:\"/home/ndd6915/Naplesirrigation.com/wp-includes/js/tinymce/skins/lightgray/fonts\";i:155760;s:73:\"/home/ndd6915/Naplesirrigation.com/wp-includes/js/tinymce/skins/lightgray\";i:210254;s:80:\"/home/ndd6915/Naplesirrigation.com/wp-includes/js/tinymce/skins/wordpress/images\";i:14207;s:73:\"/home/ndd6915/Naplesirrigation.com/wp-includes/js/tinymce/skins/wordpress\";i:22831;s:63:\"/home/ndd6915/Naplesirrigation.com/wp-includes/js/tinymce/skins\";i:233085;s:63:\"/home/ndd6915/Naplesirrigation.com/wp-includes/js/tinymce/langs\";i:15529;s:57:\"/home/ndd6915/Naplesirrigation.com/wp-includes/js/tinymce\";i:2853635;s:49:\"/home/ndd6915/Naplesirrigation.com/wp-includes/js\";i:24134419;s:59:\"/home/ndd6915/Naplesirrigation.com/wp-includes/theme-compat\";i:15442;s:50:\"/home/ndd6915/Naplesirrigation.com/wp-includes/ID3\";i:1143654;s:63:\"/home/ndd6915/Naplesirrigation.com/wp-includes/Requests/Utility\";i:3310;s:62:\"/home/ndd6915/Naplesirrigation.com/wp-includes/Requests/Cookie\";i:3865;s:64:\"/home/ndd6915/Naplesirrigation.com/wp-includes/Requests/Response\";i:2135;s:65:\"/home/ndd6915/Naplesirrigation.com/wp-includes/Requests/Transport\";i:30090;s:60:\"/home/ndd6915/Naplesirrigation.com/wp-includes/Requests/Auth\";i:1939;s:70:\"/home/ndd6915/Naplesirrigation.com/wp-includes/Requests/Exception/HTTP\";i:14365;s:75:\"/home/ndd6915/Naplesirrigation.com/wp-includes/Requests/Exception/Transport\";i:919;s:65:\"/home/ndd6915/Naplesirrigation.com/wp-includes/Requests/Exception\";i:16778;s:61:\"/home/ndd6915/Naplesirrigation.com/wp-includes/Requests/Proxy\";i:3488;s:55:\"/home/ndd6915/Naplesirrigation.com/wp-includes/Requests\";i:139225;s:62:\"/home/ndd6915/Naplesirrigation.com/wp-includes/rest-api/search\";i:15180;s:62:\"/home/ndd6915/Naplesirrigation.com/wp-includes/rest-api/fields\";i:22314;s:65:\"/home/ndd6915/Naplesirrigation.com/wp-includes/rest-api/endpoints\";i:719254;s:55:\"/home/ndd6915/Naplesirrigation.com/wp-includes/rest-api\";i:842510;s:65:\"/home/ndd6915/Naplesirrigation.com/wp-includes/Text/Diff/Renderer\";i:5535;s:63:\"/home/ndd6915/Naplesirrigation.com/wp-includes/Text/Diff/Engine\";i:31662;s:56:\"/home/ndd6915/Naplesirrigation.com/wp-includes/Text/Diff\";i:44010;s:51:\"/home/ndd6915/Naplesirrigation.com/wp-includes/Text\";i:56929;s:46:\"/home/ndd6915/Naplesirrigation.com/wp-includes\";i:40578294;}','yes'),(155,'boldgrid_api_key','4762ce765a2d3112d71e13670e9b83d6','yes'),(179,'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:360018268;s:4:\"save\";b:1;s:10:\"total_size\";i:542064836;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:35:\"/home/ndd6915/naplesirrigation.com/\";s:9:\"backup_id\";s:8:\"23761a18\";s:7:\"siteurl\";s:27:\"http://naplesirrigation.com\";s:9:\"timestamp\";i:1737873308;s:17:\"gateway_interface\";s:7:\"CGI/1.1\";s:9:\"http_host\";s:20:\"naplesirrigation.com\";s:13:\"php_sapi_name\";s:8:\"fpm-fcgi\";s:9:\"php_uname\";s:122:\"Linux ecngx362.inmotionhosting.com 5.14.0-427.35.1.el9_4.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Sep 12 11:21:43 EDT 2024 x86_64\";s:11:\"php_version\";s:6:\"7.4.33\";s:11:\"server_addr\";s:14:\"209.182.212.43\";s:11:\"server_name\";s:20:\"naplesirrigation.com\";s:15:\"server_protocol\";s:8:\"HTTP/1.0\";s:15:\"server_software\";s:6:\"Apache\";s:3:\"uid\";i:1382;s:8:\"username\";s:7:\"ndd6915\";s:10:\"encrypt_db\";b:0;s:7:\"trigger\";s:11:\"Auto update\";s:8:\"filepath\";s:95:\"/home/ndd6915/boldgrid_backup/boldgrid-backup-naplesirrigation.com-23761a18-20250126-063509.zip\";s:11:\"lastmodunix\";i:1737873325;s:8:\"duration\";s:5:\"17.07\";s:11:\"db_duration\";s:4:\"0.07\";s:11:\"db_filename\";s:35:\"ndd6915_m9tymdz.20250126-063508.sql\";s:12:\"mail_success\";b:1;}','yes'),(124270,'bglib_rating_prompt','a:1:{i:0;a:4:{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:47:\"I already did / Permanently dismiss this notice\";s:5:\"slide\";s:11:\"already_did\";}}}s:6:\"thanks\";a:1:{s:4:\"text\";s:389:\"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: <a href=\"https://wordpress.org/support/plugin/boldgrid-backup/reviews/\" target=\"_blank\">https://wordpress.org/support/plugin/boldgrid-backup/reviews/</a>\";}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:1657644030;}}','yes'),(6849,'_transient_health-check-site-status-result','{\"good\":\"20\",\"recommended\":\"4\",\"critical\":\"1\"}','yes'),(7855,'auto_update_plugins','a:0:{}','no'),(7976,'auto_update_themes','a:0:{}','yes'),(196,'boldgrid_asset','a:3:{s:6:\"plugin\";a:0:{}s:5:\"theme\";a:0:{}s:5:\"image\";a:17:{i:0;a:16:{s:8:\"asset_id\";s:6:\"789476\";s:9:\"coin_cost\";N;s:4:\"name\";s:102:\"/home/ndd6915/Naplesirrigation.com/wp-content/uploads/2022/02/coiWR0gT8Cw-1-imhwpb-91r89phud3kxfaw.jpg\";s:13:\"purchase_date\";s:0:\"\";s:13:\"download_date\";s:19:\"2022-02-23 19:51:00\";s:11:\"attribution\";s:2:\"{}\";s:19:\"attribution_license\";N;s:13:\"attachment_id\";i:111;s:5:\"width\";s:3:\"234\";s:6:\"height\";s:3:\"234\";s:17:\"image_provider_id\";N;s:16:\"id_from_provider\";N;s:11:\"orientation\";N;s:10:\"image_size\";N;s:19:\"transaction_item_id\";N;s:14:\"transaction_id\";N;}i:1;a:17:{s:8:\"asset_id\";s:6:\"851989\";s:9:\"coin_cost\";s:1:\"1\";s:4:\"name\";s:100:\"/home/ndd6915/Naplesirrigation.com/wp-content/uploads/2022/02/f887dd50-ca4a1125-goodluz110900317.jpg\";s:13:\"purchase_date\";s:0:\"\";s:13:\"download_date\";s:19:\"2022-02-23 19:51:00\";s:11:\"attribution\";N;s:19:\"attribution_license\";N;s:13:\"attachment_id\";i:112;s:5:\"width\";s:3:\"450\";s:6:\"height\";s:3:\"300\";s:17:\"image_provider_id\";s:1:\"5\";s:16:\"id_from_provider\";s:8:\"10626255\";s:11:\"orientation\";N;s:10:\"image_size\";s:4:\"blog\";s:19:\"transaction_item_id\";N;s:14:\"transaction_id\";N;s:15:\"checked_in_cart\";b:0;}i:2;a:17:{s:8:\"asset_id\";s:6:\"852071\";s:9:\"coin_cost\";s:1:\"1\";s:4:\"name\";s:99:\"/home/ndd6915/Naplesirrigation.com/wp-content/uploads/2022/02/495e2588-23e4182d-fizkes151200039.jpg\";s:13:\"purchase_date\";s:0:\"\";s:13:\"download_date\";s:19:\"2022-02-23 19:51:00\";s:11:\"attribution\";N;s:19:\"attribution_license\";N;s:13:\"attachment_id\";i:113;s:5:\"width\";s:3:\"450\";s:6:\"height\";s:3:\"300\";s:17:\"image_provider_id\";s:1:\"5\";s:16:\"id_from_provider\";s:8:\"49643337\";s:11:\"orientation\";N;s:10:\"image_size\";s:4:\"blog\";s:19:\"transaction_item_id\";N;s:14:\"transaction_id\";N;s:15:\"checked_in_cart\";b:0;}i:3;a:17:{s:8:\"asset_id\";s:6:\"851994\";s:9:\"coin_cost\";s:1:\"1\";s:4:\"name\";s:99:\"/home/ndd6915/Naplesirrigation.com/wp-content/uploads/2022/02/917f105d-0e9345b2-fizkes150800140.jpg\";s:13:\"purchase_date\";s:0:\"\";s:13:\"download_date\";s:19:\"2022-02-23 19:51:00\";s:11:\"attribution\";N;s:19:\"attribution_license\";N;s:13:\"attachment_id\";i:114;s:5:\"width\";s:3:\"450\";s:6:\"height\";s:3:\"300\";s:17:\"image_provider_id\";s:1:\"5\";s:16:\"id_from_provider\";s:8:\"44416159\";s:11:\"orientation\";N;s:10:\"image_size\";s:4:\"blog\";s:19:\"transaction_item_id\";N;s:14:\"transaction_id\";N;s:15:\"checked_in_cart\";b:0;}i:4;a:16:{s:8:\"asset_id\";s:6:\"780386\";s:9:\"coin_cost\";N;s:4:\"name\";s:155:\"/home/ndd6915/Naplesirrigation.com/wp-content/uploads/2022/02/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tLy1yV2p5ZE5oQVR3LzYwMHg0NTA_3D-imhwpb-qi6hj44g334fjqc.jpg\";s:13:\"purchase_date\";s:0:\"\";s:13:\"download_date\";s:19:\"2022-02-23 19:51:00\";s:11:\"attribution\";s:159:\"{\"license\":\"10\",\"author_username\":\"Alex wong\",\"author_url\":\"http:\\/\\/unsplash.com\\/@killerfvith\",\"image_homepage\":\"http:\\/\\/unsplash.com\\/photos\\/-rWjydNhATw\"}\";s:19:\"attribution_license\";N;s:13:\"attachment_id\";i:115;s:5:\"width\";s:3:\"234\";s:6:\"height\";s:3:\"234\";s:17:\"image_provider_id\";N;s:16:\"id_from_provider\";N;s:11:\"orientation\";N;s:10:\"image_size\";N;s:19:\"transaction_item_id\";N;s:14:\"transaction_id\";N;}i:5;a:16:{s:8:\"asset_id\";s:6:\"780387\";s:9:\"coin_cost\";N;s:4:\"name\";s:155:\"/home/ndd6915/Naplesirrigation.com/wp-content/uploads/2022/02/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL19QZFpkVzdmaURjLzYwMHg0NTA_3D-imhwpb-24tawnme8snkr6i.jpg\";s:13:\"purchase_date\";s:0:\"\";s:13:\"download_date\";s:19:\"2022-02-23 19:51:00\";s:11:\"attribution\";s:158:\"{\"license\":\"10\",\"author_username\":\"Scott Webb\",\"author_url\":\"http:\\/\\/unsplash.com\\/@scottwebb\",\"image_homepage\":\"http:\\/\\/unsplash.com\\/photos\\/_PdZdW7fiDc\"}\";s:19:\"attribution_license\";N;s:13:\"attachment_id\";i:116;s:5:\"width\";s:3:\"234\";s:6:\"height\";s:3:\"234\";s:17:\"image_provider_id\";N;s:16:\"id_from_provider\";N;s:11:\"orientation\";N;s:10:\"image_size\";N;s:19:\"transaction_item_id\";N;s:14:\"transaction_id\";N;}i:6;a:16:{s:8:\"asset_id\";s:6:\"780388\";s:9:\"coin_cost\";N;s:4:\"name\";s:155:\"/home/ndd6915/Naplesirrigation.com/wp-content/uploads/2022/02/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL3ZHUTQ5bDlJNEVFLzYwMHg0NTA_3D-imhwpb-ceho1ljgk9lzazx.jpg\";s:13:\"purchase_date\";s:0:\"\";s:13:\"download_date\";s:19:\"2022-02-23 19:51:00\";s:11:\"attribution\";s:160:\"{\"license\":\"10\",\"author_username\":\"Maja Petric\",\"author_url\":\"http:\\/\\/unsplash.com\\/@majapetric\",\"image_homepage\":\"http:\\/\\/unsplash.com\\/photos\\/vGQ49l9I4EE\"}\";s:19:\"attribution_license\";N;s:13:\"attachment_id\";i:117;s:5:\"width\";s:3:\"234\";s:6:\"height\";s:3:\"234\";s:17:\"image_provider_id\";N;s:16:\"id_from_provider\";N;s:11:\"orientation\";N;s:10:\"image_size\";N;s:19:\"transaction_item_id\";N;s:14:\"transaction_id\";N;}i:7;a:16:{s:8:\"asset_id\";s:6:\"780395\";s:9:\"coin_cost\";N;s:4:\"name\";s:155:\"/home/ndd6915/Naplesirrigation.com/wp-content/uploads/2022/02/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL052VjgtcUZVVjRJLzYwMHgzMDA_3D-imhwpb-by6i1wxava2jjv6.jpg\";s:13:\"purchase_date\";s:0:\"\";s:13:\"download_date\";s:19:\"2022-02-23 19:51:00\";s:11:\"attribution\";s:164:\"{\"license\":\"10\",\"author_username\":\"Samuel Zeller\",\"author_url\":\"http:\\/\\/unsplash.com\\/@samuelzeller\",\"image_homepage\":\"http:\\/\\/unsplash.com\\/photos\\/NvV8-qFUV4I\"}\";s:19:\"attribution_license\";N;s:13:\"attachment_id\";i:118;s:5:\"width\";s:3:\"234\";s:6:\"height\";s:3:\"234\";s:17:\"image_provider_id\";N;s:16:\"id_from_provider\";N;s:11:\"orientation\";N;s:10:\"image_size\";N;s:19:\"transaction_item_id\";N;s:14:\"transaction_id\";N;}i:8;a:16:{s:8:\"asset_id\";s:6:\"695398\";s:9:\"coin_cost\";N;s:4:\"name\";s:104:\"/home/ndd6915/Naplesirrigation.com/wp-content/uploads/2022/02/tmp_9HI8UJMSdZA-imhwpb-16lt57g6yolmmw5.jpg\";s:13:\"purchase_date\";s:0:\"\";s:13:\"download_date\";s:19:\"2022-02-23 19:51:01\";s:11:\"attribution\";s:2:\"{}\";s:19:\"attribution_license\";N;s:13:\"attachment_id\";i:119;s:5:\"width\";s:3:\"234\";s:6:\"height\";s:3:\"234\";s:17:\"image_provider_id\";N;s:16:\"id_from_provider\";N;s:11:\"orientation\";N;s:10:\"image_size\";N;s:19:\"transaction_item_id\";N;s:14:\"transaction_id\";N;}i:9;a:16:{s:8:\"asset_id\";s:6:\"695399\";s:9:\"coin_cost\";N;s:4:\"name\";s:104:\"/home/ndd6915/Naplesirrigation.com/wp-content/uploads/2022/02/tmp_b2-fBVrfx0o-imhwpb-zba1rzvazi2u1sy.jpg\";s:13:\"purchase_date\";s:0:\"\";s:13:\"download_date\";s:19:\"2022-02-23 19:51:01\";s:11:\"attribution\";s:2:\"{}\";s:19:\"attribution_license\";N;s:13:\"attachment_id\";i:120;s:5:\"width\";s:3:\"234\";s:6:\"height\";s:3:\"234\";s:17:\"image_provider_id\";N;s:16:\"id_from_provider\";N;s:11:\"orientation\";N;s:10:\"image_size\";N;s:19:\"transaction_item_id\";N;s:14:\"transaction_id\";N;}i:10;a:16:{s:8:\"asset_id\";s:6:\"695400\";s:9:\"coin_cost\";N;s:4:\"name\";s:103:\"/home/ndd6915/Naplesirrigation.com/wp-content/uploads/2022/02/tmp_Xv7k95vOFA-imhwpb-5blo5ds381thf3b.jpg\";s:13:\"purchase_date\";s:0:\"\";s:13:\"download_date\";s:19:\"2022-02-23 19:51:01\";s:11:\"attribution\";s:2:\"{}\";s:19:\"attribution_license\";N;s:13:\"attachment_id\";i:121;s:5:\"width\";s:3:\"234\";s:6:\"height\";s:3:\"234\";s:17:\"image_provider_id\";N;s:16:\"id_from_provider\";N;s:11:\"orientation\";N;s:10:\"image_size\";N;s:19:\"transaction_item_id\";N;s:14:\"transaction_id\";N;}i:11;a:16:{s:8:\"asset_id\";s:6:\"695401\";s:9:\"coin_cost\";N;s:4:\"name\";s:104:\"/home/ndd6915/Naplesirrigation.com/wp-content/uploads/2022/02/tmp_78T99kbcp_4-imhwpb-zbik273bhi2omad.jpg\";s:13:\"purchase_date\";s:0:\"\";s:13:\"download_date\";s:19:\"2022-02-23 19:51:01\";s:11:\"attribution\";s:2:\"{}\";s:19:\"attribution_license\";N;s:13:\"attachment_id\";i:122;s:5:\"width\";s:3:\"234\";s:6:\"height\";s:3:\"234\";s:17:\"image_provider_id\";N;s:16:\"id_from_provider\";N;s:11:\"orientation\";N;s:10:\"image_size\";N;s:19:\"transaction_item_id\";N;s:14:\"transaction_id\";N;}i:12;a:16:{s:8:\"asset_id\";s:6:\"695402\";s:9:\"coin_cost\";N;s:4:\"name\";s:104:\"/home/ndd6915/Naplesirrigation.com/wp-content/uploads/2022/02/tmp_YadCgbsLHcE-imhwpb-kjakgkqww4nb5j2.jpg\";s:13:\"purchase_date\";s:0:\"\";s:13:\"download_date\";s:19:\"2022-02-23 19:51:01\";s:11:\"attribution\";s:2:\"{}\";s:19:\"attribution_license\";N;s:13:\"attachment_id\";i:123;s:5:\"width\";s:3:\"234\";s:6:\"height\";s:3:\"234\";s:17:\"image_provider_id\";N;s:16:\"id_from_provider\";N;s:11:\"orientation\";N;s:10:\"image_size\";N;s:19:\"transaction_item_id\";N;s:14:\"transaction_id\";N;}i:13;a:16:{s:8:\"asset_id\";s:6:\"695403\";s:9:\"coin_cost\";N;s:4:\"name\";s:104:\"/home/ndd6915/Naplesirrigation.com/wp-content/uploads/2022/02/tmp_s_NxT6Gx-2A-imhwpb-jifkmjomsrquohk.jpg\";s:13:\"purchase_date\";s:0:\"\";s:13:\"download_date\";s:19:\"2022-02-23 19:51:01\";s:11:\"attribution\";s:2:\"{}\";s:19:\"attribution_license\";N;s:13:\"attachment_id\";i:124;s:5:\"width\";s:3:\"234\";s:6:\"height\";s:3:\"234\";s:17:\"image_provider_id\";N;s:16:\"id_from_provider\";N;s:11:\"orientation\";N;s:10:\"image_size\";N;s:19:\"transaction_item_id\";N;s:14:\"transaction_id\";N;}i:14;a:16:{s:8:\"asset_id\";s:6:\"695404\";s:9:\"coin_cost\";N;s:4:\"name\";s:104:\"/home/ndd6915/Naplesirrigation.com/wp-content/uploads/2022/02/tmp_4YX0oj7gf8o-imhwpb-ut5s3lmwf6dg2wc.jpg\";s:13:\"purchase_date\";s:0:\"\";s:13:\"download_date\";s:19:\"2022-02-23 19:51:01\";s:11:\"attribution\";s:2:\"{}\";s:19:\"attribution_license\";N;s:13:\"attachment_id\";i:125;s:5:\"width\";s:3:\"234\";s:6:\"height\";s:3:\"234\";s:17:\"image_provider_id\";N;s:16:\"id_from_provider\";N;s:11:\"orientation\";N;s:10:\"image_size\";N;s:19:\"transaction_item_id\";N;s:14:\"transaction_id\";N;}i:15;a:16:{s:8:\"asset_id\";s:6:\"695405\";s:9:\"coin_cost\";N;s:4:\"name\";s:104:\"/home/ndd6915/Naplesirrigation.com/wp-content/uploads/2022/02/tmp_8tN3flDTQBU-imhwpb-kxmpsoge3h4672l.jpg\";s:13:\"purchase_date\";s:0:\"\";s:13:\"download_date\";s:19:\"2022-02-23 19:51:01\";s:11:\"attribution\";s:2:\"{}\";s:19:\"attribution_license\";N;s:13:\"attachment_id\";i:126;s:5:\"width\";s:3:\"234\";s:6:\"height\";s:3:\"234\";s:17:\"image_provider_id\";N;s:16:\"id_from_provider\";N;s:11:\"orientation\";N;s:10:\"image_size\";N;s:19:\"transaction_item_id\";N;s:14:\"transaction_id\";N;}i:16;a:17:{s:8:\"asset_id\";s:7:\"1175055\";s:9:\"coin_cost\";N;s:4:\"name\";s:102:\"/home/ndd6915/Naplesirrigation.com/wp-content/uploads/2022/02/wedge-fitness-imhwpb-kh917lpg3c92iw1.jpg\";s:13:\"purchase_date\";s:0:\"\";s:13:\"download_date\";s:19:\"2022-02-23 19:51:01\";s:11:\"attribution\";s:2:\"{}\";s:19:\"attribution_license\";N;s:13:\"attachment_id\";i:127;s:5:\"width\";s:3:\"234\";s:6:\"height\";s:3:\"234\";s:17:\"image_provider_id\";N;s:16:\"id_from_provider\";N;s:11:\"orientation\";N;s:10:\"image_size\";N;s:19:\"transaction_item_id\";N;s:14:\"transaction_id\";N;s:5:\"crops\";a:1:{i:0;a:2:{s:11:\"cropDetails\";a:8:{s:2:\"x1\";s:3:\"NaN\";s:2:\"y1\";s:3:\"NaN\";s:2:\"x2\";s:3:\"NaN\";s:2:\"y2\";s:3:\"NaN\";s:5:\"width\";s:3:\"NaN\";s:6:\"height\";s:3:\"NaN\";s:9:\"dst_width\";s:3:\"NaN\";s:10:\"dst_height\";s:3:\"NaN\";}s:4:\"path\";s:110:\"/home/ndd6915/Naplesirrigation.com/wp-content/uploads/2022/02/cropped-wedge-fitness-imhwpb-kh917lpg3c92iw1.jpg\";}}}}}','yes'),(198,'boldgrid_mobile_ratio','0:22','no'),(234,'finished_updating_comment_type','1','yes'),(161,'boldgrid_site_hash','7ec84b1fdd8a61f80617ef26816af641','no'),(1464731,'_transient_is_multi_author','0','on'),(1464740,'_transient_doing_cron','1738002693.6986019611358642578125','on'),(1464741,'_site_transient_timeout_boldgrid_available','1738002813','off'),(1464742,'_site_transient_boldgrid_available','1','off'),(1464746,'auto_updater.lock','1738002693','off'),(1464659,'_site_transient_timeout_boldgrid_plugins','1738027258','off'),(1464660,'_site_transient_boldgrid_plugins','O:8:\"stdClass\":2:{s:21:\"boldgrid-inspirations\";O:8:\"stdClass\":24:{s:5:\"title\";s:21:\"BoldGrid Inspirations\";s:7:\"version\";s:5:\"2.9.3\";s:8:\"asset_id\";i:1300633;s:12:\"release_date\";s:19:\"2024-11-08 02:19:27\";s:19:\"requires_wp_version\";s:3:\"4.4\";s:17:\"tested_wp_version\";s:3:\"6.7\";s:8:\"sections\";a:4:{s:11:\"description\";s:377:\"<p>BoldGrid Inspirations is an inspiration-driven plugin to assist with creating a fresh new website, or to customize an existing website.</p>\n<p>The first phase is Inspiration; the guided tool creates your base website. If you already have a website, then you can skip this step.</p>\n<p>The second phase is Customization; tools to transform your website into your vision.</p>\n\";s:12:\"installation\";s:283:\"<ol>\n<li><p>Upload the entire boldgrid-inspirations folder to the /wp-content/plugins/ directory.</p></li>\n<li><p>Activate the plugin through the Plugins menu in WordPress.</p></li>\n<li><p>You will find the Inspirations menu in your WordPress Dashboard / admin panel.</p></li>\n</ol>\n\";s:9:\"changelog\";s:45421:\"<h4>2.9.3</h4>\n<p>Release Date: November 7th, 2024</p>\n<ul>\n<li>Bug Fix: WP 6.7 - Function load<em>plugin</em>textdomain was called incorrectly <a href=\"https://github.com/BoldGrid/boldgrid-inspirations/issues/205\">#205</a></li>\n</ul>\n<h4>2.9.2</h4>\n<p>Release Date: July 3rd, 2024</p>\n<ul>\n<li>Bug Fix: WP 6.6 - Inspirations onboarding links to Customizer don’t go to correct panel <a href=\"https://github.com/BoldGrid/boldgrid-inspirations/issues/202\">#202</a></li>\n</ul>\n<h4>2.9.1</h4>\n<p>Release Date: March 25th, 2024</p>\n<ul>\n<li>Bug Fix: If no social media menu is installed the main menu goes in that spot without styling <a href=\"https://github.com/BoldGrid/boldgrid-inspirations/issues/181\">181</a></li>\n</ul>\n<h4>2.9.0</h4>\n<p>Release Date: December 4th, 2023</p>\n<ul>\n<li>New Feature: Added onboarding videos that are fetched from the BoldGrid API Server.</li>\n</ul>\n<h4>2.8.1</h4>\n<p>Release Date: November 8th, 2023</p>\n<ul>\n<li>Update: Updated tested up to version to 6.4</li>\n</ul>\n<h4>2.8.0</h4>\n<p>Release Date: October 16th, 2023</p>\n<ul>\n<li>New Feature: Added onboarding checklist to help users get started with Inspirations.</li>\n<li>New Feature: Theme screenshot now displays the specific Crio theme design chosen <a href=\"https://github.com/BoldGrid/boldgrid-inspirations/issues/168\">168</a></li>\n<li>Bug Fix: Image purchase fails with error \'No local cost data\' <a href=\"https://github.com/BoldGrid/boldgrid-inspirations/issues/185\">#185</a></li>\n</ul>\n<h4>2.7.6</h4>\n<p>Release Date: July 17th, 2023</p>\n<ul>\n<li>Update: Improve support for PHP 8.1 & 8.2</li>\n<li>Update: Allow for specific themes to dis-allow adding a blog during the inspirations process.</li>\n</ul>\n<h4>2.7.5</h4>\n<p>Release date: March 23rd, 2023</p>\n<ul>\n<li>Bug Fix: WP 6.2 - get<em>page</em>by_tlte is deprecated <a href=\"https://github.com/BoldGrid/boldgrid-inspirations/issues/173\">#173</a></li>\n<li>Update: Update Boldgrid/BGforms dependancy.</li>\n</ul>\n<h4>2.7.4</h4>\n<p>Release date: September 20th, 2022</p>\n<ul>\n<li>Bug Fix: background images in crio<em>page</em>headers are not getting replaced <a href=\"https://github.com/BoldGrid/boldgrid-inspirations/issues/155\">#155</a></li>\n<li>Bug Fix: Object of class WP_Error could not be converted to int <a href=\"https://github.com/BoldGrid/boldgrid-inspirations/issues/153\">#153</a></li>\n</ul>\n<h4>2.7.3</h4>\n<p>Release date: September 7th, 2022</p>\n<ul>\n<li>Update: Prevent hidden categories from displaying in the sidebar during inspirations process.</li>\n</ul>\n<h4>2.7.2</h4>\n<p>Release date: August 8th, 2022</p>\n<ul>\n<li>Update: Increased image download timeout to 60 seconds.</li>\n</ul>\n<h4>2.7.1</h4>\n<p>Release date: July 8th, 2022</p>\n<ul>\n<li>Update: Updated dependencies (php 7.1).</li>\n</ul>\n<h4>2.7.0</h4>\n<p>Release date: July 7th, 2022</p>\n<ul>\n<li>New feature: Logo support.</li>\n<li>New feature: Nested menus.</li>\n<li>New feature: Taxonmy per post.</li>\n<li>New feature: Custom headers.</li>\n<li>Update: Updated dependencies.</li>\n<li>Update: Remove page headers on start over.</li>\n</ul>\n<h4>2.6.5</h4>\n<p>Release date: January 25th, 2022</p>\n<ul>\n<li>Update: Several php8 fixes.</li>\n<li>Update: Automated tests run against php 5.6, 7.4, and 8.0</li>\n</ul>\n<h4>2.6.4</h4>\n<p>Release date: October 18th, 2021</p>\n<ul>\n<li>Update: Add filters to allow dev installs of Crio and Crio Premium.</li>\n</ul>\n<h4>2.6.3</h4>\n<p>Release date: June 10th, 2021</p>\n<ul>\n<li>Update: Updated the way blogs are installed via Inspirations.</li>\n<li>Update: Updated the My Inspirations page with links to theme support.</li>\n<li>Update: Updated dependencies.</li>\n</ul>\n<h4>2.6.2</h4>\n<p>Release date: April 14th, 2021</p>\n<ul>\n<li>Update: Add support for footer-menu locations</li>\n</ul>\n<h4>2.6.1</h4>\n<p>Release date: February 16th, 2021</p>\n<ul>\n<li>Update: Disable custom menu by default.</li>\n<li>Bug fix: Add \"My Inspirations\" link in case js does not redirect.</li>\n</ul>\n<h4>2.6.0</h4>\n<p>Release date: January 25th, 2021</p>\n<ul>\n<li>New feature: Theme deployments can now include theme specific plugins.</li>\n</ul>\n<h4>2.5.2</h4>\n<p>Release date: December 8th, 2020</p>\n<ul>\n<li>Bug fix: Fixed Gutenberg detection, avoid errors when adding media.</li>\n<li>Bug fix: Avoid js errors when editor screens have no ability to add media.</li>\n</ul>\n<h4>2.5.1</h4>\n<p>Release date: October 23rd, 2020</p>\n<ul>\n<li>Bug fix: Fixed \"Only variables should be passed by reference\" in class-boldgrid-inspirations-purchase-for-publish.php.</li>\n</ul>\n<h4>2.5.0</h4>\n<p>Release date: October 17th, 2020</p>\n<ul>\n<li>New feature: Invoicing and Caching options added as Inspirations features.</li>\n</ul>\n<h4>2.4.4</h4>\n<p>Release date: September 22nd, 2020</p>\n<ul>\n<li>Update: Updated dependencies.</li>\n</ul>\n<h4>2.4.3</h4>\n<p>Release date: August 11th, 2020</p>\n<ul>\n<li>Bug fix: WordPress 5.5 compatibility changes.</li>\n<li>Update: Optimized usage of set<em>staging</em>installed.</li>\n<li>Update: Optimized \"get total coin cost\".</li>\n<li>Update: Updated links in login footer</li>\n<li>Update: Updated dependencies.</li>\n</ul>\n<h4>2.4.2</h4>\n<p>Release date: June 15th, 2020</p>\n<ul>\n<li>Update: Updated dependencies.</li>\n</ul>\n<h4>2.4.1</h4>\n<p>Release date: May 29th, 2020</p>\n<ul>\n<li>Update: Updated dependencies.</li>\n</ul>\n<h4>2.4.0</h4>\n<p>Release date: May 18th, 2020</p>\n<ul>\n<li>Update: Changes needed for Crio.</li>\n<li>Bug fix: Attribution page will not show excpert.</li>\n<li>Bug fix: Fixed display / position of BoldGrid Connect image search results.</li>\n</ul>\n<h4>2.3.1</h4>\n<p>Release date: March 12th, 2020</p>\n<ul>\n<li>Bug fix: Unable to click button on email confirmation page.</li>\n<li>Update: Removed \"Add new from GridBlocks\" feature.</li>\n</ul>\n<h4>2.3.0</h4>\n<p>Release date: December 17th, 2019</p>\n<ul>\n<li>Bug fix: Added noindex to the attribution page.</li>\n<li>Update: Changed the form plugin from WPForms to weForms.</li>\n<li>Update: Updated dependencies.</li>\n</ul>\n<h4>2.2.2</h4>\n<p>Release date: November 22st, 2019</p>\n<ul>\n<li>Update: BoldGrid Backup is now Total Upkeep - updating references.</li>\n<li>Update: Updated dependency boldgrid/library to 2.10.6.</li>\n</ul>\n<h4>2.2.1</h4>\n<p>Release date: October 15th, 2019</p>\n<ul>\n<li>Update: Updated dependency boldgrid/library to 2.10.4.</li>\n</ul>\n<h4>2.2.0</h4>\n<p>Release date: September 17th, 2019</p>\n<ul>\n<li>New feature: Recommend the BoldGrid Backup plugin for users needing to transfer a site.</li>\n<li>Update: Updating dependencies</li>\n</ul>\n<h4>2.1.1</h4>\n<p>Release date: September 5th, 2019</p>\n<ul>\n<li>Update: Updating dependencies</li>\n</ul>\n<h4>2.1.0</h4>\n<p>Release date: August 29th, 2019</p>\n<ul>\n<li>Update: Removed the \"Welcome to BoldGrid\" dashboard widget.</li>\n<li>Update: Add notice to dashboard widget.</li>\n<li>Update: Remove news widget from dashboard.</li>\n</ul>\n<h4>2.0.7</h4>\n<p>Release date: August 16, 2019</p>\n<ul>\n<li>Bug fix: Fixing compact warnings</li>\n</ul>\n<h4>2.0.6</h4>\n<p>Release date: August 1st, 2019</p>\n<ul>\n<li>Update: Updated dependencies</li>\n</ul>\n<h4>2.0.5</h4>\n<p>Release date: July 25th, 2019</p>\n<ul>\n<li>Update: Added a switch for toggling branding of the login page.</li>\n<li>Update: Cleaned up logic on purchase coins page.</li>\n<li>Update: Updated dependencies</li>\n</ul>\n<h4>2.0.4</h4>\n<p>Release date: July 2nd, 2019</p>\n<ul>\n<li>Update: Replaced the BoldGrid RSS feed widget on the dashboard with one in the updated library package.</li>\n<li>Update: Updated dependencies.</li>\n</ul>\n<h4>2.0.3</h4>\n<p>Release date: May 21st, 2019</p>\n<ul>\n<li>Bug fix: Fixing \"Call to undefined method getAttribute\" error.</li>\n<li>Bug fix: Replacing deprecated filter on login: login<em>headertitle / login</em>headertext.</li>\n</ul>\n<h4>2.0.2</h4>\n<p>Release date: Apr 23nd, 2019</p>\n<ul>\n<li>Bug fix: Fixing usage of php\'s empty function for php < 5.5</li>\n</ul>\n<h4>2.0.1</h4>\n<p>Release date: Apr 19th, 2019</p>\n<ul>\n<li>Bug fix: Fixing class property declaration for php < 5.6</li>\n</ul>\n<h4>2.0.0</h4>\n<p>Release date: Apr 16th, 2019</p>\n<ul>\n<li>Update: Made translation ready. Text domain is boldgrid-inspirations.</li>\n<li>Update: Inspirations process with full screen mode and design updates.</li>\n<li>New feature: Inspirations dashboard.</li>\n<li>New feature: German translations added - de_DE.</li>\n</ul>\n<h4>1.6.5</h4>\n<p>Release date: Jan 29th, 2019</p>\n<ul>\n<li>Bug fix: Pages fail to install on Pages > Add New.</li>\n</ul>\n<h4>1.6.4</h4>\n<p>Release date: Dec 5th, 2018</p>\n<ul>\n<li>Bug fix: Unable to save \"boldgrid<em>menu</em>option\" on settings page.</li>\n<li>Bug fix: Fixed updating plugin via ajax.</li>\n</ul>\n<h4>1.6.3</h4>\n<p>Release date: Dec 4th, 2018</p>\n<ul>\n<li>Bug fix: Coin Budget help was not toggling when clicked.</li>\n</ul>\n<h4>1.6.2</h4>\n<p>Release date: Nov 26th, 2018</p>\n<ul>\n<li>Bug fix: JIRA BGINSP-33 Fixed missing build for library dependencies; Updated production build process to use composer post-autoload-dump hook.</li>\n</ul>\n<h4>1.6.1</h4>\n<p>Release date: Nov 20th, 2018</p>\n<ul>\n<li>Update: JIRA BGCONN-20 Removed update settings; have been moved to the BoldGrid Library packages.</li>\n<li>Bug fix: JIRA BGTHEME-558 Fixed conflict between tgmpa plugin installer and the BoldGrid custom update classes.</li>\n<li>Bug fix: BoldGrid Connect Search / WP 5.0 fix.</li>\n<li>Bug fix: Attribution page not being rebuilt / WP 5.0 fix.</li>\n<li>Bug fix: BoldGrid Connect Search in the Customizer / WP 5.0 fix.</li>\n<li>Bug fix: Recommended image sizes not working as expected.</li>\n</ul>\n<h4>1.6.0</h4>\n<ul>\n<li>Update: Updated BoldGrid library to version 2.4.2.</li>\n<li>New feature: JIRA BGINSP-24 Log data when there may be a connection or Ajax error.</li>\n</ul>\n<h4>1.5.8</h4>\n<ul>\n<li>Bug fix: JIRA BGINSP-16 Warnings and notices within inspiration w/ Crio theme</li>\n<li>Bug fix: JIRA BGINSP-23 Fixed issue: Connect Search may load with connection notice.</li>\n</ul>\n<h4>1.5.7</h4>\n<ul>\n<li>Update: Updated to library version 2.3.5.</li>\n</ul>\n<h4>1.5.6</h4>\n<ul>\n<li>Bug fix: JIRA BGINSP-14 Fatal in PHP >=7.1.0 when creating internal preview builds.</li>\n<li>Bug fix: JIRA WPB-3767 Prevent invalid API calls for check-version.</li>\n<li>Update: JIRA BGBKUP-180 Auto update code moved to library and removed from Inspirations.</li>\n<li>Update: JIRA WPB-3730 Updated library dependency to ^2.0.0.</li>\n<li>Update: JIRA BGINSP-3 Forcing display of Connect Key prompt admin notice on the Inspirations page, even if dismissed, until key is entered.</li>\n<li>Update: JIRA WPB-3684 Updated composer.json, due to package changes.</li>\n<li>New feature: JIRA BGCNTRL-46 Added filters for manipulating Dashboard help in trial sites.</li>\n</ul>\n<h4>1.5.5</h4>\n<ul>\n<li>Bug fix: JIRA BGSTAGE-32 Fixed staging plugin install.</li>\n</ul>\n<h4>1.5.4</h4>\n<ul>\n<li>Update: JIRA BGINSP-4 Removed admin notice recommending plugin installations.</li>\n</ul>\n<h4>1.5.3</h4>\n<ul>\n<li>New feature: JIRA WPB-3643 Ensure that deployment does not install new wporg plugins if old ones are installed.</li>\n</ul>\n<h4>1.5.2</h4>\n<ul>\n<li>Bug fix: JIRA WPB-3587 Menu assignment after deployment broken in WP 4.9.</li>\n<li>Bug fix: JIRA WPB-3570 Inspirations Select button misplaced in WP 4.9.</li>\n<li>Bug fix: JIRA WPB-3593 Changes require to help Staging support new Customizer scheduler.</li>\n</ul>\n<h4>1.5.1</h4>\n<ul>\n<li>Update: Updates to library.</li>\n</ul>\n<h4>1.5</h4>\n<ul>\n<li>Update: Bump version.</li>\n</ul>\n<h4>1.4.11</h4>\n<ul>\n<li>Update: Bump version.</li>\n</ul>\n<h4>1.4.10</h4>\n<ul>\n<li>Bug fix: JIRA WPB-3336 All and Default categories do not align.</li>\n<li>Bug fix: JIRA WPB-3337 On a fresh install, Pages - New From GridBlocks fails.</li>\n<li>Bug fix: JIRA WPB-3333 Image search only searching one provider instead of all.</li>\n<li>Bug fix: JIRA WPB-3346 Edit Image button not working for attachment.</li>\n<li>Bug fix: JIRA WPB-3387 Loading GridBlocks just spins.</li>\n<li>Update: JIRA WPB-3352 Purchase coins through BoldGrid Central.</li>\n<li>Update: JIRA WPB-3355 Add data-image-url attribute.</li>\n<li>Update: JIRA WPB-3382 More descriptive creative commons icon.</li>\n<li>Update: JIRA WPB-3384 Add License details to attachment details.</li>\n<li>Update: JIRA WPB-3383 Filter out boldgrid-gridblock-set-preview-page.</li>\n</ul>\n<h4>1.4.9</h4>\n<ul>\n<li>Bug fix: JIRA WPB-3318 When forcing a preferred form plugin install, first check if plugin is installed before trying to activate.</li>\n<li>Bug fix: JIRA WPB-3312 Ensure activation of preferred form plugin. Added filter for preferred slug.</li>\n<li>Bug fix: JIRA WPB-3317 New page from GridBlocks not working.</li>\n<li>Update: JIRA WPB-3252 Disable \'default\' category and configure \'showcase\'.</li>\n<li>Bug fix: JIRA WPB-3332 New from gridblocks button not showing.</li>\n</ul>\n<h4>1.4.8</h4>\n<ul>\n<li>New feature: JIRA WPB-3200 Added WPForms support.</li>\n<li>Update: JIRA WPB-3292 Updated plugin URI.</li>\n<li>Update: JIRA WPB-3296 Add Inspirations as first menu item child.</li>\n<li>Bug Fix: JIRA WPB-3274 Plugins > Add New Updates fail in modals.</li>\n<li>New feature: JIRA WPB-3293 Resize images during deployment vs imgr server.</li>\n</ul>\n<h4>1.4.7</h4>\n<ul>\n<li>Update: JIRA WPB-3243 Change feedback admin notice display frequency.</li>\n<li>Update: JIRA WPB-3264 Adding twitch social media option.</li>\n<li>New Feature: Added BoldGrid Library to plugin.</li>\n</ul>\n<h4>1.4.6</h4>\n<ul>\n<li>Bug fix: JIRA WPB-3179 Gradient style being lost during normal deployment.</li>\n<li>Bug fix: JIRA WPB-3180 Open WordPress/BoldGrid links in attribution page in new tab.</li>\n</ul>\n<h4>1.4.5</h4>\n<ul>\n<li>Bug fix: JIRA WPB-3161 Fixed auto plugin update.</li>\n<li>Bug fix: JIRA WPB-3162 Fixed issue creating .htaccess file in deployment.</li>\n<li>Bug fix: JIRA WPB-3171 As an author, when installing a site I do not want background images to be processed.</li>\n<li>Bug fix: JIRA WPB-3176 Background gradient / url bug during deplyment.</li>\n</ul>\n<h4>1.4.4</h4>\n<ul>\n<li>Bug fix: JIRA WPB-3151 Added check and load before using get<em>plugin</em>data() for updates.</li>\n<li>Bug fix: JIRA WPB-3141 Fixed invalid updates for BoldGrid Prime theme.</li>\n<li>Bug fix: JIRA WPB-3158 Deployment\'s gallery updates are not saved.</li>\n</ul>\n<h4>1.4.3</h4>\n<ul>\n<li>New feature: JIRA WPB-3106 As an Author, I can set background images for elements.</li>\n<li>New feature: JIRA WPB-3095 Update generic builds to display per theme channel.</li>\n</ul>\n<h4>1.4.2</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2745 Fixed upgrade notices displaying when activation version was not recorded.</li>\n<li>Update: JIRA WPB-3019 Updating attribution link creation.</li>\n</ul>\n<h4>1.4.1</h4>\n<ul>\n<li>New feature: JIRA WPB-3044 Automatically get Unsplash attribution.</li>\n<li>Update: JIRA WPB-3043 Updating plugin description.</li>\n</ul>\n<h4>1.4.0.1</h4>\n<ul>\n<li>Bug fix: JIRA WPB-3232 Deploy Staging menu item missing.</li>\n<li>Bug fix: JIRA WPB-3233 BoldGrid Connect Search missing from new image widget.</li>\n</ul>\n<h4>1.4</h4>\n<ul>\n<li>Update: JIRA WPB-2936 Updating YouTube videos for BoldGrid Dashboard\'s new release.</li>\n<li>Bug fix: JIRA WPB-2927 Social media menu disappears.</li>\n<li>Update: JIRA WPB-2949 Configure blog using categories.</li>\n<li>Bug fix: JIRA WPB-2950 Added max height for reseller logos on login page.</li>\n<li>Bug fix: JIRA WPB-2925 Sidebar widgets don\'t match between preview and installed site.</li>\n<li>Bug fix: JIRA WPB-2951 Images in staging posts not being downloaded.</li>\n<li>Bug fix: JIRA WPB-2955 Backwards compatibility - maps taking up 200px empty space.</li>\n<li>Bug fix: JIRA WPB-2984 Attribution page 404.</li>\n</ul>\n<h4>1.3.9</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2912 Fixed issue when installing plugins from the Tools Import page.</li>\n<li>Bug fix: JIRA WPB-2916 Inspirations deploy fatal error if an old forked plugin had the original installed.</li>\n<li>Bug fix: JIRA WPB-2905 If installing via Author, do not update pages with survey data.</li>\n<li>Bug fix: JIRA WPB-2910 Unterminated entity reference bug.</li>\n<li>Update: JIRA WPB-2913 Validate email address in survey.</li>\n<li>Bug fix: JIRA WPB-2404 iframe timeout in step 2 of Inspirations.</li>\n<li>Bug fix: JIRA WPB-2173 Error deleting image and redownloading.</li>\n<li>Bug fix: JIRA WPB-2635 Start over staging affecting active site.</li>\n<li>Bug fix: JIRA WPB-2493 Publish private posts during staging deployment.</li>\n<li>Bug fix: JIRA WPB-2796 Social media urls end in /username, go to 404s.</li>\n</ul>\n<h4>1.3.8</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2892 Fixed plugin update checks for some scenarios (WP-CLI, Plesk, etc).</li>\n<li>Update: JIRA WPB-2900 Update verbiage of build coin cost.</li>\n<li>Bug fix: JIRA WPB-2901 Scroll bars not visible on preview iframe in Chrome.</li>\n<li>Bug fix: Removing CTA hooks.</li>\n</ul>\n<h4>1.3.7</h4>\n<ul>\n<li>Update: JIRA WPB-2819 Use switch instead of checkbox for Demo.</li>\n<li>Bug fix: JIRA WPB-2780 Theme screenshots opening directly, rather than within gallery.</li>\n<li>Update: JIRA WPB-2825 Adjust do not display formatting.</li>\n<li>Update: JIRA WPB-2829 Updating hook to resolve BoldGrid SEO plugin conflicts.</li>\n<li>Update: JIRA WPB-2837 Remove loading image after selecting theme in Gallery.</li>\n<li>Update: JIRA WPB-2839 Minor verbiage change for Add a blog.</li>\n<li>Update: JIRA WPB-2785 Entering words with apostrophe in it for Site title displays with a Backslash.</li>\n<li>Bug fix: JIRA WPB-2848 Customize link takes users back to Inspirations.</li>\n<li>Bug fix: JIRA WPB-2527 \'New from GridBlocks\' preview page appearing in cart.</li>\n<li>Bug fix: JIRA WPB-2862 Survey, invalid argument supplied for foreach.</li>\n<li>Bug fix: JIRA WPB-2601 Inspirations Internet Explorer/ Stuck on loading themes.</li>\n<li>Bug fix: JIRA WPB-2854 Downloading Image spinner never stops spinning.</li>\n</ul>\n<h4>1.3.6</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2772 PHP warnings on deploy in WordPress 4.3.7.</li>\n<li>Bug fix: JIRA WPB-2766 Plesk and WP-CLI were not getting private repo updates.</li>\n<li>Update: JIRA WPB-2763 Update email and address on Contact Us page.</li>\n<li>Update: JIRA WPB-2764 Remove option to add a map.</li>\n<li>Update: JIRA WPB-2765 Allow iframes for preview builds.</li>\n<li>New feature: JIRA WPB-2771 Update footer-company-details widget with survey data.</li>\n<li>New feature: JIRA WPB-2777 Add an Install sample blog checkbox.</li>\n<li>New feature: JIRA WPB-2778 Setup a blog during deployment.</li>\n<li>Bug fix: JIRA WPB-2792 Staged posts (private posts) are trashed when starting over active site.</li>\n<li>Update: JIRA WPB-2800 Ensure \'Install a blog\' works with Staging.</li>\n<li>Update: JIRA WPB-2801 Remove milestones classes.</li>\n<li>Bug fix: JIRA WPB-2779 Survey not working with Staging.</li>\n<li>Update: JIRA WPB-2805 Preview builds w & w/o blogs.</li>\n<li>New feature: JIRA WPB-2806 Add filter for Inspirations configs.</li>\n<li>Bug fix: JIRA WPB-2808 Do not request generic builds when requesting blog as well.</li>\n</ul>\n<h4>1.3.5</h4>\n<ul>\n<li>Testing: JIRA WPB-2744 Tested on WordPress 4.7.</li>\n<li>Update: JIRA WPB-2376 Filter the bgtfw contact blocks.</li>\n<li>Update: JIRA WPB-2476 Update case of Company name.</li>\n<li>Update: JIRA WPB-2747 Update Add a map verbiage.</li>\n<li>Update: JIRA WPB-2749 Add a map to my Contact page.</li>\n<li>Bug fix: JIRA WPB-2658 Fix spacing issues atop Inspirations.</li>\n<li>Bug fix: JIRA WPB-2751 Show all in the smaller view of inspirations doesn\'t work anymore.</li>\n<li>Bug fix: JIRA WPB-2757 Apostrophe and other strange characters installed via Inspirations.</li>\n<li>Bug fix: JIRA WPB-2759 DOMDocument::loadHTML(): htmlParseEntityRef: expecting \';\'.</li>\n</ul>\n<h4>1.3.4</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2696 Remove placeholders from survey.</li>\n<li>New feature: JIRA WPB-2697 Update phone numbers in widgets.</li>\n<li>New feature: JIRA WPB-2699 Use phone number entered during survey.</li>\n<li>Update: JIRA WPB-2704 Adjust format of how social media icons are saved.</li>\n<li>New feature: JIRA WPB-2705 Use survey social media items when creating menu.</li>\n<li>Update: JIRA WPB-2711 Show optional message in survey.</li>\n<li>Update: JIRA WPB-2712 Have plus sign toggle more social icons.</li>\n<li>Update: JIRA WPB-2723 Update phone in pages.</li>\n</ul>\n<h4>1.3.3</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2627 Back / next buttons should not be clickable.</li>\n<li>Bug fix: JIRA WPB-2625 Behavior of last image\'s next button in Inspirations.</li>\n</ul>\n<h4>1.3.2</h4>\n<ul>\n<li>Update: JIRA WPB-2582 Always show arrows in Inspirations gallery.</li>\n<li>Update: JIRA WPB-2583 Ensure first letter in theme\'s title attribute is capitalized.</li>\n<li>Update: JIRA WPB-2599 Add placeholder for 4th step to Inspirations.</li>\n<li>Update: JIRA WPB-2551 Duplicate images.</li>\n<li>New feature: JIRA WPB-2603 Add initial version of survey.</li>\n<li>Bug fix: JIRA WPB-2622 Inspirations - Step 4 - Go back button installs site.</li>\n</ul>\n<h4>1.3.1</h4>\n<ul>\n<li>Misc: JIRA WPB-2503 Added plugin requirements to readme.txt file.</li>\n<li>Bug fix: JIRA WPB-2539 Fix possible duplicate connection issue notice from ajax.js call.</li>\n<li>Bug fix: JIRA WPB-2558 Don\'t display feedback widget if user hasn\'t entered their key.</li>\n<li>Bug fix: JIRA WPB-2559 Don\'t allow widgets to drag into welcome box area.</li>\n<li>Bug fix: JIRA WPB-2555 Images in search results flicker.</li>\n<li>Update: JIRA WPB-2563 Convert Attribution page to use custom post type.</li>\n<li>Update: JIRA WPB-2568 Added fancybox and large previews to Inspirations.</li>\n<li>Update: JIRA WPB-2570 Milestone blogname change.</li>\n<li>Update: JIRA WPB-2574 Milestone Social Media Change.</li>\n<li>Update: JIRA WPB-2578 Milestone Contact Info Footer Change.</li>\n</ul>\n<h4>1.3</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2544 Disable \'Install\' button after clicking it.</li>\n</ul>\n<h4>1.2.13</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2531 Javascript error checking needed for mine count.</li>\n</ul>\n<h4>1.2.12</h4>\n<ul>\n<li>Update: JIRA WPB-2472 Added update notice for 1.3.</li>\n<li>Bug fix: JIRA WPB-2486 Incorrect page count on All Pages.</li>\n<li>Bug fix: JIRA WPB-2467 With staging disabled, Customize goes to \"Change Themes\".</li>\n<li>Update: JIRA WPB-2488 Remove \'Permanently delete pages instead of sending to trash\'.</li>\n<li>Update: JIRA WPB-2490 Move default option to \'install as staging\'.</li>\n<li>Update: JIRA WPB-2491 Add \'Customize > Active Theme\' navigation to Inspirations.</li>\n<li>Bug fix: JIRA WPB-2496 Require comment text in feedback form.</li>\n<li>Update: JIRA WPB-2229 Update error reporting when purchasing images.</li>\n<li>Update: JIRA WPB-2498 Change \'Company Name\' to theme name.</li>\n<li>Update: JIRA WPB-2497 Add new dashboard videos.</li>\n<li>Bug fix: JIRA WPB-2376 \'No search results\' method is not cleared in BGCS.</li>\n</ul>\n<h4>1.2.11</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2468 Switching between boldgrid admin menu and standard wp menu no longer works.</li>\n<li>Bug fix: JIRA WPB-2477 If you have an existing site non BG, no route for staging exists.</li>\n</ul>\n<h4>1.2.10</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2446 Fixed missing build id passed on site install.</li>\n<li>Bug fix: JIRA WPB-2426 Insert Gridblock button is missing.</li>\n<li>Bug fix: JIRA WPB-2443 When starting over, I get a blank page.</li>\n<li>Bug fix: JIRA WBP-2445 Inspirations is not fetching cached themes.</li>\n<li>Update: JIRA WPB-2458 Update \'Recommended\' verbiage in last step of Inspirations.</li>\n</ul>\n<h4>1.2.9</h4>\n<ul>\n<li>Misc: JIRA WPB-2420 Added EOF line breaks.</li>\n<li>Bug fix: JIRA WPB-2387 Fixed issue with AJAX theme updates and BG theme slugs duplicated in the WP repo.</li>\n<li>Bug fix: JIRA WPB-2324 Attribution should not show in 404 sitemap.</li>\n<li>Bug fix: JIRA WPB-2403 No plugins recommended still showing notice.</li>\n<li>Update: JIRA WPB-2416 Text changes for confirmation section of Inspirations.</li>\n<li>Update: JIRA WPB-2417 Add additional text to deployment success page for staging.</li>\n<li>Bug fix: JIRA WPB-2421 Message showing when it shouldn\'t - We\'ve recognized that you haven\'t installed...</li>\n<li>Bug fix: JIRA WPB-2112 BoldGrid Connect Search missing for galleries.</li>\n<li>Bug fix: JIRA WPB-2422 Fixed CSS Loading graphic animation in chrome to display properly.</li>\n<li>Bug fix: JIRA WPB-2401 Gallery not displaying correctly in Chrome && FF.</li>\n<li>Bug fix: JIRA WPB-2423 Trying to get property of non-object in ...stock-photography.php.</li>\n</ul>\n<h4>1.2.8</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2398 Error requesting free key.</li>\n<li>Bug fix: JIRA WPB-2399 Only show feedback widget to admins.</li>\n</ul>\n<h4>1.2.7</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2389 Fixed saving BoldGrid Settings.</li>\n<li>Bug fix: JIRA WPB-2388 Removed duplicate boldgrid_activate().</li>\n<li>Update: JIRA WPB-2390 Update verbiage for inspirations install success.</li>\n<li>Bug fix: JIRA WPB-2391 Hide BoldGrid Welcome Panel if key isn\'t entered yet.</li>\n<li>Bug fix: JIRA WPB-2392 If key is less than 32 char don\'t make call to validate.</li>\n<li>Bug fix: JIRA WPB-2393 Error messages should be removed when resubmitting keys.</li>\n<li>Bug fix: JIRA WPB-2394 Cursor for show/hide log should be a pointer.</li>\n<li>Update: JIRA WPB-2395 Update login page styling.</li>\n<li>Bug fix: JIRA WPB-2396 Remove staging from recommended plugin notices.</li>\n<li>Bug fix: JIRA WPB-2327 Check if framework is handling plugin recommendations before recommending.</li>\n</ul>\n<h4>1.2.6</h4>\n<ul>\n<li>Misc: JIRA WPB-2344 Updated readme.txt for Tested up to 4.6.1.</li>\n<li>Bug fix: JIRA WPB-2336 Load BoldGrid settings from the correct WP option (site/blog).</li>\n<li>Bug fix: JIRA WPB-2248 Removed \'New From GridBlocks\' button on edit submission page.</li>\n<li>Bug fix: JIRA WPB-2332 Reset scroll position on step 2 of Inspirations to top.</li>\n<li>Bug fix: JIRA WPB-2339 Remove notices from Inspirations page.</li>\n<li>Update: JIRA WPB-2208 Removed tutorials from Inspirations.</li>\n<li>Update: JIRA WPB-2359 Order \'Category Filter\' by category display order.</li>\n<li>Update: JIRA WPB-2360 Sort themes by category and then order within category.</li>\n<li>Update: JIRA WPB-2368 Read version constant from plugin file.</li>\n<li>Update: JIRA WPB-2361 Add BoldGrid Connect Search to Editor\'s background image tool.</li>\n<li>Update: JIRA WPB-2354 Preview button needs to always be visible in mobile view.</li>\n<li>Update: JIRA WPB-2355 Remove extraneous \'Preview\' button.</li>\n<li>Bug fix: JIRA WPB-2364 Inspirations not respecting theme release channel.</li>\n<li>Bug fix: JIRA WPB-2370 Color in screenshot does not match preview.</li>\n<li>Bug fix: JIRA WPB-2373 Duplicate themes in Inspirations.</li>\n<li>Bug fix: JIRA WPB-2379 Wrong budget passed when going form step 2 to step 1.</li>\n<li>Update: JIRA WPB-2380 Remove references to tutorials in deployment congrats message.</li>\n<li>Bug fix: JIRA WPB-2383 Image Search tab appears when clicking \'Add GridBlock\'.</li>\n</ul>\n<h4>1.2.5</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2325 Added wrapper to handle mb<em>convert</em>encoding() if mbstring is not loaded.</li>\n<li>Bug fix: JIRA WPB-2313 Disabled GridBlocks in network admin pages.</li>\n<li>New feature: JIRA WPB-2268 Changed to resized preview screenshots for Inspirations Design First concept.</li>\n<li>New feature: JIRA WPB-2287 Adjust device preview buttons in step 2 to behave like those in editor.</li>\n<li>New feature: JIRA WPB-2291 Auto install staging in final step if user chooses staging.</li>\n<li>Update: JIRA WPB-2290 Changed \'Install\' button to \'Next\'.</li>\n<li>Bug fix: JIRA WPB-2289 Continuously clicking category in step 1 shuffles themes.</li>\n<li>Update: JIRA WPB-2267 Added message to Inspirations when no generic themes are available.</li>\n<li>Update: JIRA WPB-2315 Added error handling for malformed ajax results for call to /api/build/get-generic.</li>\n<li>Update: JIRA WPB-2316 Add error handling for failures to fetch categories.</li>\n<li>Update: JIRA WPB-2317 Add error handling for failures to fetch pagesets.</li>\n<li>Update: JIRA WPB-2319 Check user capabilities before prompting for api key.</li>\n<li>Update: JIRA WPB-2320 Ensure user has permission to edit page before allowing download<em>and</em>insert<em>into</em>page.</li>\n<li>Update: JIRA WPB-2322 Sanitize user feedback before adding to options table.</li>\n<li>Update: JIRA WPB-2323 Allow admin notices to be dismissed per user.</li>\n<li>Update: JIRA WPB-2326 Update \'update\' class to utilize Admin Notices class.</li>\n<li>Update: JIRA WPB-2327 Check user capabilities before showing admin notices.</li>\n<li>Update: JIRA WPB-2331 Update confirmation messages.</li>\n</ul>\n<h4>1.2.4</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2269 Typo fix in Boldgrid<em>Inspirations</em>Dependency<em>Plugins::print</em>uninstalled_plugins().</li>\n<li>Bug fix: JIRA WPB-2270 New From GridBlocks became unavailable.</li>\n</ul>\n<h4>1.2.3</h4>\n<ul>\n<li>New feature: JIRA WPB-2172 For preview generic builds, added an option for identification for purges, etc.</li>\n<li>Bug fix: JIRA WPB-2263 For preview sites under multisite, set the admin email address using the network admin email address.</li>\n<li>Bug fix: JIRA WPB-2223 Reworked API key validation and connection issue notices, formatting.</li>\n<li>Misc: JIRA WPB-2256 Updated readme.txt for Tested up to: 4.6.</li>\n<li>Rework: JIRA WPB-2150 Moved API methods to a new class, formatting, and phpcs rework.</li>\n<li>Bug fix: JIRA WPB-2224 Hide the email address field when widget is loaded.</li>\n<li>Bug fix: JIRA WPB-2225 Fixed jQuery Migrate deprecated warning.</li>\n<li>Update: JIRA WPB-2245 Changed feed to pull from dashboard tag on blog.</li>\n<li>Bug fix: JIRA WPB-2265 Uncaught TypeError: IMHWPB.BaseAdmin is not a constructor.</li>\n<li>Bug fix: JIRA WBP-2236 Errors everywhere when logging in as an Editor.</li>\n<li>Bug fix: JIRA WPB-2234 Add current<em>user</em>can checks to Boldgrid<em>Inspirations->set</em>api<em>key</em>callback().</li>\n<li>Bug fix: JIRA WPB-2237 Limit ajax requests by user.</li>\n<li>Bug fix: JIRA WPB-2240 Limit printing of configs in head.</li>\n</ul>\n<h4>1.2.2</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2058 Added wrap class to the tutorials page.</li>\n<li>Bug fix: JIRA WPB-2184 In PHP 5.2, deactivate and die properly.</li>\n<li>New feature: Added BoldGrid news widget to dashboard.</li>\n<li>Bug fix: JIRA WPB-1994 Fixed issue with WP Theme Editor not being available.</li>\n<li>New feature: Added BoldGrid Feedback widget.</li>\n<li>Bug fix: JIRA WPB-2169 Connect Search defaults to smallest image size when no recommended sizes available.</li>\n<li>Bug fix: JIRA WPB-2192 Allow bug report to correctly show parent themes if submitted.</li>\n</ul>\n<h4>1.2.1</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2160 New From GridBlocks, multiple pages are installed.</li>\n<li>Update: Changed text of getting and entering connect keys.</li>\n<li>Security: JIRA WPB-2151 Disabled autocomplete for API key entry fields.</li>\n<li>Bug fix: JIRA WPB-2145 Fixing issue with theme screenshots on Chrome Ubuntu.</li>\n</ul>\n<h4>1.2</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2119 For asset downloads, when Imagick is loaded, set the thread limit to 1.</li>\n<li>Bug fix: JIRA WPB-2125 Fixing issue where theme was overwritten without version change.</li>\n<li>Bug fix: JIRA WPB-2104 Go back button hides all themes (Inspirations > Add Theme).</li>\n<li>Bug fix: JIRA WPB-2107 BoldGrid Connect Search overlapping footer (Dashboard > Media).</li>\n<li>Bug fix: JIRA WPB-2109 Session issues when starting over and importing active site.</li>\n<li>Bug fix: JIRA WPB-2116 Changes to the order of images in a gallery are not saving.</li>\n<li>Bug fix: JIRA WPB-2134 Staging\'s boldgrid_attribution option and \'Uninitialized string offset\' Notice.</li>\n<li>Bug fix: JIRA WPB-2135 Image not replaced in Page & Post Editor after using Connect Search.</li>\n</ul>\n<h4>1.1.8</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2058 Added wrap class to Inspirations, so admin notices are displayed at the top.</li>\n<li>Bug fix: JIRA WPB-2041 Fixed BoldGrid theme update check in WordPress 4.6.</li>\n<li>Testing: JIRA WPB-2046 Tested on WordPress 4.5.3.</li>\n<li>New feature: JIRA WPB-599 Added options for plugin and theme auto-updates via WordPress autoupdater.</li>\n<li>Update: JIRA WPB-2008 Deploy class updated to allow for is_generic flag.</li>\n<li>Bug fix: JIRA WPB-1950 Prevent a portait image from displaying atop \'Crop Image\' and \'Skip Cropping\' buttons.</li>\n</ul>\n<h4>1.1.7</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2032 Fixed issue when activating key. Added nonce to api key form.</li>\n<li>Rework: JIRA WPB-2030 Updated the \"I don\'t have an API key\" section.</li>\n<li>New feature: JIRA WPB-2029 Added TOS box to API key submission form.</li>\n<li>New feature: JIRA WPB-1905 Added capability for auto-updates of boldgrid-inspirations by API response.</li>\n<li>Bug fix: JIRA WPB-2002 Fixed theme update issue where upgrader says is up to date at times.</li>\n<li>Bug fix: JIRA WPB-2006 Pdes and Homepage not installing correctly on Inpirations Theme Only installs.</li>\n</ul>\n<h4>1.1.6</h4>\n<ul>\n<li>New feature: JIRA WPB-1839 Users can now change their theme release channel.</li>\n<li>Security fix: JIRA WPB-1977 Validate nonce for feedback form diagnostic data callback and form submit.</li>\n<li>Bug fix: JIRA WPB-1955 Fatal error: Class \'Boldgrid<em>Staging</em>Plugin\' not found.</li>\n</ul>\n<h4>1.1.5</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1914 Staged image used on Active page not showing in cart.</li>\n</ul>\n<h4>1.1.4</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1886 Fixed feedback notice being displayed too often (more than a week after submitting).</li>\n<li>New feature: JIRA WPB-1183 Refresh the Library Tab after downloading an image.</li>\n<li>Update: JIRA WPB-1865 Update style of \'Transactions\' pages to better incorporate BoldGrid Staging\'s nav menu.</li>\n<li>Update: JIRA WPB-1884 Passed WordPress 4.5.1 testing.</li>\n<li>Bug fix: JIRA WPB-1855 Do not display feedback notice on update or setting pages.</li>\n<li>Bug fix: JIRA WPB-1860 Fixed horizontal line through screenshot in step 2.</li>\n<li>Bug fix: JIRA WPB-1863 Cart does not look for watermarked images used within staged pages.</li>\n<li>Bug fix: JIRA WPB-1891 View / Download of images within receipts not working for images purchased via Staging.</li>\n<li>Bug fix: JIRA WPB-1893 JS errors in console when viewing attachments.</li>\n<li>Bug fix: JIRA WPB-1900 Attribution shows in menu when menu generated using wp<em>page</em>menu.</li>\n</ul>\n<h4>1.1.3</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1824 Fixed order of plugin deactivation and uninstall in Start Over process.</li>\n<li>Bug fix: JIRA WPB-1814 Fixed PHP notice in page and post editor for In Menu when there is a corrupted nav menu array.</li>\n<li>Bug fix: JIRA WPB-1823 Fixed display of \"Themes\" H1 and the additional themes bar when choosing active or staging before installing a theme.</li>\n<li>Bug fix: JIRA WPB-1840 Fixing thumbnail presentation in inspirations and add new theme.</li>\n</ul>\n<h4>1.1.2.3</h4>\n<ul>\n<li>Update: Sync version. See version 1.1.1.1.</li>\n</ul>\n<h4>1.1.2.2</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1833 Fixed checking for previously downloaded assets in deployment when using multisite (wp-preview).</li>\n</ul>\n<h4>1.1.2.1</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1817 BoldGrid Connect Search: Was not being added when changing a header image in the Customizer.</li>\n<li>Rework: JIRA WPB-1541 Removed feedback form bug report diagnostic report items.</li>\n<li>Bug fix: JIRA WPB-1816 Fixed update class interference with the Add Plugins page.</li>\n</ul>\n<h4>1.1.2</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1809 Fixed undefined index \"action\" for some scenarios. Optimized update class and addressed CodeSniffer items.</li>\n<li>Rework: JIRA WPB-1541 Reworked admin feedback notice.</li>\n<li>Rework: JIRA WPB-1751 Removed analysis processing and optional logging capabilities. Added support for XHProf.</li>\n<li>Bug fix: JIRA WPB-1805 Now adds theme update info on the Customizer Themes page.</li>\n<li>Rework: JIRA WPB-1785 Enabled and reworked image caching for the preview server.</li>\n<li>Rework: JIRA WPB-1751 Reworked analysis processing.</li>\n<li>Update: JIRA WPB-1658 Storing more reliable install data through inspirations.</li>\n<li>Bug fix: JIRA WPB-1787 When not using BoldGrid menu, cart does not dynamically update total page price.</li>\n<li>Update: JIRA WPB-1754 Remove attribution page from search results.</li>\n<li>Bug fix: JIRA WPB-1788 webkit css missing from \'new from gridblocks\'.</li>\n<li>New feature: JIRA WPB-1806 Add \'BoldGrid search\' tab when replacing an image.</li>\n</ul>\n<h4>1.1.1.1</h4>\n<ul>\n<li>Bug Fix: Fixing logo display on login screen.</li>\n</ul>\n<h4>1.1.1</h4>\n<ul>\n<li>Bug fix: Fixed analysis include for preview server.</li>\n<li>Bug fix: New From GridBlocks: Asset download issues.</li>\n</ul>\n<h4>1.1</h4>\n<ul>\n<li>New feature: JIRA WPB-1751 Added analysis processing and optional logging capabilities.</li>\n<li>Bug fix: JIRA WPB-1781 Removed boldgrid<em>dismissed</em>admin_notices from Start Over cleanup.</li>\n<li>New feature: JIRA WPB-1541 Added feedback notice.</li>\n<li>Bug fix: JIRA WPB-1747 New From GridBlocks: For non BoldGrid themes, only load grid css.</li>\n<li>Bug fix: JIRA WPB-1760 New From GridBlocks: Ensure page title shows on preview page.</li>\n<li>Update: JIRA WPB-1779 New From GridBlocks: Update verbiage for \'Downloading GridBlocks\'.</li>\n</ul>\n<h4>1.0.12.1</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1710 Fixed missing device preview tabs on Add New Theme preview modal.</li>\n<li>Bug fix: JIRA WPB-1710 Fixed notice dismissal checking.</li>\n<li>Bug fix: JIRA WPB-1749 On start over, staging menus are not deleted.</li>\n<li>Bug fix: JIRA WPB-1755 Gallery images not showing in cart.</li>\n</ul>\n<h4>1.0.12</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1740 Fixed \"In Menu\" messages in editor when staging plugin is not active, and fixed saving menu selections.</li>\n<li>New feature: JIRA WPB-1726 Added optional feedback for GridBlock Add Page.</li>\n<li>Removed Ft: JIRA WPB-1710 Removed Inspirations Add Pages; replaced by GridBlocks.</li>\n<li>Misc: JIRA WPB-1361 Added license file.</li>\n<li>New feature: Don\'t assign footer contact widget if using base pagesets.</li>\n<li>Bug Fix: JIRA WPB-1732 Fixing css issues on login screen (firefox).</li>\n<li>Bug Fix: JIRA WPB-1687 Image search: Title, Caption, Alt Text and Description do not display on new pages.</li>\n</ul>\n<h4>1.0.11</h4>\n<ul>\n<li>New feature: JIRA WPB-1699 Added optional feedback for theme activation.</li>\n<li>New feature: JIRA WPB-1690 Adding BoldGrid themes to All themes install menu.</li>\n<li>Bug fix: JIRA WPB-1686 Limited items loaded in network admin pages.</li>\n<li>Improvement: JIRA WPB-1604 Added a \"Cancel\" link to the \"In Menu\" section.</li>\n<li>Improvement: JIRA WPB-1603 Display menu locations in the editor \"In Menu\" section.</li>\n<li>Bug fix: JIRA WPB-1602 Corrected capitalization of \"None\" under \"In menu\" in the editor.</li>\n<li>Improvement: JIRA WPB-1664 Gets api<em>key and site</em>hash from configs instead of get_option.</li>\n<li>Bug fix: JIRA WPB-1597 Fixing indefined index error</li>\n<li>New feature: JIRA WPB-1649 Added reporting of PHP version and mobile ratio.</li>\n<li>Bug fix: JIRA WPB-1598 \'Mine\' count on \'all pages\' is incorrect.</li>\n<li>Bug fix: JIRA WPB-1647 JS error with easy-attachment-preview-size.js.</li>\n<li>Bug fix: JIRA WPB-1651 When the BG menu is turned off, Appearance link should take you to themes.</li>\n</ul>\n<h4>1.0.10</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1632 Fixed handling of subcategory<em>id in deploy</em>page_sets.</li>\n<li>New feature: JIRA WPB-1510 Moved adhoc functions.php to class-boldgrid-inspirations-utility.php (class Boldgrid<em>Inspirations</em>Utility).</li>\n<li>Rework: JIRA WPB-1553 Updated require and include statements for standards.</li>\n<li>Bug fix: JIRA WPB-1563 Updated pages in which wp<em>iframe-media</em>upload.css is loaded.</li>\n<li>Bug fix: JIRA WPB-1549 Resolve attribution page missing attribution for several images.png.</li>\n</ul>\n<h4>1.0.9.2</h4>\n<ul>\n<li>Bug fix: Add GridBlock Sets feature disabled.</li>\n</ul>\n<h4>1.0.9.1</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1553 Fixed support for PHP 5.2 to deactivate plugin.</li>\n<li>Bug fix: Prevent click of links in add<em>new</em>page_selection previews.</li>\n<li>Bug fix: JIRA WPB-1554 Fixed undefined JavaScript variable pagenow for customizer link.</li>\n</ul>\n<h4>1.0.9</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1554 Fixed theme link in network dashboard nav menu.</li>\n<li>Bug fix: JIRA WPB-1590 Fixed JavaScript error for undefined screen info in network dashboard.</li>\n<li>Bug fix: JIRA WPB-1535 Fixed theme deployment issues.</li>\n<li>New feature: JIRA WPB-1584 Added an opt-out feedback payload delivery system.</li>\n<li>New feature: JIRA WPB-1580 Added optional feedback for customizer_start.</li>\n<li>Bug fix: JIRA WPB-1571 Removed plugin dependency admin notice when editing an attachment (image).</li>\n<li>New feature: JIRA WPB-1579 Added feedback opt-out in BoldGrid Settings, hidden for now.</li>\n<li>Bug fix: JIRA WPB-1575 Addressed an issue causing mismatch color palettes on cached previews</li>\n<li>New feature: JIRA WPB-1514 Add new pages offers page templates to choose from.</li>\n</ul>\n<h4>1.0.8.1</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1553 Fixed PHP version check condition (<5.3).</li>\n</ul>\n<h4>1.0.8</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1561 Fixed missing get<em>plugin</em>data on update calls.</li>\n<li>New feature: JIRA WPB-1511 Added dependency plugin notice on editor pages.</li>\n<li>Bug fix: JIRA WPB-1553 Added support for <strong>DIR</strong> in PHP <=5.2.</li>\n<li>Bug fix: JIRA WPB-1371 JSON encoded image data for media download requests.</li>\n<li>New feature: JIRA WPB-1332 Swapping loading GIF to CSS loading image.</li>\n<li>New feature: JIRA WPB-1072 Storing static pages on install</li>\n<li>New feature: JIRA WPB-1539 When deleting a page, remove it from any applicable menus as well.</li>\n<li>New feature JIRA WPB-1542 Manage menu assignment within editor.</li>\n<li>New feature JIRA WPB-1555 Add wp-image-## class to images during deployment.</li>\n<li>New feature JIRA WPB-1557 Add wp-image-## class to images when adding gridblocks.</li>\n<li>Bug fix: JIRA WPB-1506 Theme naming missing in preview.</li>\n<li>Bug fix: JIRA WPB-1443 Extra page listed under \'Mine\'.</li>\n<li>Bug fix: JIRA WPB-1560 Install options not available on preview server</li>\n</ul>\n<h4>1.0.7</h4>\n<ul>\n<li>Rework: JIRA WPB-1533 Ensured activation data is sent after first login.</li>\n</ul>\n<h4>1.0.7</h4>\n<ul>\n<li>Rework: JIRA WPB-1533 Ensured activation data is sent after first login.</li>\n</ul>\n<h4>1.0.6</h4>\n<ul>\n<li>Rework: JIRA WPB-1411 Added more output to the deploy log.</li>\n</ul>\n<h4>1.0.5</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1462 Fixed position of dependency plugins admin notice. Also limited to Dashboard and plugins page.</li>\n<li>Bug fix: JIRA WPB-1290 Fixing issues with galleries leaving empty spaces</li>\n<li>Bug fix: JIRA WPB-1471 Made deployment plugin installation respect release channel.</li>\n<li>Rework: JIRA WPB-1452 Remove unneeded call to \'boldgrid<em>activate</em>framework\' during deployment.</li>\n<li>Bug fix: JIRA WPB-946 Fixed margin bug on step 2 additional themes.</li>\n<li>Bug fix: JIRA WPB-1384 Increase width of select input on image search modal.</li>\n<li>Bug fix: JIRA WPB-1508 BoldGrid Image search box size is inconsistent.</li>\n</ul>\n<h4>1.0.4</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1442 Fixing inspiration border styles for wordpress 4.4</li>\n<li>Bug fix: JIRA WPB-1461 Updating login button styles for wordpress 4.4</li>\n<li>Bug fix: JIRA WPB-1411 Added initialization and checks for empty image queues in deployment.</li>\n<li>Bug fix: JIRA WPB-1406 Attribution page still showing in \'All Pages\'.</li>\n<li>Bug fix: JIRA WPB-1451 Active images are showing in Staging attribution page.</li>\n<li>Bug fix: JIRA WPB-1466 Tabs on tutorials page too small at 1035px - 1482px.</li>\n</ul>\n<h4>1.0.3</h4>\n<ul>\n<li>New feature: JIRA WPB-1363 Updated readme.txt for WordPress standards.</li>\n<li>New feature: JIRA WPB-1389 When starting over theme mods are saved with a flag to recompile sass</li>\n<li>Bug fix: JIRA WPB-1420 Content of Attribution page is overwriting page saves.</li>\n</ul>\n<h4>1.0.2</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1395 Adjusted theme update data; now gets theme uri from theme style.css, download url from api data.</li>\n<li>Rework JIRA WPB-1374 Updated activation timestamp to use GMT/UTC.</li>\n<li>Bug fix: JIRA WPB-1377 Reseller option is now set on first call to either the front end or wp_login.</li>\n<li>Bug fix: Adjusted handling for image purchases when errors occur.</li>\n<li>Bug fix: JIRA WPB-1365 Purchase link on editing a page goes to wrong link.</li>\n<li>Bug fix: JIRA WPB-1368 Inspirations step 0 text refers to nonexisting help tabs.</li>\n<li>Rework: JIRA WPB-1378 Adjusted formatting of footer in Dashboard.</li>\n<li>Rework: JIRA WPB-1369 Update minus signs on \'Transaction History\'.</li>\n<li>New feature: JIRA WPB-1379 On the transactions page, show the reseller that processed the credits.</li>\n<li>Bug fix: Count of \'All\' pages inaccurate on \'All pages\'.</li>\n<li>Bug fix: JIRA WPB-1367 Updated link for \'Lost your BoldGrid Connect Key?\'.</li>\n</ul>\n<h4>1.0.1</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1374 Updated activation timestamp to include timezone in UTC.</li>\n<li>Bug fix: Attribution page shows style tags.</li>\n<li>Bug fix: Strict Standards fix for wp<em>kses</em>allowed_html.</li>\n<li>Bug fix: Fixed incorrect link.</li>\n</ul>\n<h4>1.0</h4>\n<ul>\n<li>Initial public release.</li>\n</ul>\n\";s:14:\"upgrade_notice\";s:311:\"<h4>1.3</h4>\n<p>Version 1.3 has been released with a redesigned Inspiration phase. For more information on this change and others, please visit our blog at https://www.boldgrid.com/boldgrid-1-3-released/ .</p>\n<h4>1.0.2</h4>\n<p>Users should upgrade to version 1.0.2 to ensure proper BoldGrid theme updates.</p>\n\";}s:7:\"siteurl\";s:25:\"https://www.boldgrid.com/\";s:13:\"compatibility\";s:125072:\"{\"6.6.2\":{\"2.9.3\":[100,95]},\"6.6.1\":{\"2.9.3\":[100,95]},\"6.6\":{\"2.9.3\":[100,95]},\"6.5.5\":{\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"6.5.4\":{\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"6.5.3\":{\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"6.5.2\":{\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"6.5.1\":{\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"6.5\":{\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"6.4.5\":{\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"6.4.4\":{\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"6.4.3\":{\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"6.4.2\":{\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"6.4.1\":{\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"6.4\":{\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"6.3.5\":{\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"6.3.4\":{\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"6.3.3\":{\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"6.3.2\":{\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"6.3.1\":{\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"6.3\":{\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"6.2.6\":{\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"6.2.5\":{\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"6.2.4\":{\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"6.2.3\":{\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"6.2.2\":{\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"6.2.1\":{\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"6.2\":{\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"6.1.7\":{\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"6.1.6\":{\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"6.1.5\":{\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"6.1.4\":{\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"6.1.3\":{\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"6.1.2\":{\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"6.1.1\":{\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"6.1\":{\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"6.0.7\":{\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"6.0.6\":{\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"6.0.5\":{\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"6.0.4\":{\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"6.0.3\":{\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"6.0.2\":{\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"6.0.1\":{\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"6.0\":{\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.9.9\":{\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.9.8\":{\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.9.7\":{\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.9.6\":{\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.9.5\":{\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.9.4\":{\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.9.3\":{\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.9.2\":{\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.9.1\":{\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.9\":{\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.8.8\":{\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.8.7\":{\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.8.6\":{\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.8.5\":{\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.8.4\":{\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.8.3\":{\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.8.2\":{\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.8.1\":{\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.8\":{\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.7.9\":{\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.7.8\":{\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.7.7\":{\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.7.6\":{\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.7.5\":{\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.7.4\":{\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.7.3\":{\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.7.2\":{\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.7.1\":{\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.7\":{\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.6.9\":{\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.6.8\":{\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.6.7\":{\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.6.6\":{\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.6.5\":{\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.6.4\":{\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.6.3\":{\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.6.2\":{\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.6.10\":{\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.6.1\":{\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.6\":{\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.5.9\":{\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.5.8\":{\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.5.7\":{\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.5.6\":{\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.5.5\":{\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.5.4\":{\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.5.3\":{\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.5.2\":{\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.5.1\":{\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.5\":{\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.4.9\":{\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.4.8\":{\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.4.7\":{\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.4.6\":{\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.4.5\":{\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.4.4\":{\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.4.3\":{\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.4.2\":{\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.4.1\":{\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.4\":{\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.3.9\":{\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.3.8\":{\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.3.7\":{\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.3.6\":{\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.3.5\":{\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.3.4\":{\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.3.3\":{\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.3.2\":{\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.3.1\":{\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.3\":{\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.2.9\":{\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.2.8\":{\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.2.7\":{\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.2.6\":{\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.2.5\":{\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.2.4\":{\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.2.3\":{\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.2.2\":{\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.2.1\":{\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.2\":{\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.1.8\":{\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.1.7\":{\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.1.6\":{\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.1.5\":{\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.1.4\":{\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.1.3\":{\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.1.2\":{\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.1.1\":{\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.1\":{\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.0.9\":{\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.0.8\":{\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.0.7\":{\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.0.6\":{\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.0.5\":{\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.0.4\":{\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.0.3\":{\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.0.2\":{\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.0.10\":{\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.0.1\":{\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.0\":{\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.9.9\":{\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.9.8\":{\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.9.7\":{\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.9.6\":{\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.9.5\":{\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.9.4\":{\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.9.3\":{\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.9.2\":{\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.9.14\":{\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.9.13\":{\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.9.12\":{\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.9.11\":{\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.9.10\":{\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.9.1\":{\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.9\":{\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.8.9\":{\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.8.8\":{\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.8.7\":{\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.8.6\":{\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.8.5\":{\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.8.4\":{\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.8.3\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.8.2\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.8.10\":{\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.8.1\":{\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.8\":{\"1.4.0.1\":[100,12],\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.7.9\":{\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.7.8\":{\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.7.7\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.7.6\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.7.5\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.7.4\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.7.3\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.7.2\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.7.13\":{\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.7.12\":{\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.7.11\":{\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.7.10\":{\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.7.1\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.7\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.6.9\":{\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.6.8\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.6.7\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.6.6\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.6.5\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.6.4\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.6.3\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.6.2\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.6.12\":{\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.6.11\":{\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.6.10\":{\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.6.1\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.6\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.5.9\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.5.8\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.5.7\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.5.6\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.5.5\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.5.4\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.5.3\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.5.2\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.5.12\":{\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.5.11\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.5.10\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.5.1\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.5\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.4.9\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.4.8\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.4.7\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.4.6\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.4.5\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.4.10\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.3.1\":{\"0.29\":[100,12],\"1.0.2\":[100,12],\"1.0.3\":[100,12],\"1.0.4\":[100,12],\"1.0.5\":[100,12],\"1.0.6\":[100,12],\"1.0.7\":[100,12],\"1.0.8.1\":[100,12],\"1.0.9.1\":[100,12],\"1.0.9.2\":[100,12],\"1.0.10\":[100,12],\"1.0.11\":[100,12],\"1.0.12.1\":[100,12],\"1.1.1\":[100,12],\"1.1.2.1\":[100,12],\"1.1.2.3\":[100,12],\"1.1.1.1\":[100,12],\"1.1.3\":[100,12],\"1.1.4\":[100,12],\"1.1.5\":[100,12],\"1.1.6\":[100,12],\"1.1.7\":[100,12],\"1.1.8\":[100,12],\"1.2\":[100,12],\"1.2.1\":[100,12],\"1.2.2\":[100,12],\"1.2.4\":[100,12],\"1.2.5\":[100,12],\"1.2.8\":[100,12],\"1.2.9\":[100,12],\"1.2.11\":[100,12],\"1.2.13\":[100,12],\"1.3\":[100,12],\"1.3.1\":[100,12],\"1.3.2\":[100,12],\"1.3.3\":[100,12],\"1.3.4\":[100,12],\"1.3.5\":[100,12],\"1.3.6\":[100,12],\"1.3.7\":[100,12],\"1.3.8\":[100,12],\"1.3.9\":[100,12],\"1.3.10\":[100,12],\"1.4\":[100,12],\"1.4.1\":[100,12],\"1.4.2\":[100,12],\"1.4.3\":[100,12],\"1.4.4\":[100,12],\"1.4.5\":[100,12],\"1.4.6\":[100,12],\"1.4.0.1\":[100,12],\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]}}\";s:6:\"rating\";i:100;s:11:\"num_ratings\";i:100000;s:4:\"tags\";a:5:{s:11:\"inspiration\";s:11:\"Inspiration\";s:13:\"customization\";s:13:\"Customization\";s:5:\"build\";s:5:\"Build\";s:6:\"create\";s:6:\"Create\";s:6:\"design\";s:6:\"Design\";}s:7:\"banners\";a:2:{s:3:\"low\";s:65:\"//repo.boldgrid.com/assets/banner-inspirations-banner-772x250.png\";s:4:\"high\";s:66:\"//repo.boldgrid.com/assets/banner-inspirations-banner-1544x500.png\";}s:11:\"new_version\";s:5:\"2.9.3\";s:4:\"name\";s:21:\"BoldGrid Inspirations\";s:4:\"slug\";s:21:\"boldgrid-inspirations\";s:17:\"short_description\";s:135:\"BoldGrid Inspirations is an inspiration-driven plugin to assist with creating a fresh new website, or to customize an existing website.\";s:12:\"last_updated\";s:19:\"2024-11-08 02:19:27\";s:6:\"author\";s:65:\"<a href=\"https://www.boldgrid.com/\" target=\"_blank\">BoldGrid </a>\";s:5:\"icons\";a:3:{s:2:\"1x\";s:71:\"https://repo.boldgrid.com/assets/icon-boldgrid-inspirations-128x128.png\";s:2:\"2x\";s:71:\"https://repo.boldgrid.com/assets/icon-boldgrid-inspirations-256x256.png\";s:3:\"svg\";s:71:\"https://repo.boldgrid.com/assets/icon-boldgrid-inspirations-128x128.svg\";}s:5:\"added\";s:10:\"2015-03-19\";s:3:\"url\";s:25:\"https://www.boldgrid.com/\";s:15:\"active_installs\";b:1;s:13:\"download_link\";s:148:\"https://api.boldgrid.com/api/open/getAsset?key=4762ce765a2d3112d71e13670e9b83d6&id=1300633&installed_plugin_version=2.6.5&installed_wp_version=6.7.1\";}s:16:\"boldgrid-gallery\";O:8:\"stdClass\":24:{s:5:\"title\";s:16:\"BoldGrid Gallery\";s:7:\"version\";s:5:\"1.5.1\";s:8:\"asset_id\";i:1118061;s:12:\"release_date\";s:19:\"2020-07-27 20:25:23\";s:19:\"requires_wp_version\";s:3:\"4.4\";s:17:\"tested_wp_version\";s:3:\"5.8\";s:8:\"sections\";a:4:{s:11:\"description\";s:82:\"<p>BoldGrid Gallery is a standalone plugin used for slideshows and galleries.</p>\n\";s:12:\"installation\";s:183:\"<ol>\n<li><p>Upload the entire boldgrid-gallery folder to the /wp-content/plugins/ directory.</p></li>\n<li><p>Activate the plugin through the Plugins menu in WordPress.</p></li>\n</ol>\n\";s:9:\"changelog\";s:3079:\"<h4>1.5.1</h4>\n<ul>\n<li>Bug fix: Fix update class.</li>\n<li>Bug fix: Trying to access array offset on value of type bool.</li>\n</ul>\n<h4>1.5</h4>\n<ul>\n<li>Update: Bump version.</li>\n</ul>\n<h4>1.4.3</h4>\n<ul>\n<li>Update: JIRA WPB-3292 Updated plugin URI.</li>\n</ul>\n<h4>1.4.2</h4>\n<ul>\n<li>Bug fix: JIRA WPB-3161 Fixed auto plugin update.</li>\n</ul>\n<h4>1.4.1</h4>\n<ul>\n<li>Bug fix: JIRA WPB-3151 Added check and load before using get<em>plugin</em>data() for updates.</li>\n<li>Update: JIRA WPB-3112 Updated wc-gallery: 1.52 => 1.55.</li>\n</ul>\n<h4>1.4</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2912 Fixed issue when installing plugins from the Tools Import page.</li>\n</ul>\n<h4>1.3.1</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2892 Fixed plugin update checks for some scenarios (WP-CLI, Plesk, etc).</li>\n<li>Testing: JIRA WPB-2744 Tested on WordPress 4.7.</li>\n<li>Misc: JIRA WPB-2503 Added plugin requirements to readme.txt file.</li>\n</ul>\n<h4>1.3</h4>\n<ul>\n<li>Update: Bump Version.</li>\n</ul>\n<h4>1.2.3</h4>\n<ul>\n<li>Misc: JIRA WPB-2344 Updated readme.txt for Tested up to 4.6.1.</li>\n<li>Bug fix: JIRA WPB-2336 Load BoldGrid settings from the correct WP option (site/blog).</li>\n<li>Update: JIRA WPB-2368 Version constant is now set from plugin file.</li>\n</ul>\n<h4>1.2.2</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2310 Removed broken plugin Settings link. Pending review on WPB-2309.</li>\n</ul>\n<h4>1.2.1</h4>\n<ul>\n<li>Misc: JIRA WPB-2256 Updated readme.txt for Tested up to: 4.6.</li>\n<li>Rework: JIRA WPB-1825 Formatting.</li>\n</ul>\n<h4>1.2</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2114 Fixed gallery displaying in editor on wordpress 4.6.</li>\n<li>Bug fix: JIRA WPB-2114 Fixing ordering of gallery items.</li>\n</ul>\n<h4>1.1.2</h4>\n<ul>\n<li>New feature: JIRA WPB-2037 Added capability for auto-updates by BoldGrid API response.</li>\n<li>Update: JIRA WPB-2024 Updated wc-gallery: 1.48 => 1.52.</li>\n<li>Misc: Updated editor.js to pass JSHint.</li>\n</ul>\n<h4>1.1.1</h4>\n<ul>\n<li>Update: JIRA WPB-1884 Passed WordPress 4.5.1 testing.</li>\n<li>Bug fix: JIRA WPB-1893 JS errors in console when viewing attachments.</li>\n</ul>\n<h4>1.1.0.1</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1816 Fixed update class interference with the Add Plugins page.</li>\n</ul>\n<h4>1.1</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1809 Fixed undefined index \"action\" for some scenarios. Optimized update class and addressed CodeSniffer items.</li>\n</ul>\n<h4>1.0.4</h4>\n<ul>\n<li>Misc: JIRA WPB-1361 Added license file.</li>\n<li>Bug Fix: JIRA WPB-1646 Fixing Issues where masonry gallery was not WYSIWYG.</li>\n</ul>\n<h4>1.0.3</h4>\n<ul>\n<li>Update: JIRA WPB-1611 Updated wc-gallery: 1.40 => 1.48.</li>\n<li>Rework: JIRA WPB-1617 Updated require and include statements for standards.</li>\n</ul>\n<h4>1.0.2</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1553 Changed <strong>DIR</strong> to dirname( <strong>FILE</strong> ) for PHP <=5.2.</li>\n<li>Misc JIRA WPB-1468 Updated readme.txt for Tested up to: 4.4.1</li>\n</ul>\n<h4>1.0.1</h4>\n<ul>\n<li>New feature: JIRA WPB-1363 Updated readme.txt for WordPress standards.</li>\n</ul>\n<h4>1.0</h4>\n<ul>\n<li>Initial public release.</li>\n</ul>\n\";s:14:\"upgrade_notice\";s:1:\"\n\";}s:7:\"siteurl\";s:24:\"http://www.boldgrid.com/\";s:13:\"compatibility\";s:2163:\"{\"5.4\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.8.1\":{\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.7.5\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.7.4\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.7.3\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.7.2\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.7.1\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.7\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.6.6\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.6.5\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.6.4\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.6.3\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.6.2\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.6.1\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.6\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.5.9\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.5.8\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.5.7\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.5.6\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.5.5\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.5.4\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.5.3\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.5.2\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.5.1\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.5\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.4.9\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.4.8\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.4.7\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.4.6\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.4.5\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.4.10\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.3.1\":{\"0.4\":[100,12],\"1.0\":[100,12],\"1.0.1\":[100,12],\"1.0.2\":[100,12],\"1.0.3\":[100,12],\"1.0.4\":[100,12],\"1.1.0.1\":[100,12],\"1.1.1\":[100,12],\"1.1.2\":[100,12],\"1.2\":[100,12],\"1.2.1\":[100,12],\"1.2.2\":[100,12],\"1.2.3\":[100,12],\"1.3\":[100,12],\"1.3.1\":[100,12],\"1.3.2\":[100,12],\"1.4\":[100,12],\"1.4.1\":[100,12],\"1.4.2\":[100,12],\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]}}\";s:6:\"rating\";i:100;s:11:\"num_ratings\";i:100000;s:4:\"tags\";a:4:{s:7:\"gallery\";s:7:\"Gallery\";s:6:\"slider\";s:6:\"Slider\";s:9:\"slideshow\";s:9:\"Slideshow\";s:7:\"masonry\";s:7:\"Masonry\";}s:7:\"banners\";a:2:{s:3:\"low\";s:53:\"//repo.boldgrid.com/assets/banner-gallery-772x250.png\";s:4:\"high\";s:54:\"//repo.boldgrid.com/assets/banner-gallery-1544x500.png\";}s:11:\"new_version\";s:5:\"1.5.1\";s:4:\"name\";s:16:\"BoldGrid Gallery\";s:4:\"slug\";s:16:\"boldgrid-gallery\";s:17:\"short_description\";s:74:\"BoldGrid Gallery is a standalone plugin used for slideshows and galleries.\";s:12:\"last_updated\";s:19:\"2020-07-27 20:25:23\";s:6:\"author\";s:67:\"<a href=\"http://www.boldgrid.com/\" target=\"_blank\">BoldGrid.com</a>\";s:5:\"icons\";a:3:{s:2:\"1x\";s:66:\"https://repo.boldgrid.com/assets/icon-boldgrid-gallery-128x128.png\";s:2:\"2x\";s:66:\"https://repo.boldgrid.com/assets/icon-boldgrid-gallery-256x256.png\";s:3:\"svg\";s:66:\"https://repo.boldgrid.com/assets/icon-boldgrid-gallery-128x128.svg\";}s:5:\"added\";s:10:\"2015-03-19\";s:3:\"url\";s:24:\"http://www.boldgrid.com/\";s:15:\"active_installs\";b:1;s:13:\"download_link\";s:117:\"https://api.boldgrid.com/api/open/getAsset?key=4762ce765a2d3112d71e13670e9b83d6&id=1118061&installed_wp_version=6.7.1\";}}','off'),(1464262,'_transient_timeout_boldgrid_backup_is_functional','1738048089','off'),(1464263,'_transient_boldgrid_backup_is_functional','1','off'),(1462226,'_transient_timeout_kirki_remote_url_contents','1738404286','off'),(1462227,'_transient_kirki_remote_url_contents','a:3:{s:32:\"21158b71aa764c27f41d5e3af627bdb6\";s:6273:\"/* cyrillic-ext */\n@font-face {\n  font-family: \'Open Sans\';\n  font-style: normal;\n  font-weight: 400;\n  font-stretch: normal;\n  font-display: swap;\n  src: url(https://fonts.gstatic.com/s/opensans/v40/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4taVQUwaEQXjN_mQ.woff) format(\'woff\');\n  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;\n}\n/* cyrillic */\n@font-face {\n  font-family: \'Open Sans\';\n  font-style: normal;\n  font-weight: 400;\n  font-stretch: normal;\n  font-display: swap;\n  src: url(https://fonts.gstatic.com/s/opensans/v40/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4kaVQUwaEQXjN_mQ.woff) format(\'woff\');\n  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;\n}\n/* greek-ext */\n@font-face {\n  font-family: \'Open Sans\';\n  font-style: normal;\n  font-weight: 400;\n  font-stretch: normal;\n  font-display: swap;\n  src: url(https://fonts.gstatic.com/s/opensans/v40/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4saVQUwaEQXjN_mQ.woff) format(\'woff\');\n  unicode-range: U+1F00-1FFF;\n}\n/* greek */\n@font-face {\n  font-family: \'Open Sans\';\n  font-style: normal;\n  font-weight: 400;\n  font-stretch: normal;\n  font-display: swap;\n  src: url(https://fonts.gstatic.com/s/opensans/v40/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4jaVQUwaEQXjN_mQ.woff) format(\'woff\');\n  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;\n}\n/* hebrew */\n@font-face {\n  font-family: \'Open Sans\';\n  font-style: normal;\n  font-weight: 400;\n  font-stretch: normal;\n  font-display: swap;\n  src: url(https://fonts.gstatic.com/s/opensans/v40/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4iaVQUwaEQXjN_mQ.woff) format(\'woff\');\n  unicode-range: U+0307-0308, U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;\n}\n/* math */\n@font-face {\n  font-family: \'Open Sans\';\n  font-style: normal;\n  font-weight: 400;\n  font-stretch: normal;\n  font-display: swap;\n  src: url(https://fonts.gstatic.com/s/opensans/v40/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B5caVQUwaEQXjN_mQ.woff) format(\'woff\');\n  unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;\n}\n/* symbols */\n@font-face {\n  font-family: \'Open Sans\';\n  font-style: normal;\n  font-weight: 400;\n  font-stretch: normal;\n  font-display: swap;\n  src: url(https://fonts.gstatic.com/s/opensans/v40/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B5OaVQUwaEQXjN_mQ.woff) format(\'woff\');\n  unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;\n}\n/* vietnamese */\n@font-face {\n  font-family: \'Open Sans\';\n  font-style: normal;\n  font-weight: 400;\n  font-stretch: normal;\n  font-display: swap;\n  src: url(https://fonts.gstatic.com/s/opensans/v40/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4vaVQUwaEQXjN_mQ.woff) format(\'woff\');\n  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;\n}\n/* latin-ext */\n@font-face {\n  font-family: \'Open Sans\';\n  font-style: normal;\n  font-weight: 400;\n  font-stretch: normal;\n  font-display: swap;\n  src: url(https://fonts.gstatic.com/s/opensans/v40/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4uaVQUwaEQXjN_mQ.woff) format(\'woff\');\n  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;\n}\n/* latin */\n@font-face {\n  font-family: \'Open Sans\';\n  font-style: normal;\n  font-weight: 400;\n  font-stretch: normal;\n  font-display: swap;\n  src: url(https://fonts.gstatic.com/s/opensans/v40/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4gaVQUwaEQXjM.woff) format(\'woff\');\n  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;\n}\n\";s:32:\"9f46bb238e1c235757c22ef43a665e47\";s:894:\"/* latin-ext */\n@font-face {\n  font-family: \'Julius Sans One\';\n  font-style: normal;\n  font-weight: 400;\n  font-display: swap;\n  src: url(https://fonts.gstatic.com/s/juliussansone/v18/1Pt2g8TAX_SGgBGUi0tGOYEga5WOzHsRy6KHHow-.woff) format(\'woff\');\n  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;\n}\n/* latin */\n@font-face {\n  font-family: \'Julius Sans One\';\n  font-style: normal;\n  font-weight: 400;\n  font-display: swap;\n  src: url(https://fonts.gstatic.com/s/juliussansone/v18/1Pt2g8TAX_SGgBGUi0tGOYEga5WOwnsRy6KHHg.woff) format(\'woff\');\n  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;\n}\n\";s:32:\"57464416737d0655e047cf1ad7307b28\";s:5818:\"/* cyrillic-ext */\n@font-face {\n  font-family: \'Roboto\';\n  font-style: normal;\n  font-weight: 400;\n  font-stretch: normal;\n  font-display: swap;\n  src: url(https://fonts.gstatic.com/s/roboto/v47/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbVmZiAz0klQm_20O0g.woff) format(\'woff\');\n  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;\n}\n/* cyrillic */\n@font-face {\n  font-family: \'Roboto\';\n  font-style: normal;\n  font-weight: 400;\n  font-stretch: normal;\n  font-display: swap;\n  src: url(https://fonts.gstatic.com/s/roboto/v47/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbVmQiAz0klQm_20O0g.woff) format(\'woff\');\n  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;\n}\n/* greek-ext */\n@font-face {\n  font-family: \'Roboto\';\n  font-style: normal;\n  font-weight: 400;\n  font-stretch: normal;\n  font-display: swap;\n  src: url(https://fonts.gstatic.com/s/roboto/v47/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbVmYiAz0klQm_20O0g.woff) format(\'woff\');\n  unicode-range: U+1F00-1FFF;\n}\n/* greek */\n@font-face {\n  font-family: \'Roboto\';\n  font-style: normal;\n  font-weight: 400;\n  font-stretch: normal;\n  font-display: swap;\n  src: url(https://fonts.gstatic.com/s/roboto/v47/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbVmXiAz0klQm_20O0g.woff) format(\'woff\');\n  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;\n}\n/* math */\n@font-face {\n  font-family: \'Roboto\';\n  font-style: normal;\n  font-weight: 400;\n  font-stretch: normal;\n  font-display: swap;\n  src: url(https://fonts.gstatic.com/s/roboto/v47/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbVnoiAz0klQm_20O0g.woff) format(\'woff\');\n  unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;\n}\n/* symbols */\n@font-face {\n  font-family: \'Roboto\';\n  font-style: normal;\n  font-weight: 400;\n  font-stretch: normal;\n  font-display: swap;\n  src: url(https://fonts.gstatic.com/s/roboto/v47/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbVn6iAz0klQm_20O0g.woff) format(\'woff\');\n  unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;\n}\n/* vietnamese */\n@font-face {\n  font-family: \'Roboto\';\n  font-style: normal;\n  font-weight: 400;\n  font-stretch: normal;\n  font-display: swap;\n  src: url(https://fonts.gstatic.com/s/roboto/v47/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbVmbiAz0klQm_20O0g.woff) format(\'woff\');\n  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;\n}\n/* latin-ext */\n@font-face {\n  font-family: \'Roboto\';\n  font-style: normal;\n  font-weight: 400;\n  font-stretch: normal;\n  font-display: swap;\n  src: url(https://fonts.gstatic.com/s/roboto/v47/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbVmaiAz0klQm_20O0g.woff) format(\'woff\');\n  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;\n}\n/* latin */\n@font-face {\n  font-family: \'Roboto\';\n  font-style: normal;\n  font-weight: 400;\n  font-stretch: normal;\n  font-display: swap;\n  src: url(https://fonts.gstatic.com/s/roboto/v47/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbVmUiAz0klQm_20.woff) format(\'woff\');\n  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;\n}\n\";}','off'),(189,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:16:\"marie@aiinst.com\";s:7:\"version\";s:5:\"6.7.1\";s:9:\"timestamp\";i:1737873328;}','off'),(170,'current_theme','Crio','yes'),(171,'theme_switched','','yes'),(172,'boldgrid_backup_history','a:38:{i:0;a:3:{s:7:\"user_id\";i:0;s:9:\"timestamp\";i:1645644680;s:7:\"message\";s:50:\"Twenty Twenty-One theme (version 1.3) deactivated.\";}i:1;a:3:{s:7:\"user_id\";i:0;s:9:\"timestamp\";i:1645644680;s:7:\"message\";s:43:\"Grid One theme (version 1.25.10) activated.\";}i:2;a:3:{s:7:\"user_id\";s:7:\"WP Cron\";s:9:\"timestamp\";i:1645644747;s:7:\"message\";s:35:\"WordPress updated to version 5.7.5.\";}i:3;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1645645852;s:7:\"message\";s:45:\"Grid One theme (version 1.25.10) deactivated.\";}i:4;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1645645852;s:7:\"message\";s:38:\"Crio theme (version 2.12.0) activated.\";}i:5;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1645645854;s:7:\"message\";s:46:\"Crio Premium plugin (version 1.5.2) activated.\";}i:6;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1645645857;s:7:\"message\";s:42:\"weForms plugin (version 1.6.12) activated.\";}i:7;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1645645863;s:7:\"message\";s:52:\"BoldGrid Easy SEO plugin (version 1.6.10) activated.\";}i:8;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1645646019;s:7:\"message\";s:141:\"Backup file created: /home/ndd6915/boldgrid_backup/boldgrid-backup-naplesirrigation.com_bg_naplesirrigation.com-23761a18-20220223-195307.zip.\";}i:9;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1645646051;s:7:\"message\";s:141:\"Backup file created: /home/ndd6915/boldgrid_backup/boldgrid-backup-naplesirrigation.com_bg_naplesirrigation.com-23761a18-20220223-195344.zip.\";}i:10;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1646082343;s:7:\"message\";s:60:\"A copy of the following file was saved: wp-content/index.php\";}i:11;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1646082343;s:7:\"message\";s:193:\"A copy of wp-content/index.php has been restored from this archive file: /home/ndd6915/boldgrid_backup/boldgrid-backup-naplesirrigation.com_bg_naplesirrigation.com-23761a18-20220223-193113.zip.\";}i:12;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1649094867;s:7:\"message\";s:141:\"Backup file created: /home/ndd6915/boldgrid_backup/boldgrid-backup-naplesirrigation.com_bg_naplesirrigation.com-23761a18-20220404-175310.zip.\";}i:13;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1649094897;s:7:\"message\";s:180:\"Due to retention settings, the following backup was deleted: /home/ndd6915/boldgrid_backup/boldgrid-backup-naplesirrigation.com_bg_naplesirrigation.com-23761a18-20220223-193113.zip\";}i:14;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1649446779;s:7:\"message\";s:117:\"Backup file created: /home/ndd6915/boldgrid_backup/boldgrid-backup-naplesirrigation.com-23761a18-20220408-193821.zip.\";}i:15;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1649446809;s:7:\"message\";s:180:\"Due to retention settings, the following backup was deleted: /home/ndd6915/boldgrid_backup/boldgrid-backup-naplesirrigation.com_bg_naplesirrigation.com-23761a18-20220223-195344.zip\";}i:16;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1649446833;s:7:\"message\";s:51:\"Akismet Anti-Spam plugin (version 4.1.9) activated.\";}i:17;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1649447094;s:7:\"message\";s:53:\"Akismet Anti-Spam plugin (version 4.1.9) deactivated.\";}i:18;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1649447280;s:7:\"message\";s:51:\"Akismet Anti-Spam plugin upgraded to version 4.2.2.\";}i:19;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1649447491;s:7:\"message\";s:30:\"Total Upkeep settings updated.\";}i:20;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1657136329;s:7:\"message\";s:117:\"Backup file created: /home/ndd6915/boldgrid_backup/boldgrid-backup-naplesirrigation.com-23761a18-20220706-193712.zip.\";}i:21;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1657136376;s:7:\"message\";s:180:\"Due to retention settings, the following backup was deleted: /home/ndd6915/boldgrid_backup/boldgrid-backup-naplesirrigation.com_bg_naplesirrigation.com-23761a18-20220319-013931.zip\";}i:22;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1657201968;s:7:\"message\";s:51:\"Akismet Anti-Spam plugin upgraded to version 4.2.4.\";}i:23;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1657210466;s:7:\"message\";s:55:\"BoldGrid Inspirations plugin upgraded to version 2.6.5.\";}i:24;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1657210543;s:7:\"message\";s:56:\"Post and Page Builder plugin upgraded to version 1.20.0.\";}i:25;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1657212859;s:7:\"message\";s:48:\"Crio Premium plugin (version 1.5.2) deactivated.\";}i:26;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1657212860;s:7:\"message\";s:46:\"Crio Premium plugin upgraded to version 1.6.1.\";}i:27;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1657212860;s:7:\"message\";s:46:\"Crio Premium plugin (version 1.6.1) activated.\";}i:28;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1657213327;s:7:\"message\";s:30:\"Total Upkeep settings updated.\";}i:29;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1657219390;s:7:\"message\";s:117:\"Backup file created: /home/ndd6915/boldgrid_backup/boldgrid-backup-naplesirrigation.com-23761a18-20220707-184130.zip.\";}i:30;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1657219442;s:7:\"message\";s:156:\"Due to retention settings, the following backup was deleted: /home/ndd6915/boldgrid_backup/boldgrid-backup-naplesirrigation.com-23761a18-20220405-204306.zip\";}i:31;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1657643982;s:7:\"message\";s:117:\"Backup file created: /home/ndd6915/boldgrid_backup/boldgrid-backup-naplesirrigation.com-23761a18-20220712-163804.zip.\";}i:32;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1657644030;s:7:\"message\";s:156:\"Due to retention settings, the following backup was deleted: /home/ndd6915/boldgrid_backup/boldgrid-backup-naplesirrigation.com-23761a18-20220408-193821.zip\";}i:33;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1674670872;s:7:\"message\";s:117:\"Backup file created: /home/ndd6915/boldgrid_backup/boldgrid-backup-naplesirrigation.com-23761a18-20230125-181932.zip.\";}i:34;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1674670921;s:7:\"message\";s:156:\"Due to retention settings, the following backup was deleted: /home/ndd6915/boldgrid_backup/boldgrid-backup-naplesirrigation.com-23761a18-20220712-163804.zip\";}i:35;a:3:{s:7:\"user_id\";s:7:\"WP Cron\";s:9:\"timestamp\";i:1712897596;s:7:\"message\";s:117:\"Backup file created: /home/ndd6915/boldgrid_backup/boldgrid-backup-naplesirrigation.com-23761a18-20240412-045137.zip.\";}i:36;a:3:{s:7:\"user_id\";s:7:\"WP Cron\";s:9:\"timestamp\";i:1712897649;s:7:\"message\";s:156:\"Due to retention settings, the following backup was deleted: /home/ndd6915/boldgrid_backup/boldgrid-backup-naplesirrigation.com-23761a18-20231012-213642.zip\";}i:37;a:3:{s:7:\"user_id\";s:7:\"WP Cron\";s:9:\"timestamp\";i:1712897665;s:7:\"message\";s:35:\"WordPress updated to version 6.4.4.\";}}','no'),(173,'theme_mods_boldgrid-gridone','a:8:{s:13:\"bgtfw_version\";s:6:\"1.7.11\";s:20:\"force_scss_recompile\";a:2:{s:6:\"active\";b:0;s:7:\"staging\";b:1;}s:18:\"nav_menu_locations\";a:1:{s:6:\"social\";i:2;}s:22:\"boldgrid_color_palette\";s:222:\"{\"state\":{\"active-palette\":\"palette-primary\",\"active-palette-id\":\"c39ca97b4cb5fdb12184c552c4e254cf\",\"palettes\":{\"palette-primary\":{\"format\":\"palette-primary\",\"colors\":[\"#333333\",\"#337ab7\",\"#ffffff\"]}},\"saved_palettes\":[]}}\";s:22:\"boldgrid_palette_class\";s:15:\"palette-primary\";s:21:\"boldgrid_compiled_css\";s:8946:\".color1-text-default{color:#fff}.color-1-text-contrast{color:#fff ! important}.color-1-text-contrast-hover:hover,.color-1-text-contrast-hover:focus{color:#fff ! important}.color2-text-default{color:#fff}.color-2-text-contrast{color:#fff ! important}.color-2-text-contrast-hover:hover,.color-2-text-contrast-hover:focus{color:#fff ! important}.color3-text-default{color:#333}.color-3-text-contrast,.color-3-text-contrast-hover:hover{color:#333 ! important}.color1-color{color:#333 ! important}.color1-color-hover:focus,.color1-color-hover:hover{color:#333 ! important}.color2-color{color:#337ab7 ! important}.color2-color-hover:focus,.color2-color-hover:hover{color:#337ab7 ! important}.color3-color{color:#fff ! important}.color3-color-hover:focus,.color3-color-hover:hover{color:#fff ! important}.color1-background{background:#333 ! important}.color1-background-hover:focus,.color1-background-hover:hover{background:#333 ! important}.color2-background{background:#337ab7 ! important}.color2-background-hover:focus,.color2-background-hover:hover{background:#337ab7 ! important}.color3-background{background:#fff ! important}.color3-background-hover:focus,.color3-background-hover:hover{background:#fff ! important}.color1-background-color{background-color:#333 ! important}.color1-background-color-hover:focus,.color1-background-color-hover:hover{background-color:#333 ! important}.color2-background-color{background-color:#337ab7 ! important}.color2-background-color-hover:focus,.color2-background-color-hover:hover{background-color:#337ab7 ! important}.color3-background-color{background-color:#fff ! important}.color3-background-color-hover:focus,.color3-background-color-hover:hover{background-color:#fff ! important}.color1-border-color{border-color:#333 ! important}.color1-border-color-hover:focus,.color1-border-color-hover:hover{border-color:#333 ! important}.color2-border-color{border-color:#337ab7 ! important}.color2-border-color-hover:focus,.color2-border-color-hover:hover{border-color:#337ab7 ! important}.color3-border-color{border-color:#fff ! important}.color3-border-color-hover:focus,.color3-border-color-hover:hover{border-color:#fff ! important}.breadcrumb li a.filler{background:#337ab7;color:#fff}.breadcrumb li a.filler:after{border-left-color:#337ab7}.breadcrumb li a:not(.filler){color:#fff}.breadcrumb li a:not(.filler):after{border-left-color:#333 !important}.breadcrumb li a:not(.filler):hover,.breadcrumb li a:not(.filler):focus{background:#337ab7;color:#fff}.breadcrumb li a:not(.filler):hover:after,.breadcrumb li a:not(.filler):focus:after{border-left-color:#337ab7 !important;color:#fff}.woocommerce div.product .stock,.woocommerce div.product span.price,.woocommerce div.product p.price{color:#333}.wc-image-links .gallery-caption,.wc-gallery-captions-show .gallery-caption,.wc-gallery-captions-onhover .gallery-caption,.wc-gallery-captions-showon .gallery-caption{background-color:#fff;color:#333}.wc-image-links .gallery-caption > *,.wc-gallery-captions-show .gallery-caption > *,.wc-gallery-captions-onhover .gallery-caption > *,.wc-gallery-captions-showon .gallery-caption > *{color:#333}.btn-color-1,.btn-color-1-flat{background-color:#333;border-color:#333;color:#fff !important}.btn-color-1:visited,.btn-color-1-flat:visited{color:#fff}.btn-color-1:hover,.btn-color-1-flat:hover,.btn-color-1:focus,.btn-color-1-flat:focus{background-color:#4d4d4d;border-color:#4d4d4d;color:#fff !important}.btn-color-1:active,.btn-color-1-flat:active,.btn-color-1.active,.btn-color-1-flat.active,.btn-color-1.is-active,.btn-color-1-flat.is-active{background-color:#333;border-color:#333;color:#1a1a1a !important}.btn-color-2,.btn-color-2-flat{background-color:#337ab7;border-color:#337ab7;color:#fff !important}.btn-color-2:visited,.btn-color-2-flat:visited{color:#fff}.btn-color-2:hover,.btn-color-2-flat:hover,.btn-color-2:focus,.btn-color-2-flat:focus{background-color:#4f93ce;border-color:#4f93ce;color:#fff !important}.btn-color-2:active,.btn-color-2-flat:active,.btn-color-2.active,.btn-color-2-flat.active,.btn-color-2.is-active,.btn-color-2-flat.is-active{background-color:#3f79ab;border-color:#3f79ab;color:#285f8f !important}.btn-color-3,.btn-color-3-flat{background-color:#fff;border-color:#fff;color:#333 !important}.btn-color-3:visited,.btn-color-3-flat:visited{color:#333}.btn-color-3:hover,.btn-color-3-flat:hover,.btn-color-3:focus,.btn-color-3-flat:focus{background-color:#fff;border-color:#fff;color:#333 !important}.btn-color-3:active,.btn-color-3-flat:active,.btn-color-3.active,.btn-color-3-flat.active,.btn-color-3.is-active,.btn-color-3-flat.is-active{background-color:#fff;border-color:#fff;color:#e6e6e6 !important}.palette-primary{background:#fff;color:#333;}.palette-primary .button-primary,.palette-primary .widget .table-striped > tbody > tr:nth-child(2n+1) > td,.palette-primary .pager li > a{background:#333;border:1px solid #333;color:#fff}.palette-primary .button-secondary{background:#337ab7;border:1px solid #337ab7;color:#fff}.palette-primary .button-primary:hover,.palette-primary .button-primary:active,.palette-primary .pager li > a:hover,.palette-primary .pager li > a:focus{background:#337ab7;border:1px solid #337ab7;color:#fff}.palette-primary .button-secondary:hover,.palette-primary .button-secondary:active{background:none;border:1px solid #333;color:#333}.palette-primary h1,.palette-primary h2,.palette-primary h3,.palette-primary h4,.palette-primary h5,.palette-primary h6,.palette-primary caption,.palette-primary .widget .nav > li > a:hover,.palette-primary .widget .nav > li > a:focus,.palette-primary #footer-center-menu .current-menu-item a{color:#333}.palette-primary .title-main{border-bottom:1px solid #333;border-top:1px solid #333;color:#333}.palette-primary hr{background:#333}.palette-primary .mod-blockquote,.palette-primary blockquote{border-left:7px solid #333}.palette-primary .mod-icon-circle i{border:2px solid #333;color:#333}.palette-primary .mod-divider{border-top:1px solid #333}.palette-primary .entry-title:before{border-top:1px solid #333}.palette-primary a,.palette-primary .heading-alt,.palette-primary #menu-social li a:hover,.palette-primary #menu-social li a:focus,.palette-primary #secondary-menu a:hover,.palette-primary #secondary-menu a:focus,.palette-primary #tertiary-menu a:hover,.palette-primary #tertiary-menu a:focus,.palette-primary .navbar-default .navbar-nav > li > a:hover,.palette-primary .navbar-default .navbar-nav > li > a:focus,.palette-primary .navbar-default .navbar-nav > .active > a,.palette-primary .navbar-default .navbar-nav > .active > a:hover,.palette-primary .navbar-default .navbar-nav > .active > a:focus,.palette-primary .palette-primary.disabled-footer .site-footer a,.palette-primary .widget.well a,.palette-primary .navbar-default .navbar-nav > .current-menu-parent > a{color:#337ab7}.palette-primary .navbar-default .navbar-nav > .open > a,.palette-primary .navbar-default .navbar-nav > .open > a:hover,.palette-primary .navbar-default .navbar-nav > .open > a:focus,.palette-primary .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,.palette-primary .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus,.palette-primary .mark,.palette-primary mark{background:#337ab7;color:#fff}.palette-primary #secondary-menu .current-menu-item a,.palette-primary #tertiary-menu .current-menu-item a{color:#337ab7}.palette-primary .navbar-default .navbar-toggle:hover .icon-bar,.palette-primary .navbar-default .navbar-toggle:focus .icon-bar,.palette-primary .navbar-default .navbar-toggle .icon-bar{background-color:#337ab7}.palette-primary .navbar-default .navbar-nav .open .dropdown-menu > li > a{color:#333}.palette-primary .navbar-default .navbar-nav .dropdown-menu{background:#fff}.palette-primary .navbar-default .navbar-nav > .dropdown.active.open > a,.palette-primary .navbar-default .navbar-nav > li.dropdown.active.open > a:hover,.palette-primary .navbar-default .navbar-nav > li.dropdown.active.open > a:focus,.palette-primary .navbar-default .navbar-nav > .dropdown.active.open > a:hover{color:#fff}.palette-primary .palette-primary.disabled-footer .site-footer,.palette-primary .entry-title a{background-color:#fff}.palette-primary .mod-divider i,.palette-primary .mod-divider a{background:#fff}.palette-primary .site-title a,.palette-primary #secondary-menu a,.palette-primary #tertiary-menu a,.palette-primary #menu-social a,.palette-primary .comments-area .comment-content p,.palette-primary .navbar-default .dropdown-menu > li > a,.palette-primary .widget.well{color:#333}.palette-primary .navbar-default .navbar-toggle{border-color:#fff}.palette-primary .navbar-default .navbar-toggle:hover,.palette-primary .navbar-default .navbar-toggle:focus{background-color:#fff}.palette-primary .panel-default > .panel-heading,.palette-primary .panel-body,.palette-primary .panel-footer{background:#fff;color:#333}.palette-primary #reviews #comments ol.commentlist li .meta{color:#333}\";s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1645645852;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:0:{}s:9:\"sidebar-2\";a:3:{i:0;s:10:\"archives-2\";i:1;s:12:\"categories-2\";i:2;s:6:\"meta-2\";}s:17:\"boldgrid-widget-3\";a:1:{i:0;s:22:\"black-studio-tinymce-0\";}}}}','no'),(174,'widget_black-studio-tinymce','a:2:{s:12:\"_multiwidget\";i:1;i:0;a:5:{s:5:\"title\";s:12:\"Contact Info\";s:4:\"text\";s:150:\"	&copy; 2022 WordPress Site | 202 Grid Blvd. Agloe, NY 12776 | <span class=\"phone-number\">777-765-4321</span> | <a href=\"mailto:\">info@example.com</a>\";s:4:\"type\";s:6:\"visual\";s:6:\"filter\";i:1;s:5:\"label\";s:20:\"black-studio-tinymce\";}}','yes'),(175,'boldgrid_widgets_created','a:1:{s:12:\"contact_info\";s:22:\"black-studio-tinymce-0\";}','yes'),(180,'bglib_activity','a:2:{s:15:\"boldgrid-backup\";a:2:{s:18:\"any_backup_created\";i:34;s:25:\"download_to_local_machine\";i:1;}s:5:\"bgppb\";a:1:{s:13:\"block_install\";i:2;}}','yes'),(176,'boldgrid_backup_last_backup','1737873325','off'),(177,'boldgrid_menus_created','a:2:{i:2;s:6:\"social\";s:14:\"option_version\";i:2;}','yes'),(178,'boldgrid_framework_init','1','yes'),(212,'db_upgraded','','on'),(210,'widget_block','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(211,'wp_force_deactivated_plugins','a:0:{}','off'),(257,'weforms_settings','a:4:{s:13:\"email_gateway\";s:9:\"wordpress\";s:6:\"credit\";b:0;s:12:\"email_footer\";b:1;s:9:\"recaptcha\";a:3:{s:3:\"key\";s:0:\"\";s:6:\"secret\";s:0:\"\";s:4:\"type\";s:2:\"v2\";}}','yes'),(258,'weforms_installed','1645645857','yes'),(263,'weforms_version','1.6.12','yes'),(202,'boldgrid_inspirations_current_version','2.6.5','no'),(203,'boldgrid_pointers','a:4:{i:0;a:6:{s:2:\"id\";s:37:\"boldgrid_image_search_internal_only_8\";s:6:\"screen\";s:4:\"page\";s:6:\"target\";s:19:\"#media-search-input\";s:5:\"title\";s:12:\"Image search\";s:7:\"content\";s:222:\"<em>This search function</em> helps you find images you\'ve already uploaded to your Media Library. If you would like to search the web for new images, click the <strong>BoldGrid Connect Search</strong> tab in the top menu.\";s:8:\"position\";a:2:{s:4:\"edge\";s:5:\"right\";s:5:\"align\";s:6:\"middle\";}}i:1;a:6:{s:2:\"id\";s:49:\"boldgrid_media_library_image_search_internal_only\";s:6:\"screen\";s:6:\"upload\";s:6:\"target\";s:19:\"#media-search-input\";s:5:\"title\";s:12:\"Image search\";s:7:\"content\";s:222:\"<em>This search function</em> helps you find images you\'ve already uploaded to your Media Library. If you would like to search the web for new images, click the <strong>BoldGrid Connect Search</strong> tab in the top menu.\";s:8:\"position\";a:3:{s:4:\"edge\";s:3:\"top\";s:5:\"align\";s:6:\"middle\";s:17:\"open_on_page_load\";b:0;}}i:2;a:6:{s:2:\"id\";s:38:\"boldgrid_image_size_do_you_need_help_8\";s:6:\"screen\";s:12:\"media-upload\";s:6:\"target\";s:11:\"#image_size\";s:5:\"title\";s:10:\"Image size\";s:7:\"content\";s:33:\"Need help choosing an image size?\";s:8:\"position\";a:2:{s:4:\"edge\";s:5:\"right\";s:5:\"align\";s:6:\"middle\";}}i:3;a:6:{s:2:\"id\";s:29:\"boldgrid_customization_widget\";s:6:\"screen\";s:9:\"dashboard\";s:6:\"target\";s:21:\"#customization_widget\";s:5:\"title\";s:35:\"Begin customizing your new website!\";s:7:\"content\";s:130:\"Congratulations, you&#039;ve just installed your new website! Below you&#039;ll find tips to help you begin customizing your site.\";s:8:\"position\";a:2:{s:4:\"edge\";s:6:\"bottom\";s:5:\"align\";s:6:\"middle\";}}}','yes'),(204,'boldgrid_inspirations_redirect','1645645841','yes'),(267,'boldgrid_installed_pages_metadata','a:3:{i:103;a:3:{s:11:\"is_readonly\";s:1:\"0\";s:9:\"post_type\";s:4:\"page\";s:11:\"post_status\";s:7:\"publish\";}i:105;a:3:{s:11:\"is_readonly\";s:1:\"0\";s:9:\"post_type\";s:4:\"page\";s:11:\"post_status\";s:7:\"publish\";}i:107;a:3:{s:11:\"is_readonly\";s:1:\"0\";s:9:\"post_type\";s:4:\"page\";s:11:\"post_status\";s:7:\"publish\";}}','yes'),(241,'boldgrid_theme_revision_Crio','20210215114326','yes'),(242,'allowedthemes','a:1:{s:4:\"crio\";b:1;}','off'),(243,'theme_mods_crio','a:169:{s:18:\"_boldgrid_theme_id\";i:61;s:18:\"nav_menu_locations\";a:5:{s:13:\"footer-social\";i:3;s:6:\"social\";i:0;s:4:\"main\";i:4;s:11:\"sticky-main\";i:4;s:13:\"sticky-social\";i:3;}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1613409498;s:4:\"data\";a:7:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:4:{i:0;s:9:\"search-81\";i:1;s:15:\"recent-posts-81\";i:2;s:11:\"archives-79\";i:3;s:13:\"categories-79\";}s:9:\"sidebar-2\";a:3:{i:0;s:10:\"archives-2\";i:1;s:12:\"categories-2\";i:2;s:6:\"meta-2\";}s:23:\"boldgrid-editor-sidebar\";a:0:{}s:17:\"boldgrid-widget-3\";a:0:{}s:15:\"primary-sidebar\";a:2:{i:0;s:14:\"recent-posts-7\";i:1;s:8:\"search-7\";}s:17:\"boldgrid-widget-1\";a:0:{}}}s:22:\"boldgrid_color_palette\";s:1016:\"{\"state\":{\"active-palette\":\"palette-primary\",\"active-palette-id\":\"2987e84c05e3e05d026d2c4987d09396\",\"palettes\":{\"palette-primary\":{\"format\":\"palette-primary\",\"colors\":[\"rgb(67, 146, 241)\",\"rgb(1, 31, 63)\",\"rgb(220, 235, 247)\",\"rgb(249, 249, 249)\",\"rgb(1, 31, 63)\"],\"neutral-color\":\"rgb(249, 249, 249)\"}},\"saved_palettes\":[{\"format\":\"palette-primary\",\"colors\":[\"rgb(163, 71, 255)\",\"rgb(26, 26, 26)\",\"rgb(217, 217, 217)\",\"rgb(255, 255, 255)\",\"rgb(26, 26, 26)\"],\"neutral-color\":\"rgb(255, 255, 255)\"},{\"format\":\"palette-primary\",\"colors\":[\"rgb(237, 97, 54)\",\"rgb(0, 3, 56)\",\"rgb(125, 17, 40)\",\"rgb(249, 249, 249)\",\"rgb(0, 3, 56)\"],\"neutral-color\":\"rgb(249, 249, 249)\"},{\"format\":\"palette-primary\",\"colors\":[\"rgb(225, 122, 165)\",\"rgb(31, 42, 48)\",\"rgb(214, 214, 214)\",\"rgb(255, 255, 255)\",\"rgb(31, 42, 48)\"],\"neutral-color\":\"rgb(255, 255, 255)\"},{\"format\":\"palette-primary\",\"colors\":[\"rgb(67, 146, 241)\",\"rgb(1, 31, 63)\",\"rgb(220, 235, 247)\",\"rgb(249, 249, 249)\",\"rgb(1, 31, 63)\"],\"neutral-color\":\"rgb(249, 249, 249)\"}]}}\";s:21:\"boldgrid_compiled_css\";s:361594:\".sidebar.transparent-background-color.color-1-link-color a{color:#4392f1}.sidebar.transparent-background-color.color-1-link-color a:hover,.sidebar.transparent-background-color.color-1-link-color a:focus,.sidebar.transparent-background-color.color-1-link-color a:active,.sidebar.transparent-background-color.color-1-link-color a.highlighted{color:#0e5fc0}.sidebar.transparent-background-color.color-2-link-color a{color:#011f3f}.sidebar.transparent-background-color.color-2-link-color a:hover,.sidebar.transparent-background-color.color-2-link-color a:focus,.sidebar.transparent-background-color.color-2-link-color a:active,.sidebar.transparent-background-color.color-2-link-color a.highlighted{color:#0350a3}.sidebar.transparent-background-color.color-3-link-color a{color:#dcebf7}.sidebar.transparent-background-color.color-3-link-color a:hover,.sidebar.transparent-background-color.color-3-link-color a:focus,.sidebar.transparent-background-color.color-3-link-color a:active,.sidebar.transparent-background-color.color-3-link-color a.highlighted{color:#89bce4}.sidebar.transparent-background-color.color-4-link-color a{color:#f9f9f9}.sidebar.transparent-background-color.color-4-link-color a:hover,.sidebar.transparent-background-color.color-4-link-color a:focus,.sidebar.transparent-background-color.color-4-link-color a:active,.sidebar.transparent-background-color.color-4-link-color a.highlighted{color:#c6c6c6}.sidebar.transparent-background-color.color-5-link-color a{color:#011f3f}.sidebar.transparent-background-color.color-5-link-color a:hover,.sidebar.transparent-background-color.color-5-link-color a:focus,.sidebar.transparent-background-color.color-5-link-color a:active,.sidebar.transparent-background-color.color-5-link-color a.highlighted{color:#0350a3}.sidebar.transparent-background-color.color-neutral-link-color a{color:#f9f9f9}.sidebar.transparent-background-color.color-neutral-link-color a:hover,.sidebar.transparent-background-color.color-neutral-link-color a:focus,.sidebar.transparent-background-color.color-neutral-link-color a:active,.sidebar.transparent-background-color.color-neutral-link-color a.highlighted{color:#c6c6c6}.sidebar.transparent-background-color-hover:focus,.sidebar.transparent-background-color-hover:hover{background-color:#4392f1 ! important}.sidebar.transparent-background-color.color-1-link-color a{color:#4392f1}.sidebar.transparent-background-color.color-1-link-color a:hover,.sidebar.transparent-background-color.color-1-link-color a:focus,.sidebar.transparent-background-color.color-1-link-color a:active,.sidebar.transparent-background-color.color-1-link-color a.highlighted{color:#a2c9f8}.sidebar.transparent-background-color.color-2-link-color a{color:#011f3f}.sidebar.transparent-background-color.color-2-link-color a:hover,.sidebar.transparent-background-color.color-2-link-color a:focus,.sidebar.transparent-background-color.color-2-link-color a:active,.sidebar.transparent-background-color.color-2-link-color a.highlighted{color:#0350a3}.sidebar.transparent-background-color.color-3-link-color a{color:#dcebf7}.sidebar.transparent-background-color.color-3-link-color a:hover,.sidebar.transparent-background-color.color-3-link-color a:focus,.sidebar.transparent-background-color.color-3-link-color a:active,.sidebar.transparent-background-color.color-3-link-color a.highlighted{color:#89bce4}.sidebar.transparent-background-color.color-4-link-color a{color:#f9f9f9}.sidebar.transparent-background-color.color-4-link-color a:hover,.sidebar.transparent-background-color.color-4-link-color a:focus,.sidebar.transparent-background-color.color-4-link-color a:active,.sidebar.transparent-background-color.color-4-link-color a.highlighted{color:#c6c6c6}.sidebar.transparent-background-color.color-5-link-color a{color:#011f3f}.sidebar.transparent-background-color.color-5-link-color a:hover,.sidebar.transparent-background-color.color-5-link-color a:focus,.sidebar.transparent-background-color.color-5-link-color a:active,.sidebar.transparent-background-color.color-5-link-color a.highlighted{color:#0350a3}.sidebar.transparent-background-color.color-neutral-link-color a{color:#f9f9f9}.sidebar.transparent-background-color.color-neutral-link-color a:hover,.sidebar.transparent-background-color.color-neutral-link-color a:focus,.sidebar.transparent-background-color.color-neutral-link-color a:active,.sidebar.transparent-background-color.color-neutral-link-color a.highlighted{color:#c6c6c6}.sidebar.transparent-background-color-hover:focus,.sidebar.transparent-background-color-hover:hover{background-color:#011f3f ! important}.sidebar.transparent-background-color.color-1-link-color a{color:#4392f1}.sidebar.transparent-background-color.color-1-link-color a:hover,.sidebar.transparent-background-color.color-1-link-color a:focus,.sidebar.transparent-background-color.color-1-link-color a:active,.sidebar.transparent-background-color.color-1-link-color a.highlighted{color:#0e5fc0}.sidebar.transparent-background-color.color-2-link-color a{color:#011f3f}.sidebar.transparent-background-color.color-2-link-color a:hover,.sidebar.transparent-background-color.color-2-link-color a:focus,.sidebar.transparent-background-color.color-2-link-color a:active,.sidebar.transparent-background-color.color-2-link-color a.highlighted{color:#0350a3}.sidebar.transparent-background-color.color-3-link-color a{color:#dcebf7}.sidebar.transparent-background-color.color-3-link-color a:hover,.sidebar.transparent-background-color.color-3-link-color a:focus,.sidebar.transparent-background-color.color-3-link-color a:active,.sidebar.transparent-background-color.color-3-link-color a.highlighted{color:#89bce4}.sidebar.transparent-background-color.color-4-link-color a{color:#f9f9f9}.sidebar.transparent-background-color.color-4-link-color a:hover,.sidebar.transparent-background-color.color-4-link-color a:focus,.sidebar.transparent-background-color.color-4-link-color a:active,.sidebar.transparent-background-color.color-4-link-color a.highlighted{color:#c6c6c6}.sidebar.transparent-background-color.color-5-link-color a{color:#011f3f}.sidebar.transparent-background-color.color-5-link-color a:hover,.sidebar.transparent-background-color.color-5-link-color a:focus,.sidebar.transparent-background-color.color-5-link-color a:active,.sidebar.transparent-background-color.color-5-link-color a.highlighted{color:#0350a3}.sidebar.transparent-background-color.color-neutral-link-color a{color:#f9f9f9}.sidebar.transparent-background-color.color-neutral-link-color a:hover,.sidebar.transparent-background-color.color-neutral-link-color a:focus,.sidebar.transparent-background-color.color-neutral-link-color a:active,.sidebar.transparent-background-color.color-neutral-link-color a.highlighted{color:#c6c6c6}.sidebar.transparent-background-color-hover:focus,.sidebar.transparent-background-color-hover:hover{background-color:#dcebf7 ! important}.sidebar.transparent-background-color.color-1-link-color a{color:#4392f1}.sidebar.transparent-background-color.color-1-link-color a:hover,.sidebar.transparent-background-color.color-1-link-color a:focus,.sidebar.transparent-background-color.color-1-link-color a:active,.sidebar.transparent-background-color.color-1-link-color a.highlighted{color:#0e5fc0}.sidebar.transparent-background-color.color-2-link-color a{color:#011f3f}.sidebar.transparent-background-color.color-2-link-color a:hover,.sidebar.transparent-background-color.color-2-link-color a:focus,.sidebar.transparent-background-color.color-2-link-color a:active,.sidebar.transparent-background-color.color-2-link-color a.highlighted{color:#0350a3}.sidebar.transparent-background-color.color-3-link-color a{color:#dcebf7}.sidebar.transparent-background-color.color-3-link-color a:hover,.sidebar.transparent-background-color.color-3-link-color a:focus,.sidebar.transparent-background-color.color-3-link-color a:active,.sidebar.transparent-background-color.color-3-link-color a.highlighted{color:#89bce4}.sidebar.transparent-background-color.color-4-link-color a{color:#f9f9f9}.sidebar.transparent-background-color.color-4-link-color a:hover,.sidebar.transparent-background-color.color-4-link-color a:focus,.sidebar.transparent-background-color.color-4-link-color a:active,.sidebar.transparent-background-color.color-4-link-color a.highlighted{color:#c6c6c6}.sidebar.transparent-background-color.color-5-link-color a{color:#011f3f}.sidebar.transparent-background-color.color-5-link-color a:hover,.sidebar.transparent-background-color.color-5-link-color a:focus,.sidebar.transparent-background-color.color-5-link-color a:active,.sidebar.transparent-background-color.color-5-link-color a.highlighted{color:#0350a3}.sidebar.transparent-background-color.color-neutral-link-color a{color:#f9f9f9}.sidebar.transparent-background-color.color-neutral-link-color a:hover,.sidebar.transparent-background-color.color-neutral-link-color a:focus,.sidebar.transparent-background-color.color-neutral-link-color a:active,.sidebar.transparent-background-color.color-neutral-link-color a.highlighted{color:#c6c6c6}.sidebar.transparent-background-color-hover:focus,.sidebar.transparent-background-color-hover:hover{background-color:#f9f9f9 ! important}.sidebar.transparent-background-color.color-1-link-color a{color:#4392f1}.sidebar.transparent-background-color.color-1-link-color a:hover,.sidebar.transparent-background-color.color-1-link-color a:focus,.sidebar.transparent-background-color.color-1-link-color a:active,.sidebar.transparent-background-color.color-1-link-color a.highlighted{color:#a2c9f8}.sidebar.transparent-background-color.color-2-link-color a{color:#011f3f}.sidebar.transparent-background-color.color-2-link-color a:hover,.sidebar.transparent-background-color.color-2-link-color a:focus,.sidebar.transparent-background-color.color-2-link-color a:active,.sidebar.transparent-background-color.color-2-link-color a.highlighted{color:#0350a3}.sidebar.transparent-background-color.color-3-link-color a{color:#dcebf7}.sidebar.transparent-background-color.color-3-link-color a:hover,.sidebar.transparent-background-color.color-3-link-color a:focus,.sidebar.transparent-background-color.color-3-link-color a:active,.sidebar.transparent-background-color.color-3-link-color a.highlighted{color:#89bce4}.sidebar.transparent-background-color.color-4-link-color a{color:#f9f9f9}.sidebar.transparent-background-color.color-4-link-color a:hover,.sidebar.transparent-background-color.color-4-link-color a:focus,.sidebar.transparent-background-color.color-4-link-color a:active,.sidebar.transparent-background-color.color-4-link-color a.highlighted{color:#c6c6c6}.sidebar.transparent-background-color.color-5-link-color a{color:#011f3f}.sidebar.transparent-background-color.color-5-link-color a:hover,.sidebar.transparent-background-color.color-5-link-color a:focus,.sidebar.transparent-background-color.color-5-link-color a:active,.sidebar.transparent-background-color.color-5-link-color a.highlighted{color:#0350a3}.sidebar.transparent-background-color.color-neutral-link-color a{color:#f9f9f9}.sidebar.transparent-background-color.color-neutral-link-color a:hover,.sidebar.transparent-background-color.color-neutral-link-color a:focus,.sidebar.transparent-background-color.color-neutral-link-color a:active,.sidebar.transparent-background-color.color-neutral-link-color a.highlighted{color:#c6c6c6}.sidebar.transparent-background-color-hover:focus,.sidebar.transparent-background-color-hover:hover{background-color:#011f3f ! important}.color1-background.color-1-link-color a{color:#4392f1}.color1-background.color-1-link-color a:hover,.color1-background.color-1-link-color a:focus,.color1-background.color-1-link-color a:active,.color1-background.color-1-link-color a.highlighted{color:#0e5fc0}.color1-background.sidebar.color-1-link-color a{color:#4392f1}.color1-background.sidebar.color-1-link-color a:hover,.color1-background.sidebar.color-1-link-color a:focus,.color1-background.sidebar.color-1-link-color a:active,.color1-background.sidebar.color-1-link-color a.highlighted{color:#0e5fc0}.color1-background.sm.color-1-link-color li.btn a,.color1-background.sm.color-1-link-color .palette-primary li.button-primary a,.palette-primary .color1-background.sm.color-1-link-color li.button-primary a,.color1-background.sm.color-1-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color1-background.sm.color-1-link-color li.button a,.color1-background.sm.color-1-link-color .palette-primary li.button-secondary a,.palette-primary .color1-background.sm.color-1-link-color li.button-secondary a,.color1-background.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color1-background.sm.color-1-link-color li.alt.button a{color:inherit}.color1-background.sm.color-1-link-color li.btn a:hover,.color1-background.sm.color-1-link-color .palette-primary li.button-primary a:hover,.palette-primary .color1-background.sm.color-1-link-color li.button-primary a:hover,.color1-background.sm.color-1-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color1-background.sm.color-1-link-color li.button a:hover,.color1-background.sm.color-1-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color1-background.sm.color-1-link-color li.button-secondary a:hover,.color1-background.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color1-background.sm.color-1-link-color li.alt.button a:hover,.color1-background.sm.color-1-link-color li.btn a:focus,.color1-background.sm.color-1-link-color .palette-primary li.button-primary a:focus,.palette-primary .color1-background.sm.color-1-link-color li.button-primary a:focus,.color1-background.sm.color-1-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color1-background.sm.color-1-link-color li.button a:focus,.color1-background.sm.color-1-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color1-background.sm.color-1-link-color li.button-secondary a:focus,.color1-background.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color1-background.sm.color-1-link-color li.alt.button a:focus,.color1-background.sm.color-1-link-color li.btn a:active,.color1-background.sm.color-1-link-color .palette-primary li.button-primary a:active,.palette-primary .color1-background.sm.color-1-link-color li.button-primary a:active,.color1-background.sm.color-1-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color1-background.sm.color-1-link-color li.button a:active,.color1-background.sm.color-1-link-color .palette-primary li.button-secondary a:active,.palette-primary .color1-background.sm.color-1-link-color li.button-secondary a:active,.color1-background.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color1-background.sm.color-1-link-color li.alt.button a:active,.color1-background.sm.color-1-link-color li.btn a.highlighted,.color1-background.sm.color-1-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color1-background.sm.color-1-link-color li.button-primary a.highlighted,.color1-background.sm.color-1-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color1-background.sm.color-1-link-color li.button a.highlighted,.color1-background.sm.color-1-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color1-background.sm.color-1-link-color li.button-secondary a.highlighted,.color1-background.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color1-background.sm.color-1-link-color li.alt.button a.highlighted{color:inherit}.color1-background.sm.color-1-link-color li:not(.btn) a{color:#4392f1}.color1-background.sm.color-1-link-color li:not(.btn) a:hover,.color1-background.sm.color-1-link-color li:not(.btn) a:focus,.color1-background.sm.color-1-link-color li:not(.btn) a:active,.color1-background.sm.color-1-link-color li:not(.btn) a.highlighted{color:#0e5fc0}.color1-background.color-2-link-color a{color:#011f3f}.color1-background.color-2-link-color a:hover,.color1-background.color-2-link-color a:focus,.color1-background.color-2-link-color a:active,.color1-background.color-2-link-color a.highlighted{color:#0350a3}.color1-background.sidebar.color-2-link-color a{color:#011f3f}.color1-background.sidebar.color-2-link-color a:hover,.color1-background.sidebar.color-2-link-color a:focus,.color1-background.sidebar.color-2-link-color a:active,.color1-background.sidebar.color-2-link-color a.highlighted{color:#0350a3}.color1-background.sm.color-2-link-color li.btn a,.color1-background.sm.color-2-link-color .palette-primary li.button-primary a,.palette-primary .color1-background.sm.color-2-link-color li.button-primary a,.color1-background.sm.color-2-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color1-background.sm.color-2-link-color li.button a,.color1-background.sm.color-2-link-color .palette-primary li.button-secondary a,.palette-primary .color1-background.sm.color-2-link-color li.button-secondary a,.color1-background.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color1-background.sm.color-2-link-color li.alt.button a{color:inherit}.color1-background.sm.color-2-link-color li.btn a:hover,.color1-background.sm.color-2-link-color .palette-primary li.button-primary a:hover,.palette-primary .color1-background.sm.color-2-link-color li.button-primary a:hover,.color1-background.sm.color-2-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color1-background.sm.color-2-link-color li.button a:hover,.color1-background.sm.color-2-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color1-background.sm.color-2-link-color li.button-secondary a:hover,.color1-background.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color1-background.sm.color-2-link-color li.alt.button a:hover,.color1-background.sm.color-2-link-color li.btn a:focus,.color1-background.sm.color-2-link-color .palette-primary li.button-primary a:focus,.palette-primary .color1-background.sm.color-2-link-color li.button-primary a:focus,.color1-background.sm.color-2-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color1-background.sm.color-2-link-color li.button a:focus,.color1-background.sm.color-2-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color1-background.sm.color-2-link-color li.button-secondary a:focus,.color1-background.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color1-background.sm.color-2-link-color li.alt.button a:focus,.color1-background.sm.color-2-link-color li.btn a:active,.color1-background.sm.color-2-link-color .palette-primary li.button-primary a:active,.palette-primary .color1-background.sm.color-2-link-color li.button-primary a:active,.color1-background.sm.color-2-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color1-background.sm.color-2-link-color li.button a:active,.color1-background.sm.color-2-link-color .palette-primary li.button-secondary a:active,.palette-primary .color1-background.sm.color-2-link-color li.button-secondary a:active,.color1-background.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color1-background.sm.color-2-link-color li.alt.button a:active,.color1-background.sm.color-2-link-color li.btn a.highlighted,.color1-background.sm.color-2-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color1-background.sm.color-2-link-color li.button-primary a.highlighted,.color1-background.sm.color-2-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color1-background.sm.color-2-link-color li.button a.highlighted,.color1-background.sm.color-2-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color1-background.sm.color-2-link-color li.button-secondary a.highlighted,.color1-background.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color1-background.sm.color-2-link-color li.alt.button a.highlighted{color:inherit}.color1-background.sm.color-2-link-color li:not(.btn) a{color:#011f3f}.color1-background.sm.color-2-link-color li:not(.btn) a:hover,.color1-background.sm.color-2-link-color li:not(.btn) a:focus,.color1-background.sm.color-2-link-color li:not(.btn) a:active,.color1-background.sm.color-2-link-color li:not(.btn) a.highlighted{color:#0350a3}.color1-background.color-3-link-color a{color:#dcebf7}.color1-background.color-3-link-color a:hover,.color1-background.color-3-link-color a:focus,.color1-background.color-3-link-color a:active,.color1-background.color-3-link-color a.highlighted{color:#89bce4}.color1-background.sidebar.color-3-link-color a{color:#dcebf7}.color1-background.sidebar.color-3-link-color a:hover,.color1-background.sidebar.color-3-link-color a:focus,.color1-background.sidebar.color-3-link-color a:active,.color1-background.sidebar.color-3-link-color a.highlighted{color:#89bce4}.color1-background.sm.color-3-link-color li.btn a,.color1-background.sm.color-3-link-color .palette-primary li.button-primary a,.palette-primary .color1-background.sm.color-3-link-color li.button-primary a,.color1-background.sm.color-3-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color1-background.sm.color-3-link-color li.button a,.color1-background.sm.color-3-link-color .palette-primary li.button-secondary a,.palette-primary .color1-background.sm.color-3-link-color li.button-secondary a,.color1-background.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color1-background.sm.color-3-link-color li.alt.button a{color:inherit}.color1-background.sm.color-3-link-color li.btn a:hover,.color1-background.sm.color-3-link-color .palette-primary li.button-primary a:hover,.palette-primary .color1-background.sm.color-3-link-color li.button-primary a:hover,.color1-background.sm.color-3-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color1-background.sm.color-3-link-color li.button a:hover,.color1-background.sm.color-3-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color1-background.sm.color-3-link-color li.button-secondary a:hover,.color1-background.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color1-background.sm.color-3-link-color li.alt.button a:hover,.color1-background.sm.color-3-link-color li.btn a:focus,.color1-background.sm.color-3-link-color .palette-primary li.button-primary a:focus,.palette-primary .color1-background.sm.color-3-link-color li.button-primary a:focus,.color1-background.sm.color-3-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color1-background.sm.color-3-link-color li.button a:focus,.color1-background.sm.color-3-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color1-background.sm.color-3-link-color li.button-secondary a:focus,.color1-background.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color1-background.sm.color-3-link-color li.alt.button a:focus,.color1-background.sm.color-3-link-color li.btn a:active,.color1-background.sm.color-3-link-color .palette-primary li.button-primary a:active,.palette-primary .color1-background.sm.color-3-link-color li.button-primary a:active,.color1-background.sm.color-3-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color1-background.sm.color-3-link-color li.button a:active,.color1-background.sm.color-3-link-color .palette-primary li.button-secondary a:active,.palette-primary .color1-background.sm.color-3-link-color li.button-secondary a:active,.color1-background.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color1-background.sm.color-3-link-color li.alt.button a:active,.color1-background.sm.color-3-link-color li.btn a.highlighted,.color1-background.sm.color-3-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color1-background.sm.color-3-link-color li.button-primary a.highlighted,.color1-background.sm.color-3-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color1-background.sm.color-3-link-color li.button a.highlighted,.color1-background.sm.color-3-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color1-background.sm.color-3-link-color li.button-secondary a.highlighted,.color1-background.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color1-background.sm.color-3-link-color li.alt.button a.highlighted{color:inherit}.color1-background.sm.color-3-link-color li:not(.btn) a{color:#dcebf7}.color1-background.sm.color-3-link-color li:not(.btn) a:hover,.color1-background.sm.color-3-link-color li:not(.btn) a:focus,.color1-background.sm.color-3-link-color li:not(.btn) a:active,.color1-background.sm.color-3-link-color li:not(.btn) a.highlighted{color:#89bce4}.color1-background.color-4-link-color a{color:#f9f9f9}.color1-background.color-4-link-color a:hover,.color1-background.color-4-link-color a:focus,.color1-background.color-4-link-color a:active,.color1-background.color-4-link-color a.highlighted{color:#c6c6c6}.color1-background.sidebar.color-4-link-color a{color:#f9f9f9}.color1-background.sidebar.color-4-link-color a:hover,.color1-background.sidebar.color-4-link-color a:focus,.color1-background.sidebar.color-4-link-color a:active,.color1-background.sidebar.color-4-link-color a.highlighted{color:#c6c6c6}.color1-background.sm.color-4-link-color li.btn a,.color1-background.sm.color-4-link-color .palette-primary li.button-primary a,.palette-primary .color1-background.sm.color-4-link-color li.button-primary a,.color1-background.sm.color-4-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color1-background.sm.color-4-link-color li.button a,.color1-background.sm.color-4-link-color .palette-primary li.button-secondary a,.palette-primary .color1-background.sm.color-4-link-color li.button-secondary a,.color1-background.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color1-background.sm.color-4-link-color li.alt.button a{color:inherit}.color1-background.sm.color-4-link-color li.btn a:hover,.color1-background.sm.color-4-link-color .palette-primary li.button-primary a:hover,.palette-primary .color1-background.sm.color-4-link-color li.button-primary a:hover,.color1-background.sm.color-4-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color1-background.sm.color-4-link-color li.button a:hover,.color1-background.sm.color-4-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color1-background.sm.color-4-link-color li.button-secondary a:hover,.color1-background.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color1-background.sm.color-4-link-color li.alt.button a:hover,.color1-background.sm.color-4-link-color li.btn a:focus,.color1-background.sm.color-4-link-color .palette-primary li.button-primary a:focus,.palette-primary .color1-background.sm.color-4-link-color li.button-primary a:focus,.color1-background.sm.color-4-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color1-background.sm.color-4-link-color li.button a:focus,.color1-background.sm.color-4-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color1-background.sm.color-4-link-color li.button-secondary a:focus,.color1-background.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color1-background.sm.color-4-link-color li.alt.button a:focus,.color1-background.sm.color-4-link-color li.btn a:active,.color1-background.sm.color-4-link-color .palette-primary li.button-primary a:active,.palette-primary .color1-background.sm.color-4-link-color li.button-primary a:active,.color1-background.sm.color-4-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color1-background.sm.color-4-link-color li.button a:active,.color1-background.sm.color-4-link-color .palette-primary li.button-secondary a:active,.palette-primary .color1-background.sm.color-4-link-color li.button-secondary a:active,.color1-background.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color1-background.sm.color-4-link-color li.alt.button a:active,.color1-background.sm.color-4-link-color li.btn a.highlighted,.color1-background.sm.color-4-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color1-background.sm.color-4-link-color li.button-primary a.highlighted,.color1-background.sm.color-4-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color1-background.sm.color-4-link-color li.button a.highlighted,.color1-background.sm.color-4-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color1-background.sm.color-4-link-color li.button-secondary a.highlighted,.color1-background.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color1-background.sm.color-4-link-color li.alt.button a.highlighted{color:inherit}.color1-background.sm.color-4-link-color li:not(.btn) a{color:#f9f9f9}.color1-background.sm.color-4-link-color li:not(.btn) a:hover,.color1-background.sm.color-4-link-color li:not(.btn) a:focus,.color1-background.sm.color-4-link-color li:not(.btn) a:active,.color1-background.sm.color-4-link-color li:not(.btn) a.highlighted{color:#c6c6c6}.color1-background.color-5-link-color a{color:#011f3f}.color1-background.color-5-link-color a:hover,.color1-background.color-5-link-color a:focus,.color1-background.color-5-link-color a:active,.color1-background.color-5-link-color a.highlighted{color:#0350a3}.color1-background.sidebar.color-5-link-color a{color:#011f3f}.color1-background.sidebar.color-5-link-color a:hover,.color1-background.sidebar.color-5-link-color a:focus,.color1-background.sidebar.color-5-link-color a:active,.color1-background.sidebar.color-5-link-color a.highlighted{color:#0350a3}.color1-background.sm.color-5-link-color li.btn a,.color1-background.sm.color-5-link-color .palette-primary li.button-primary a,.palette-primary .color1-background.sm.color-5-link-color li.button-primary a,.color1-background.sm.color-5-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color1-background.sm.color-5-link-color li.button a,.color1-background.sm.color-5-link-color .palette-primary li.button-secondary a,.palette-primary .color1-background.sm.color-5-link-color li.button-secondary a,.color1-background.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color1-background.sm.color-5-link-color li.alt.button a{color:inherit}.color1-background.sm.color-5-link-color li.btn a:hover,.color1-background.sm.color-5-link-color .palette-primary li.button-primary a:hover,.palette-primary .color1-background.sm.color-5-link-color li.button-primary a:hover,.color1-background.sm.color-5-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color1-background.sm.color-5-link-color li.button a:hover,.color1-background.sm.color-5-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color1-background.sm.color-5-link-color li.button-secondary a:hover,.color1-background.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color1-background.sm.color-5-link-color li.alt.button a:hover,.color1-background.sm.color-5-link-color li.btn a:focus,.color1-background.sm.color-5-link-color .palette-primary li.button-primary a:focus,.palette-primary .color1-background.sm.color-5-link-color li.button-primary a:focus,.color1-background.sm.color-5-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color1-background.sm.color-5-link-color li.button a:focus,.color1-background.sm.color-5-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color1-background.sm.color-5-link-color li.button-secondary a:focus,.color1-background.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color1-background.sm.color-5-link-color li.alt.button a:focus,.color1-background.sm.color-5-link-color li.btn a:active,.color1-background.sm.color-5-link-color .palette-primary li.button-primary a:active,.palette-primary .color1-background.sm.color-5-link-color li.button-primary a:active,.color1-background.sm.color-5-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color1-background.sm.color-5-link-color li.button a:active,.color1-background.sm.color-5-link-color .palette-primary li.button-secondary a:active,.palette-primary .color1-background.sm.color-5-link-color li.button-secondary a:active,.color1-background.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color1-background.sm.color-5-link-color li.alt.button a:active,.color1-background.sm.color-5-link-color li.btn a.highlighted,.color1-background.sm.color-5-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color1-background.sm.color-5-link-color li.button-primary a.highlighted,.color1-background.sm.color-5-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color1-background.sm.color-5-link-color li.button a.highlighted,.color1-background.sm.color-5-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color1-background.sm.color-5-link-color li.button-secondary a.highlighted,.color1-background.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color1-background.sm.color-5-link-color li.alt.button a.highlighted{color:inherit}.color1-background.sm.color-5-link-color li:not(.btn) a{color:#011f3f}.color1-background.sm.color-5-link-color li:not(.btn) a:hover,.color1-background.sm.color-5-link-color li:not(.btn) a:focus,.color1-background.sm.color-5-link-color li:not(.btn) a:active,.color1-background.sm.color-5-link-color li:not(.btn) a.highlighted{color:#0350a3}.color1-background.color-neutral-link-color a{color:#f9f9f9}.color1-background.color-neutral-link-color a:hover,.color1-background.color-neutral-link-color a:focus,.color1-background.color-neutral-link-color a:active,.color1-background.color-neutral-link-color a.highlighted{color:#c6c6c6}.color1-background-hover:focus,.color1-background-hover:hover{background:#4392f1 ! important}.color2-background.color-1-link-color a{color:#4392f1}.color2-background.color-1-link-color a:hover,.color2-background.color-1-link-color a:focus,.color2-background.color-1-link-color a:active,.color2-background.color-1-link-color a.highlighted{color:#a2c9f8}.color2-background.sidebar.color-1-link-color a{color:#4392f1}.color2-background.sidebar.color-1-link-color a:hover,.color2-background.sidebar.color-1-link-color a:focus,.color2-background.sidebar.color-1-link-color a:active,.color2-background.sidebar.color-1-link-color a.highlighted{color:#a2c9f8}.color2-background.sm.color-1-link-color li.btn a,.color2-background.sm.color-1-link-color .palette-primary li.button-primary a,.palette-primary .color2-background.sm.color-1-link-color li.button-primary a,.color2-background.sm.color-1-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color2-background.sm.color-1-link-color li.button a,.color2-background.sm.color-1-link-color .palette-primary li.button-secondary a,.palette-primary .color2-background.sm.color-1-link-color li.button-secondary a,.color2-background.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color2-background.sm.color-1-link-color li.alt.button a{color:inherit}.color2-background.sm.color-1-link-color li.btn a:hover,.color2-background.sm.color-1-link-color .palette-primary li.button-primary a:hover,.palette-primary .color2-background.sm.color-1-link-color li.button-primary a:hover,.color2-background.sm.color-1-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color2-background.sm.color-1-link-color li.button a:hover,.color2-background.sm.color-1-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color2-background.sm.color-1-link-color li.button-secondary a:hover,.color2-background.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color2-background.sm.color-1-link-color li.alt.button a:hover,.color2-background.sm.color-1-link-color li.btn a:focus,.color2-background.sm.color-1-link-color .palette-primary li.button-primary a:focus,.palette-primary .color2-background.sm.color-1-link-color li.button-primary a:focus,.color2-background.sm.color-1-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color2-background.sm.color-1-link-color li.button a:focus,.color2-background.sm.color-1-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color2-background.sm.color-1-link-color li.button-secondary a:focus,.color2-background.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color2-background.sm.color-1-link-color li.alt.button a:focus,.color2-background.sm.color-1-link-color li.btn a:active,.color2-background.sm.color-1-link-color .palette-primary li.button-primary a:active,.palette-primary .color2-background.sm.color-1-link-color li.button-primary a:active,.color2-background.sm.color-1-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color2-background.sm.color-1-link-color li.button a:active,.color2-background.sm.color-1-link-color .palette-primary li.button-secondary a:active,.palette-primary .color2-background.sm.color-1-link-color li.button-secondary a:active,.color2-background.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color2-background.sm.color-1-link-color li.alt.button a:active,.color2-background.sm.color-1-link-color li.btn a.highlighted,.color2-background.sm.color-1-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color2-background.sm.color-1-link-color li.button-primary a.highlighted,.color2-background.sm.color-1-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color2-background.sm.color-1-link-color li.button a.highlighted,.color2-background.sm.color-1-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color2-background.sm.color-1-link-color li.button-secondary a.highlighted,.color2-background.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color2-background.sm.color-1-link-color li.alt.button a.highlighted{color:inherit}.color2-background.sm.color-1-link-color li:not(.btn) a{color:#4392f1}.color2-background.sm.color-1-link-color li:not(.btn) a:hover,.color2-background.sm.color-1-link-color li:not(.btn) a:focus,.color2-background.sm.color-1-link-color li:not(.btn) a:active,.color2-background.sm.color-1-link-color li:not(.btn) a.highlighted{color:#a2c9f8}.color2-background.color-2-link-color a{color:#011f3f}.color2-background.color-2-link-color a:hover,.color2-background.color-2-link-color a:focus,.color2-background.color-2-link-color a:active,.color2-background.color-2-link-color a.highlighted{color:#0350a3}.color2-background.sidebar.color-2-link-color a{color:#011f3f}.color2-background.sidebar.color-2-link-color a:hover,.color2-background.sidebar.color-2-link-color a:focus,.color2-background.sidebar.color-2-link-color a:active,.color2-background.sidebar.color-2-link-color a.highlighted{color:#0350a3}.color2-background.sm.color-2-link-color li.btn a,.color2-background.sm.color-2-link-color .palette-primary li.button-primary a,.palette-primary .color2-background.sm.color-2-link-color li.button-primary a,.color2-background.sm.color-2-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color2-background.sm.color-2-link-color li.button a,.color2-background.sm.color-2-link-color .palette-primary li.button-secondary a,.palette-primary .color2-background.sm.color-2-link-color li.button-secondary a,.color2-background.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color2-background.sm.color-2-link-color li.alt.button a{color:inherit}.color2-background.sm.color-2-link-color li.btn a:hover,.color2-background.sm.color-2-link-color .palette-primary li.button-primary a:hover,.palette-primary .color2-background.sm.color-2-link-color li.button-primary a:hover,.color2-background.sm.color-2-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color2-background.sm.color-2-link-color li.button a:hover,.color2-background.sm.color-2-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color2-background.sm.color-2-link-color li.button-secondary a:hover,.color2-background.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color2-background.sm.color-2-link-color li.alt.button a:hover,.color2-background.sm.color-2-link-color li.btn a:focus,.color2-background.sm.color-2-link-color .palette-primary li.button-primary a:focus,.palette-primary .color2-background.sm.color-2-link-color li.button-primary a:focus,.color2-background.sm.color-2-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color2-background.sm.color-2-link-color li.button a:focus,.color2-background.sm.color-2-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color2-background.sm.color-2-link-color li.button-secondary a:focus,.color2-background.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color2-background.sm.color-2-link-color li.alt.button a:focus,.color2-background.sm.color-2-link-color li.btn a:active,.color2-background.sm.color-2-link-color .palette-primary li.button-primary a:active,.palette-primary .color2-background.sm.color-2-link-color li.button-primary a:active,.color2-background.sm.color-2-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color2-background.sm.color-2-link-color li.button a:active,.color2-background.sm.color-2-link-color .palette-primary li.button-secondary a:active,.palette-primary .color2-background.sm.color-2-link-color li.button-secondary a:active,.color2-background.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color2-background.sm.color-2-link-color li.alt.button a:active,.color2-background.sm.color-2-link-color li.btn a.highlighted,.color2-background.sm.color-2-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color2-background.sm.color-2-link-color li.button-primary a.highlighted,.color2-background.sm.color-2-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color2-background.sm.color-2-link-color li.button a.highlighted,.color2-background.sm.color-2-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color2-background.sm.color-2-link-color li.button-secondary a.highlighted,.color2-background.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color2-background.sm.color-2-link-color li.alt.button a.highlighted{color:inherit}.color2-background.sm.color-2-link-color li:not(.btn) a{color:#011f3f}.color2-background.sm.color-2-link-color li:not(.btn) a:hover,.color2-background.sm.color-2-link-color li:not(.btn) a:focus,.color2-background.sm.color-2-link-color li:not(.btn) a:active,.color2-background.sm.color-2-link-color li:not(.btn) a.highlighted{color:#0350a3}.color2-background.color-3-link-color a{color:#dcebf7}.color2-background.color-3-link-color a:hover,.color2-background.color-3-link-color a:focus,.color2-background.color-3-link-color a:active,.color2-background.color-3-link-color a.highlighted{color:#89bce4}.color2-background.sidebar.color-3-link-color a{color:#dcebf7}.color2-background.sidebar.color-3-link-color a:hover,.color2-background.sidebar.color-3-link-color a:focus,.color2-background.sidebar.color-3-link-color a:active,.color2-background.sidebar.color-3-link-color a.highlighted{color:#89bce4}.color2-background.sm.color-3-link-color li.btn a,.color2-background.sm.color-3-link-color .palette-primary li.button-primary a,.palette-primary .color2-background.sm.color-3-link-color li.button-primary a,.color2-background.sm.color-3-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color2-background.sm.color-3-link-color li.button a,.color2-background.sm.color-3-link-color .palette-primary li.button-secondary a,.palette-primary .color2-background.sm.color-3-link-color li.button-secondary a,.color2-background.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color2-background.sm.color-3-link-color li.alt.button a{color:inherit}.color2-background.sm.color-3-link-color li.btn a:hover,.color2-background.sm.color-3-link-color .palette-primary li.button-primary a:hover,.palette-primary .color2-background.sm.color-3-link-color li.button-primary a:hover,.color2-background.sm.color-3-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color2-background.sm.color-3-link-color li.button a:hover,.color2-background.sm.color-3-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color2-background.sm.color-3-link-color li.button-secondary a:hover,.color2-background.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color2-background.sm.color-3-link-color li.alt.button a:hover,.color2-background.sm.color-3-link-color li.btn a:focus,.color2-background.sm.color-3-link-color .palette-primary li.button-primary a:focus,.palette-primary .color2-background.sm.color-3-link-color li.button-primary a:focus,.color2-background.sm.color-3-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color2-background.sm.color-3-link-color li.button a:focus,.color2-background.sm.color-3-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color2-background.sm.color-3-link-color li.button-secondary a:focus,.color2-background.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color2-background.sm.color-3-link-color li.alt.button a:focus,.color2-background.sm.color-3-link-color li.btn a:active,.color2-background.sm.color-3-link-color .palette-primary li.button-primary a:active,.palette-primary .color2-background.sm.color-3-link-color li.button-primary a:active,.color2-background.sm.color-3-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color2-background.sm.color-3-link-color li.button a:active,.color2-background.sm.color-3-link-color .palette-primary li.button-secondary a:active,.palette-primary .color2-background.sm.color-3-link-color li.button-secondary a:active,.color2-background.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color2-background.sm.color-3-link-color li.alt.button a:active,.color2-background.sm.color-3-link-color li.btn a.highlighted,.color2-background.sm.color-3-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color2-background.sm.color-3-link-color li.button-primary a.highlighted,.color2-background.sm.color-3-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color2-background.sm.color-3-link-color li.button a.highlighted,.color2-background.sm.color-3-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color2-background.sm.color-3-link-color li.button-secondary a.highlighted,.color2-background.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color2-background.sm.color-3-link-color li.alt.button a.highlighted{color:inherit}.color2-background.sm.color-3-link-color li:not(.btn) a{color:#dcebf7}.color2-background.sm.color-3-link-color li:not(.btn) a:hover,.color2-background.sm.color-3-link-color li:not(.btn) a:focus,.color2-background.sm.color-3-link-color li:not(.btn) a:active,.color2-background.sm.color-3-link-color li:not(.btn) a.highlighted{color:#89bce4}.color2-background.color-4-link-color a{color:#f9f9f9}.color2-background.color-4-link-color a:hover,.color2-background.color-4-link-color a:focus,.color2-background.color-4-link-color a:active,.color2-background.color-4-link-color a.highlighted{color:#c6c6c6}.color2-background.sidebar.color-4-link-color a{color:#f9f9f9}.color2-background.sidebar.color-4-link-color a:hover,.color2-background.sidebar.color-4-link-color a:focus,.color2-background.sidebar.color-4-link-color a:active,.color2-background.sidebar.color-4-link-color a.highlighted{color:#c6c6c6}.color2-background.sm.color-4-link-color li.btn a,.color2-background.sm.color-4-link-color .palette-primary li.button-primary a,.palette-primary .color2-background.sm.color-4-link-color li.button-primary a,.color2-background.sm.color-4-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color2-background.sm.color-4-link-color li.button a,.color2-background.sm.color-4-link-color .palette-primary li.button-secondary a,.palette-primary .color2-background.sm.color-4-link-color li.button-secondary a,.color2-background.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color2-background.sm.color-4-link-color li.alt.button a{color:inherit}.color2-background.sm.color-4-link-color li.btn a:hover,.color2-background.sm.color-4-link-color .palette-primary li.button-primary a:hover,.palette-primary .color2-background.sm.color-4-link-color li.button-primary a:hover,.color2-background.sm.color-4-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color2-background.sm.color-4-link-color li.button a:hover,.color2-background.sm.color-4-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color2-background.sm.color-4-link-color li.button-secondary a:hover,.color2-background.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color2-background.sm.color-4-link-color li.alt.button a:hover,.color2-background.sm.color-4-link-color li.btn a:focus,.color2-background.sm.color-4-link-color .palette-primary li.button-primary a:focus,.palette-primary .color2-background.sm.color-4-link-color li.button-primary a:focus,.color2-background.sm.color-4-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color2-background.sm.color-4-link-color li.button a:focus,.color2-background.sm.color-4-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color2-background.sm.color-4-link-color li.button-secondary a:focus,.color2-background.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color2-background.sm.color-4-link-color li.alt.button a:focus,.color2-background.sm.color-4-link-color li.btn a:active,.color2-background.sm.color-4-link-color .palette-primary li.button-primary a:active,.palette-primary .color2-background.sm.color-4-link-color li.button-primary a:active,.color2-background.sm.color-4-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color2-background.sm.color-4-link-color li.button a:active,.color2-background.sm.color-4-link-color .palette-primary li.button-secondary a:active,.palette-primary .color2-background.sm.color-4-link-color li.button-secondary a:active,.color2-background.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color2-background.sm.color-4-link-color li.alt.button a:active,.color2-background.sm.color-4-link-color li.btn a.highlighted,.color2-background.sm.color-4-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color2-background.sm.color-4-link-color li.button-primary a.highlighted,.color2-background.sm.color-4-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color2-background.sm.color-4-link-color li.button a.highlighted,.color2-background.sm.color-4-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color2-background.sm.color-4-link-color li.button-secondary a.highlighted,.color2-background.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color2-background.sm.color-4-link-color li.alt.button a.highlighted{color:inherit}.color2-background.sm.color-4-link-color li:not(.btn) a{color:#f9f9f9}.color2-background.sm.color-4-link-color li:not(.btn) a:hover,.color2-background.sm.color-4-link-color li:not(.btn) a:focus,.color2-background.sm.color-4-link-color li:not(.btn) a:active,.color2-background.sm.color-4-link-color li:not(.btn) a.highlighted{color:#c6c6c6}.color2-background.color-5-link-color a{color:#011f3f}.color2-background.color-5-link-color a:hover,.color2-background.color-5-link-color a:focus,.color2-background.color-5-link-color a:active,.color2-background.color-5-link-color a.highlighted{color:#0350a3}.color2-background.sidebar.color-5-link-color a{color:#011f3f}.color2-background.sidebar.color-5-link-color a:hover,.color2-background.sidebar.color-5-link-color a:focus,.color2-background.sidebar.color-5-link-color a:active,.color2-background.sidebar.color-5-link-color a.highlighted{color:#0350a3}.color2-background.sm.color-5-link-color li.btn a,.color2-background.sm.color-5-link-color .palette-primary li.button-primary a,.palette-primary .color2-background.sm.color-5-link-color li.button-primary a,.color2-background.sm.color-5-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color2-background.sm.color-5-link-color li.button a,.color2-background.sm.color-5-link-color .palette-primary li.button-secondary a,.palette-primary .color2-background.sm.color-5-link-color li.button-secondary a,.color2-background.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color2-background.sm.color-5-link-color li.alt.button a{color:inherit}.color2-background.sm.color-5-link-color li.btn a:hover,.color2-background.sm.color-5-link-color .palette-primary li.button-primary a:hover,.palette-primary .color2-background.sm.color-5-link-color li.button-primary a:hover,.color2-background.sm.color-5-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color2-background.sm.color-5-link-color li.button a:hover,.color2-background.sm.color-5-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color2-background.sm.color-5-link-color li.button-secondary a:hover,.color2-background.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color2-background.sm.color-5-link-color li.alt.button a:hover,.color2-background.sm.color-5-link-color li.btn a:focus,.color2-background.sm.color-5-link-color .palette-primary li.button-primary a:focus,.palette-primary .color2-background.sm.color-5-link-color li.button-primary a:focus,.color2-background.sm.color-5-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color2-background.sm.color-5-link-color li.button a:focus,.color2-background.sm.color-5-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color2-background.sm.color-5-link-color li.button-secondary a:focus,.color2-background.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color2-background.sm.color-5-link-color li.alt.button a:focus,.color2-background.sm.color-5-link-color li.btn a:active,.color2-background.sm.color-5-link-color .palette-primary li.button-primary a:active,.palette-primary .color2-background.sm.color-5-link-color li.button-primary a:active,.color2-background.sm.color-5-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color2-background.sm.color-5-link-color li.button a:active,.color2-background.sm.color-5-link-color .palette-primary li.button-secondary a:active,.palette-primary .color2-background.sm.color-5-link-color li.button-secondary a:active,.color2-background.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color2-background.sm.color-5-link-color li.alt.button a:active,.color2-background.sm.color-5-link-color li.btn a.highlighted,.color2-background.sm.color-5-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color2-background.sm.color-5-link-color li.button-primary a.highlighted,.color2-background.sm.color-5-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color2-background.sm.color-5-link-color li.button a.highlighted,.color2-background.sm.color-5-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color2-background.sm.color-5-link-color li.button-secondary a.highlighted,.color2-background.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color2-background.sm.color-5-link-color li.alt.button a.highlighted{color:inherit}.color2-background.sm.color-5-link-color li:not(.btn) a{color:#011f3f}.color2-background.sm.color-5-link-color li:not(.btn) a:hover,.color2-background.sm.color-5-link-color li:not(.btn) a:focus,.color2-background.sm.color-5-link-color li:not(.btn) a:active,.color2-background.sm.color-5-link-color li:not(.btn) a.highlighted{color:#0350a3}.color2-background.color-neutral-link-color a{color:#f9f9f9}.color2-background.color-neutral-link-color a:hover,.color2-background.color-neutral-link-color a:focus,.color2-background.color-neutral-link-color a:active,.color2-background.color-neutral-link-color a.highlighted{color:#c6c6c6}.color2-background-hover:focus,.color2-background-hover:hover{background:#011f3f ! important}.color3-background.color-1-link-color a{color:#4392f1}.color3-background.color-1-link-color a:hover,.color3-background.color-1-link-color a:focus,.color3-background.color-1-link-color a:active,.color3-background.color-1-link-color a.highlighted{color:#0e5fc0}.color3-background.sidebar.color-1-link-color a{color:#4392f1}.color3-background.sidebar.color-1-link-color a:hover,.color3-background.sidebar.color-1-link-color a:focus,.color3-background.sidebar.color-1-link-color a:active,.color3-background.sidebar.color-1-link-color a.highlighted{color:#0e5fc0}.color3-background.sm.color-1-link-color li.btn a,.color3-background.sm.color-1-link-color .palette-primary li.button-primary a,.palette-primary .color3-background.sm.color-1-link-color li.button-primary a,.color3-background.sm.color-1-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color3-background.sm.color-1-link-color li.button a,.color3-background.sm.color-1-link-color .palette-primary li.button-secondary a,.palette-primary .color3-background.sm.color-1-link-color li.button-secondary a,.color3-background.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color3-background.sm.color-1-link-color li.alt.button a{color:inherit}.color3-background.sm.color-1-link-color li.btn a:hover,.color3-background.sm.color-1-link-color .palette-primary li.button-primary a:hover,.palette-primary .color3-background.sm.color-1-link-color li.button-primary a:hover,.color3-background.sm.color-1-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color3-background.sm.color-1-link-color li.button a:hover,.color3-background.sm.color-1-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color3-background.sm.color-1-link-color li.button-secondary a:hover,.color3-background.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color3-background.sm.color-1-link-color li.alt.button a:hover,.color3-background.sm.color-1-link-color li.btn a:focus,.color3-background.sm.color-1-link-color .palette-primary li.button-primary a:focus,.palette-primary .color3-background.sm.color-1-link-color li.button-primary a:focus,.color3-background.sm.color-1-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color3-background.sm.color-1-link-color li.button a:focus,.color3-background.sm.color-1-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color3-background.sm.color-1-link-color li.button-secondary a:focus,.color3-background.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color3-background.sm.color-1-link-color li.alt.button a:focus,.color3-background.sm.color-1-link-color li.btn a:active,.color3-background.sm.color-1-link-color .palette-primary li.button-primary a:active,.palette-primary .color3-background.sm.color-1-link-color li.button-primary a:active,.color3-background.sm.color-1-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color3-background.sm.color-1-link-color li.button a:active,.color3-background.sm.color-1-link-color .palette-primary li.button-secondary a:active,.palette-primary .color3-background.sm.color-1-link-color li.button-secondary a:active,.color3-background.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color3-background.sm.color-1-link-color li.alt.button a:active,.color3-background.sm.color-1-link-color li.btn a.highlighted,.color3-background.sm.color-1-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color3-background.sm.color-1-link-color li.button-primary a.highlighted,.color3-background.sm.color-1-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color3-background.sm.color-1-link-color li.button a.highlighted,.color3-background.sm.color-1-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color3-background.sm.color-1-link-color li.button-secondary a.highlighted,.color3-background.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color3-background.sm.color-1-link-color li.alt.button a.highlighted{color:inherit}.color3-background.sm.color-1-link-color li:not(.btn) a{color:#4392f1}.color3-background.sm.color-1-link-color li:not(.btn) a:hover,.color3-background.sm.color-1-link-color li:not(.btn) a:focus,.color3-background.sm.color-1-link-color li:not(.btn) a:active,.color3-background.sm.color-1-link-color li:not(.btn) a.highlighted{color:#0e5fc0}.color3-background.color-2-link-color a{color:#011f3f}.color3-background.color-2-link-color a:hover,.color3-background.color-2-link-color a:focus,.color3-background.color-2-link-color a:active,.color3-background.color-2-link-color a.highlighted{color:#0350a3}.color3-background.sidebar.color-2-link-color a{color:#011f3f}.color3-background.sidebar.color-2-link-color a:hover,.color3-background.sidebar.color-2-link-color a:focus,.color3-background.sidebar.color-2-link-color a:active,.color3-background.sidebar.color-2-link-color a.highlighted{color:#0350a3}.color3-background.sm.color-2-link-color li.btn a,.color3-background.sm.color-2-link-color .palette-primary li.button-primary a,.palette-primary .color3-background.sm.color-2-link-color li.button-primary a,.color3-background.sm.color-2-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color3-background.sm.color-2-link-color li.button a,.color3-background.sm.color-2-link-color .palette-primary li.button-secondary a,.palette-primary .color3-background.sm.color-2-link-color li.button-secondary a,.color3-background.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color3-background.sm.color-2-link-color li.alt.button a{color:inherit}.color3-background.sm.color-2-link-color li.btn a:hover,.color3-background.sm.color-2-link-color .palette-primary li.button-primary a:hover,.palette-primary .color3-background.sm.color-2-link-color li.button-primary a:hover,.color3-background.sm.color-2-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color3-background.sm.color-2-link-color li.button a:hover,.color3-background.sm.color-2-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color3-background.sm.color-2-link-color li.button-secondary a:hover,.color3-background.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color3-background.sm.color-2-link-color li.alt.button a:hover,.color3-background.sm.color-2-link-color li.btn a:focus,.color3-background.sm.color-2-link-color .palette-primary li.button-primary a:focus,.palette-primary .color3-background.sm.color-2-link-color li.button-primary a:focus,.color3-background.sm.color-2-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color3-background.sm.color-2-link-color li.button a:focus,.color3-background.sm.color-2-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color3-background.sm.color-2-link-color li.button-secondary a:focus,.color3-background.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color3-background.sm.color-2-link-color li.alt.button a:focus,.color3-background.sm.color-2-link-color li.btn a:active,.color3-background.sm.color-2-link-color .palette-primary li.button-primary a:active,.palette-primary .color3-background.sm.color-2-link-color li.button-primary a:active,.color3-background.sm.color-2-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color3-background.sm.color-2-link-color li.button a:active,.color3-background.sm.color-2-link-color .palette-primary li.button-secondary a:active,.palette-primary .color3-background.sm.color-2-link-color li.button-secondary a:active,.color3-background.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color3-background.sm.color-2-link-color li.alt.button a:active,.color3-background.sm.color-2-link-color li.btn a.highlighted,.color3-background.sm.color-2-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color3-background.sm.color-2-link-color li.button-primary a.highlighted,.color3-background.sm.color-2-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color3-background.sm.color-2-link-color li.button a.highlighted,.color3-background.sm.color-2-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color3-background.sm.color-2-link-color li.button-secondary a.highlighted,.color3-background.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color3-background.sm.color-2-link-color li.alt.button a.highlighted{color:inherit}.color3-background.sm.color-2-link-color li:not(.btn) a{color:#011f3f}.color3-background.sm.color-2-link-color li:not(.btn) a:hover,.color3-background.sm.color-2-link-color li:not(.btn) a:focus,.color3-background.sm.color-2-link-color li:not(.btn) a:active,.color3-background.sm.color-2-link-color li:not(.btn) a.highlighted{color:#0350a3}.color3-background.color-3-link-color a{color:#dcebf7}.color3-background.color-3-link-color a:hover,.color3-background.color-3-link-color a:focus,.color3-background.color-3-link-color a:active,.color3-background.color-3-link-color a.highlighted{color:#89bce4}.color3-background.sidebar.color-3-link-color a{color:#dcebf7}.color3-background.sidebar.color-3-link-color a:hover,.color3-background.sidebar.color-3-link-color a:focus,.color3-background.sidebar.color-3-link-color a:active,.color3-background.sidebar.color-3-link-color a.highlighted{color:#89bce4}.color3-background.sm.color-3-link-color li.btn a,.color3-background.sm.color-3-link-color .palette-primary li.button-primary a,.palette-primary .color3-background.sm.color-3-link-color li.button-primary a,.color3-background.sm.color-3-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color3-background.sm.color-3-link-color li.button a,.color3-background.sm.color-3-link-color .palette-primary li.button-secondary a,.palette-primary .color3-background.sm.color-3-link-color li.button-secondary a,.color3-background.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color3-background.sm.color-3-link-color li.alt.button a{color:inherit}.color3-background.sm.color-3-link-color li.btn a:hover,.color3-background.sm.color-3-link-color .palette-primary li.button-primary a:hover,.palette-primary .color3-background.sm.color-3-link-color li.button-primary a:hover,.color3-background.sm.color-3-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color3-background.sm.color-3-link-color li.button a:hover,.color3-background.sm.color-3-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color3-background.sm.color-3-link-color li.button-secondary a:hover,.color3-background.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color3-background.sm.color-3-link-color li.alt.button a:hover,.color3-background.sm.color-3-link-color li.btn a:focus,.color3-background.sm.color-3-link-color .palette-primary li.button-primary a:focus,.palette-primary .color3-background.sm.color-3-link-color li.button-primary a:focus,.color3-background.sm.color-3-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color3-background.sm.color-3-link-color li.button a:focus,.color3-background.sm.color-3-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color3-background.sm.color-3-link-color li.button-secondary a:focus,.color3-background.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color3-background.sm.color-3-link-color li.alt.button a:focus,.color3-background.sm.color-3-link-color li.btn a:active,.color3-background.sm.color-3-link-color .palette-primary li.button-primary a:active,.palette-primary .color3-background.sm.color-3-link-color li.button-primary a:active,.color3-background.sm.color-3-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color3-background.sm.color-3-link-color li.button a:active,.color3-background.sm.color-3-link-color .palette-primary li.button-secondary a:active,.palette-primary .color3-background.sm.color-3-link-color li.button-secondary a:active,.color3-background.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color3-background.sm.color-3-link-color li.alt.button a:active,.color3-background.sm.color-3-link-color li.btn a.highlighted,.color3-background.sm.color-3-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color3-background.sm.color-3-link-color li.button-primary a.highlighted,.color3-background.sm.color-3-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color3-background.sm.color-3-link-color li.button a.highlighted,.color3-background.sm.color-3-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color3-background.sm.color-3-link-color li.button-secondary a.highlighted,.color3-background.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color3-background.sm.color-3-link-color li.alt.button a.highlighted{color:inherit}.color3-background.sm.color-3-link-color li:not(.btn) a{color:#dcebf7}.color3-background.sm.color-3-link-color li:not(.btn) a:hover,.color3-background.sm.color-3-link-color li:not(.btn) a:focus,.color3-background.sm.color-3-link-color li:not(.btn) a:active,.color3-background.sm.color-3-link-color li:not(.btn) a.highlighted{color:#89bce4}.color3-background.color-4-link-color a{color:#f9f9f9}.color3-background.color-4-link-color a:hover,.color3-background.color-4-link-color a:focus,.color3-background.color-4-link-color a:active,.color3-background.color-4-link-color a.highlighted{color:#c6c6c6}.color3-background.sidebar.color-4-link-color a{color:#f9f9f9}.color3-background.sidebar.color-4-link-color a:hover,.color3-background.sidebar.color-4-link-color a:focus,.color3-background.sidebar.color-4-link-color a:active,.color3-background.sidebar.color-4-link-color a.highlighted{color:#c6c6c6}.color3-background.sm.color-4-link-color li.btn a,.color3-background.sm.color-4-link-color .palette-primary li.button-primary a,.palette-primary .color3-background.sm.color-4-link-color li.button-primary a,.color3-background.sm.color-4-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color3-background.sm.color-4-link-color li.button a,.color3-background.sm.color-4-link-color .palette-primary li.button-secondary a,.palette-primary .color3-background.sm.color-4-link-color li.button-secondary a,.color3-background.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color3-background.sm.color-4-link-color li.alt.button a{color:inherit}.color3-background.sm.color-4-link-color li.btn a:hover,.color3-background.sm.color-4-link-color .palette-primary li.button-primary a:hover,.palette-primary .color3-background.sm.color-4-link-color li.button-primary a:hover,.color3-background.sm.color-4-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color3-background.sm.color-4-link-color li.button a:hover,.color3-background.sm.color-4-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color3-background.sm.color-4-link-color li.button-secondary a:hover,.color3-background.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color3-background.sm.color-4-link-color li.alt.button a:hover,.color3-background.sm.color-4-link-color li.btn a:focus,.color3-background.sm.color-4-link-color .palette-primary li.button-primary a:focus,.palette-primary .color3-background.sm.color-4-link-color li.button-primary a:focus,.color3-background.sm.color-4-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color3-background.sm.color-4-link-color li.button a:focus,.color3-background.sm.color-4-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color3-background.sm.color-4-link-color li.button-secondary a:focus,.color3-background.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color3-background.sm.color-4-link-color li.alt.button a:focus,.color3-background.sm.color-4-link-color li.btn a:active,.color3-background.sm.color-4-link-color .palette-primary li.button-primary a:active,.palette-primary .color3-background.sm.color-4-link-color li.button-primary a:active,.color3-background.sm.color-4-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color3-background.sm.color-4-link-color li.button a:active,.color3-background.sm.color-4-link-color .palette-primary li.button-secondary a:active,.palette-primary .color3-background.sm.color-4-link-color li.button-secondary a:active,.color3-background.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color3-background.sm.color-4-link-color li.alt.button a:active,.color3-background.sm.color-4-link-color li.btn a.highlighted,.color3-background.sm.color-4-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color3-background.sm.color-4-link-color li.button-primary a.highlighted,.color3-background.sm.color-4-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color3-background.sm.color-4-link-color li.button a.highlighted,.color3-background.sm.color-4-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color3-background.sm.color-4-link-color li.button-secondary a.highlighted,.color3-background.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color3-background.sm.color-4-link-color li.alt.button a.highlighted{color:inherit}.color3-background.sm.color-4-link-color li:not(.btn) a{color:#f9f9f9}.color3-background.sm.color-4-link-color li:not(.btn) a:hover,.color3-background.sm.color-4-link-color li:not(.btn) a:focus,.color3-background.sm.color-4-link-color li:not(.btn) a:active,.color3-background.sm.color-4-link-color li:not(.btn) a.highlighted{color:#c6c6c6}.color3-background.color-5-link-color a{color:#011f3f}.color3-background.color-5-link-color a:hover,.color3-background.color-5-link-color a:focus,.color3-background.color-5-link-color a:active,.color3-background.color-5-link-color a.highlighted{color:#0350a3}.color3-background.sidebar.color-5-link-color a{color:#011f3f}.color3-background.sidebar.color-5-link-color a:hover,.color3-background.sidebar.color-5-link-color a:focus,.color3-background.sidebar.color-5-link-color a:active,.color3-background.sidebar.color-5-link-color a.highlighted{color:#0350a3}.color3-background.sm.color-5-link-color li.btn a,.color3-background.sm.color-5-link-color .palette-primary li.button-primary a,.palette-primary .color3-background.sm.color-5-link-color li.button-primary a,.color3-background.sm.color-5-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color3-background.sm.color-5-link-color li.button a,.color3-background.sm.color-5-link-color .palette-primary li.button-secondary a,.palette-primary .color3-background.sm.color-5-link-color li.button-secondary a,.color3-background.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color3-background.sm.color-5-link-color li.alt.button a{color:inherit}.color3-background.sm.color-5-link-color li.btn a:hover,.color3-background.sm.color-5-link-color .palette-primary li.button-primary a:hover,.palette-primary .color3-background.sm.color-5-link-color li.button-primary a:hover,.color3-background.sm.color-5-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color3-background.sm.color-5-link-color li.button a:hover,.color3-background.sm.color-5-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color3-background.sm.color-5-link-color li.button-secondary a:hover,.color3-background.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color3-background.sm.color-5-link-color li.alt.button a:hover,.color3-background.sm.color-5-link-color li.btn a:focus,.color3-background.sm.color-5-link-color .palette-primary li.button-primary a:focus,.palette-primary .color3-background.sm.color-5-link-color li.button-primary a:focus,.color3-background.sm.color-5-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color3-background.sm.color-5-link-color li.button a:focus,.color3-background.sm.color-5-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color3-background.sm.color-5-link-color li.button-secondary a:focus,.color3-background.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color3-background.sm.color-5-link-color li.alt.button a:focus,.color3-background.sm.color-5-link-color li.btn a:active,.color3-background.sm.color-5-link-color .palette-primary li.button-primary a:active,.palette-primary .color3-background.sm.color-5-link-color li.button-primary a:active,.color3-background.sm.color-5-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color3-background.sm.color-5-link-color li.button a:active,.color3-background.sm.color-5-link-color .palette-primary li.button-secondary a:active,.palette-primary .color3-background.sm.color-5-link-color li.button-secondary a:active,.color3-background.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color3-background.sm.color-5-link-color li.alt.button a:active,.color3-background.sm.color-5-link-color li.btn a.highlighted,.color3-background.sm.color-5-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color3-background.sm.color-5-link-color li.button-primary a.highlighted,.color3-background.sm.color-5-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color3-background.sm.color-5-link-color li.button a.highlighted,.color3-background.sm.color-5-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color3-background.sm.color-5-link-color li.button-secondary a.highlighted,.color3-background.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color3-background.sm.color-5-link-color li.alt.button a.highlighted{color:inherit}.color3-background.sm.color-5-link-color li:not(.btn) a{color:#011f3f}.color3-background.sm.color-5-link-color li:not(.btn) a:hover,.color3-background.sm.color-5-link-color li:not(.btn) a:focus,.color3-background.sm.color-5-link-color li:not(.btn) a:active,.color3-background.sm.color-5-link-color li:not(.btn) a.highlighted{color:#0350a3}.color3-background.color-neutral-link-color a{color:#f9f9f9}.color3-background.color-neutral-link-color a:hover,.color3-background.color-neutral-link-color a:focus,.color3-background.color-neutral-link-color a:active,.color3-background.color-neutral-link-color a.highlighted{color:#c6c6c6}.color3-background-hover:focus,.color3-background-hover:hover{background:#dcebf7 ! important}.color4-background.color-1-link-color a{color:#4392f1}.color4-background.color-1-link-color a:hover,.color4-background.color-1-link-color a:focus,.color4-background.color-1-link-color a:active,.color4-background.color-1-link-color a.highlighted{color:#0e5fc0}.color4-background.sidebar.color-1-link-color a{color:#4392f1}.color4-background.sidebar.color-1-link-color a:hover,.color4-background.sidebar.color-1-link-color a:focus,.color4-background.sidebar.color-1-link-color a:active,.color4-background.sidebar.color-1-link-color a.highlighted{color:#0e5fc0}.color4-background.sm.color-1-link-color li.btn a,.color4-background.sm.color-1-link-color .palette-primary li.button-primary a,.palette-primary .color4-background.sm.color-1-link-color li.button-primary a,.color4-background.sm.color-1-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color4-background.sm.color-1-link-color li.button a,.color4-background.sm.color-1-link-color .palette-primary li.button-secondary a,.palette-primary .color4-background.sm.color-1-link-color li.button-secondary a,.color4-background.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color4-background.sm.color-1-link-color li.alt.button a{color:inherit}.color4-background.sm.color-1-link-color li.btn a:hover,.color4-background.sm.color-1-link-color .palette-primary li.button-primary a:hover,.palette-primary .color4-background.sm.color-1-link-color li.button-primary a:hover,.color4-background.sm.color-1-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color4-background.sm.color-1-link-color li.button a:hover,.color4-background.sm.color-1-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color4-background.sm.color-1-link-color li.button-secondary a:hover,.color4-background.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color4-background.sm.color-1-link-color li.alt.button a:hover,.color4-background.sm.color-1-link-color li.btn a:focus,.color4-background.sm.color-1-link-color .palette-primary li.button-primary a:focus,.palette-primary .color4-background.sm.color-1-link-color li.button-primary a:focus,.color4-background.sm.color-1-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color4-background.sm.color-1-link-color li.button a:focus,.color4-background.sm.color-1-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color4-background.sm.color-1-link-color li.button-secondary a:focus,.color4-background.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color4-background.sm.color-1-link-color li.alt.button a:focus,.color4-background.sm.color-1-link-color li.btn a:active,.color4-background.sm.color-1-link-color .palette-primary li.button-primary a:active,.palette-primary .color4-background.sm.color-1-link-color li.button-primary a:active,.color4-background.sm.color-1-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color4-background.sm.color-1-link-color li.button a:active,.color4-background.sm.color-1-link-color .palette-primary li.button-secondary a:active,.palette-primary .color4-background.sm.color-1-link-color li.button-secondary a:active,.color4-background.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color4-background.sm.color-1-link-color li.alt.button a:active,.color4-background.sm.color-1-link-color li.btn a.highlighted,.color4-background.sm.color-1-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color4-background.sm.color-1-link-color li.button-primary a.highlighted,.color4-background.sm.color-1-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color4-background.sm.color-1-link-color li.button a.highlighted,.color4-background.sm.color-1-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color4-background.sm.color-1-link-color li.button-secondary a.highlighted,.color4-background.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color4-background.sm.color-1-link-color li.alt.button a.highlighted{color:inherit}.color4-background.sm.color-1-link-color li:not(.btn) a{color:#4392f1}.color4-background.sm.color-1-link-color li:not(.btn) a:hover,.color4-background.sm.color-1-link-color li:not(.btn) a:focus,.color4-background.sm.color-1-link-color li:not(.btn) a:active,.color4-background.sm.color-1-link-color li:not(.btn) a.highlighted{color:#0e5fc0}.color4-background.color-2-link-color a{color:#011f3f}.color4-background.color-2-link-color a:hover,.color4-background.color-2-link-color a:focus,.color4-background.color-2-link-color a:active,.color4-background.color-2-link-color a.highlighted{color:#0350a3}.color4-background.sidebar.color-2-link-color a{color:#011f3f}.color4-background.sidebar.color-2-link-color a:hover,.color4-background.sidebar.color-2-link-color a:focus,.color4-background.sidebar.color-2-link-color a:active,.color4-background.sidebar.color-2-link-color a.highlighted{color:#0350a3}.color4-background.sm.color-2-link-color li.btn a,.color4-background.sm.color-2-link-color .palette-primary li.button-primary a,.palette-primary .color4-background.sm.color-2-link-color li.button-primary a,.color4-background.sm.color-2-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color4-background.sm.color-2-link-color li.button a,.color4-background.sm.color-2-link-color .palette-primary li.button-secondary a,.palette-primary .color4-background.sm.color-2-link-color li.button-secondary a,.color4-background.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color4-background.sm.color-2-link-color li.alt.button a{color:inherit}.color4-background.sm.color-2-link-color li.btn a:hover,.color4-background.sm.color-2-link-color .palette-primary li.button-primary a:hover,.palette-primary .color4-background.sm.color-2-link-color li.button-primary a:hover,.color4-background.sm.color-2-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color4-background.sm.color-2-link-color li.button a:hover,.color4-background.sm.color-2-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color4-background.sm.color-2-link-color li.button-secondary a:hover,.color4-background.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color4-background.sm.color-2-link-color li.alt.button a:hover,.color4-background.sm.color-2-link-color li.btn a:focus,.color4-background.sm.color-2-link-color .palette-primary li.button-primary a:focus,.palette-primary .color4-background.sm.color-2-link-color li.button-primary a:focus,.color4-background.sm.color-2-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color4-background.sm.color-2-link-color li.button a:focus,.color4-background.sm.color-2-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color4-background.sm.color-2-link-color li.button-secondary a:focus,.color4-background.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color4-background.sm.color-2-link-color li.alt.button a:focus,.color4-background.sm.color-2-link-color li.btn a:active,.color4-background.sm.color-2-link-color .palette-primary li.button-primary a:active,.palette-primary .color4-background.sm.color-2-link-color li.button-primary a:active,.color4-background.sm.color-2-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color4-background.sm.color-2-link-color li.button a:active,.color4-background.sm.color-2-link-color .palette-primary li.button-secondary a:active,.palette-primary .color4-background.sm.color-2-link-color li.button-secondary a:active,.color4-background.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color4-background.sm.color-2-link-color li.alt.button a:active,.color4-background.sm.color-2-link-color li.btn a.highlighted,.color4-background.sm.color-2-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color4-background.sm.color-2-link-color li.button-primary a.highlighted,.color4-background.sm.color-2-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color4-background.sm.color-2-link-color li.button a.highlighted,.color4-background.sm.color-2-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color4-background.sm.color-2-link-color li.button-secondary a.highlighted,.color4-background.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color4-background.sm.color-2-link-color li.alt.button a.highlighted{color:inherit}.color4-background.sm.color-2-link-color li:not(.btn) a{color:#011f3f}.color4-background.sm.color-2-link-color li:not(.btn) a:hover,.color4-background.sm.color-2-link-color li:not(.btn) a:focus,.color4-background.sm.color-2-link-color li:not(.btn) a:active,.color4-background.sm.color-2-link-color li:not(.btn) a.highlighted{color:#0350a3}.color4-background.color-3-link-color a{color:#dcebf7}.color4-background.color-3-link-color a:hover,.color4-background.color-3-link-color a:focus,.color4-background.color-3-link-color a:active,.color4-background.color-3-link-color a.highlighted{color:#89bce4}.color4-background.sidebar.color-3-link-color a{color:#dcebf7}.color4-background.sidebar.color-3-link-color a:hover,.color4-background.sidebar.color-3-link-color a:focus,.color4-background.sidebar.color-3-link-color a:active,.color4-background.sidebar.color-3-link-color a.highlighted{color:#89bce4}.color4-background.sm.color-3-link-color li.btn a,.color4-background.sm.color-3-link-color .palette-primary li.button-primary a,.palette-primary .color4-background.sm.color-3-link-color li.button-primary a,.color4-background.sm.color-3-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color4-background.sm.color-3-link-color li.button a,.color4-background.sm.color-3-link-color .palette-primary li.button-secondary a,.palette-primary .color4-background.sm.color-3-link-color li.button-secondary a,.color4-background.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color4-background.sm.color-3-link-color li.alt.button a{color:inherit}.color4-background.sm.color-3-link-color li.btn a:hover,.color4-background.sm.color-3-link-color .palette-primary li.button-primary a:hover,.palette-primary .color4-background.sm.color-3-link-color li.button-primary a:hover,.color4-background.sm.color-3-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color4-background.sm.color-3-link-color li.button a:hover,.color4-background.sm.color-3-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color4-background.sm.color-3-link-color li.button-secondary a:hover,.color4-background.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color4-background.sm.color-3-link-color li.alt.button a:hover,.color4-background.sm.color-3-link-color li.btn a:focus,.color4-background.sm.color-3-link-color .palette-primary li.button-primary a:focus,.palette-primary .color4-background.sm.color-3-link-color li.button-primary a:focus,.color4-background.sm.color-3-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color4-background.sm.color-3-link-color li.button a:focus,.color4-background.sm.color-3-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color4-background.sm.color-3-link-color li.button-secondary a:focus,.color4-background.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color4-background.sm.color-3-link-color li.alt.button a:focus,.color4-background.sm.color-3-link-color li.btn a:active,.color4-background.sm.color-3-link-color .palette-primary li.button-primary a:active,.palette-primary .color4-background.sm.color-3-link-color li.button-primary a:active,.color4-background.sm.color-3-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color4-background.sm.color-3-link-color li.button a:active,.color4-background.sm.color-3-link-color .palette-primary li.button-secondary a:active,.palette-primary .color4-background.sm.color-3-link-color li.button-secondary a:active,.color4-background.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color4-background.sm.color-3-link-color li.alt.button a:active,.color4-background.sm.color-3-link-color li.btn a.highlighted,.color4-background.sm.color-3-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color4-background.sm.color-3-link-color li.button-primary a.highlighted,.color4-background.sm.color-3-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color4-background.sm.color-3-link-color li.button a.highlighted,.color4-background.sm.color-3-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color4-background.sm.color-3-link-color li.button-secondary a.highlighted,.color4-background.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color4-background.sm.color-3-link-color li.alt.button a.highlighted{color:inherit}.color4-background.sm.color-3-link-color li:not(.btn) a{color:#dcebf7}.color4-background.sm.color-3-link-color li:not(.btn) a:hover,.color4-background.sm.color-3-link-color li:not(.btn) a:focus,.color4-background.sm.color-3-link-color li:not(.btn) a:active,.color4-background.sm.color-3-link-color li:not(.btn) a.highlighted{color:#89bce4}.color4-background.color-4-link-color a{color:#f9f9f9}.color4-background.color-4-link-color a:hover,.color4-background.color-4-link-color a:focus,.color4-background.color-4-link-color a:active,.color4-background.color-4-link-color a.highlighted{color:#c6c6c6}.color4-background.sidebar.color-4-link-color a{color:#f9f9f9}.color4-background.sidebar.color-4-link-color a:hover,.color4-background.sidebar.color-4-link-color a:focus,.color4-background.sidebar.color-4-link-color a:active,.color4-background.sidebar.color-4-link-color a.highlighted{color:#c6c6c6}.color4-background.sm.color-4-link-color li.btn a,.color4-background.sm.color-4-link-color .palette-primary li.button-primary a,.palette-primary .color4-background.sm.color-4-link-color li.button-primary a,.color4-background.sm.color-4-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color4-background.sm.color-4-link-color li.button a,.color4-background.sm.color-4-link-color .palette-primary li.button-secondary a,.palette-primary .color4-background.sm.color-4-link-color li.button-secondary a,.color4-background.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color4-background.sm.color-4-link-color li.alt.button a{color:inherit}.color4-background.sm.color-4-link-color li.btn a:hover,.color4-background.sm.color-4-link-color .palette-primary li.button-primary a:hover,.palette-primary .color4-background.sm.color-4-link-color li.button-primary a:hover,.color4-background.sm.color-4-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color4-background.sm.color-4-link-color li.button a:hover,.color4-background.sm.color-4-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color4-background.sm.color-4-link-color li.button-secondary a:hover,.color4-background.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color4-background.sm.color-4-link-color li.alt.button a:hover,.color4-background.sm.color-4-link-color li.btn a:focus,.color4-background.sm.color-4-link-color .palette-primary li.button-primary a:focus,.palette-primary .color4-background.sm.color-4-link-color li.button-primary a:focus,.color4-background.sm.color-4-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color4-background.sm.color-4-link-color li.button a:focus,.color4-background.sm.color-4-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color4-background.sm.color-4-link-color li.button-secondary a:focus,.color4-background.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color4-background.sm.color-4-link-color li.alt.button a:focus,.color4-background.sm.color-4-link-color li.btn a:active,.color4-background.sm.color-4-link-color .palette-primary li.button-primary a:active,.palette-primary .color4-background.sm.color-4-link-color li.button-primary a:active,.color4-background.sm.color-4-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color4-background.sm.color-4-link-color li.button a:active,.color4-background.sm.color-4-link-color .palette-primary li.button-secondary a:active,.palette-primary .color4-background.sm.color-4-link-color li.button-secondary a:active,.color4-background.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color4-background.sm.color-4-link-color li.alt.button a:active,.color4-background.sm.color-4-link-color li.btn a.highlighted,.color4-background.sm.color-4-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color4-background.sm.color-4-link-color li.button-primary a.highlighted,.color4-background.sm.color-4-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color4-background.sm.color-4-link-color li.button a.highlighted,.color4-background.sm.color-4-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color4-background.sm.color-4-link-color li.button-secondary a.highlighted,.color4-background.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color4-background.sm.color-4-link-color li.alt.button a.highlighted{color:inherit}.color4-background.sm.color-4-link-color li:not(.btn) a{color:#f9f9f9}.color4-background.sm.color-4-link-color li:not(.btn) a:hover,.color4-background.sm.color-4-link-color li:not(.btn) a:focus,.color4-background.sm.color-4-link-color li:not(.btn) a:active,.color4-background.sm.color-4-link-color li:not(.btn) a.highlighted{color:#c6c6c6}.color4-background.color-5-link-color a{color:#011f3f}.color4-background.color-5-link-color a:hover,.color4-background.color-5-link-color a:focus,.color4-background.color-5-link-color a:active,.color4-background.color-5-link-color a.highlighted{color:#0350a3}.color4-background.sidebar.color-5-link-color a{color:#011f3f}.color4-background.sidebar.color-5-link-color a:hover,.color4-background.sidebar.color-5-link-color a:focus,.color4-background.sidebar.color-5-link-color a:active,.color4-background.sidebar.color-5-link-color a.highlighted{color:#0350a3}.color4-background.sm.color-5-link-color li.btn a,.color4-background.sm.color-5-link-color .palette-primary li.button-primary a,.palette-primary .color4-background.sm.color-5-link-color li.button-primary a,.color4-background.sm.color-5-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color4-background.sm.color-5-link-color li.button a,.color4-background.sm.color-5-link-color .palette-primary li.button-secondary a,.palette-primary .color4-background.sm.color-5-link-color li.button-secondary a,.color4-background.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color4-background.sm.color-5-link-color li.alt.button a{color:inherit}.color4-background.sm.color-5-link-color li.btn a:hover,.color4-background.sm.color-5-link-color .palette-primary li.button-primary a:hover,.palette-primary .color4-background.sm.color-5-link-color li.button-primary a:hover,.color4-background.sm.color-5-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color4-background.sm.color-5-link-color li.button a:hover,.color4-background.sm.color-5-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color4-background.sm.color-5-link-color li.button-secondary a:hover,.color4-background.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color4-background.sm.color-5-link-color li.alt.button a:hover,.color4-background.sm.color-5-link-color li.btn a:focus,.color4-background.sm.color-5-link-color .palette-primary li.button-primary a:focus,.palette-primary .color4-background.sm.color-5-link-color li.button-primary a:focus,.color4-background.sm.color-5-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color4-background.sm.color-5-link-color li.button a:focus,.color4-background.sm.color-5-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color4-background.sm.color-5-link-color li.button-secondary a:focus,.color4-background.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color4-background.sm.color-5-link-color li.alt.button a:focus,.color4-background.sm.color-5-link-color li.btn a:active,.color4-background.sm.color-5-link-color .palette-primary li.button-primary a:active,.palette-primary .color4-background.sm.color-5-link-color li.button-primary a:active,.color4-background.sm.color-5-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color4-background.sm.color-5-link-color li.button a:active,.color4-background.sm.color-5-link-color .palette-primary li.button-secondary a:active,.palette-primary .color4-background.sm.color-5-link-color li.button-secondary a:active,.color4-background.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color4-background.sm.color-5-link-color li.alt.button a:active,.color4-background.sm.color-5-link-color li.btn a.highlighted,.color4-background.sm.color-5-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color4-background.sm.color-5-link-color li.button-primary a.highlighted,.color4-background.sm.color-5-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color4-background.sm.color-5-link-color li.button a.highlighted,.color4-background.sm.color-5-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color4-background.sm.color-5-link-color li.button-secondary a.highlighted,.color4-background.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color4-background.sm.color-5-link-color li.alt.button a.highlighted{color:inherit}.color4-background.sm.color-5-link-color li:not(.btn) a{color:#011f3f}.color4-background.sm.color-5-link-color li:not(.btn) a:hover,.color4-background.sm.color-5-link-color li:not(.btn) a:focus,.color4-background.sm.color-5-link-color li:not(.btn) a:active,.color4-background.sm.color-5-link-color li:not(.btn) a.highlighted{color:#0350a3}.color4-background.color-neutral-link-color a{color:#f9f9f9}.color4-background.color-neutral-link-color a:hover,.color4-background.color-neutral-link-color a:focus,.color4-background.color-neutral-link-color a:active,.color4-background.color-neutral-link-color a.highlighted{color:#c6c6c6}.color4-background-hover:focus,.color4-background-hover:hover{background:#f9f9f9 ! important}.color5-background.color-1-link-color a{color:#4392f1}.color5-background.color-1-link-color a:hover,.color5-background.color-1-link-color a:focus,.color5-background.color-1-link-color a:active,.color5-background.color-1-link-color a.highlighted{color:#a2c9f8}.color5-background.sidebar.color-1-link-color a{color:#4392f1}.color5-background.sidebar.color-1-link-color a:hover,.color5-background.sidebar.color-1-link-color a:focus,.color5-background.sidebar.color-1-link-color a:active,.color5-background.sidebar.color-1-link-color a.highlighted{color:#a2c9f8}.color5-background.sm.color-1-link-color li.btn a,.color5-background.sm.color-1-link-color .palette-primary li.button-primary a,.palette-primary .color5-background.sm.color-1-link-color li.button-primary a,.color5-background.sm.color-1-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color5-background.sm.color-1-link-color li.button a,.color5-background.sm.color-1-link-color .palette-primary li.button-secondary a,.palette-primary .color5-background.sm.color-1-link-color li.button-secondary a,.color5-background.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color5-background.sm.color-1-link-color li.alt.button a{color:inherit}.color5-background.sm.color-1-link-color li.btn a:hover,.color5-background.sm.color-1-link-color .palette-primary li.button-primary a:hover,.palette-primary .color5-background.sm.color-1-link-color li.button-primary a:hover,.color5-background.sm.color-1-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color5-background.sm.color-1-link-color li.button a:hover,.color5-background.sm.color-1-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color5-background.sm.color-1-link-color li.button-secondary a:hover,.color5-background.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color5-background.sm.color-1-link-color li.alt.button a:hover,.color5-background.sm.color-1-link-color li.btn a:focus,.color5-background.sm.color-1-link-color .palette-primary li.button-primary a:focus,.palette-primary .color5-background.sm.color-1-link-color li.button-primary a:focus,.color5-background.sm.color-1-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color5-background.sm.color-1-link-color li.button a:focus,.color5-background.sm.color-1-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color5-background.sm.color-1-link-color li.button-secondary a:focus,.color5-background.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color5-background.sm.color-1-link-color li.alt.button a:focus,.color5-background.sm.color-1-link-color li.btn a:active,.color5-background.sm.color-1-link-color .palette-primary li.button-primary a:active,.palette-primary .color5-background.sm.color-1-link-color li.button-primary a:active,.color5-background.sm.color-1-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color5-background.sm.color-1-link-color li.button a:active,.color5-background.sm.color-1-link-color .palette-primary li.button-secondary a:active,.palette-primary .color5-background.sm.color-1-link-color li.button-secondary a:active,.color5-background.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color5-background.sm.color-1-link-color li.alt.button a:active,.color5-background.sm.color-1-link-color li.btn a.highlighted,.color5-background.sm.color-1-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color5-background.sm.color-1-link-color li.button-primary a.highlighted,.color5-background.sm.color-1-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color5-background.sm.color-1-link-color li.button a.highlighted,.color5-background.sm.color-1-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color5-background.sm.color-1-link-color li.button-secondary a.highlighted,.color5-background.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color5-background.sm.color-1-link-color li.alt.button a.highlighted{color:inherit}.color5-background.sm.color-1-link-color li:not(.btn) a{color:#4392f1}.color5-background.sm.color-1-link-color li:not(.btn) a:hover,.color5-background.sm.color-1-link-color li:not(.btn) a:focus,.color5-background.sm.color-1-link-color li:not(.btn) a:active,.color5-background.sm.color-1-link-color li:not(.btn) a.highlighted{color:#a2c9f8}.color5-background.color-2-link-color a{color:#011f3f}.color5-background.color-2-link-color a:hover,.color5-background.color-2-link-color a:focus,.color5-background.color-2-link-color a:active,.color5-background.color-2-link-color a.highlighted{color:#0350a3}.color5-background.sidebar.color-2-link-color a{color:#011f3f}.color5-background.sidebar.color-2-link-color a:hover,.color5-background.sidebar.color-2-link-color a:focus,.color5-background.sidebar.color-2-link-color a:active,.color5-background.sidebar.color-2-link-color a.highlighted{color:#0350a3}.color5-background.sm.color-2-link-color li.btn a,.color5-background.sm.color-2-link-color .palette-primary li.button-primary a,.palette-primary .color5-background.sm.color-2-link-color li.button-primary a,.color5-background.sm.color-2-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color5-background.sm.color-2-link-color li.button a,.color5-background.sm.color-2-link-color .palette-primary li.button-secondary a,.palette-primary .color5-background.sm.color-2-link-color li.button-secondary a,.color5-background.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color5-background.sm.color-2-link-color li.alt.button a{color:inherit}.color5-background.sm.color-2-link-color li.btn a:hover,.color5-background.sm.color-2-link-color .palette-primary li.button-primary a:hover,.palette-primary .color5-background.sm.color-2-link-color li.button-primary a:hover,.color5-background.sm.color-2-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color5-background.sm.color-2-link-color li.button a:hover,.color5-background.sm.color-2-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color5-background.sm.color-2-link-color li.button-secondary a:hover,.color5-background.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color5-background.sm.color-2-link-color li.alt.button a:hover,.color5-background.sm.color-2-link-color li.btn a:focus,.color5-background.sm.color-2-link-color .palette-primary li.button-primary a:focus,.palette-primary .color5-background.sm.color-2-link-color li.button-primary a:focus,.color5-background.sm.color-2-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color5-background.sm.color-2-link-color li.button a:focus,.color5-background.sm.color-2-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color5-background.sm.color-2-link-color li.button-secondary a:focus,.color5-background.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color5-background.sm.color-2-link-color li.alt.button a:focus,.color5-background.sm.color-2-link-color li.btn a:active,.color5-background.sm.color-2-link-color .palette-primary li.button-primary a:active,.palette-primary .color5-background.sm.color-2-link-color li.button-primary a:active,.color5-background.sm.color-2-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color5-background.sm.color-2-link-color li.button a:active,.color5-background.sm.color-2-link-color .palette-primary li.button-secondary a:active,.palette-primary .color5-background.sm.color-2-link-color li.button-secondary a:active,.color5-background.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color5-background.sm.color-2-link-color li.alt.button a:active,.color5-background.sm.color-2-link-color li.btn a.highlighted,.color5-background.sm.color-2-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color5-background.sm.color-2-link-color li.button-primary a.highlighted,.color5-background.sm.color-2-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color5-background.sm.color-2-link-color li.button a.highlighted,.color5-background.sm.color-2-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color5-background.sm.color-2-link-color li.button-secondary a.highlighted,.color5-background.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color5-background.sm.color-2-link-color li.alt.button a.highlighted{color:inherit}.color5-background.sm.color-2-link-color li:not(.btn) a{color:#011f3f}.color5-background.sm.color-2-link-color li:not(.btn) a:hover,.color5-background.sm.color-2-link-color li:not(.btn) a:focus,.color5-background.sm.color-2-link-color li:not(.btn) a:active,.color5-background.sm.color-2-link-color li:not(.btn) a.highlighted{color:#0350a3}.color5-background.color-3-link-color a{color:#dcebf7}.color5-background.color-3-link-color a:hover,.color5-background.color-3-link-color a:focus,.color5-background.color-3-link-color a:active,.color5-background.color-3-link-color a.highlighted{color:#89bce4}.color5-background.sidebar.color-3-link-color a{color:#dcebf7}.color5-background.sidebar.color-3-link-color a:hover,.color5-background.sidebar.color-3-link-color a:focus,.color5-background.sidebar.color-3-link-color a:active,.color5-background.sidebar.color-3-link-color a.highlighted{color:#89bce4}.color5-background.sm.color-3-link-color li.btn a,.color5-background.sm.color-3-link-color .palette-primary li.button-primary a,.palette-primary .color5-background.sm.color-3-link-color li.button-primary a,.color5-background.sm.color-3-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color5-background.sm.color-3-link-color li.button a,.color5-background.sm.color-3-link-color .palette-primary li.button-secondary a,.palette-primary .color5-background.sm.color-3-link-color li.button-secondary a,.color5-background.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color5-background.sm.color-3-link-color li.alt.button a{color:inherit}.color5-background.sm.color-3-link-color li.btn a:hover,.color5-background.sm.color-3-link-color .palette-primary li.button-primary a:hover,.palette-primary .color5-background.sm.color-3-link-color li.button-primary a:hover,.color5-background.sm.color-3-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color5-background.sm.color-3-link-color li.button a:hover,.color5-background.sm.color-3-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color5-background.sm.color-3-link-color li.button-secondary a:hover,.color5-background.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color5-background.sm.color-3-link-color li.alt.button a:hover,.color5-background.sm.color-3-link-color li.btn a:focus,.color5-background.sm.color-3-link-color .palette-primary li.button-primary a:focus,.palette-primary .color5-background.sm.color-3-link-color li.button-primary a:focus,.color5-background.sm.color-3-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color5-background.sm.color-3-link-color li.button a:focus,.color5-background.sm.color-3-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color5-background.sm.color-3-link-color li.button-secondary a:focus,.color5-background.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color5-background.sm.color-3-link-color li.alt.button a:focus,.color5-background.sm.color-3-link-color li.btn a:active,.color5-background.sm.color-3-link-color .palette-primary li.button-primary a:active,.palette-primary .color5-background.sm.color-3-link-color li.button-primary a:active,.color5-background.sm.color-3-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color5-background.sm.color-3-link-color li.button a:active,.color5-background.sm.color-3-link-color .palette-primary li.button-secondary a:active,.palette-primary .color5-background.sm.color-3-link-color li.button-secondary a:active,.color5-background.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color5-background.sm.color-3-link-color li.alt.button a:active,.color5-background.sm.color-3-link-color li.btn a.highlighted,.color5-background.sm.color-3-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color5-background.sm.color-3-link-color li.button-primary a.highlighted,.color5-background.sm.color-3-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color5-background.sm.color-3-link-color li.button a.highlighted,.color5-background.sm.color-3-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color5-background.sm.color-3-link-color li.button-secondary a.highlighted,.color5-background.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color5-background.sm.color-3-link-color li.alt.button a.highlighted{color:inherit}.color5-background.sm.color-3-link-color li:not(.btn) a{color:#dcebf7}.color5-background.sm.color-3-link-color li:not(.btn) a:hover,.color5-background.sm.color-3-link-color li:not(.btn) a:focus,.color5-background.sm.color-3-link-color li:not(.btn) a:active,.color5-background.sm.color-3-link-color li:not(.btn) a.highlighted{color:#89bce4}.color5-background.color-4-link-color a{color:#f9f9f9}.color5-background.color-4-link-color a:hover,.color5-background.color-4-link-color a:focus,.color5-background.color-4-link-color a:active,.color5-background.color-4-link-color a.highlighted{color:#c6c6c6}.color5-background.sidebar.color-4-link-color a{color:#f9f9f9}.color5-background.sidebar.color-4-link-color a:hover,.color5-background.sidebar.color-4-link-color a:focus,.color5-background.sidebar.color-4-link-color a:active,.color5-background.sidebar.color-4-link-color a.highlighted{color:#c6c6c6}.color5-background.sm.color-4-link-color li.btn a,.color5-background.sm.color-4-link-color .palette-primary li.button-primary a,.palette-primary .color5-background.sm.color-4-link-color li.button-primary a,.color5-background.sm.color-4-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color5-background.sm.color-4-link-color li.button a,.color5-background.sm.color-4-link-color .palette-primary li.button-secondary a,.palette-primary .color5-background.sm.color-4-link-color li.button-secondary a,.color5-background.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color5-background.sm.color-4-link-color li.alt.button a{color:inherit}.color5-background.sm.color-4-link-color li.btn a:hover,.color5-background.sm.color-4-link-color .palette-primary li.button-primary a:hover,.palette-primary .color5-background.sm.color-4-link-color li.button-primary a:hover,.color5-background.sm.color-4-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color5-background.sm.color-4-link-color li.button a:hover,.color5-background.sm.color-4-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color5-background.sm.color-4-link-color li.button-secondary a:hover,.color5-background.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color5-background.sm.color-4-link-color li.alt.button a:hover,.color5-background.sm.color-4-link-color li.btn a:focus,.color5-background.sm.color-4-link-color .palette-primary li.button-primary a:focus,.palette-primary .color5-background.sm.color-4-link-color li.button-primary a:focus,.color5-background.sm.color-4-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color5-background.sm.color-4-link-color li.button a:focus,.color5-background.sm.color-4-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color5-background.sm.color-4-link-color li.button-secondary a:focus,.color5-background.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color5-background.sm.color-4-link-color li.alt.button a:focus,.color5-background.sm.color-4-link-color li.btn a:active,.color5-background.sm.color-4-link-color .palette-primary li.button-primary a:active,.palette-primary .color5-background.sm.color-4-link-color li.button-primary a:active,.color5-background.sm.color-4-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color5-background.sm.color-4-link-color li.button a:active,.color5-background.sm.color-4-link-color .palette-primary li.button-secondary a:active,.palette-primary .color5-background.sm.color-4-link-color li.button-secondary a:active,.color5-background.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color5-background.sm.color-4-link-color li.alt.button a:active,.color5-background.sm.color-4-link-color li.btn a.highlighted,.color5-background.sm.color-4-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color5-background.sm.color-4-link-color li.button-primary a.highlighted,.color5-background.sm.color-4-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color5-background.sm.color-4-link-color li.button a.highlighted,.color5-background.sm.color-4-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color5-background.sm.color-4-link-color li.button-secondary a.highlighted,.color5-background.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color5-background.sm.color-4-link-color li.alt.button a.highlighted{color:inherit}.color5-background.sm.color-4-link-color li:not(.btn) a{color:#f9f9f9}.color5-background.sm.color-4-link-color li:not(.btn) a:hover,.color5-background.sm.color-4-link-color li:not(.btn) a:focus,.color5-background.sm.color-4-link-color li:not(.btn) a:active,.color5-background.sm.color-4-link-color li:not(.btn) a.highlighted{color:#c6c6c6}.color5-background.color-5-link-color a{color:#011f3f}.color5-background.color-5-link-color a:hover,.color5-background.color-5-link-color a:focus,.color5-background.color-5-link-color a:active,.color5-background.color-5-link-color a.highlighted{color:#0350a3}.color5-background.sidebar.color-5-link-color a{color:#011f3f}.color5-background.sidebar.color-5-link-color a:hover,.color5-background.sidebar.color-5-link-color a:focus,.color5-background.sidebar.color-5-link-color a:active,.color5-background.sidebar.color-5-link-color a.highlighted{color:#0350a3}.color5-background.sm.color-5-link-color li.btn a,.color5-background.sm.color-5-link-color .palette-primary li.button-primary a,.palette-primary .color5-background.sm.color-5-link-color li.button-primary a,.color5-background.sm.color-5-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color5-background.sm.color-5-link-color li.button a,.color5-background.sm.color-5-link-color .palette-primary li.button-secondary a,.palette-primary .color5-background.sm.color-5-link-color li.button-secondary a,.color5-background.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color5-background.sm.color-5-link-color li.alt.button a{color:inherit}.color5-background.sm.color-5-link-color li.btn a:hover,.color5-background.sm.color-5-link-color .palette-primary li.button-primary a:hover,.palette-primary .color5-background.sm.color-5-link-color li.button-primary a:hover,.color5-background.sm.color-5-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color5-background.sm.color-5-link-color li.button a:hover,.color5-background.sm.color-5-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color5-background.sm.color-5-link-color li.button-secondary a:hover,.color5-background.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color5-background.sm.color-5-link-color li.alt.button a:hover,.color5-background.sm.color-5-link-color li.btn a:focus,.color5-background.sm.color-5-link-color .palette-primary li.button-primary a:focus,.palette-primary .color5-background.sm.color-5-link-color li.button-primary a:focus,.color5-background.sm.color-5-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color5-background.sm.color-5-link-color li.button a:focus,.color5-background.sm.color-5-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color5-background.sm.color-5-link-color li.button-secondary a:focus,.color5-background.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color5-background.sm.color-5-link-color li.alt.button a:focus,.color5-background.sm.color-5-link-color li.btn a:active,.color5-background.sm.color-5-link-color .palette-primary li.button-primary a:active,.palette-primary .color5-background.sm.color-5-link-color li.button-primary a:active,.color5-background.sm.color-5-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color5-background.sm.color-5-link-color li.button a:active,.color5-background.sm.color-5-link-color .palette-primary li.button-secondary a:active,.palette-primary .color5-background.sm.color-5-link-color li.button-secondary a:active,.color5-background.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color5-background.sm.color-5-link-color li.alt.button a:active,.color5-background.sm.color-5-link-color li.btn a.highlighted,.color5-background.sm.color-5-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color5-background.sm.color-5-link-color li.button-primary a.highlighted,.color5-background.sm.color-5-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color5-background.sm.color-5-link-color li.button a.highlighted,.color5-background.sm.color-5-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color5-background.sm.color-5-link-color li.button-secondary a.highlighted,.color5-background.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color5-background.sm.color-5-link-color li.alt.button a.highlighted{color:inherit}.color5-background.sm.color-5-link-color li:not(.btn) a{color:#011f3f}.color5-background.sm.color-5-link-color li:not(.btn) a:hover,.color5-background.sm.color-5-link-color li:not(.btn) a:focus,.color5-background.sm.color-5-link-color li:not(.btn) a:active,.color5-background.sm.color-5-link-color li:not(.btn) a.highlighted{color:#0350a3}.color5-background.color-neutral-link-color a{color:#f9f9f9}.color5-background.color-neutral-link-color a:hover,.color5-background.color-neutral-link-color a:focus,.color5-background.color-neutral-link-color a:active,.color5-background.color-neutral-link-color a.highlighted{color:#c6c6c6}.color5-background-hover:focus,.color5-background-hover:hover{background:#011f3f ! important}.color-neutral-background.color-1-link-color a{color:#4392f1}.color-neutral-background.color-1-link-color a:hover,.color-neutral-background.color-1-link-color a:focus,.color-neutral-background.color-1-link-color a:active,.color-neutral-background.color-1-link-color a.highlighted{color:#0e5fc0}.color-neutral-background.color-2-link-color a{color:#011f3f}.color-neutral-background.color-2-link-color a:hover,.color-neutral-background.color-2-link-color a:focus,.color-neutral-background.color-2-link-color a:active,.color-neutral-background.color-2-link-color a.highlighted{color:#0350a3}.color-neutral-background.color-3-link-color a{color:#dcebf7}.color-neutral-background.color-3-link-color a:hover,.color-neutral-background.color-3-link-color a:focus,.color-neutral-background.color-3-link-color a:active,.color-neutral-background.color-3-link-color a.highlighted{color:#89bce4}.color-neutral-background.color-4-link-color a{color:#f9f9f9}.color-neutral-background.color-4-link-color a:hover,.color-neutral-background.color-4-link-color a:focus,.color-neutral-background.color-4-link-color a:active,.color-neutral-background.color-4-link-color a.highlighted{color:#c6c6c6}.color-neutral-background.color-5-link-color a{color:#011f3f}.color-neutral-background.color-5-link-color a:hover,.color-neutral-background.color-5-link-color a:focus,.color-neutral-background.color-5-link-color a:active,.color-neutral-background.color-5-link-color a.highlighted{color:#0350a3}.color-neutral-background.color-neutral-link-color a{color:#f9f9f9}.color-neutral-background.color-neutral-link-color a:hover,.color-neutral-background.color-neutral-link-color a:focus,.color-neutral-background.color-neutral-link-color a:active,.color-neutral-background.color-neutral-link-color a.highlighted{color:#c6c6c6}.color1-background-color.color-1-link-color a{color:#4392f1}.color1-background-color.color-1-link-color a:hover,.color1-background-color.color-1-link-color a:focus,.color1-background-color.color-1-link-color a:active,.color1-background-color.color-1-link-color a.highlighted{color:#0e5fc0}.color1-background-color.sidebar.color-1-link-color a{color:#4392f1}.color1-background-color.sidebar.color-1-link-color a:hover,.color1-background-color.sidebar.color-1-link-color a:focus,.color1-background-color.sidebar.color-1-link-color a:active,.color1-background-color.sidebar.color-1-link-color a.highlighted{color:#0e5fc0}.color1-background-color.sm.color-1-link-color li.btn a,.color1-background-color.sm.color-1-link-color .palette-primary li.button-primary a,.palette-primary .color1-background-color.sm.color-1-link-color li.button-primary a,.color1-background-color.sm.color-1-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color1-background-color.sm.color-1-link-color li.button a,.color1-background-color.sm.color-1-link-color .palette-primary li.button-secondary a,.palette-primary .color1-background-color.sm.color-1-link-color li.button-secondary a,.color1-background-color.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color1-background-color.sm.color-1-link-color li.alt.button a{color:inherit}.color1-background-color.sm.color-1-link-color li.btn a:hover,.color1-background-color.sm.color-1-link-color .palette-primary li.button-primary a:hover,.palette-primary .color1-background-color.sm.color-1-link-color li.button-primary a:hover,.color1-background-color.sm.color-1-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color1-background-color.sm.color-1-link-color li.button a:hover,.color1-background-color.sm.color-1-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color1-background-color.sm.color-1-link-color li.button-secondary a:hover,.color1-background-color.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color1-background-color.sm.color-1-link-color li.alt.button a:hover,.color1-background-color.sm.color-1-link-color li.btn a:focus,.color1-background-color.sm.color-1-link-color .palette-primary li.button-primary a:focus,.palette-primary .color1-background-color.sm.color-1-link-color li.button-primary a:focus,.color1-background-color.sm.color-1-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color1-background-color.sm.color-1-link-color li.button a:focus,.color1-background-color.sm.color-1-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color1-background-color.sm.color-1-link-color li.button-secondary a:focus,.color1-background-color.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color1-background-color.sm.color-1-link-color li.alt.button a:focus,.color1-background-color.sm.color-1-link-color li.btn a:active,.color1-background-color.sm.color-1-link-color .palette-primary li.button-primary a:active,.palette-primary .color1-background-color.sm.color-1-link-color li.button-primary a:active,.color1-background-color.sm.color-1-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color1-background-color.sm.color-1-link-color li.button a:active,.color1-background-color.sm.color-1-link-color .palette-primary li.button-secondary a:active,.palette-primary .color1-background-color.sm.color-1-link-color li.button-secondary a:active,.color1-background-color.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color1-background-color.sm.color-1-link-color li.alt.button a:active,.color1-background-color.sm.color-1-link-color li.btn a.highlighted,.color1-background-color.sm.color-1-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color1-background-color.sm.color-1-link-color li.button-primary a.highlighted,.color1-background-color.sm.color-1-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color1-background-color.sm.color-1-link-color li.button a.highlighted,.color1-background-color.sm.color-1-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color1-background-color.sm.color-1-link-color li.button-secondary a.highlighted,.color1-background-color.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color1-background-color.sm.color-1-link-color li.alt.button a.highlighted{color:inherit}.color1-background-color.sm.color-1-link-color li:not(.btn) a{color:#4392f1}.color1-background-color.sm.color-1-link-color li:not(.btn) a:hover,.color1-background-color.sm.color-1-link-color li:not(.btn) a:focus,.color1-background-color.sm.color-1-link-color li:not(.btn) a:active,.color1-background-color.sm.color-1-link-color li:not(.btn) a.highlighted{color:#0e5fc0}.color1-background-color.color-2-link-color a{color:#011f3f}.color1-background-color.color-2-link-color a:hover,.color1-background-color.color-2-link-color a:focus,.color1-background-color.color-2-link-color a:active,.color1-background-color.color-2-link-color a.highlighted{color:#0350a3}.color1-background-color.sidebar.color-2-link-color a{color:#011f3f}.color1-background-color.sidebar.color-2-link-color a:hover,.color1-background-color.sidebar.color-2-link-color a:focus,.color1-background-color.sidebar.color-2-link-color a:active,.color1-background-color.sidebar.color-2-link-color a.highlighted{color:#0350a3}.color1-background-color.sm.color-2-link-color li.btn a,.color1-background-color.sm.color-2-link-color .palette-primary li.button-primary a,.palette-primary .color1-background-color.sm.color-2-link-color li.button-primary a,.color1-background-color.sm.color-2-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color1-background-color.sm.color-2-link-color li.button a,.color1-background-color.sm.color-2-link-color .palette-primary li.button-secondary a,.palette-primary .color1-background-color.sm.color-2-link-color li.button-secondary a,.color1-background-color.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color1-background-color.sm.color-2-link-color li.alt.button a{color:inherit}.color1-background-color.sm.color-2-link-color li.btn a:hover,.color1-background-color.sm.color-2-link-color .palette-primary li.button-primary a:hover,.palette-primary .color1-background-color.sm.color-2-link-color li.button-primary a:hover,.color1-background-color.sm.color-2-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color1-background-color.sm.color-2-link-color li.button a:hover,.color1-background-color.sm.color-2-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color1-background-color.sm.color-2-link-color li.button-secondary a:hover,.color1-background-color.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color1-background-color.sm.color-2-link-color li.alt.button a:hover,.color1-background-color.sm.color-2-link-color li.btn a:focus,.color1-background-color.sm.color-2-link-color .palette-primary li.button-primary a:focus,.palette-primary .color1-background-color.sm.color-2-link-color li.button-primary a:focus,.color1-background-color.sm.color-2-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color1-background-color.sm.color-2-link-color li.button a:focus,.color1-background-color.sm.color-2-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color1-background-color.sm.color-2-link-color li.button-secondary a:focus,.color1-background-color.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color1-background-color.sm.color-2-link-color li.alt.button a:focus,.color1-background-color.sm.color-2-link-color li.btn a:active,.color1-background-color.sm.color-2-link-color .palette-primary li.button-primary a:active,.palette-primary .color1-background-color.sm.color-2-link-color li.button-primary a:active,.color1-background-color.sm.color-2-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color1-background-color.sm.color-2-link-color li.button a:active,.color1-background-color.sm.color-2-link-color .palette-primary li.button-secondary a:active,.palette-primary .color1-background-color.sm.color-2-link-color li.button-secondary a:active,.color1-background-color.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color1-background-color.sm.color-2-link-color li.alt.button a:active,.color1-background-color.sm.color-2-link-color li.btn a.highlighted,.color1-background-color.sm.color-2-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color1-background-color.sm.color-2-link-color li.button-primary a.highlighted,.color1-background-color.sm.color-2-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color1-background-color.sm.color-2-link-color li.button a.highlighted,.color1-background-color.sm.color-2-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color1-background-color.sm.color-2-link-color li.button-secondary a.highlighted,.color1-background-color.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color1-background-color.sm.color-2-link-color li.alt.button a.highlighted{color:inherit}.color1-background-color.sm.color-2-link-color li:not(.btn) a{color:#011f3f}.color1-background-color.sm.color-2-link-color li:not(.btn) a:hover,.color1-background-color.sm.color-2-link-color li:not(.btn) a:focus,.color1-background-color.sm.color-2-link-color li:not(.btn) a:active,.color1-background-color.sm.color-2-link-color li:not(.btn) a.highlighted{color:#0350a3}.color1-background-color.color-3-link-color a{color:#dcebf7}.color1-background-color.color-3-link-color a:hover,.color1-background-color.color-3-link-color a:focus,.color1-background-color.color-3-link-color a:active,.color1-background-color.color-3-link-color a.highlighted{color:#89bce4}.color1-background-color.sidebar.color-3-link-color a{color:#dcebf7}.color1-background-color.sidebar.color-3-link-color a:hover,.color1-background-color.sidebar.color-3-link-color a:focus,.color1-background-color.sidebar.color-3-link-color a:active,.color1-background-color.sidebar.color-3-link-color a.highlighted{color:#89bce4}.color1-background-color.sm.color-3-link-color li.btn a,.color1-background-color.sm.color-3-link-color .palette-primary li.button-primary a,.palette-primary .color1-background-color.sm.color-3-link-color li.button-primary a,.color1-background-color.sm.color-3-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color1-background-color.sm.color-3-link-color li.button a,.color1-background-color.sm.color-3-link-color .palette-primary li.button-secondary a,.palette-primary .color1-background-color.sm.color-3-link-color li.button-secondary a,.color1-background-color.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color1-background-color.sm.color-3-link-color li.alt.button a{color:inherit}.color1-background-color.sm.color-3-link-color li.btn a:hover,.color1-background-color.sm.color-3-link-color .palette-primary li.button-primary a:hover,.palette-primary .color1-background-color.sm.color-3-link-color li.button-primary a:hover,.color1-background-color.sm.color-3-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color1-background-color.sm.color-3-link-color li.button a:hover,.color1-background-color.sm.color-3-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color1-background-color.sm.color-3-link-color li.button-secondary a:hover,.color1-background-color.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color1-background-color.sm.color-3-link-color li.alt.button a:hover,.color1-background-color.sm.color-3-link-color li.btn a:focus,.color1-background-color.sm.color-3-link-color .palette-primary li.button-primary a:focus,.palette-primary .color1-background-color.sm.color-3-link-color li.button-primary a:focus,.color1-background-color.sm.color-3-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color1-background-color.sm.color-3-link-color li.button a:focus,.color1-background-color.sm.color-3-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color1-background-color.sm.color-3-link-color li.button-secondary a:focus,.color1-background-color.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color1-background-color.sm.color-3-link-color li.alt.button a:focus,.color1-background-color.sm.color-3-link-color li.btn a:active,.color1-background-color.sm.color-3-link-color .palette-primary li.button-primary a:active,.palette-primary .color1-background-color.sm.color-3-link-color li.button-primary a:active,.color1-background-color.sm.color-3-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color1-background-color.sm.color-3-link-color li.button a:active,.color1-background-color.sm.color-3-link-color .palette-primary li.button-secondary a:active,.palette-primary .color1-background-color.sm.color-3-link-color li.button-secondary a:active,.color1-background-color.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color1-background-color.sm.color-3-link-color li.alt.button a:active,.color1-background-color.sm.color-3-link-color li.btn a.highlighted,.color1-background-color.sm.color-3-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color1-background-color.sm.color-3-link-color li.button-primary a.highlighted,.color1-background-color.sm.color-3-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color1-background-color.sm.color-3-link-color li.button a.highlighted,.color1-background-color.sm.color-3-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color1-background-color.sm.color-3-link-color li.button-secondary a.highlighted,.color1-background-color.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color1-background-color.sm.color-3-link-color li.alt.button a.highlighted{color:inherit}.color1-background-color.sm.color-3-link-color li:not(.btn) a{color:#dcebf7}.color1-background-color.sm.color-3-link-color li:not(.btn) a:hover,.color1-background-color.sm.color-3-link-color li:not(.btn) a:focus,.color1-background-color.sm.color-3-link-color li:not(.btn) a:active,.color1-background-color.sm.color-3-link-color li:not(.btn) a.highlighted{color:#89bce4}.color1-background-color.color-4-link-color a{color:#f9f9f9}.color1-background-color.color-4-link-color a:hover,.color1-background-color.color-4-link-color a:focus,.color1-background-color.color-4-link-color a:active,.color1-background-color.color-4-link-color a.highlighted{color:#c6c6c6}.color1-background-color.sidebar.color-4-link-color a{color:#f9f9f9}.color1-background-color.sidebar.color-4-link-color a:hover,.color1-background-color.sidebar.color-4-link-color a:focus,.color1-background-color.sidebar.color-4-link-color a:active,.color1-background-color.sidebar.color-4-link-color a.highlighted{color:#c6c6c6}.color1-background-color.sm.color-4-link-color li.btn a,.color1-background-color.sm.color-4-link-color .palette-primary li.button-primary a,.palette-primary .color1-background-color.sm.color-4-link-color li.button-primary a,.color1-background-color.sm.color-4-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color1-background-color.sm.color-4-link-color li.button a,.color1-background-color.sm.color-4-link-color .palette-primary li.button-secondary a,.palette-primary .color1-background-color.sm.color-4-link-color li.button-secondary a,.color1-background-color.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color1-background-color.sm.color-4-link-color li.alt.button a{color:inherit}.color1-background-color.sm.color-4-link-color li.btn a:hover,.color1-background-color.sm.color-4-link-color .palette-primary li.button-primary a:hover,.palette-primary .color1-background-color.sm.color-4-link-color li.button-primary a:hover,.color1-background-color.sm.color-4-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color1-background-color.sm.color-4-link-color li.button a:hover,.color1-background-color.sm.color-4-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color1-background-color.sm.color-4-link-color li.button-secondary a:hover,.color1-background-color.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color1-background-color.sm.color-4-link-color li.alt.button a:hover,.color1-background-color.sm.color-4-link-color li.btn a:focus,.color1-background-color.sm.color-4-link-color .palette-primary li.button-primary a:focus,.palette-primary .color1-background-color.sm.color-4-link-color li.button-primary a:focus,.color1-background-color.sm.color-4-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color1-background-color.sm.color-4-link-color li.button a:focus,.color1-background-color.sm.color-4-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color1-background-color.sm.color-4-link-color li.button-secondary a:focus,.color1-background-color.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color1-background-color.sm.color-4-link-color li.alt.button a:focus,.color1-background-color.sm.color-4-link-color li.btn a:active,.color1-background-color.sm.color-4-link-color .palette-primary li.button-primary a:active,.palette-primary .color1-background-color.sm.color-4-link-color li.button-primary a:active,.color1-background-color.sm.color-4-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color1-background-color.sm.color-4-link-color li.button a:active,.color1-background-color.sm.color-4-link-color .palette-primary li.button-secondary a:active,.palette-primary .color1-background-color.sm.color-4-link-color li.button-secondary a:active,.color1-background-color.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color1-background-color.sm.color-4-link-color li.alt.button a:active,.color1-background-color.sm.color-4-link-color li.btn a.highlighted,.color1-background-color.sm.color-4-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color1-background-color.sm.color-4-link-color li.button-primary a.highlighted,.color1-background-color.sm.color-4-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color1-background-color.sm.color-4-link-color li.button a.highlighted,.color1-background-color.sm.color-4-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color1-background-color.sm.color-4-link-color li.button-secondary a.highlighted,.color1-background-color.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color1-background-color.sm.color-4-link-color li.alt.button a.highlighted{color:inherit}.color1-background-color.sm.color-4-link-color li:not(.btn) a{color:#f9f9f9}.color1-background-color.sm.color-4-link-color li:not(.btn) a:hover,.color1-background-color.sm.color-4-link-color li:not(.btn) a:focus,.color1-background-color.sm.color-4-link-color li:not(.btn) a:active,.color1-background-color.sm.color-4-link-color li:not(.btn) a.highlighted{color:#c6c6c6}.color1-background-color.color-5-link-color a{color:#011f3f}.color1-background-color.color-5-link-color a:hover,.color1-background-color.color-5-link-color a:focus,.color1-background-color.color-5-link-color a:active,.color1-background-color.color-5-link-color a.highlighted{color:#0350a3}.color1-background-color.sidebar.color-5-link-color a{color:#011f3f}.color1-background-color.sidebar.color-5-link-color a:hover,.color1-background-color.sidebar.color-5-link-color a:focus,.color1-background-color.sidebar.color-5-link-color a:active,.color1-background-color.sidebar.color-5-link-color a.highlighted{color:#0350a3}.color1-background-color.sm.color-5-link-color li.btn a,.color1-background-color.sm.color-5-link-color .palette-primary li.button-primary a,.palette-primary .color1-background-color.sm.color-5-link-color li.button-primary a,.color1-background-color.sm.color-5-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color1-background-color.sm.color-5-link-color li.button a,.color1-background-color.sm.color-5-link-color .palette-primary li.button-secondary a,.palette-primary .color1-background-color.sm.color-5-link-color li.button-secondary a,.color1-background-color.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color1-background-color.sm.color-5-link-color li.alt.button a{color:inherit}.color1-background-color.sm.color-5-link-color li.btn a:hover,.color1-background-color.sm.color-5-link-color .palette-primary li.button-primary a:hover,.palette-primary .color1-background-color.sm.color-5-link-color li.button-primary a:hover,.color1-background-color.sm.color-5-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color1-background-color.sm.color-5-link-color li.button a:hover,.color1-background-color.sm.color-5-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color1-background-color.sm.color-5-link-color li.button-secondary a:hover,.color1-background-color.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color1-background-color.sm.color-5-link-color li.alt.button a:hover,.color1-background-color.sm.color-5-link-color li.btn a:focus,.color1-background-color.sm.color-5-link-color .palette-primary li.button-primary a:focus,.palette-primary .color1-background-color.sm.color-5-link-color li.button-primary a:focus,.color1-background-color.sm.color-5-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color1-background-color.sm.color-5-link-color li.button a:focus,.color1-background-color.sm.color-5-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color1-background-color.sm.color-5-link-color li.button-secondary a:focus,.color1-background-color.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color1-background-color.sm.color-5-link-color li.alt.button a:focus,.color1-background-color.sm.color-5-link-color li.btn a:active,.color1-background-color.sm.color-5-link-color .palette-primary li.button-primary a:active,.palette-primary .color1-background-color.sm.color-5-link-color li.button-primary a:active,.color1-background-color.sm.color-5-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color1-background-color.sm.color-5-link-color li.button a:active,.color1-background-color.sm.color-5-link-color .palette-primary li.button-secondary a:active,.palette-primary .color1-background-color.sm.color-5-link-color li.button-secondary a:active,.color1-background-color.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color1-background-color.sm.color-5-link-color li.alt.button a:active,.color1-background-color.sm.color-5-link-color li.btn a.highlighted,.color1-background-color.sm.color-5-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color1-background-color.sm.color-5-link-color li.button-primary a.highlighted,.color1-background-color.sm.color-5-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color1-background-color.sm.color-5-link-color li.button a.highlighted,.color1-background-color.sm.color-5-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color1-background-color.sm.color-5-link-color li.button-secondary a.highlighted,.color1-background-color.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color1-background-color.sm.color-5-link-color li.alt.button a.highlighted{color:inherit}.color1-background-color.sm.color-5-link-color li:not(.btn) a{color:#011f3f}.color1-background-color.sm.color-5-link-color li:not(.btn) a:hover,.color1-background-color.sm.color-5-link-color li:not(.btn) a:focus,.color1-background-color.sm.color-5-link-color li:not(.btn) a:active,.color1-background-color.sm.color-5-link-color li:not(.btn) a.highlighted{color:#0350a3}.color1-background-color.color-neutral-link-color a{color:#f9f9f9}.color1-background-color.color-neutral-link-color a:hover,.color1-background-color.color-neutral-link-color a:focus,.color1-background-color.color-neutral-link-color a:active,.color1-background-color.color-neutral-link-color a.highlighted{color:#c6c6c6}.color1-background-color-hover:focus,.color1-background-color-hover:hover{background-color:#4392f1 ! important}.color2-background-color.color-1-link-color a{color:#4392f1}.color2-background-color.color-1-link-color a:hover,.color2-background-color.color-1-link-color a:focus,.color2-background-color.color-1-link-color a:active,.color2-background-color.color-1-link-color a.highlighted{color:#a2c9f8}.color2-background-color.sidebar.color-1-link-color a{color:#4392f1}.color2-background-color.sidebar.color-1-link-color a:hover,.color2-background-color.sidebar.color-1-link-color a:focus,.color2-background-color.sidebar.color-1-link-color a:active,.color2-background-color.sidebar.color-1-link-color a.highlighted{color:#a2c9f8}.color2-background-color.sm.color-1-link-color li.btn a,.color2-background-color.sm.color-1-link-color .palette-primary li.button-primary a,.palette-primary .color2-background-color.sm.color-1-link-color li.button-primary a,.color2-background-color.sm.color-1-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color2-background-color.sm.color-1-link-color li.button a,.color2-background-color.sm.color-1-link-color .palette-primary li.button-secondary a,.palette-primary .color2-background-color.sm.color-1-link-color li.button-secondary a,.color2-background-color.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color2-background-color.sm.color-1-link-color li.alt.button a{color:inherit}.color2-background-color.sm.color-1-link-color li.btn a:hover,.color2-background-color.sm.color-1-link-color .palette-primary li.button-primary a:hover,.palette-primary .color2-background-color.sm.color-1-link-color li.button-primary a:hover,.color2-background-color.sm.color-1-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color2-background-color.sm.color-1-link-color li.button a:hover,.color2-background-color.sm.color-1-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color2-background-color.sm.color-1-link-color li.button-secondary a:hover,.color2-background-color.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color2-background-color.sm.color-1-link-color li.alt.button a:hover,.color2-background-color.sm.color-1-link-color li.btn a:focus,.color2-background-color.sm.color-1-link-color .palette-primary li.button-primary a:focus,.palette-primary .color2-background-color.sm.color-1-link-color li.button-primary a:focus,.color2-background-color.sm.color-1-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color2-background-color.sm.color-1-link-color li.button a:focus,.color2-background-color.sm.color-1-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color2-background-color.sm.color-1-link-color li.button-secondary a:focus,.color2-background-color.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color2-background-color.sm.color-1-link-color li.alt.button a:focus,.color2-background-color.sm.color-1-link-color li.btn a:active,.color2-background-color.sm.color-1-link-color .palette-primary li.button-primary a:active,.palette-primary .color2-background-color.sm.color-1-link-color li.button-primary a:active,.color2-background-color.sm.color-1-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color2-background-color.sm.color-1-link-color li.button a:active,.color2-background-color.sm.color-1-link-color .palette-primary li.button-secondary a:active,.palette-primary .color2-background-color.sm.color-1-link-color li.button-secondary a:active,.color2-background-color.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color2-background-color.sm.color-1-link-color li.alt.button a:active,.color2-background-color.sm.color-1-link-color li.btn a.highlighted,.color2-background-color.sm.color-1-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color2-background-color.sm.color-1-link-color li.button-primary a.highlighted,.color2-background-color.sm.color-1-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color2-background-color.sm.color-1-link-color li.button a.highlighted,.color2-background-color.sm.color-1-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color2-background-color.sm.color-1-link-color li.button-secondary a.highlighted,.color2-background-color.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color2-background-color.sm.color-1-link-color li.alt.button a.highlighted{color:inherit}.color2-background-color.sm.color-1-link-color li:not(.btn) a{color:#4392f1}.color2-background-color.sm.color-1-link-color li:not(.btn) a:hover,.color2-background-color.sm.color-1-link-color li:not(.btn) a:focus,.color2-background-color.sm.color-1-link-color li:not(.btn) a:active,.color2-background-color.sm.color-1-link-color li:not(.btn) a.highlighted{color:#a2c9f8}.color2-background-color.color-2-link-color a{color:#011f3f}.color2-background-color.color-2-link-color a:hover,.color2-background-color.color-2-link-color a:focus,.color2-background-color.color-2-link-color a:active,.color2-background-color.color-2-link-color a.highlighted{color:#0350a3}.color2-background-color.sidebar.color-2-link-color a{color:#011f3f}.color2-background-color.sidebar.color-2-link-color a:hover,.color2-background-color.sidebar.color-2-link-color a:focus,.color2-background-color.sidebar.color-2-link-color a:active,.color2-background-color.sidebar.color-2-link-color a.highlighted{color:#0350a3}.color2-background-color.sm.color-2-link-color li.btn a,.color2-background-color.sm.color-2-link-color .palette-primary li.button-primary a,.palette-primary .color2-background-color.sm.color-2-link-color li.button-primary a,.color2-background-color.sm.color-2-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color2-background-color.sm.color-2-link-color li.button a,.color2-background-color.sm.color-2-link-color .palette-primary li.button-secondary a,.palette-primary .color2-background-color.sm.color-2-link-color li.button-secondary a,.color2-background-color.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color2-background-color.sm.color-2-link-color li.alt.button a{color:inherit}.color2-background-color.sm.color-2-link-color li.btn a:hover,.color2-background-color.sm.color-2-link-color .palette-primary li.button-primary a:hover,.palette-primary .color2-background-color.sm.color-2-link-color li.button-primary a:hover,.color2-background-color.sm.color-2-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color2-background-color.sm.color-2-link-color li.button a:hover,.color2-background-color.sm.color-2-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color2-background-color.sm.color-2-link-color li.button-secondary a:hover,.color2-background-color.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color2-background-color.sm.color-2-link-color li.alt.button a:hover,.color2-background-color.sm.color-2-link-color li.btn a:focus,.color2-background-color.sm.color-2-link-color .palette-primary li.button-primary a:focus,.palette-primary .color2-background-color.sm.color-2-link-color li.button-primary a:focus,.color2-background-color.sm.color-2-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color2-background-color.sm.color-2-link-color li.button a:focus,.color2-background-color.sm.color-2-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color2-background-color.sm.color-2-link-color li.button-secondary a:focus,.color2-background-color.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color2-background-color.sm.color-2-link-color li.alt.button a:focus,.color2-background-color.sm.color-2-link-color li.btn a:active,.color2-background-color.sm.color-2-link-color .palette-primary li.button-primary a:active,.palette-primary .color2-background-color.sm.color-2-link-color li.button-primary a:active,.color2-background-color.sm.color-2-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color2-background-color.sm.color-2-link-color li.button a:active,.color2-background-color.sm.color-2-link-color .palette-primary li.button-secondary a:active,.palette-primary .color2-background-color.sm.color-2-link-color li.button-secondary a:active,.color2-background-color.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color2-background-color.sm.color-2-link-color li.alt.button a:active,.color2-background-color.sm.color-2-link-color li.btn a.highlighted,.color2-background-color.sm.color-2-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color2-background-color.sm.color-2-link-color li.button-primary a.highlighted,.color2-background-color.sm.color-2-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color2-background-color.sm.color-2-link-color li.button a.highlighted,.color2-background-color.sm.color-2-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color2-background-color.sm.color-2-link-color li.button-secondary a.highlighted,.color2-background-color.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color2-background-color.sm.color-2-link-color li.alt.button a.highlighted{color:inherit}.color2-background-color.sm.color-2-link-color li:not(.btn) a{color:#011f3f}.color2-background-color.sm.color-2-link-color li:not(.btn) a:hover,.color2-background-color.sm.color-2-link-color li:not(.btn) a:focus,.color2-background-color.sm.color-2-link-color li:not(.btn) a:active,.color2-background-color.sm.color-2-link-color li:not(.btn) a.highlighted{color:#0350a3}.color2-background-color.color-3-link-color a{color:#dcebf7}.color2-background-color.color-3-link-color a:hover,.color2-background-color.color-3-link-color a:focus,.color2-background-color.color-3-link-color a:active,.color2-background-color.color-3-link-color a.highlighted{color:#89bce4}.color2-background-color.sidebar.color-3-link-color a{color:#dcebf7}.color2-background-color.sidebar.color-3-link-color a:hover,.color2-background-color.sidebar.color-3-link-color a:focus,.color2-background-color.sidebar.color-3-link-color a:active,.color2-background-color.sidebar.color-3-link-color a.highlighted{color:#89bce4}.color2-background-color.sm.color-3-link-color li.btn a,.color2-background-color.sm.color-3-link-color .palette-primary li.button-primary a,.palette-primary .color2-background-color.sm.color-3-link-color li.button-primary a,.color2-background-color.sm.color-3-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color2-background-color.sm.color-3-link-color li.button a,.color2-background-color.sm.color-3-link-color .palette-primary li.button-secondary a,.palette-primary .color2-background-color.sm.color-3-link-color li.button-secondary a,.color2-background-color.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color2-background-color.sm.color-3-link-color li.alt.button a{color:inherit}.color2-background-color.sm.color-3-link-color li.btn a:hover,.color2-background-color.sm.color-3-link-color .palette-primary li.button-primary a:hover,.palette-primary .color2-background-color.sm.color-3-link-color li.button-primary a:hover,.color2-background-color.sm.color-3-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color2-background-color.sm.color-3-link-color li.button a:hover,.color2-background-color.sm.color-3-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color2-background-color.sm.color-3-link-color li.button-secondary a:hover,.color2-background-color.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color2-background-color.sm.color-3-link-color li.alt.button a:hover,.color2-background-color.sm.color-3-link-color li.btn a:focus,.color2-background-color.sm.color-3-link-color .palette-primary li.button-primary a:focus,.palette-primary .color2-background-color.sm.color-3-link-color li.button-primary a:focus,.color2-background-color.sm.color-3-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color2-background-color.sm.color-3-link-color li.button a:focus,.color2-background-color.sm.color-3-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color2-background-color.sm.color-3-link-color li.button-secondary a:focus,.color2-background-color.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color2-background-color.sm.color-3-link-color li.alt.button a:focus,.color2-background-color.sm.color-3-link-color li.btn a:active,.color2-background-color.sm.color-3-link-color .palette-primary li.button-primary a:active,.palette-primary .color2-background-color.sm.color-3-link-color li.button-primary a:active,.color2-background-color.sm.color-3-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color2-background-color.sm.color-3-link-color li.button a:active,.color2-background-color.sm.color-3-link-color .palette-primary li.button-secondary a:active,.palette-primary .color2-background-color.sm.color-3-link-color li.button-secondary a:active,.color2-background-color.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color2-background-color.sm.color-3-link-color li.alt.button a:active,.color2-background-color.sm.color-3-link-color li.btn a.highlighted,.color2-background-color.sm.color-3-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color2-background-color.sm.color-3-link-color li.button-primary a.highlighted,.color2-background-color.sm.color-3-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color2-background-color.sm.color-3-link-color li.button a.highlighted,.color2-background-color.sm.color-3-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color2-background-color.sm.color-3-link-color li.button-secondary a.highlighted,.color2-background-color.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color2-background-color.sm.color-3-link-color li.alt.button a.highlighted{color:inherit}.color2-background-color.sm.color-3-link-color li:not(.btn) a{color:#dcebf7}.color2-background-color.sm.color-3-link-color li:not(.btn) a:hover,.color2-background-color.sm.color-3-link-color li:not(.btn) a:focus,.color2-background-color.sm.color-3-link-color li:not(.btn) a:active,.color2-background-color.sm.color-3-link-color li:not(.btn) a.highlighted{color:#89bce4}.color2-background-color.color-4-link-color a{color:#f9f9f9}.color2-background-color.color-4-link-color a:hover,.color2-background-color.color-4-link-color a:focus,.color2-background-color.color-4-link-color a:active,.color2-background-color.color-4-link-color a.highlighted{color:#c6c6c6}.color2-background-color.sidebar.color-4-link-color a{color:#f9f9f9}.color2-background-color.sidebar.color-4-link-color a:hover,.color2-background-color.sidebar.color-4-link-color a:focus,.color2-background-color.sidebar.color-4-link-color a:active,.color2-background-color.sidebar.color-4-link-color a.highlighted{color:#c6c6c6}.color2-background-color.sm.color-4-link-color li.btn a,.color2-background-color.sm.color-4-link-color .palette-primary li.button-primary a,.palette-primary .color2-background-color.sm.color-4-link-color li.button-primary a,.color2-background-color.sm.color-4-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color2-background-color.sm.color-4-link-color li.button a,.color2-background-color.sm.color-4-link-color .palette-primary li.button-secondary a,.palette-primary .color2-background-color.sm.color-4-link-color li.button-secondary a,.color2-background-color.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color2-background-color.sm.color-4-link-color li.alt.button a{color:inherit}.color2-background-color.sm.color-4-link-color li.btn a:hover,.color2-background-color.sm.color-4-link-color .palette-primary li.button-primary a:hover,.palette-primary .color2-background-color.sm.color-4-link-color li.button-primary a:hover,.color2-background-color.sm.color-4-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color2-background-color.sm.color-4-link-color li.button a:hover,.color2-background-color.sm.color-4-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color2-background-color.sm.color-4-link-color li.button-secondary a:hover,.color2-background-color.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color2-background-color.sm.color-4-link-color li.alt.button a:hover,.color2-background-color.sm.color-4-link-color li.btn a:focus,.color2-background-color.sm.color-4-link-color .palette-primary li.button-primary a:focus,.palette-primary .color2-background-color.sm.color-4-link-color li.button-primary a:focus,.color2-background-color.sm.color-4-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color2-background-color.sm.color-4-link-color li.button a:focus,.color2-background-color.sm.color-4-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color2-background-color.sm.color-4-link-color li.button-secondary a:focus,.color2-background-color.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color2-background-color.sm.color-4-link-color li.alt.button a:focus,.color2-background-color.sm.color-4-link-color li.btn a:active,.color2-background-color.sm.color-4-link-color .palette-primary li.button-primary a:active,.palette-primary .color2-background-color.sm.color-4-link-color li.button-primary a:active,.color2-background-color.sm.color-4-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color2-background-color.sm.color-4-link-color li.button a:active,.color2-background-color.sm.color-4-link-color .palette-primary li.button-secondary a:active,.palette-primary .color2-background-color.sm.color-4-link-color li.button-secondary a:active,.color2-background-color.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color2-background-color.sm.color-4-link-color li.alt.button a:active,.color2-background-color.sm.color-4-link-color li.btn a.highlighted,.color2-background-color.sm.color-4-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color2-background-color.sm.color-4-link-color li.button-primary a.highlighted,.color2-background-color.sm.color-4-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color2-background-color.sm.color-4-link-color li.button a.highlighted,.color2-background-color.sm.color-4-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color2-background-color.sm.color-4-link-color li.button-secondary a.highlighted,.color2-background-color.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color2-background-color.sm.color-4-link-color li.alt.button a.highlighted{color:inherit}.color2-background-color.sm.color-4-link-color li:not(.btn) a{color:#f9f9f9}.color2-background-color.sm.color-4-link-color li:not(.btn) a:hover,.color2-background-color.sm.color-4-link-color li:not(.btn) a:focus,.color2-background-color.sm.color-4-link-color li:not(.btn) a:active,.color2-background-color.sm.color-4-link-color li:not(.btn) a.highlighted{color:#c6c6c6}.color2-background-color.color-5-link-color a{color:#011f3f}.color2-background-color.color-5-link-color a:hover,.color2-background-color.color-5-link-color a:focus,.color2-background-color.color-5-link-color a:active,.color2-background-color.color-5-link-color a.highlighted{color:#0350a3}.color2-background-color.sidebar.color-5-link-color a{color:#011f3f}.color2-background-color.sidebar.color-5-link-color a:hover,.color2-background-color.sidebar.color-5-link-color a:focus,.color2-background-color.sidebar.color-5-link-color a:active,.color2-background-color.sidebar.color-5-link-color a.highlighted{color:#0350a3}.color2-background-color.sm.color-5-link-color li.btn a,.color2-background-color.sm.color-5-link-color .palette-primary li.button-primary a,.palette-primary .color2-background-color.sm.color-5-link-color li.button-primary a,.color2-background-color.sm.color-5-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color2-background-color.sm.color-5-link-color li.button a,.color2-background-color.sm.color-5-link-color .palette-primary li.button-secondary a,.palette-primary .color2-background-color.sm.color-5-link-color li.button-secondary a,.color2-background-color.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color2-background-color.sm.color-5-link-color li.alt.button a{color:inherit}.color2-background-color.sm.color-5-link-color li.btn a:hover,.color2-background-color.sm.color-5-link-color .palette-primary li.button-primary a:hover,.palette-primary .color2-background-color.sm.color-5-link-color li.button-primary a:hover,.color2-background-color.sm.color-5-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color2-background-color.sm.color-5-link-color li.button a:hover,.color2-background-color.sm.color-5-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color2-background-color.sm.color-5-link-color li.button-secondary a:hover,.color2-background-color.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color2-background-color.sm.color-5-link-color li.alt.button a:hover,.color2-background-color.sm.color-5-link-color li.btn a:focus,.color2-background-color.sm.color-5-link-color .palette-primary li.button-primary a:focus,.palette-primary .color2-background-color.sm.color-5-link-color li.button-primary a:focus,.color2-background-color.sm.color-5-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color2-background-color.sm.color-5-link-color li.button a:focus,.color2-background-color.sm.color-5-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color2-background-color.sm.color-5-link-color li.button-secondary a:focus,.color2-background-color.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color2-background-color.sm.color-5-link-color li.alt.button a:focus,.color2-background-color.sm.color-5-link-color li.btn a:active,.color2-background-color.sm.color-5-link-color .palette-primary li.button-primary a:active,.palette-primary .color2-background-color.sm.color-5-link-color li.button-primary a:active,.color2-background-color.sm.color-5-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color2-background-color.sm.color-5-link-color li.button a:active,.color2-background-color.sm.color-5-link-color .palette-primary li.button-secondary a:active,.palette-primary .color2-background-color.sm.color-5-link-color li.button-secondary a:active,.color2-background-color.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color2-background-color.sm.color-5-link-color li.alt.button a:active,.color2-background-color.sm.color-5-link-color li.btn a.highlighted,.color2-background-color.sm.color-5-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color2-background-color.sm.color-5-link-color li.button-primary a.highlighted,.color2-background-color.sm.color-5-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color2-background-color.sm.color-5-link-color li.button a.highlighted,.color2-background-color.sm.color-5-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color2-background-color.sm.color-5-link-color li.button-secondary a.highlighted,.color2-background-color.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color2-background-color.sm.color-5-link-color li.alt.button a.highlighted{color:inherit}.color2-background-color.sm.color-5-link-color li:not(.btn) a{color:#011f3f}.color2-background-color.sm.color-5-link-color li:not(.btn) a:hover,.color2-background-color.sm.color-5-link-color li:not(.btn) a:focus,.color2-background-color.sm.color-5-link-color li:not(.btn) a:active,.color2-background-color.sm.color-5-link-color li:not(.btn) a.highlighted{color:#0350a3}.color2-background-color.color-neutral-link-color a{color:#f9f9f9}.color2-background-color.color-neutral-link-color a:hover,.color2-background-color.color-neutral-link-color a:focus,.color2-background-color.color-neutral-link-color a:active,.color2-background-color.color-neutral-link-color a.highlighted{color:#c6c6c6}.color2-background-color-hover:focus,.color2-background-color-hover:hover{background-color:#011f3f ! important}.color3-background-color.color-1-link-color a{color:#4392f1}.color3-background-color.color-1-link-color a:hover,.color3-background-color.color-1-link-color a:focus,.color3-background-color.color-1-link-color a:active,.color3-background-color.color-1-link-color a.highlighted{color:#0e5fc0}.color3-background-color.sidebar.color-1-link-color a{color:#4392f1}.color3-background-color.sidebar.color-1-link-color a:hover,.color3-background-color.sidebar.color-1-link-color a:focus,.color3-background-color.sidebar.color-1-link-color a:active,.color3-background-color.sidebar.color-1-link-color a.highlighted{color:#0e5fc0}.color3-background-color.sm.color-1-link-color li.btn a,.color3-background-color.sm.color-1-link-color .palette-primary li.button-primary a,.palette-primary .color3-background-color.sm.color-1-link-color li.button-primary a,.color3-background-color.sm.color-1-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color3-background-color.sm.color-1-link-color li.button a,.color3-background-color.sm.color-1-link-color .palette-primary li.button-secondary a,.palette-primary .color3-background-color.sm.color-1-link-color li.button-secondary a,.color3-background-color.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color3-background-color.sm.color-1-link-color li.alt.button a{color:inherit}.color3-background-color.sm.color-1-link-color li.btn a:hover,.color3-background-color.sm.color-1-link-color .palette-primary li.button-primary a:hover,.palette-primary .color3-background-color.sm.color-1-link-color li.button-primary a:hover,.color3-background-color.sm.color-1-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color3-background-color.sm.color-1-link-color li.button a:hover,.color3-background-color.sm.color-1-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color3-background-color.sm.color-1-link-color li.button-secondary a:hover,.color3-background-color.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color3-background-color.sm.color-1-link-color li.alt.button a:hover,.color3-background-color.sm.color-1-link-color li.btn a:focus,.color3-background-color.sm.color-1-link-color .palette-primary li.button-primary a:focus,.palette-primary .color3-background-color.sm.color-1-link-color li.button-primary a:focus,.color3-background-color.sm.color-1-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color3-background-color.sm.color-1-link-color li.button a:focus,.color3-background-color.sm.color-1-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color3-background-color.sm.color-1-link-color li.button-secondary a:focus,.color3-background-color.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color3-background-color.sm.color-1-link-color li.alt.button a:focus,.color3-background-color.sm.color-1-link-color li.btn a:active,.color3-background-color.sm.color-1-link-color .palette-primary li.button-primary a:active,.palette-primary .color3-background-color.sm.color-1-link-color li.button-primary a:active,.color3-background-color.sm.color-1-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color3-background-color.sm.color-1-link-color li.button a:active,.color3-background-color.sm.color-1-link-color .palette-primary li.button-secondary a:active,.palette-primary .color3-background-color.sm.color-1-link-color li.button-secondary a:active,.color3-background-color.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color3-background-color.sm.color-1-link-color li.alt.button a:active,.color3-background-color.sm.color-1-link-color li.btn a.highlighted,.color3-background-color.sm.color-1-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color3-background-color.sm.color-1-link-color li.button-primary a.highlighted,.color3-background-color.sm.color-1-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color3-background-color.sm.color-1-link-color li.button a.highlighted,.color3-background-color.sm.color-1-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color3-background-color.sm.color-1-link-color li.button-secondary a.highlighted,.color3-background-color.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color3-background-color.sm.color-1-link-color li.alt.button a.highlighted{color:inherit}.color3-background-color.sm.color-1-link-color li:not(.btn) a{color:#4392f1}.color3-background-color.sm.color-1-link-color li:not(.btn) a:hover,.color3-background-color.sm.color-1-link-color li:not(.btn) a:focus,.color3-background-color.sm.color-1-link-color li:not(.btn) a:active,.color3-background-color.sm.color-1-link-color li:not(.btn) a.highlighted{color:#0e5fc0}.color3-background-color.color-2-link-color a{color:#011f3f}.color3-background-color.color-2-link-color a:hover,.color3-background-color.color-2-link-color a:focus,.color3-background-color.color-2-link-color a:active,.color3-background-color.color-2-link-color a.highlighted{color:#0350a3}.color3-background-color.sidebar.color-2-link-color a{color:#011f3f}.color3-background-color.sidebar.color-2-link-color a:hover,.color3-background-color.sidebar.color-2-link-color a:focus,.color3-background-color.sidebar.color-2-link-color a:active,.color3-background-color.sidebar.color-2-link-color a.highlighted{color:#0350a3}.color3-background-color.sm.color-2-link-color li.btn a,.color3-background-color.sm.color-2-link-color .palette-primary li.button-primary a,.palette-primary .color3-background-color.sm.color-2-link-color li.button-primary a,.color3-background-color.sm.color-2-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color3-background-color.sm.color-2-link-color li.button a,.color3-background-color.sm.color-2-link-color .palette-primary li.button-secondary a,.palette-primary .color3-background-color.sm.color-2-link-color li.button-secondary a,.color3-background-color.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color3-background-color.sm.color-2-link-color li.alt.button a{color:inherit}.color3-background-color.sm.color-2-link-color li.btn a:hover,.color3-background-color.sm.color-2-link-color .palette-primary li.button-primary a:hover,.palette-primary .color3-background-color.sm.color-2-link-color li.button-primary a:hover,.color3-background-color.sm.color-2-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color3-background-color.sm.color-2-link-color li.button a:hover,.color3-background-color.sm.color-2-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color3-background-color.sm.color-2-link-color li.button-secondary a:hover,.color3-background-color.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color3-background-color.sm.color-2-link-color li.alt.button a:hover,.color3-background-color.sm.color-2-link-color li.btn a:focus,.color3-background-color.sm.color-2-link-color .palette-primary li.button-primary a:focus,.palette-primary .color3-background-color.sm.color-2-link-color li.button-primary a:focus,.color3-background-color.sm.color-2-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color3-background-color.sm.color-2-link-color li.button a:focus,.color3-background-color.sm.color-2-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color3-background-color.sm.color-2-link-color li.button-secondary a:focus,.color3-background-color.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color3-background-color.sm.color-2-link-color li.alt.button a:focus,.color3-background-color.sm.color-2-link-color li.btn a:active,.color3-background-color.sm.color-2-link-color .palette-primary li.button-primary a:active,.palette-primary .color3-background-color.sm.color-2-link-color li.button-primary a:active,.color3-background-color.sm.color-2-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color3-background-color.sm.color-2-link-color li.button a:active,.color3-background-color.sm.color-2-link-color .palette-primary li.button-secondary a:active,.palette-primary .color3-background-color.sm.color-2-link-color li.button-secondary a:active,.color3-background-color.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color3-background-color.sm.color-2-link-color li.alt.button a:active,.color3-background-color.sm.color-2-link-color li.btn a.highlighted,.color3-background-color.sm.color-2-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color3-background-color.sm.color-2-link-color li.button-primary a.highlighted,.color3-background-color.sm.color-2-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color3-background-color.sm.color-2-link-color li.button a.highlighted,.color3-background-color.sm.color-2-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color3-background-color.sm.color-2-link-color li.button-secondary a.highlighted,.color3-background-color.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color3-background-color.sm.color-2-link-color li.alt.button a.highlighted{color:inherit}.color3-background-color.sm.color-2-link-color li:not(.btn) a{color:#011f3f}.color3-background-color.sm.color-2-link-color li:not(.btn) a:hover,.color3-background-color.sm.color-2-link-color li:not(.btn) a:focus,.color3-background-color.sm.color-2-link-color li:not(.btn) a:active,.color3-background-color.sm.color-2-link-color li:not(.btn) a.highlighted{color:#0350a3}.color3-background-color.color-3-link-color a{color:#dcebf7}.color3-background-color.color-3-link-color a:hover,.color3-background-color.color-3-link-color a:focus,.color3-background-color.color-3-link-color a:active,.color3-background-color.color-3-link-color a.highlighted{color:#89bce4}.color3-background-color.sidebar.color-3-link-color a{color:#dcebf7}.color3-background-color.sidebar.color-3-link-color a:hover,.color3-background-color.sidebar.color-3-link-color a:focus,.color3-background-color.sidebar.color-3-link-color a:active,.color3-background-color.sidebar.color-3-link-color a.highlighted{color:#89bce4}.color3-background-color.sm.color-3-link-color li.btn a,.color3-background-color.sm.color-3-link-color .palette-primary li.button-primary a,.palette-primary .color3-background-color.sm.color-3-link-color li.button-primary a,.color3-background-color.sm.color-3-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color3-background-color.sm.color-3-link-color li.button a,.color3-background-color.sm.color-3-link-color .palette-primary li.button-secondary a,.palette-primary .color3-background-color.sm.color-3-link-color li.button-secondary a,.color3-background-color.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color3-background-color.sm.color-3-link-color li.alt.button a{color:inherit}.color3-background-color.sm.color-3-link-color li.btn a:hover,.color3-background-color.sm.color-3-link-color .palette-primary li.button-primary a:hover,.palette-primary .color3-background-color.sm.color-3-link-color li.button-primary a:hover,.color3-background-color.sm.color-3-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color3-background-color.sm.color-3-link-color li.button a:hover,.color3-background-color.sm.color-3-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color3-background-color.sm.color-3-link-color li.button-secondary a:hover,.color3-background-color.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color3-background-color.sm.color-3-link-color li.alt.button a:hover,.color3-background-color.sm.color-3-link-color li.btn a:focus,.color3-background-color.sm.color-3-link-color .palette-primary li.button-primary a:focus,.palette-primary .color3-background-color.sm.color-3-link-color li.button-primary a:focus,.color3-background-color.sm.color-3-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color3-background-color.sm.color-3-link-color li.button a:focus,.color3-background-color.sm.color-3-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color3-background-color.sm.color-3-link-color li.button-secondary a:focus,.color3-background-color.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color3-background-color.sm.color-3-link-color li.alt.button a:focus,.color3-background-color.sm.color-3-link-color li.btn a:active,.color3-background-color.sm.color-3-link-color .palette-primary li.button-primary a:active,.palette-primary .color3-background-color.sm.color-3-link-color li.button-primary a:active,.color3-background-color.sm.color-3-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color3-background-color.sm.color-3-link-color li.button a:active,.color3-background-color.sm.color-3-link-color .palette-primary li.button-secondary a:active,.palette-primary .color3-background-color.sm.color-3-link-color li.button-secondary a:active,.color3-background-color.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color3-background-color.sm.color-3-link-color li.alt.button a:active,.color3-background-color.sm.color-3-link-color li.btn a.highlighted,.color3-background-color.sm.color-3-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color3-background-color.sm.color-3-link-color li.button-primary a.highlighted,.color3-background-color.sm.color-3-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color3-background-color.sm.color-3-link-color li.button a.highlighted,.color3-background-color.sm.color-3-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color3-background-color.sm.color-3-link-color li.button-secondary a.highlighted,.color3-background-color.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color3-background-color.sm.color-3-link-color li.alt.button a.highlighted{color:inherit}.color3-background-color.sm.color-3-link-color li:not(.btn) a{color:#dcebf7}.color3-background-color.sm.color-3-link-color li:not(.btn) a:hover,.color3-background-color.sm.color-3-link-color li:not(.btn) a:focus,.color3-background-color.sm.color-3-link-color li:not(.btn) a:active,.color3-background-color.sm.color-3-link-color li:not(.btn) a.highlighted{color:#89bce4}.color3-background-color.color-4-link-color a{color:#f9f9f9}.color3-background-color.color-4-link-color a:hover,.color3-background-color.color-4-link-color a:focus,.color3-background-color.color-4-link-color a:active,.color3-background-color.color-4-link-color a.highlighted{color:#c6c6c6}.color3-background-color.sidebar.color-4-link-color a{color:#f9f9f9}.color3-background-color.sidebar.color-4-link-color a:hover,.color3-background-color.sidebar.color-4-link-color a:focus,.color3-background-color.sidebar.color-4-link-color a:active,.color3-background-color.sidebar.color-4-link-color a.highlighted{color:#c6c6c6}.color3-background-color.sm.color-4-link-color li.btn a,.color3-background-color.sm.color-4-link-color .palette-primary li.button-primary a,.palette-primary .color3-background-color.sm.color-4-link-color li.button-primary a,.color3-background-color.sm.color-4-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color3-background-color.sm.color-4-link-color li.button a,.color3-background-color.sm.color-4-link-color .palette-primary li.button-secondary a,.palette-primary .color3-background-color.sm.color-4-link-color li.button-secondary a,.color3-background-color.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color3-background-color.sm.color-4-link-color li.alt.button a{color:inherit}.color3-background-color.sm.color-4-link-color li.btn a:hover,.color3-background-color.sm.color-4-link-color .palette-primary li.button-primary a:hover,.palette-primary .color3-background-color.sm.color-4-link-color li.button-primary a:hover,.color3-background-color.sm.color-4-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color3-background-color.sm.color-4-link-color li.button a:hover,.color3-background-color.sm.color-4-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color3-background-color.sm.color-4-link-color li.button-secondary a:hover,.color3-background-color.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color3-background-color.sm.color-4-link-color li.alt.button a:hover,.color3-background-color.sm.color-4-link-color li.btn a:focus,.color3-background-color.sm.color-4-link-color .palette-primary li.button-primary a:focus,.palette-primary .color3-background-color.sm.color-4-link-color li.button-primary a:focus,.color3-background-color.sm.color-4-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color3-background-color.sm.color-4-link-color li.button a:focus,.color3-background-color.sm.color-4-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color3-background-color.sm.color-4-link-color li.button-secondary a:focus,.color3-background-color.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color3-background-color.sm.color-4-link-color li.alt.button a:focus,.color3-background-color.sm.color-4-link-color li.btn a:active,.color3-background-color.sm.color-4-link-color .palette-primary li.button-primary a:active,.palette-primary .color3-background-color.sm.color-4-link-color li.button-primary a:active,.color3-background-color.sm.color-4-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color3-background-color.sm.color-4-link-color li.button a:active,.color3-background-color.sm.color-4-link-color .palette-primary li.button-secondary a:active,.palette-primary .color3-background-color.sm.color-4-link-color li.button-secondary a:active,.color3-background-color.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color3-background-color.sm.color-4-link-color li.alt.button a:active,.color3-background-color.sm.color-4-link-color li.btn a.highlighted,.color3-background-color.sm.color-4-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color3-background-color.sm.color-4-link-color li.button-primary a.highlighted,.color3-background-color.sm.color-4-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color3-background-color.sm.color-4-link-color li.button a.highlighted,.color3-background-color.sm.color-4-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color3-background-color.sm.color-4-link-color li.button-secondary a.highlighted,.color3-background-color.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color3-background-color.sm.color-4-link-color li.alt.button a.highlighted{color:inherit}.color3-background-color.sm.color-4-link-color li:not(.btn) a{color:#f9f9f9}.color3-background-color.sm.color-4-link-color li:not(.btn) a:hover,.color3-background-color.sm.color-4-link-color li:not(.btn) a:focus,.color3-background-color.sm.color-4-link-color li:not(.btn) a:active,.color3-background-color.sm.color-4-link-color li:not(.btn) a.highlighted{color:#c6c6c6}.color3-background-color.color-5-link-color a{color:#011f3f}.color3-background-color.color-5-link-color a:hover,.color3-background-color.color-5-link-color a:focus,.color3-background-color.color-5-link-color a:active,.color3-background-color.color-5-link-color a.highlighted{color:#0350a3}.color3-background-color.sidebar.color-5-link-color a{color:#011f3f}.color3-background-color.sidebar.color-5-link-color a:hover,.color3-background-color.sidebar.color-5-link-color a:focus,.color3-background-color.sidebar.color-5-link-color a:active,.color3-background-color.sidebar.color-5-link-color a.highlighted{color:#0350a3}.color3-background-color.sm.color-5-link-color li.btn a,.color3-background-color.sm.color-5-link-color .palette-primary li.button-primary a,.palette-primary .color3-background-color.sm.color-5-link-color li.button-primary a,.color3-background-color.sm.color-5-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color3-background-color.sm.color-5-link-color li.button a,.color3-background-color.sm.color-5-link-color .palette-primary li.button-secondary a,.palette-primary .color3-background-color.sm.color-5-link-color li.button-secondary a,.color3-background-color.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color3-background-color.sm.color-5-link-color li.alt.button a{color:inherit}.color3-background-color.sm.color-5-link-color li.btn a:hover,.color3-background-color.sm.color-5-link-color .palette-primary li.button-primary a:hover,.palette-primary .color3-background-color.sm.color-5-link-color li.button-primary a:hover,.color3-background-color.sm.color-5-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color3-background-color.sm.color-5-link-color li.button a:hover,.color3-background-color.sm.color-5-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color3-background-color.sm.color-5-link-color li.button-secondary a:hover,.color3-background-color.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color3-background-color.sm.color-5-link-color li.alt.button a:hover,.color3-background-color.sm.color-5-link-color li.btn a:focus,.color3-background-color.sm.color-5-link-color .palette-primary li.button-primary a:focus,.palette-primary .color3-background-color.sm.color-5-link-color li.button-primary a:focus,.color3-background-color.sm.color-5-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color3-background-color.sm.color-5-link-color li.button a:focus,.color3-background-color.sm.color-5-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color3-background-color.sm.color-5-link-color li.button-secondary a:focus,.color3-background-color.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color3-background-color.sm.color-5-link-color li.alt.button a:focus,.color3-background-color.sm.color-5-link-color li.btn a:active,.color3-background-color.sm.color-5-link-color .palette-primary li.button-primary a:active,.palette-primary .color3-background-color.sm.color-5-link-color li.button-primary a:active,.color3-background-color.sm.color-5-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color3-background-color.sm.color-5-link-color li.button a:active,.color3-background-color.sm.color-5-link-color .palette-primary li.button-secondary a:active,.palette-primary .color3-background-color.sm.color-5-link-color li.button-secondary a:active,.color3-background-color.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color3-background-color.sm.color-5-link-color li.alt.button a:active,.color3-background-color.sm.color-5-link-color li.btn a.highlighted,.color3-background-color.sm.color-5-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color3-background-color.sm.color-5-link-color li.button-primary a.highlighted,.color3-background-color.sm.color-5-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color3-background-color.sm.color-5-link-color li.button a.highlighted,.color3-background-color.sm.color-5-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color3-background-color.sm.color-5-link-color li.button-secondary a.highlighted,.color3-background-color.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color3-background-color.sm.color-5-link-color li.alt.button a.highlighted{color:inherit}.color3-background-color.sm.color-5-link-color li:not(.btn) a{color:#011f3f}.color3-background-color.sm.color-5-link-color li:not(.btn) a:hover,.color3-background-color.sm.color-5-link-color li:not(.btn) a:focus,.color3-background-color.sm.color-5-link-color li:not(.btn) a:active,.color3-background-color.sm.color-5-link-color li:not(.btn) a.highlighted{color:#0350a3}.color3-background-color.color-neutral-link-color a{color:#f9f9f9}.color3-background-color.color-neutral-link-color a:hover,.color3-background-color.color-neutral-link-color a:focus,.color3-background-color.color-neutral-link-color a:active,.color3-background-color.color-neutral-link-color a.highlighted{color:#c6c6c6}.color3-background-color-hover:focus,.color3-background-color-hover:hover{background-color:#dcebf7 ! important}.color4-background-color.color-1-link-color a{color:#4392f1}.color4-background-color.color-1-link-color a:hover,.color4-background-color.color-1-link-color a:focus,.color4-background-color.color-1-link-color a:active,.color4-background-color.color-1-link-color a.highlighted{color:#0e5fc0}.color4-background-color.sidebar.color-1-link-color a{color:#4392f1}.color4-background-color.sidebar.color-1-link-color a:hover,.color4-background-color.sidebar.color-1-link-color a:focus,.color4-background-color.sidebar.color-1-link-color a:active,.color4-background-color.sidebar.color-1-link-color a.highlighted{color:#0e5fc0}.color4-background-color.sm.color-1-link-color li.btn a,.color4-background-color.sm.color-1-link-color .palette-primary li.button-primary a,.palette-primary .color4-background-color.sm.color-1-link-color li.button-primary a,.color4-background-color.sm.color-1-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color4-background-color.sm.color-1-link-color li.button a,.color4-background-color.sm.color-1-link-color .palette-primary li.button-secondary a,.palette-primary .color4-background-color.sm.color-1-link-color li.button-secondary a,.color4-background-color.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color4-background-color.sm.color-1-link-color li.alt.button a{color:inherit}.color4-background-color.sm.color-1-link-color li.btn a:hover,.color4-background-color.sm.color-1-link-color .palette-primary li.button-primary a:hover,.palette-primary .color4-background-color.sm.color-1-link-color li.button-primary a:hover,.color4-background-color.sm.color-1-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color4-background-color.sm.color-1-link-color li.button a:hover,.color4-background-color.sm.color-1-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color4-background-color.sm.color-1-link-color li.button-secondary a:hover,.color4-background-color.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color4-background-color.sm.color-1-link-color li.alt.button a:hover,.color4-background-color.sm.color-1-link-color li.btn a:focus,.color4-background-color.sm.color-1-link-color .palette-primary li.button-primary a:focus,.palette-primary .color4-background-color.sm.color-1-link-color li.button-primary a:focus,.color4-background-color.sm.color-1-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color4-background-color.sm.color-1-link-color li.button a:focus,.color4-background-color.sm.color-1-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color4-background-color.sm.color-1-link-color li.button-secondary a:focus,.color4-background-color.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color4-background-color.sm.color-1-link-color li.alt.button a:focus,.color4-background-color.sm.color-1-link-color li.btn a:active,.color4-background-color.sm.color-1-link-color .palette-primary li.button-primary a:active,.palette-primary .color4-background-color.sm.color-1-link-color li.button-primary a:active,.color4-background-color.sm.color-1-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color4-background-color.sm.color-1-link-color li.button a:active,.color4-background-color.sm.color-1-link-color .palette-primary li.button-secondary a:active,.palette-primary .color4-background-color.sm.color-1-link-color li.button-secondary a:active,.color4-background-color.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color4-background-color.sm.color-1-link-color li.alt.button a:active,.color4-background-color.sm.color-1-link-color li.btn a.highlighted,.color4-background-color.sm.color-1-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color4-background-color.sm.color-1-link-color li.button-primary a.highlighted,.color4-background-color.sm.color-1-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color4-background-color.sm.color-1-link-color li.button a.highlighted,.color4-background-color.sm.color-1-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color4-background-color.sm.color-1-link-color li.button-secondary a.highlighted,.color4-background-color.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color4-background-color.sm.color-1-link-color li.alt.button a.highlighted{color:inherit}.color4-background-color.sm.color-1-link-color li:not(.btn) a{color:#4392f1}.color4-background-color.sm.color-1-link-color li:not(.btn) a:hover,.color4-background-color.sm.color-1-link-color li:not(.btn) a:focus,.color4-background-color.sm.color-1-link-color li:not(.btn) a:active,.color4-background-color.sm.color-1-link-color li:not(.btn) a.highlighted{color:#0e5fc0}.color4-background-color.color-2-link-color a{color:#011f3f}.color4-background-color.color-2-link-color a:hover,.color4-background-color.color-2-link-color a:focus,.color4-background-color.color-2-link-color a:active,.color4-background-color.color-2-link-color a.highlighted{color:#0350a3}.color4-background-color.sidebar.color-2-link-color a{color:#011f3f}.color4-background-color.sidebar.color-2-link-color a:hover,.color4-background-color.sidebar.color-2-link-color a:focus,.color4-background-color.sidebar.color-2-link-color a:active,.color4-background-color.sidebar.color-2-link-color a.highlighted{color:#0350a3}.color4-background-color.sm.color-2-link-color li.btn a,.color4-background-color.sm.color-2-link-color .palette-primary li.button-primary a,.palette-primary .color4-background-color.sm.color-2-link-color li.button-primary a,.color4-background-color.sm.color-2-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color4-background-color.sm.color-2-link-color li.button a,.color4-background-color.sm.color-2-link-color .palette-primary li.button-secondary a,.palette-primary .color4-background-color.sm.color-2-link-color li.button-secondary a,.color4-background-color.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color4-background-color.sm.color-2-link-color li.alt.button a{color:inherit}.color4-background-color.sm.color-2-link-color li.btn a:hover,.color4-background-color.sm.color-2-link-color .palette-primary li.button-primary a:hover,.palette-primary .color4-background-color.sm.color-2-link-color li.button-primary a:hover,.color4-background-color.sm.color-2-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color4-background-color.sm.color-2-link-color li.button a:hover,.color4-background-color.sm.color-2-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color4-background-color.sm.color-2-link-color li.button-secondary a:hover,.color4-background-color.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color4-background-color.sm.color-2-link-color li.alt.button a:hover,.color4-background-color.sm.color-2-link-color li.btn a:focus,.color4-background-color.sm.color-2-link-color .palette-primary li.button-primary a:focus,.palette-primary .color4-background-color.sm.color-2-link-color li.button-primary a:focus,.color4-background-color.sm.color-2-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color4-background-color.sm.color-2-link-color li.button a:focus,.color4-background-color.sm.color-2-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color4-background-color.sm.color-2-link-color li.button-secondary a:focus,.color4-background-color.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color4-background-color.sm.color-2-link-color li.alt.button a:focus,.color4-background-color.sm.color-2-link-color li.btn a:active,.color4-background-color.sm.color-2-link-color .palette-primary li.button-primary a:active,.palette-primary .color4-background-color.sm.color-2-link-color li.button-primary a:active,.color4-background-color.sm.color-2-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color4-background-color.sm.color-2-link-color li.button a:active,.color4-background-color.sm.color-2-link-color .palette-primary li.button-secondary a:active,.palette-primary .color4-background-color.sm.color-2-link-color li.button-secondary a:active,.color4-background-color.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color4-background-color.sm.color-2-link-color li.alt.button a:active,.color4-background-color.sm.color-2-link-color li.btn a.highlighted,.color4-background-color.sm.color-2-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color4-background-color.sm.color-2-link-color li.button-primary a.highlighted,.color4-background-color.sm.color-2-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color4-background-color.sm.color-2-link-color li.button a.highlighted,.color4-background-color.sm.color-2-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color4-background-color.sm.color-2-link-color li.button-secondary a.highlighted,.color4-background-color.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color4-background-color.sm.color-2-link-color li.alt.button a.highlighted{color:inherit}.color4-background-color.sm.color-2-link-color li:not(.btn) a{color:#011f3f}.color4-background-color.sm.color-2-link-color li:not(.btn) a:hover,.color4-background-color.sm.color-2-link-color li:not(.btn) a:focus,.color4-background-color.sm.color-2-link-color li:not(.btn) a:active,.color4-background-color.sm.color-2-link-color li:not(.btn) a.highlighted{color:#0350a3}.color4-background-color.color-3-link-color a{color:#dcebf7}.color4-background-color.color-3-link-color a:hover,.color4-background-color.color-3-link-color a:focus,.color4-background-color.color-3-link-color a:active,.color4-background-color.color-3-link-color a.highlighted{color:#89bce4}.color4-background-color.sidebar.color-3-link-color a{color:#dcebf7}.color4-background-color.sidebar.color-3-link-color a:hover,.color4-background-color.sidebar.color-3-link-color a:focus,.color4-background-color.sidebar.color-3-link-color a:active,.color4-background-color.sidebar.color-3-link-color a.highlighted{color:#89bce4}.color4-background-color.sm.color-3-link-color li.btn a,.color4-background-color.sm.color-3-link-color .palette-primary li.button-primary a,.palette-primary .color4-background-color.sm.color-3-link-color li.button-primary a,.color4-background-color.sm.color-3-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color4-background-color.sm.color-3-link-color li.button a,.color4-background-color.sm.color-3-link-color .palette-primary li.button-secondary a,.palette-primary .color4-background-color.sm.color-3-link-color li.button-secondary a,.color4-background-color.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color4-background-color.sm.color-3-link-color li.alt.button a{color:inherit}.color4-background-color.sm.color-3-link-color li.btn a:hover,.color4-background-color.sm.color-3-link-color .palette-primary li.button-primary a:hover,.palette-primary .color4-background-color.sm.color-3-link-color li.button-primary a:hover,.color4-background-color.sm.color-3-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color4-background-color.sm.color-3-link-color li.button a:hover,.color4-background-color.sm.color-3-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color4-background-color.sm.color-3-link-color li.button-secondary a:hover,.color4-background-color.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color4-background-color.sm.color-3-link-color li.alt.button a:hover,.color4-background-color.sm.color-3-link-color li.btn a:focus,.color4-background-color.sm.color-3-link-color .palette-primary li.button-primary a:focus,.palette-primary .color4-background-color.sm.color-3-link-color li.button-primary a:focus,.color4-background-color.sm.color-3-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color4-background-color.sm.color-3-link-color li.button a:focus,.color4-background-color.sm.color-3-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color4-background-color.sm.color-3-link-color li.button-secondary a:focus,.color4-background-color.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color4-background-color.sm.color-3-link-color li.alt.button a:focus,.color4-background-color.sm.color-3-link-color li.btn a:active,.color4-background-color.sm.color-3-link-color .palette-primary li.button-primary a:active,.palette-primary .color4-background-color.sm.color-3-link-color li.button-primary a:active,.color4-background-color.sm.color-3-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color4-background-color.sm.color-3-link-color li.button a:active,.color4-background-color.sm.color-3-link-color .palette-primary li.button-secondary a:active,.palette-primary .color4-background-color.sm.color-3-link-color li.button-secondary a:active,.color4-background-color.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color4-background-color.sm.color-3-link-color li.alt.button a:active,.color4-background-color.sm.color-3-link-color li.btn a.highlighted,.color4-background-color.sm.color-3-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color4-background-color.sm.color-3-link-color li.button-primary a.highlighted,.color4-background-color.sm.color-3-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color4-background-color.sm.color-3-link-color li.button a.highlighted,.color4-background-color.sm.color-3-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color4-background-color.sm.color-3-link-color li.button-secondary a.highlighted,.color4-background-color.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color4-background-color.sm.color-3-link-color li.alt.button a.highlighted{color:inherit}.color4-background-color.sm.color-3-link-color li:not(.btn) a{color:#dcebf7}.color4-background-color.sm.color-3-link-color li:not(.btn) a:hover,.color4-background-color.sm.color-3-link-color li:not(.btn) a:focus,.color4-background-color.sm.color-3-link-color li:not(.btn) a:active,.color4-background-color.sm.color-3-link-color li:not(.btn) a.highlighted{color:#89bce4}.color4-background-color.color-4-link-color a{color:#f9f9f9}.color4-background-color.color-4-link-color a:hover,.color4-background-color.color-4-link-color a:focus,.color4-background-color.color-4-link-color a:active,.color4-background-color.color-4-link-color a.highlighted{color:#c6c6c6}.color4-background-color.sidebar.color-4-link-color a{color:#f9f9f9}.color4-background-color.sidebar.color-4-link-color a:hover,.color4-background-color.sidebar.color-4-link-color a:focus,.color4-background-color.sidebar.color-4-link-color a:active,.color4-background-color.sidebar.color-4-link-color a.highlighted{color:#c6c6c6}.color4-background-color.sm.color-4-link-color li.btn a,.color4-background-color.sm.color-4-link-color .palette-primary li.button-primary a,.palette-primary .color4-background-color.sm.color-4-link-color li.button-primary a,.color4-background-color.sm.color-4-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color4-background-color.sm.color-4-link-color li.button a,.color4-background-color.sm.color-4-link-color .palette-primary li.button-secondary a,.palette-primary .color4-background-color.sm.color-4-link-color li.button-secondary a,.color4-background-color.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color4-background-color.sm.color-4-link-color li.alt.button a{color:inherit}.color4-background-color.sm.color-4-link-color li.btn a:hover,.color4-background-color.sm.color-4-link-color .palette-primary li.button-primary a:hover,.palette-primary .color4-background-color.sm.color-4-link-color li.button-primary a:hover,.color4-background-color.sm.color-4-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color4-background-color.sm.color-4-link-color li.button a:hover,.color4-background-color.sm.color-4-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color4-background-color.sm.color-4-link-color li.button-secondary a:hover,.color4-background-color.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color4-background-color.sm.color-4-link-color li.alt.button a:hover,.color4-background-color.sm.color-4-link-color li.btn a:focus,.color4-background-color.sm.color-4-link-color .palette-primary li.button-primary a:focus,.palette-primary .color4-background-color.sm.color-4-link-color li.button-primary a:focus,.color4-background-color.sm.color-4-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color4-background-color.sm.color-4-link-color li.button a:focus,.color4-background-color.sm.color-4-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color4-background-color.sm.color-4-link-color li.button-secondary a:focus,.color4-background-color.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color4-background-color.sm.color-4-link-color li.alt.button a:focus,.color4-background-color.sm.color-4-link-color li.btn a:active,.color4-background-color.sm.color-4-link-color .palette-primary li.button-primary a:active,.palette-primary .color4-background-color.sm.color-4-link-color li.button-primary a:active,.color4-background-color.sm.color-4-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color4-background-color.sm.color-4-link-color li.button a:active,.color4-background-color.sm.color-4-link-color .palette-primary li.button-secondary a:active,.palette-primary .color4-background-color.sm.color-4-link-color li.button-secondary a:active,.color4-background-color.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color4-background-color.sm.color-4-link-color li.alt.button a:active,.color4-background-color.sm.color-4-link-color li.btn a.highlighted,.color4-background-color.sm.color-4-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color4-background-color.sm.color-4-link-color li.button-primary a.highlighted,.color4-background-color.sm.color-4-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color4-background-color.sm.color-4-link-color li.button a.highlighted,.color4-background-color.sm.color-4-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color4-background-color.sm.color-4-link-color li.button-secondary a.highlighted,.color4-background-color.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color4-background-color.sm.color-4-link-color li.alt.button a.highlighted{color:inherit}.color4-background-color.sm.color-4-link-color li:not(.btn) a{color:#f9f9f9}.color4-background-color.sm.color-4-link-color li:not(.btn) a:hover,.color4-background-color.sm.color-4-link-color li:not(.btn) a:focus,.color4-background-color.sm.color-4-link-color li:not(.btn) a:active,.color4-background-color.sm.color-4-link-color li:not(.btn) a.highlighted{color:#c6c6c6}.color4-background-color.color-5-link-color a{color:#011f3f}.color4-background-color.color-5-link-color a:hover,.color4-background-color.color-5-link-color a:focus,.color4-background-color.color-5-link-color a:active,.color4-background-color.color-5-link-color a.highlighted{color:#0350a3}.color4-background-color.sidebar.color-5-link-color a{color:#011f3f}.color4-background-color.sidebar.color-5-link-color a:hover,.color4-background-color.sidebar.color-5-link-color a:focus,.color4-background-color.sidebar.color-5-link-color a:active,.color4-background-color.sidebar.color-5-link-color a.highlighted{color:#0350a3}.color4-background-color.sm.color-5-link-color li.btn a,.color4-background-color.sm.color-5-link-color .palette-primary li.button-primary a,.palette-primary .color4-background-color.sm.color-5-link-color li.button-primary a,.color4-background-color.sm.color-5-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color4-background-color.sm.color-5-link-color li.button a,.color4-background-color.sm.color-5-link-color .palette-primary li.button-secondary a,.palette-primary .color4-background-color.sm.color-5-link-color li.button-secondary a,.color4-background-color.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color4-background-color.sm.color-5-link-color li.alt.button a{color:inherit}.color4-background-color.sm.color-5-link-color li.btn a:hover,.color4-background-color.sm.color-5-link-color .palette-primary li.button-primary a:hover,.palette-primary .color4-background-color.sm.color-5-link-color li.button-primary a:hover,.color4-background-color.sm.color-5-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color4-background-color.sm.color-5-link-color li.button a:hover,.color4-background-color.sm.color-5-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color4-background-color.sm.color-5-link-color li.button-secondary a:hover,.color4-background-color.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color4-background-color.sm.color-5-link-color li.alt.button a:hover,.color4-background-color.sm.color-5-link-color li.btn a:focus,.color4-background-color.sm.color-5-link-color .palette-primary li.button-primary a:focus,.palette-primary .color4-background-color.sm.color-5-link-color li.button-primary a:focus,.color4-background-color.sm.color-5-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color4-background-color.sm.color-5-link-color li.button a:focus,.color4-background-color.sm.color-5-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color4-background-color.sm.color-5-link-color li.button-secondary a:focus,.color4-background-color.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color4-background-color.sm.color-5-link-color li.alt.button a:focus,.color4-background-color.sm.color-5-link-color li.btn a:active,.color4-background-color.sm.color-5-link-color .palette-primary li.button-primary a:active,.palette-primary .color4-background-color.sm.color-5-link-color li.button-primary a:active,.color4-background-color.sm.color-5-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color4-background-color.sm.color-5-link-color li.button a:active,.color4-background-color.sm.color-5-link-color .palette-primary li.button-secondary a:active,.palette-primary .color4-background-color.sm.color-5-link-color li.button-secondary a:active,.color4-background-color.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color4-background-color.sm.color-5-link-color li.alt.button a:active,.color4-background-color.sm.color-5-link-color li.btn a.highlighted,.color4-background-color.sm.color-5-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color4-background-color.sm.color-5-link-color li.button-primary a.highlighted,.color4-background-color.sm.color-5-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color4-background-color.sm.color-5-link-color li.button a.highlighted,.color4-background-color.sm.color-5-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color4-background-color.sm.color-5-link-color li.button-secondary a.highlighted,.color4-background-color.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color4-background-color.sm.color-5-link-color li.alt.button a.highlighted{color:inherit}.color4-background-color.sm.color-5-link-color li:not(.btn) a{color:#011f3f}.color4-background-color.sm.color-5-link-color li:not(.btn) a:hover,.color4-background-color.sm.color-5-link-color li:not(.btn) a:focus,.color4-background-color.sm.color-5-link-color li:not(.btn) a:active,.color4-background-color.sm.color-5-link-color li:not(.btn) a.highlighted{color:#0350a3}.color4-background-color.color-neutral-link-color a{color:#f9f9f9}.color4-background-color.color-neutral-link-color a:hover,.color4-background-color.color-neutral-link-color a:focus,.color4-background-color.color-neutral-link-color a:active,.color4-background-color.color-neutral-link-color a.highlighted{color:#c6c6c6}.color4-background-color-hover:focus,.color4-background-color-hover:hover{background-color:#f9f9f9 ! important}.color5-background-color.color-1-link-color a{color:#4392f1}.color5-background-color.color-1-link-color a:hover,.color5-background-color.color-1-link-color a:focus,.color5-background-color.color-1-link-color a:active,.color5-background-color.color-1-link-color a.highlighted{color:#a2c9f8}.color5-background-color.sidebar.color-1-link-color a{color:#4392f1}.color5-background-color.sidebar.color-1-link-color a:hover,.color5-background-color.sidebar.color-1-link-color a:focus,.color5-background-color.sidebar.color-1-link-color a:active,.color5-background-color.sidebar.color-1-link-color a.highlighted{color:#a2c9f8}.color5-background-color.sm.color-1-link-color li.btn a,.color5-background-color.sm.color-1-link-color .palette-primary li.button-primary a,.palette-primary .color5-background-color.sm.color-1-link-color li.button-primary a,.color5-background-color.sm.color-1-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color5-background-color.sm.color-1-link-color li.button a,.color5-background-color.sm.color-1-link-color .palette-primary li.button-secondary a,.palette-primary .color5-background-color.sm.color-1-link-color li.button-secondary a,.color5-background-color.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color5-background-color.sm.color-1-link-color li.alt.button a{color:inherit}.color5-background-color.sm.color-1-link-color li.btn a:hover,.color5-background-color.sm.color-1-link-color .palette-primary li.button-primary a:hover,.palette-primary .color5-background-color.sm.color-1-link-color li.button-primary a:hover,.color5-background-color.sm.color-1-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color5-background-color.sm.color-1-link-color li.button a:hover,.color5-background-color.sm.color-1-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color5-background-color.sm.color-1-link-color li.button-secondary a:hover,.color5-background-color.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color5-background-color.sm.color-1-link-color li.alt.button a:hover,.color5-background-color.sm.color-1-link-color li.btn a:focus,.color5-background-color.sm.color-1-link-color .palette-primary li.button-primary a:focus,.palette-primary .color5-background-color.sm.color-1-link-color li.button-primary a:focus,.color5-background-color.sm.color-1-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color5-background-color.sm.color-1-link-color li.button a:focus,.color5-background-color.sm.color-1-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color5-background-color.sm.color-1-link-color li.button-secondary a:focus,.color5-background-color.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color5-background-color.sm.color-1-link-color li.alt.button a:focus,.color5-background-color.sm.color-1-link-color li.btn a:active,.color5-background-color.sm.color-1-link-color .palette-primary li.button-primary a:active,.palette-primary .color5-background-color.sm.color-1-link-color li.button-primary a:active,.color5-background-color.sm.color-1-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color5-background-color.sm.color-1-link-color li.button a:active,.color5-background-color.sm.color-1-link-color .palette-primary li.button-secondary a:active,.palette-primary .color5-background-color.sm.color-1-link-color li.button-secondary a:active,.color5-background-color.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color5-background-color.sm.color-1-link-color li.alt.button a:active,.color5-background-color.sm.color-1-link-color li.btn a.highlighted,.color5-background-color.sm.color-1-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color5-background-color.sm.color-1-link-color li.button-primary a.highlighted,.color5-background-color.sm.color-1-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color5-background-color.sm.color-1-link-color li.button a.highlighted,.color5-background-color.sm.color-1-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color5-background-color.sm.color-1-link-color li.button-secondary a.highlighted,.color5-background-color.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color5-background-color.sm.color-1-link-color li.alt.button a.highlighted{color:inherit}.color5-background-color.sm.color-1-link-color li:not(.btn) a{color:#4392f1}.color5-background-color.sm.color-1-link-color li:not(.btn) a:hover,.color5-background-color.sm.color-1-link-color li:not(.btn) a:focus,.color5-background-color.sm.color-1-link-color li:not(.btn) a:active,.color5-background-color.sm.color-1-link-color li:not(.btn) a.highlighted{color:#a2c9f8}.color5-background-color.color-2-link-color a{color:#011f3f}.color5-background-color.color-2-link-color a:hover,.color5-background-color.color-2-link-color a:focus,.color5-background-color.color-2-link-color a:active,.color5-background-color.color-2-link-color a.highlighted{color:#0350a3}.color5-background-color.sidebar.color-2-link-color a{color:#011f3f}.color5-background-color.sidebar.color-2-link-color a:hover,.color5-background-color.sidebar.color-2-link-color a:focus,.color5-background-color.sidebar.color-2-link-color a:active,.color5-background-color.sidebar.color-2-link-color a.highlighted{color:#0350a3}.color5-background-color.sm.color-2-link-color li.btn a,.color5-background-color.sm.color-2-link-color .palette-primary li.button-primary a,.palette-primary .color5-background-color.sm.color-2-link-color li.button-primary a,.color5-background-color.sm.color-2-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color5-background-color.sm.color-2-link-color li.button a,.color5-background-color.sm.color-2-link-color .palette-primary li.button-secondary a,.palette-primary .color5-background-color.sm.color-2-link-color li.button-secondary a,.color5-background-color.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color5-background-color.sm.color-2-link-color li.alt.button a{color:inherit}.color5-background-color.sm.color-2-link-color li.btn a:hover,.color5-background-color.sm.color-2-link-color .palette-primary li.button-primary a:hover,.palette-primary .color5-background-color.sm.color-2-link-color li.button-primary a:hover,.color5-background-color.sm.color-2-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color5-background-color.sm.color-2-link-color li.button a:hover,.color5-background-color.sm.color-2-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color5-background-color.sm.color-2-link-color li.button-secondary a:hover,.color5-background-color.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color5-background-color.sm.color-2-link-color li.alt.button a:hover,.color5-background-color.sm.color-2-link-color li.btn a:focus,.color5-background-color.sm.color-2-link-color .palette-primary li.button-primary a:focus,.palette-primary .color5-background-color.sm.color-2-link-color li.button-primary a:focus,.color5-background-color.sm.color-2-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color5-background-color.sm.color-2-link-color li.button a:focus,.color5-background-color.sm.color-2-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color5-background-color.sm.color-2-link-color li.button-secondary a:focus,.color5-background-color.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color5-background-color.sm.color-2-link-color li.alt.button a:focus,.color5-background-color.sm.color-2-link-color li.btn a:active,.color5-background-color.sm.color-2-link-color .palette-primary li.button-primary a:active,.palette-primary .color5-background-color.sm.color-2-link-color li.button-primary a:active,.color5-background-color.sm.color-2-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color5-background-color.sm.color-2-link-color li.button a:active,.color5-background-color.sm.color-2-link-color .palette-primary li.button-secondary a:active,.palette-primary .color5-background-color.sm.color-2-link-color li.button-secondary a:active,.color5-background-color.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color5-background-color.sm.color-2-link-color li.alt.button a:active,.color5-background-color.sm.color-2-link-color li.btn a.highlighted,.color5-background-color.sm.color-2-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color5-background-color.sm.color-2-link-color li.button-primary a.highlighted,.color5-background-color.sm.color-2-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color5-background-color.sm.color-2-link-color li.button a.highlighted,.color5-background-color.sm.color-2-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color5-background-color.sm.color-2-link-color li.button-secondary a.highlighted,.color5-background-color.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color5-background-color.sm.color-2-link-color li.alt.button a.highlighted{color:inherit}.color5-background-color.sm.color-2-link-color li:not(.btn) a{color:#011f3f}.color5-background-color.sm.color-2-link-color li:not(.btn) a:hover,.color5-background-color.sm.color-2-link-color li:not(.btn) a:focus,.color5-background-color.sm.color-2-link-color li:not(.btn) a:active,.color5-background-color.sm.color-2-link-color li:not(.btn) a.highlighted{color:#0350a3}.color5-background-color.color-3-link-color a{color:#dcebf7}.color5-background-color.color-3-link-color a:hover,.color5-background-color.color-3-link-color a:focus,.color5-background-color.color-3-link-color a:active,.color5-background-color.color-3-link-color a.highlighted{color:#89bce4}.color5-background-color.sidebar.color-3-link-color a{color:#dcebf7}.color5-background-color.sidebar.color-3-link-color a:hover,.color5-background-color.sidebar.color-3-link-color a:focus,.color5-background-color.sidebar.color-3-link-color a:active,.color5-background-color.sidebar.color-3-link-color a.highlighted{color:#89bce4}.color5-background-color.sm.color-3-link-color li.btn a,.color5-background-color.sm.color-3-link-color .palette-primary li.button-primary a,.palette-primary .color5-background-color.sm.color-3-link-color li.button-primary a,.color5-background-color.sm.color-3-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color5-background-color.sm.color-3-link-color li.button a,.color5-background-color.sm.color-3-link-color .palette-primary li.button-secondary a,.palette-primary .color5-background-color.sm.color-3-link-color li.button-secondary a,.color5-background-color.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color5-background-color.sm.color-3-link-color li.alt.button a{color:inherit}.color5-background-color.sm.color-3-link-color li.btn a:hover,.color5-background-color.sm.color-3-link-color .palette-primary li.button-primary a:hover,.palette-primary .color5-background-color.sm.color-3-link-color li.button-primary a:hover,.color5-background-color.sm.color-3-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color5-background-color.sm.color-3-link-color li.button a:hover,.color5-background-color.sm.color-3-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color5-background-color.sm.color-3-link-color li.button-secondary a:hover,.color5-background-color.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color5-background-color.sm.color-3-link-color li.alt.button a:hover,.color5-background-color.sm.color-3-link-color li.btn a:focus,.color5-background-color.sm.color-3-link-color .palette-primary li.button-primary a:focus,.palette-primary .color5-background-color.sm.color-3-link-color li.button-primary a:focus,.color5-background-color.sm.color-3-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color5-background-color.sm.color-3-link-color li.button a:focus,.color5-background-color.sm.color-3-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color5-background-color.sm.color-3-link-color li.button-secondary a:focus,.color5-background-color.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color5-background-color.sm.color-3-link-color li.alt.button a:focus,.color5-background-color.sm.color-3-link-color li.btn a:active,.color5-background-color.sm.color-3-link-color .palette-primary li.button-primary a:active,.palette-primary .color5-background-color.sm.color-3-link-color li.button-primary a:active,.color5-background-color.sm.color-3-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color5-background-color.sm.color-3-link-color li.button a:active,.color5-background-color.sm.color-3-link-color .palette-primary li.button-secondary a:active,.palette-primary .color5-background-color.sm.color-3-link-color li.button-secondary a:active,.color5-background-color.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color5-background-color.sm.color-3-link-color li.alt.button a:active,.color5-background-color.sm.color-3-link-color li.btn a.highlighted,.color5-background-color.sm.color-3-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color5-background-color.sm.color-3-link-color li.button-primary a.highlighted,.color5-background-color.sm.color-3-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color5-background-color.sm.color-3-link-color li.button a.highlighted,.color5-background-color.sm.color-3-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color5-background-color.sm.color-3-link-color li.button-secondary a.highlighted,.color5-background-color.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color5-background-color.sm.color-3-link-color li.alt.button a.highlighted{color:inherit}.color5-background-color.sm.color-3-link-color li:not(.btn) a{color:#dcebf7}.color5-background-color.sm.color-3-link-color li:not(.btn) a:hover,.color5-background-color.sm.color-3-link-color li:not(.btn) a:focus,.color5-background-color.sm.color-3-link-color li:not(.btn) a:active,.color5-background-color.sm.color-3-link-color li:not(.btn) a.highlighted{color:#89bce4}.color5-background-color.color-4-link-color a{color:#f9f9f9}.color5-background-color.color-4-link-color a:hover,.color5-background-color.color-4-link-color a:focus,.color5-background-color.color-4-link-color a:active,.color5-background-color.color-4-link-color a.highlighted{color:#c6c6c6}.color5-background-color.sidebar.color-4-link-color a{color:#f9f9f9}.color5-background-color.sidebar.color-4-link-color a:hover,.color5-background-color.sidebar.color-4-link-color a:focus,.color5-background-color.sidebar.color-4-link-color a:active,.color5-background-color.sidebar.color-4-link-color a.highlighted{color:#c6c6c6}.color5-background-color.sm.color-4-link-color li.btn a,.color5-background-color.sm.color-4-link-color .palette-primary li.button-primary a,.palette-primary .color5-background-color.sm.color-4-link-color li.button-primary a,.color5-background-color.sm.color-4-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color5-background-color.sm.color-4-link-color li.button a,.color5-background-color.sm.color-4-link-color .palette-primary li.button-secondary a,.palette-primary .color5-background-color.sm.color-4-link-color li.button-secondary a,.color5-background-color.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color5-background-color.sm.color-4-link-color li.alt.button a{color:inherit}.color5-background-color.sm.color-4-link-color li.btn a:hover,.color5-background-color.sm.color-4-link-color .palette-primary li.button-primary a:hover,.palette-primary .color5-background-color.sm.color-4-link-color li.button-primary a:hover,.color5-background-color.sm.color-4-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color5-background-color.sm.color-4-link-color li.button a:hover,.color5-background-color.sm.color-4-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color5-background-color.sm.color-4-link-color li.button-secondary a:hover,.color5-background-color.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color5-background-color.sm.color-4-link-color li.alt.button a:hover,.color5-background-color.sm.color-4-link-color li.btn a:focus,.color5-background-color.sm.color-4-link-color .palette-primary li.button-primary a:focus,.palette-primary .color5-background-color.sm.color-4-link-color li.button-primary a:focus,.color5-background-color.sm.color-4-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color5-background-color.sm.color-4-link-color li.button a:focus,.color5-background-color.sm.color-4-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color5-background-color.sm.color-4-link-color li.button-secondary a:focus,.color5-background-color.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color5-background-color.sm.color-4-link-color li.alt.button a:focus,.color5-background-color.sm.color-4-link-color li.btn a:active,.color5-background-color.sm.color-4-link-color .palette-primary li.button-primary a:active,.palette-primary .color5-background-color.sm.color-4-link-color li.button-primary a:active,.color5-background-color.sm.color-4-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color5-background-color.sm.color-4-link-color li.button a:active,.color5-background-color.sm.color-4-link-color .palette-primary li.button-secondary a:active,.palette-primary .color5-background-color.sm.color-4-link-color li.button-secondary a:active,.color5-background-color.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color5-background-color.sm.color-4-link-color li.alt.button a:active,.color5-background-color.sm.color-4-link-color li.btn a.highlighted,.color5-background-color.sm.color-4-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color5-background-color.sm.color-4-link-color li.button-primary a.highlighted,.color5-background-color.sm.color-4-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color5-background-color.sm.color-4-link-color li.button a.highlighted,.color5-background-color.sm.color-4-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color5-background-color.sm.color-4-link-color li.button-secondary a.highlighted,.color5-background-color.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color5-background-color.sm.color-4-link-color li.alt.button a.highlighted{color:inherit}.color5-background-color.sm.color-4-link-color li:not(.btn) a{color:#f9f9f9}.color5-background-color.sm.color-4-link-color li:not(.btn) a:hover,.color5-background-color.sm.color-4-link-color li:not(.btn) a:focus,.color5-background-color.sm.color-4-link-color li:not(.btn) a:active,.color5-background-color.sm.color-4-link-color li:not(.btn) a.highlighted{color:#c6c6c6}.color5-background-color.color-5-link-color a{color:#011f3f}.color5-background-color.color-5-link-color a:hover,.color5-background-color.color-5-link-color a:focus,.color5-background-color.color-5-link-color a:active,.color5-background-color.color-5-link-color a.highlighted{color:#0350a3}.color5-background-color.sidebar.color-5-link-color a{color:#011f3f}.color5-background-color.sidebar.color-5-link-color a:hover,.color5-background-color.sidebar.color-5-link-color a:focus,.color5-background-color.sidebar.color-5-link-color a:active,.color5-background-color.sidebar.color-5-link-color a.highlighted{color:#0350a3}.color5-background-color.sm.color-5-link-color li.btn a,.color5-background-color.sm.color-5-link-color .palette-primary li.button-primary a,.palette-primary .color5-background-color.sm.color-5-link-color li.button-primary a,.color5-background-color.sm.color-5-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color5-background-color.sm.color-5-link-color li.button a,.color5-background-color.sm.color-5-link-color .palette-primary li.button-secondary a,.palette-primary .color5-background-color.sm.color-5-link-color li.button-secondary a,.color5-background-color.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color5-background-color.sm.color-5-link-color li.alt.button a{color:inherit}.color5-background-color.sm.color-5-link-color li.btn a:hover,.color5-background-color.sm.color-5-link-color .palette-primary li.button-primary a:hover,.palette-primary .color5-background-color.sm.color-5-link-color li.button-primary a:hover,.color5-background-color.sm.color-5-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color5-background-color.sm.color-5-link-color li.button a:hover,.color5-background-color.sm.color-5-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color5-background-color.sm.color-5-link-color li.button-secondary a:hover,.color5-background-color.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color5-background-color.sm.color-5-link-color li.alt.button a:hover,.color5-background-color.sm.color-5-link-color li.btn a:focus,.color5-background-color.sm.color-5-link-color .palette-primary li.button-primary a:focus,.palette-primary .color5-background-color.sm.color-5-link-color li.button-primary a:focus,.color5-background-color.sm.color-5-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color5-background-color.sm.color-5-link-color li.button a:focus,.color5-background-color.sm.color-5-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color5-background-color.sm.color-5-link-color li.button-secondary a:focus,.color5-background-color.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color5-background-color.sm.color-5-link-color li.alt.button a:focus,.color5-background-color.sm.color-5-link-color li.btn a:active,.color5-background-color.sm.color-5-link-color .palette-primary li.button-primary a:active,.palette-primary .color5-background-color.sm.color-5-link-color li.button-primary a:active,.color5-background-color.sm.color-5-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color5-background-color.sm.color-5-link-color li.button a:active,.color5-background-color.sm.color-5-link-color .palette-primary li.button-secondary a:active,.palette-primary .color5-background-color.sm.color-5-link-color li.button-secondary a:active,.color5-background-color.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color5-background-color.sm.color-5-link-color li.alt.button a:active,.color5-background-color.sm.color-5-link-color li.btn a.highlighted,.color5-background-color.sm.color-5-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color5-background-color.sm.color-5-link-color li.button-primary a.highlighted,.color5-background-color.sm.color-5-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color5-background-color.sm.color-5-link-color li.button a.highlighted,.color5-background-color.sm.color-5-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color5-background-color.sm.color-5-link-color li.button-secondary a.highlighted,.color5-background-color.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color5-background-color.sm.color-5-link-color li.alt.button a.highlighted{color:inherit}.color5-background-color.sm.color-5-link-color li:not(.btn) a{color:#011f3f}.color5-background-color.sm.color-5-link-color li:not(.btn) a:hover,.color5-background-color.sm.color-5-link-color li:not(.btn) a:focus,.color5-background-color.sm.color-5-link-color li:not(.btn) a:active,.color5-background-color.sm.color-5-link-color li:not(.btn) a.highlighted{color:#0350a3}.color5-background-color.color-neutral-link-color a{color:#f9f9f9}.color5-background-color.color-neutral-link-color a:hover,.color5-background-color.color-neutral-link-color a:focus,.color5-background-color.color-neutral-link-color a:active,.color5-background-color.color-neutral-link-color a.highlighted{color:#c6c6c6}.color5-background-color-hover:focus,.color5-background-color-hover:hover{background-color:#011f3f ! important}.color-neutral-background-color.color-1-link-color a{color:#4392f1}.color-neutral-background-color.color-1-link-color a:hover,.color-neutral-background-color.color-1-link-color a:focus,.color-neutral-background-color.color-1-link-color a:active,.color-neutral-background-color.color-1-link-color a.highlighted{color:#0e5fc0}.color-neutral-background-color.color-2-link-color a{color:#011f3f}.color-neutral-background-color.color-2-link-color a:hover,.color-neutral-background-color.color-2-link-color a:focus,.color-neutral-background-color.color-2-link-color a:active,.color-neutral-background-color.color-2-link-color a.highlighted{color:#0350a3}.color-neutral-background-color.color-3-link-color a{color:#dcebf7}.color-neutral-background-color.color-3-link-color a:hover,.color-neutral-background-color.color-3-link-color a:focus,.color-neutral-background-color.color-3-link-color a:active,.color-neutral-background-color.color-3-link-color a.highlighted{color:#89bce4}.color-neutral-background-color.color-4-link-color a{color:#f9f9f9}.color-neutral-background-color.color-4-link-color a:hover,.color-neutral-background-color.color-4-link-color a:focus,.color-neutral-background-color.color-4-link-color a:active,.color-neutral-background-color.color-4-link-color a.highlighted{color:#c6c6c6}.color-neutral-background-color.color-5-link-color a{color:#011f3f}.color-neutral-background-color.color-5-link-color a:hover,.color-neutral-background-color.color-5-link-color a:focus,.color-neutral-background-color.color-5-link-color a:active,.color-neutral-background-color.color-5-link-color a.highlighted{color:#0350a3}.color-neutral-background-color.color-neutral-link-color a{color:#f9f9f9}.color-neutral-background-color.color-neutral-link-color a:hover,.color-neutral-background-color.color-neutral-link-color a:focus,.color-neutral-background-color.color-neutral-link-color a:active,.color-neutral-background-color.color-neutral-link-color a.highlighted{color:#c6c6c6}.btn-color-1,.palette-primary .button-primary,.palette-primary .woocommerce .button,.palette-primary .btn-color-1.button-primary,.palette-primary .woocommerce .button-primary.button,.palette-primary .woocommerce .button.button-primary,.palette-primary .woocommerce .btn-color-1.button,.palette-primary .btn-color-1.button-secondary,.palette-primary .button-secondary.button-primary,.palette-primary .woocommerce .button-secondary.button,.palette-primary .woocommerce .button.button-secondary,.palette-primary .woocommerce .alt.button,.palette-primary .woocommerce .btn-color-1.alt.button,.palette-primary .woocommerce .alt.button.button-primary,.btn-color-1-flat{background-color:#4392f1 !important;border-color:#4392f1;color:var(--color-1-text-contrast)}.btn-color-1 a,.palette-primary .button-primary a,.palette-primary .woocommerce .button a,.palette-primary .btn-color-1.button-primary a,.palette-primary .woocommerce .button-primary.button a,.palette-primary .woocommerce .button.button-primary a,.palette-primary .woocommerce .btn-color-1.button a,.palette-primary .btn-color-1.button-secondary a,.palette-primary .button-secondary.button-primary a,.palette-primary .woocommerce .button-secondary.button a,.palette-primary .woocommerce .button.button-secondary a,.palette-primary .woocommerce .alt.button a,.palette-primary .woocommerce .btn-color-1.alt.button a,.palette-primary .woocommerce .alt.button.button-primary a,.btn-color-1-flat a{color:var(--color-1-text-contrast)}.btn-color-1:visited,.palette-primary .button-primary:visited,.palette-primary .woocommerce .button:visited,.palette-primary .btn-color-1.button-primary:visited,.palette-primary .woocommerce .button-primary.button:visited,.palette-primary .woocommerce .button.button-primary:visited,.palette-primary .woocommerce .btn-color-1.button:visited,.palette-primary .btn-color-1.button-secondary:visited,.palette-primary .button-secondary.button-primary:visited,.palette-primary .woocommerce .button-secondary.button:visited,.palette-primary .woocommerce .button.button-secondary:visited,.palette-primary .woocommerce .button.alt:visited,.palette-primary .woocommerce .btn-color-1.alt.button:visited,.palette-primary .woocommerce .alt.button.button-primary:visited,.palette-primary .woocommerce .alt.button:visited,.btn-color-1-flat:visited{color:var(--color-1-text-contrast)}.btn-color-1:visited a,.palette-primary .button-primary:visited a,.palette-primary .woocommerce .button:visited a,.palette-primary .btn-color-1.button-primary:visited a,.palette-primary .woocommerce .button-primary.button:visited a,.palette-primary .woocommerce .button.button-primary:visited a,.palette-primary .woocommerce .btn-color-1.button:visited a,.palette-primary .btn-color-1.button-secondary:visited a,.palette-primary .button-secondary.button-primary:visited a,.palette-primary .woocommerce .button-secondary.button:visited a,.palette-primary .woocommerce .button.button-secondary:visited a,.palette-primary .woocommerce .button.alt:visited a,.palette-primary .woocommerce .btn-color-1.alt.button:visited a,.palette-primary .woocommerce .alt.button.button-primary:visited a,.palette-primary .woocommerce .alt.button:visited a,.btn-color-1-flat:visited a{color:var(--color-1-text-contrast)}.btn-color-1:hover,.palette-primary .button-primary:hover,.palette-primary .woocommerce .button:hover,.btn-color-1:focus,.palette-primary .button-primary:focus,.palette-primary .woocommerce .button:focus,.palette-primary .btn-color-1.button-primary:hover,.palette-primary .woocommerce .button-primary.button:hover,.palette-primary .woocommerce .button.button-primary:hover,.palette-primary .woocommerce .btn-color-1.button:hover,.palette-primary .btn-color-1.button-primary:focus,.palette-primary .woocommerce .button-primary.button:focus,.palette-primary .woocommerce .button.button-primary:focus,.palette-primary .woocommerce .btn-color-1.button:focus,.palette-primary .btn-color-1.button-secondary:hover,.palette-primary .button-secondary.button-primary:hover,.palette-primary .woocommerce .button-secondary.button:hover,.palette-primary .woocommerce .button.button-secondary:hover,.palette-primary .woocommerce .button.alt:hover,.palette-primary .woocommerce .btn-color-1.alt.button:hover,.palette-primary .woocommerce .alt.button.button-primary:hover,.palette-primary .woocommerce .alt.button:hover,.palette-primary .btn-color-1.button-secondary:focus,.palette-primary .button-secondary.button-primary:focus,.palette-primary .woocommerce .button-secondary.button:focus,.palette-primary .woocommerce .button.button-secondary:focus,.palette-primary .woocommerce .button.alt:focus,.palette-primary .woocommerce .btn-color-1.alt.button:focus,.palette-primary .woocommerce .alt.button.button-primary:focus,.palette-primary .woocommerce .alt.button:focus,.btn-color-1-flat:hover,.btn-color-1-flat:focus{background-color:#72aef5 !important;border-color:#72aef5;color:var(--color-1-text-contrast)}.btn-color-1:hover a,.palette-primary .button-primary:hover a,.palette-primary .woocommerce .button:hover a,.btn-color-1:focus a,.palette-primary .button-primary:focus a,.palette-primary .woocommerce .button:focus a,.palette-primary .btn-color-1.button-primary:hover a,.palette-primary .woocommerce .button-primary.button:hover a,.palette-primary .woocommerce .button.button-primary:hover a,.palette-primary .woocommerce .btn-color-1.button:hover a,.palette-primary .btn-color-1.button-primary:focus a,.palette-primary .woocommerce .button-primary.button:focus a,.palette-primary .woocommerce .button.button-primary:focus a,.palette-primary .woocommerce .btn-color-1.button:focus a,.palette-primary .btn-color-1.button-secondary:hover a,.palette-primary .button-secondary.button-primary:hover a,.palette-primary .woocommerce .button-secondary.button:hover a,.palette-primary .woocommerce .button.button-secondary:hover a,.palette-primary .woocommerce .button.alt:hover a,.palette-primary .woocommerce .btn-color-1.alt.button:hover a,.palette-primary .woocommerce .alt.button.button-primary:hover a,.palette-primary .woocommerce .alt.button:hover a,.palette-primary .btn-color-1.button-secondary:focus a,.palette-primary .button-secondary.button-primary:focus a,.palette-primary .woocommerce .button-secondary.button:focus a,.palette-primary .woocommerce .button.button-secondary:focus a,.palette-primary .woocommerce .button.alt:focus a,.palette-primary .woocommerce .btn-color-1.alt.button:focus a,.palette-primary .woocommerce .alt.button.button-primary:focus a,.palette-primary .woocommerce .alt.button:focus a,.btn-color-1-flat:hover a,.btn-color-1-flat:focus a{color:var(--color-1-text-contrast)}.btn-color-1:active,.palette-primary .button-primary:active,.palette-primary .woocommerce .button:active,.btn-color-1.active,.palette-primary .active.button-primary,.palette-primary .woocommerce .active.button,.btn-color-1.is-active,.palette-primary .is-active.button-primary,.palette-primary .woocommerce .is-active.button,.palette-primary .btn-color-1.button-primary:active,.palette-primary .woocommerce .button-primary.button:active,.palette-primary .woocommerce .button.button-primary:active,.palette-primary .woocommerce .btn-color-1.button:active,.palette-primary .btn-color-1.button-primary.active,.palette-primary .button-primary.active,.palette-primary .woocommerce .button-primary.active.button,.palette-primary .woocommerce .active.button.button-primary,.palette-primary .btn-color-1.active.button-primary,.palette-primary .woocommerce .btn-color-1.active.button,.palette-primary .btn-color-1.button-primary.is-active,.palette-primary .button-primary.is-active,.palette-primary .woocommerce .button-primary.is-active.button,.palette-primary .woocommerce .is-active.button.button-primary,.palette-primary .btn-color-1.is-active.button-primary,.palette-primary .woocommerce .btn-color-1.is-active.button,.palette-primary .btn-color-1.button-secondary:active,.palette-primary .button-secondary.button-primary:active,.palette-primary .woocommerce .button-secondary.button:active,.palette-primary .woocommerce .button.button-secondary:active,.palette-primary .woocommerce .button.alt:active,.palette-primary .woocommerce .btn-color-1.alt.button:active,.palette-primary .woocommerce .alt.button.button-primary:active,.palette-primary .woocommerce .alt.button:active,.palette-primary .btn-color-1.button-secondary.active,.palette-primary .button-secondary.active.button-primary,.palette-primary .woocommerce .button-secondary.active.button,.palette-primary .woocommerce .active.button.button-secondary,.palette-primary .woocommerce .active.button.alt,.palette-primary .btn-color-1.active.button-secondary,.palette-primary .woocommerce .btn-color-1.active.alt.button,.palette-primary .woocommerce .active.alt.button.button-primary,.palette-primary .woocommerce .active.alt.button,.palette-primary .btn-color-1.button-secondary.is-active,.palette-primary .button-secondary.is-active.button-primary,.palette-primary .woocommerce .button-secondary.is-active.button,.palette-primary .woocommerce .is-active.button.button-secondary,.palette-primary .woocommerce .is-active.button.alt,.palette-primary .btn-color-1.is-active.button-secondary,.palette-primary .woocommerce .btn-color-1.is-active.alt.button,.palette-primary .woocommerce .is-active.alt.button.button-primary,.palette-primary .woocommerce .is-active.alt.button,.btn-color-1-flat:active,.btn-color-1-flat.active,.btn-color-1-flat.is-active{background-color:#4d93e7 !important;border-color:#4d93e7;color:#1476ed}.btn-color-1:active a,.palette-primary .button-primary:active a,.palette-primary .woocommerce .button:active a,.btn-color-1.active a,.palette-primary .active.button-primary a,.palette-primary .woocommerce .active.button a,.btn-color-1.is-active a,.palette-primary .is-active.button-primary a,.palette-primary .woocommerce .is-active.button a,.palette-primary .btn-color-1.button-primary:active a,.palette-primary .woocommerce .button-primary.button:active a,.palette-primary .woocommerce .button.button-primary:active a,.palette-primary .woocommerce .btn-color-1.button:active a,.palette-primary .btn-color-1.button-primary.active a,.palette-primary .button-primary.active a,.palette-primary .woocommerce .button-primary.active.button a,.palette-primary .woocommerce .active.button.button-primary a,.palette-primary .btn-color-1.active.button-primary a,.palette-primary .woocommerce .btn-color-1.active.button a,.palette-primary .btn-color-1.button-primary.is-active a,.palette-primary .button-primary.is-active a,.palette-primary .woocommerce .button-primary.is-active.button a,.palette-primary .woocommerce .is-active.button.button-primary a,.palette-primary .btn-color-1.is-active.button-primary a,.palette-primary .woocommerce .btn-color-1.is-active.button a,.palette-primary .btn-color-1.button-secondary:active a,.palette-primary .button-secondary.button-primary:active a,.palette-primary .woocommerce .button-secondary.button:active a,.palette-primary .woocommerce .button.button-secondary:active a,.palette-primary .woocommerce .button.alt:active a,.palette-primary .woocommerce .btn-color-1.alt.button:active a,.palette-primary .woocommerce .alt.button.button-primary:active a,.palette-primary .woocommerce .alt.button:active a,.palette-primary .btn-color-1.button-secondary.active a,.palette-primary .button-secondary.active.button-primary a,.palette-primary .woocommerce .button-secondary.active.button a,.palette-primary .woocommerce .active.button.button-secondary a,.palette-primary .woocommerce .active.button.alt a,.palette-primary .btn-color-1.active.button-secondary a,.palette-primary .woocommerce .btn-color-1.active.alt.button a,.palette-primary .woocommerce .active.alt.button.button-primary a,.palette-primary .woocommerce .active.alt.button a,.palette-primary .btn-color-1.button-secondary.is-active a,.palette-primary .button-secondary.is-active.button-primary a,.palette-primary .woocommerce .button-secondary.is-active.button a,.palette-primary .woocommerce .is-active.button.button-secondary a,.palette-primary .woocommerce .is-active.button.alt a,.palette-primary .btn-color-1.is-active.button-secondary a,.palette-primary .woocommerce .btn-color-1.is-active.alt.button a,.palette-primary .woocommerce .is-active.alt.button.button-primary a,.palette-primary .woocommerce .is-active.alt.button a,.btn-color-1-flat:active a,.btn-color-1-flat.active a,.btn-color-1-flat.is-active a{color:var(--color-1-text-contrast)}.btn-border-color-1,.palette-primary .btn-border-color-1.button-primary,.palette-primary .woocommerce .btn-border-color-1.button,.palette-primary .btn-border-color-1.button-secondary,.palette-primary .woocommerce .btn-border-color-1.alt.button,.btn-border-color-1-flat{border-color:#4392f1 !important}.btn-border-color-1.btn-transparent,.palette-primary .btn-border-color-1.button-primary.btn-transparent,.palette-primary .btn-border-color-1.btn-transparent.button-primary,.palette-primary .woocommerce .btn-border-color-1.btn-transparent.button,.palette-primary .btn-border-color-1.button-secondary.btn-transparent,.palette-primary .btn-border-color-1.btn-transparent.button-secondary,.palette-primary .woocommerce .btn-border-color-1.btn-transparent.alt.button,.btn-border-color-1-flat.btn-transparent{color:#4392f1}.btn-border-color-1:hover,.btn-border-color-1:focus,.palette-primary .btn-border-color-1.button-primary:hover,.palette-primary .woocommerce .btn-border-color-1.button:hover,.palette-primary .btn-border-color-1.button-primary:focus,.palette-primary .woocommerce .btn-border-color-1.button:focus,.palette-primary .btn-border-color-1.button-secondary:hover,.palette-primary .woocommerce .btn-border-color-1.alt.button:hover,.palette-primary .btn-border-color-1.button-secondary:focus,.palette-primary .woocommerce .btn-border-color-1.alt.button:focus,.btn-border-color-1-flat:hover,.btn-border-color-1-flat:focus{border-color:#72aef5 !important}.btn-border-color-1:hover.btn-transparent,.btn-border-color-1:focus.btn-transparent,.palette-primary .btn-border-color-1.button-primary:hover.btn-transparent,.palette-primary .btn-border-color-1.btn-transparent.button-primary:hover,.palette-primary .woocommerce .btn-border-color-1.btn-transparent.button:hover,.palette-primary .btn-border-color-1.button-primary:focus.btn-transparent,.palette-primary .btn-border-color-1.btn-transparent.button-primary:focus,.palette-primary .woocommerce .btn-border-color-1.btn-transparent.button:focus,.palette-primary .btn-border-color-1.button-secondary:hover.btn-transparent,.palette-primary .btn-border-color-1.btn-transparent.button-secondary:hover,.palette-primary .woocommerce .btn-border-color-1.btn-transparent.alt.button:hover,.palette-primary .btn-border-color-1.button-secondary:focus.btn-transparent,.palette-primary .btn-border-color-1.btn-transparent.button-secondary:focus,.palette-primary .woocommerce .btn-border-color-1.btn-transparent.alt.button:focus,.btn-border-color-1-flat:hover.btn-transparent,.btn-border-color-1-flat:focus.btn-transparent{background-color:#72aef5 !important;color:var(--color-1-text-contrast)}.btn-border-color-1:hover.btn-transparent a,.btn-border-color-1:focus.btn-transparent a,.palette-primary .btn-border-color-1.button-primary:hover.btn-transparent a,.palette-primary .btn-border-color-1.btn-transparent.button-primary:hover a,.palette-primary .woocommerce .btn-border-color-1.btn-transparent.button:hover a,.palette-primary .btn-border-color-1.button-primary:focus.btn-transparent a,.palette-primary .btn-border-color-1.btn-transparent.button-primary:focus a,.palette-primary .woocommerce .btn-border-color-1.btn-transparent.button:focus a,.palette-primary .btn-border-color-1.button-secondary:hover.btn-transparent a,.palette-primary .btn-border-color-1.btn-transparent.button-secondary:hover a,.palette-primary .woocommerce .btn-border-color-1.btn-transparent.alt.button:hover a,.palette-primary .btn-border-color-1.button-secondary:focus.btn-transparent a,.palette-primary .btn-border-color-1.btn-transparent.button-secondary:focus a,.palette-primary .woocommerce .btn-border-color-1.btn-transparent.alt.button:focus a,.btn-border-color-1-flat:hover.btn-transparent a,.btn-border-color-1-flat:focus.btn-transparent a{color:var(--color-1-text-contrast)}.btn-border-color-1:active,.btn-border-color-1.active,.btn-border-color-1.is-active,.palette-primary .btn-border-color-1.button-primary:active,.palette-primary .woocommerce .btn-border-color-1.button:active,.palette-primary .btn-border-color-1.button-primary.active,.palette-primary .btn-border-color-1.active.button-primary,.palette-primary .woocommerce .btn-border-color-1.active.button,.palette-primary .btn-border-color-1.button-primary.is-active,.palette-primary .btn-border-color-1.is-active.button-primary,.palette-primary .woocommerce .btn-border-color-1.is-active.button,.palette-primary .btn-border-color-1.button-secondary:active,.palette-primary .woocommerce .btn-border-color-1.alt.button:active,.palette-primary .btn-border-color-1.button-secondary.active,.palette-primary .btn-border-color-1.active.button-secondary,.palette-primary .woocommerce .btn-border-color-1.active.alt.button,.palette-primary .btn-border-color-1.button-secondary.is-active,.palette-primary .btn-border-color-1.is-active.button-secondary,.palette-primary .woocommerce .btn-border-color-1.is-active.alt.button,.btn-border-color-1-flat:active,.btn-border-color-1-flat.active,.btn-border-color-1-flat.is-active{border-color:#4d93e7 !important}.btn-border-color-1:active.btn-transparent,.btn-border-color-1.active.btn-transparent,.btn-border-color-1.is-active.btn-transparent,.palette-primary .btn-border-color-1.button-primary:active.btn-transparent,.palette-primary .btn-border-color-1.btn-transparent.button-primary:active,.palette-primary .woocommerce .btn-border-color-1.btn-transparent.button:active,.palette-primary .btn-border-color-1.button-primary.active.btn-transparent,.palette-primary .btn-border-color-1.active.btn-transparent.button-primary,.palette-primary .woocommerce .btn-border-color-1.active.btn-transparent.button,.palette-primary .btn-border-color-1.button-primary.is-active.btn-transparent,.palette-primary .btn-border-color-1.is-active.btn-transparent.button-primary,.palette-primary .woocommerce .btn-border-color-1.is-active.btn-transparent.button,.palette-primary .btn-border-color-1.button-secondary:active.btn-transparent,.palette-primary .btn-border-color-1.btn-transparent.button-secondary:active,.palette-primary .woocommerce .btn-border-color-1.btn-transparent.alt.button:active,.palette-primary .btn-border-color-1.button-secondary.active.btn-transparent,.palette-primary .btn-border-color-1.active.btn-transparent.button-secondary,.palette-primary .woocommerce .btn-border-color-1.active.btn-transparent.alt.button,.palette-primary .btn-border-color-1.button-secondary.is-active.btn-transparent,.palette-primary .btn-border-color-1.is-active.btn-transparent.button-secondary,.palette-primary .woocommerce .btn-border-color-1.is-active.btn-transparent.alt.button,.btn-border-color-1-flat:active.btn-transparent,.btn-border-color-1-flat.active.btn-transparent,.btn-border-color-1-flat.is-active.btn-transparent{background-color:#72aef5 !important;color:#1476ed}.btn-border-color-1:active.btn-transparent a,.btn-border-color-1.active.btn-transparent a,.btn-border-color-1.is-active.btn-transparent a,.palette-primary .btn-border-color-1.button-primary:active.btn-transparent a,.palette-primary .btn-border-color-1.btn-transparent.button-primary:active a,.palette-primary .woocommerce .btn-border-color-1.btn-transparent.button:active a,.palette-primary .btn-border-color-1.button-primary.active.btn-transparent a,.palette-primary .btn-border-color-1.active.btn-transparent.button-primary a,.palette-primary .woocommerce .btn-border-color-1.active.btn-transparent.button a,.palette-primary .btn-border-color-1.button-primary.is-active.btn-transparent a,.palette-primary .btn-border-color-1.is-active.btn-transparent.button-primary a,.palette-primary .woocommerce .btn-border-color-1.is-active.btn-transparent.button a,.palette-primary .btn-border-color-1.button-secondary:active.btn-transparent a,.palette-primary .btn-border-color-1.btn-transparent.button-secondary:active a,.palette-primary .woocommerce .btn-border-color-1.btn-transparent.alt.button:active a,.palette-primary .btn-border-color-1.button-secondary.active.btn-transparent a,.palette-primary .btn-border-color-1.active.btn-transparent.button-secondary a,.palette-primary .woocommerce .btn-border-color-1.active.btn-transparent.alt.button a,.palette-primary .btn-border-color-1.button-secondary.is-active.btn-transparent a,.palette-primary .btn-border-color-1.is-active.btn-transparent.button-secondary a,.palette-primary .woocommerce .btn-border-color-1.is-active.btn-transparent.alt.button a,.btn-border-color-1-flat:active.btn-transparent a,.btn-border-color-1-flat.active.btn-transparent a,.btn-border-color-1-flat.is-active.btn-transparent a{color:var(--color-1-text-contrast)}.btn-color-2,.palette-primary .button-secondary,.palette-primary .woocommerce .alt.button,.palette-primary .btn-color-2.button-primary,.palette-primary .button-primary.button-secondary,.palette-primary .woocommerce .button-primary.alt.button,.palette-primary .woocommerce .alt.button.button-primary,.palette-primary .woocommerce .btn-color-2.button,.palette-primary .woocommerce .button.button-secondary,.palette-primary .btn-color-2.button-secondary,.palette-primary .woocommerce .button-secondary.alt.button,.palette-primary .woocommerce .alt.button.button-secondary,.palette-primary .woocommerce .btn-color-2.alt.button,.btn-color-2-flat{background-color:#011f3f !important;border-color:#011f3f;color:var(--color-2-text-contrast)}.btn-color-2 a,.palette-primary .button-secondary a,.palette-primary .woocommerce .alt.button a,.palette-primary .btn-color-2.button-primary a,.palette-primary .button-primary.button-secondary a,.palette-primary .woocommerce .button-primary.alt.button a,.palette-primary .woocommerce .alt.button.button-primary a,.palette-primary .woocommerce .btn-color-2.button a,.palette-primary .woocommerce .button.button-secondary a,.palette-primary .btn-color-2.button-secondary a,.palette-primary .woocommerce .button-secondary.alt.button a,.palette-primary .woocommerce .alt.button.button-secondary a,.palette-primary .woocommerce .btn-color-2.alt.button a,.btn-color-2-flat a{color:var(--color-2-text-contrast)}.btn-color-2:visited,.palette-primary .button-secondary:visited,.palette-primary .woocommerce .alt.button:visited,.palette-primary .btn-color-2.button-primary:visited,.palette-primary .button-primary.button-secondary:visited,.palette-primary .woocommerce .button-primary.alt.button:visited,.palette-primary .woocommerce .alt.button.button-primary:visited,.palette-primary .woocommerce .btn-color-2.button:visited,.palette-primary .woocommerce .button.button-secondary:visited,.palette-primary .woocommerce .button.alt:visited,.palette-primary .btn-color-2.button-secondary:visited,.palette-primary .woocommerce .button-secondary.alt.button:visited,.palette-primary .woocommerce .alt.button.button-secondary:visited,.palette-primary .woocommerce .btn-color-2.alt.button:visited,.btn-color-2-flat:visited{color:var(--color-2-text-contrast)}.btn-color-2:visited a,.palette-primary .button-secondary:visited a,.palette-primary .woocommerce .alt.button:visited a,.palette-primary .btn-color-2.button-primary:visited a,.palette-primary .button-primary.button-secondary:visited a,.palette-primary .woocommerce .button-primary.alt.button:visited a,.palette-primary .woocommerce .alt.button.button-primary:visited a,.palette-primary .woocommerce .btn-color-2.button:visited a,.palette-primary .woocommerce .button.button-secondary:visited a,.palette-primary .woocommerce .button.alt:visited a,.palette-primary .btn-color-2.button-secondary:visited a,.palette-primary .woocommerce .button-secondary.alt.button:visited a,.palette-primary .woocommerce .alt.button.button-secondary:visited a,.palette-primary .woocommerce .btn-color-2.alt.button:visited a,.btn-color-2-flat:visited a{color:var(--color-2-text-contrast)}.btn-color-2:hover,.palette-primary .button-secondary:hover,.palette-primary .woocommerce .alt.button:hover,.btn-color-2:focus,.palette-primary .button-secondary:focus,.palette-primary .woocommerce .alt.button:focus,.palette-primary .btn-color-2.button-primary:hover,.palette-primary .button-primary.button-secondary:hover,.palette-primary .woocommerce .button-primary.alt.button:hover,.palette-primary .woocommerce .alt.button.button-primary:hover,.palette-primary .woocommerce .btn-color-2.button:hover,.palette-primary .woocommerce .button.button-secondary:hover,.palette-primary .woocommerce .button.alt:hover,.palette-primary .btn-color-2.button-primary:focus,.palette-primary .button-primary.button-secondary:focus,.palette-primary .woocommerce .button-primary.alt.button:focus,.palette-primary .woocommerce .alt.button.button-primary:focus,.palette-primary .woocommerce .btn-color-2.button:focus,.palette-primary .woocommerce .button.button-secondary:focus,.palette-primary .woocommerce .button.alt:focus,.palette-primary .btn-color-2.button-secondary:hover,.palette-primary .woocommerce .button-secondary.alt.button:hover,.palette-primary .woocommerce .alt.button.button-secondary:hover,.palette-primary .woocommerce .btn-color-2.alt.button:hover,.palette-primary .btn-color-2.button-secondary:focus,.palette-primary .woocommerce .button-secondary.alt.button:focus,.palette-primary .woocommerce .alt.button.button-secondary:focus,.palette-primary .woocommerce .btn-color-2.alt.button:focus,.btn-color-2-flat:hover,.btn-color-2-flat:focus{background-color:#023871 !important;border-color:#023871;color:var(--color-2-text-contrast)}.btn-color-2:hover a,.palette-primary .button-secondary:hover a,.palette-primary .woocommerce .alt.button:hover a,.btn-color-2:focus a,.palette-primary .button-secondary:focus a,.palette-primary .woocommerce .alt.button:focus a,.palette-primary .btn-color-2.button-primary:hover a,.palette-primary .button-primary.button-secondary:hover a,.palette-primary .woocommerce .button-primary.alt.button:hover a,.palette-primary .woocommerce .alt.button.button-primary:hover a,.palette-primary .woocommerce .btn-color-2.button:hover a,.palette-primary .woocommerce .button.button-secondary:hover a,.palette-primary .woocommerce .button.alt:hover a,.palette-primary .btn-color-2.button-primary:focus a,.palette-primary .button-primary.button-secondary:focus a,.palette-primary .woocommerce .button-primary.alt.button:focus a,.palette-primary .woocommerce .alt.button.button-primary:focus a,.palette-primary .woocommerce .btn-color-2.button:focus a,.palette-primary .woocommerce .button.button-secondary:focus a,.palette-primary .woocommerce .button.alt:focus a,.palette-primary .btn-color-2.button-secondary:hover a,.palette-primary .woocommerce .button-secondary.alt.button:hover a,.palette-primary .woocommerce .alt.button.button-secondary:hover a,.palette-primary .woocommerce .btn-color-2.alt.button:hover a,.palette-primary .btn-color-2.button-secondary:focus a,.palette-primary .woocommerce .button-secondary.alt.button:focus a,.palette-primary .woocommerce .alt.button.button-secondary:focus a,.palette-primary .woocommerce .btn-color-2.alt.button:focus a,.btn-color-2-flat:hover a,.btn-color-2-flat:focus a{color:var(--color-2-text-contrast)}.btn-color-2:active,.palette-primary .button-secondary:active,.palette-primary .woocommerce .alt.button:active,.btn-color-2.active,.palette-primary .active.button-secondary,.palette-primary .woocommerce .active.alt.button,.btn-color-2.is-active,.palette-primary .is-active.button-secondary,.palette-primary .woocommerce .is-active.alt.button,.palette-primary .btn-color-2.button-primary:active,.palette-primary .button-primary.button-secondary:active,.palette-primary .woocommerce .button-primary.alt.button:active,.palette-primary .woocommerce .alt.button.button-primary:active,.palette-primary .woocommerce .btn-color-2.button:active,.palette-primary .woocommerce .button.button-secondary:active,.palette-primary .woocommerce .button.alt:active,.palette-primary .btn-color-2.button-primary.active,.palette-primary .button-primary.active.button-secondary,.palette-primary .woocommerce .button-primary.active.alt.button,.palette-primary .woocommerce .active.alt.button.button-primary,.palette-primary .btn-color-2.active.button-primary,.palette-primary .woocommerce .btn-color-2.active.button,.palette-primary .woocommerce .active.button.button-secondary,.palette-primary .woocommerce .active.button.alt,.palette-primary .btn-color-2.button-primary.is-active,.palette-primary .button-primary.is-active.button-secondary,.palette-primary .woocommerce .button-primary.is-active.alt.button,.palette-primary .woocommerce .is-active.alt.button.button-primary,.palette-primary .btn-color-2.is-active.button-primary,.palette-primary .woocommerce .btn-color-2.is-active.button,.palette-primary .woocommerce .is-active.button.button-secondary,.palette-primary .woocommerce .is-active.button.alt,.palette-primary .btn-color-2.button-secondary:active,.palette-primary .woocommerce .button-secondary.alt.button:active,.palette-primary .woocommerce .alt.button.button-secondary:active,.palette-primary .woocommerce .btn-color-2.alt.button:active,.palette-primary .btn-color-2.button-secondary.active,.palette-primary .button-secondary.active,.palette-primary .woocommerce .button-secondary.active.alt.button,.palette-primary .woocommerce .active.alt.button.button-secondary,.palette-primary .btn-color-2.active.button-secondary,.palette-primary .woocommerce .btn-color-2.active.alt.button,.palette-primary .btn-color-2.button-secondary.is-active,.palette-primary .button-secondary.is-active,.palette-primary .woocommerce .button-secondary.is-active.alt.button,.palette-primary .woocommerce .is-active.alt.button.button-secondary,.palette-primary .btn-color-2.is-active.button-secondary,.palette-primary .woocommerce .btn-color-2.is-active.alt.button,.btn-color-2-flat:active,.btn-color-2-flat.active,.btn-color-2-flat.is-active{background-color:#041f3c !important;border-color:#041f3c;color:#00060d}.btn-color-2:active a,.palette-primary .button-secondary:active a,.palette-primary .woocommerce .alt.button:active a,.btn-color-2.active a,.palette-primary .active.button-secondary a,.palette-primary .woocommerce .active.alt.button a,.btn-color-2.is-active a,.palette-primary .is-active.button-secondary a,.palette-primary .woocommerce .is-active.alt.button a,.palette-primary .btn-color-2.button-primary:active a,.palette-primary .button-primary.button-secondary:active a,.palette-primary .woocommerce .button-primary.alt.button:active a,.palette-primary .woocommerce .alt.button.button-primary:active a,.palette-primary .woocommerce .btn-color-2.button:active a,.palette-primary .woocommerce .button.button-secondary:active a,.palette-primary .woocommerce .button.alt:active a,.palette-primary .btn-color-2.button-primary.active a,.palette-primary .button-primary.active.button-secondary a,.palette-primary .woocommerce .button-primary.active.alt.button a,.palette-primary .woocommerce .active.alt.button.button-primary a,.palette-primary .btn-color-2.active.button-primary a,.palette-primary .woocommerce .btn-color-2.active.button a,.palette-primary .woocommerce .active.button.button-secondary a,.palette-primary .woocommerce .active.button.alt a,.palette-primary .btn-color-2.button-primary.is-active a,.palette-primary .button-primary.is-active.button-secondary a,.palette-primary .woocommerce .button-primary.is-active.alt.button a,.palette-primary .woocommerce .is-active.alt.button.button-primary a,.palette-primary .btn-color-2.is-active.button-primary a,.palette-primary .woocommerce .btn-color-2.is-active.button a,.palette-primary .woocommerce .is-active.button.button-secondary a,.palette-primary .woocommerce .is-active.button.alt a,.palette-primary .btn-color-2.button-secondary:active a,.palette-primary .woocommerce .button-secondary.alt.button:active a,.palette-primary .woocommerce .alt.button.button-secondary:active a,.palette-primary .woocommerce .btn-color-2.alt.button:active a,.palette-primary .btn-color-2.button-secondary.active a,.palette-primary .button-secondary.active a,.palette-primary .woocommerce .button-secondary.active.alt.button a,.palette-primary .woocommerce .active.alt.button.button-secondary a,.palette-primary .btn-color-2.active.button-secondary a,.palette-primary .woocommerce .btn-color-2.active.alt.button a,.palette-primary .btn-color-2.button-secondary.is-active a,.palette-primary .button-secondary.is-active a,.palette-primary .woocommerce .button-secondary.is-active.alt.button a,.palette-primary .woocommerce .is-active.alt.button.button-secondary a,.palette-primary .btn-color-2.is-active.button-secondary a,.palette-primary .woocommerce .btn-color-2.is-active.alt.button a,.btn-color-2-flat:active a,.btn-color-2-flat.active a,.btn-color-2-flat.is-active a{color:var(--color-2-text-contrast)}.btn-border-color-2,.palette-primary .btn-border-color-2.button-primary,.palette-primary .woocommerce .btn-border-color-2.button,.palette-primary .btn-border-color-2.button-secondary,.palette-primary .woocommerce .btn-border-color-2.alt.button,.btn-border-color-2-flat{border-color:#011f3f !important}.btn-border-color-2.btn-transparent,.palette-primary .btn-border-color-2.button-primary.btn-transparent,.palette-primary .btn-border-color-2.btn-transparent.button-primary,.palette-primary .woocommerce .btn-border-color-2.btn-transparent.button,.palette-primary .btn-border-color-2.button-secondary.btn-transparent,.palette-primary .btn-border-color-2.btn-transparent.button-secondary,.palette-primary .woocommerce .btn-border-color-2.btn-transparent.alt.button,.btn-border-color-2-flat.btn-transparent{color:#011f3f}.btn-border-color-2:hover,.btn-border-color-2:focus,.palette-primary .btn-border-color-2.button-primary:hover,.palette-primary .woocommerce .btn-border-color-2.button:hover,.palette-primary .btn-border-color-2.button-primary:focus,.palette-primary .woocommerce .btn-border-color-2.button:focus,.palette-primary .btn-border-color-2.button-secondary:hover,.palette-primary .woocommerce .btn-border-color-2.alt.button:hover,.palette-primary .btn-border-color-2.button-secondary:focus,.palette-primary .woocommerce .btn-border-color-2.alt.button:focus,.btn-border-color-2-flat:hover,.btn-border-color-2-flat:focus{border-color:#023871 !important}.btn-border-color-2:hover.btn-transparent,.btn-border-color-2:focus.btn-transparent,.palette-primary .btn-border-color-2.button-primary:hover.btn-transparent,.palette-primary .btn-border-color-2.btn-transparent.button-primary:hover,.palette-primary .woocommerce .btn-border-color-2.btn-transparent.button:hover,.palette-primary .btn-border-color-2.button-primary:focus.btn-transparent,.palette-primary .btn-border-color-2.btn-transparent.button-primary:focus,.palette-primary .woocommerce .btn-border-color-2.btn-transparent.button:focus,.palette-primary .btn-border-color-2.button-secondary:hover.btn-transparent,.palette-primary .btn-border-color-2.btn-transparent.button-secondary:hover,.palette-primary .woocommerce .btn-border-color-2.btn-transparent.alt.button:hover,.palette-primary .btn-border-color-2.button-secondary:focus.btn-transparent,.palette-primary .btn-border-color-2.btn-transparent.button-secondary:focus,.palette-primary .woocommerce .btn-border-color-2.btn-transparent.alt.button:focus,.btn-border-color-2-flat:hover.btn-transparent,.btn-border-color-2-flat:focus.btn-transparent{background-color:#023871 !important;color:var(--color-2-text-contrast)}.btn-border-color-2:hover.btn-transparent a,.btn-border-color-2:focus.btn-transparent a,.palette-primary .btn-border-color-2.button-primary:hover.btn-transparent a,.palette-primary .btn-border-color-2.btn-transparent.button-primary:hover a,.palette-primary .woocommerce .btn-border-color-2.btn-transparent.button:hover a,.palette-primary .btn-border-color-2.button-primary:focus.btn-transparent a,.palette-primary .btn-border-color-2.btn-transparent.button-primary:focus a,.palette-primary .woocommerce .btn-border-color-2.btn-transparent.button:focus a,.palette-primary .btn-border-color-2.button-secondary:hover.btn-transparent a,.palette-primary .btn-border-color-2.btn-transparent.button-secondary:hover a,.palette-primary .woocommerce .btn-border-color-2.btn-transparent.alt.button:hover a,.palette-primary .btn-border-color-2.button-secondary:focus.btn-transparent a,.palette-primary .btn-border-color-2.btn-transparent.button-secondary:focus a,.palette-primary .woocommerce .btn-border-color-2.btn-transparent.alt.button:focus a,.btn-border-color-2-flat:hover.btn-transparent a,.btn-border-color-2-flat:focus.btn-transparent a{color:var(--color-2-text-contrast)}.btn-border-color-2:active,.btn-border-color-2.active,.btn-border-color-2.is-active,.palette-primary .btn-border-color-2.button-primary:active,.palette-primary .woocommerce .btn-border-color-2.button:active,.palette-primary .btn-border-color-2.button-primary.active,.palette-primary .btn-border-color-2.active.button-primary,.palette-primary .woocommerce .btn-border-color-2.active.button,.palette-primary .btn-border-color-2.button-primary.is-active,.palette-primary .btn-border-color-2.is-active.button-primary,.palette-primary .woocommerce .btn-border-color-2.is-active.button,.palette-primary .btn-border-color-2.button-secondary:active,.palette-primary .woocommerce .btn-border-color-2.alt.button:active,.palette-primary .btn-border-color-2.button-secondary.active,.palette-primary .btn-border-color-2.active.button-secondary,.palette-primary .woocommerce .btn-border-color-2.active.alt.button,.palette-primary .btn-border-color-2.button-secondary.is-active,.palette-primary .btn-border-color-2.is-active.button-secondary,.palette-primary .woocommerce .btn-border-color-2.is-active.alt.button,.btn-border-color-2-flat:active,.btn-border-color-2-flat.active,.btn-border-color-2-flat.is-active{border-color:#041f3c !important}.btn-border-color-2:active.btn-transparent,.btn-border-color-2.active.btn-transparent,.btn-border-color-2.is-active.btn-transparent,.palette-primary .btn-border-color-2.button-primary:active.btn-transparent,.palette-primary .btn-border-color-2.btn-transparent.button-primary:active,.palette-primary .woocommerce .btn-border-color-2.btn-transparent.button:active,.palette-primary .btn-border-color-2.button-primary.active.btn-transparent,.palette-primary .btn-border-color-2.active.btn-transparent.button-primary,.palette-primary .woocommerce .btn-border-color-2.active.btn-transparent.button,.palette-primary .btn-border-color-2.button-primary.is-active.btn-transparent,.palette-primary .btn-border-color-2.is-active.btn-transparent.button-primary,.palette-primary .woocommerce .btn-border-color-2.is-active.btn-transparent.button,.palette-primary .btn-border-color-2.button-secondary:active.btn-transparent,.palette-primary .btn-border-color-2.btn-transparent.button-secondary:active,.palette-primary .woocommerce .btn-border-color-2.btn-transparent.alt.button:active,.palette-primary .btn-border-color-2.button-secondary.active.btn-transparent,.palette-primary .btn-border-color-2.active.btn-transparent.button-secondary,.palette-primary .woocommerce .btn-border-color-2.active.btn-transparent.alt.button,.palette-primary .btn-border-color-2.button-secondary.is-active.btn-transparent,.palette-primary .btn-border-color-2.is-active.btn-transparent.button-secondary,.palette-primary .woocommerce .btn-border-color-2.is-active.btn-transparent.alt.button,.btn-border-color-2-flat:active.btn-transparent,.btn-border-color-2-flat.active.btn-transparent,.btn-border-color-2-flat.is-active.btn-transparent{background-color:#023871 !important;color:#00060d}.btn-border-color-2:active.btn-transparent a,.btn-border-color-2.active.btn-transparent a,.btn-border-color-2.is-active.btn-transparent a,.palette-primary .btn-border-color-2.button-primary:active.btn-transparent a,.palette-primary .btn-border-color-2.btn-transparent.button-primary:active a,.palette-primary .woocommerce .btn-border-color-2.btn-transparent.button:active a,.palette-primary .btn-border-color-2.button-primary.active.btn-transparent a,.palette-primary .btn-border-color-2.active.btn-transparent.button-primary a,.palette-primary .woocommerce .btn-border-color-2.active.btn-transparent.button a,.palette-primary .btn-border-color-2.button-primary.is-active.btn-transparent a,.palette-primary .btn-border-color-2.is-active.btn-transparent.button-primary a,.palette-primary .woocommerce .btn-border-color-2.is-active.btn-transparent.button a,.palette-primary .btn-border-color-2.button-secondary:active.btn-transparent a,.palette-primary .btn-border-color-2.btn-transparent.button-secondary:active a,.palette-primary .woocommerce .btn-border-color-2.btn-transparent.alt.button:active a,.palette-primary .btn-border-color-2.button-secondary.active.btn-transparent a,.palette-primary .btn-border-color-2.active.btn-transparent.button-secondary a,.palette-primary .woocommerce .btn-border-color-2.active.btn-transparent.alt.button a,.palette-primary .btn-border-color-2.button-secondary.is-active.btn-transparent a,.palette-primary .btn-border-color-2.is-active.btn-transparent.button-secondary a,.palette-primary .woocommerce .btn-border-color-2.is-active.btn-transparent.alt.button a,.btn-border-color-2-flat:active.btn-transparent a,.btn-border-color-2-flat.active.btn-transparent a,.btn-border-color-2-flat.is-active.btn-transparent a{color:var(--color-2-text-contrast)}.btn-color-3,.palette-primary .btn-color-3.button-primary,.palette-primary .woocommerce .btn-color-3.button,.palette-primary .btn-color-3.button-secondary,.palette-primary .woocommerce .btn-color-3.alt.button,.btn-color-3-flat{background-color:#dcebf7 !important;border-color:#dcebf7;color:var(--color-3-text-contrast)}.btn-color-3 a,.palette-primary .btn-color-3.button-primary a,.palette-primary .woocommerce .btn-color-3.button a,.palette-primary .btn-color-3.button-secondary a,.palette-primary .woocommerce .btn-color-3.alt.button a,.btn-color-3-flat a{color:var(--color-3-text-contrast)}.btn-color-3:visited,.palette-primary .btn-color-3.button-primary:visited,.palette-primary .woocommerce .btn-color-3.button:visited,.palette-primary .btn-color-3.button-secondary:visited,.palette-primary .woocommerce .btn-color-3.alt.button:visited,.btn-color-3-flat:visited{color:var(--color-3-text-contrast)}.btn-color-3:visited a,.palette-primary .btn-color-3.button-primary:visited a,.palette-primary .woocommerce .btn-color-3.button:visited a,.palette-primary .btn-color-3.button-secondary:visited a,.palette-primary .woocommerce .btn-color-3.alt.button:visited a,.btn-color-3-flat:visited a{color:var(--color-3-text-contrast)}.btn-color-3:hover,.btn-color-3:focus,.palette-primary .btn-color-3.button-primary:hover,.palette-primary .woocommerce .btn-color-3.button:hover,.palette-primary .btn-color-3.button-primary:focus,.palette-primary .woocommerce .btn-color-3.button:focus,.palette-primary .btn-color-3.button-secondary:hover,.palette-primary .woocommerce .btn-color-3.alt.button:hover,.palette-primary .btn-color-3.button-secondary:focus,.palette-primary .woocommerce .btn-color-3.alt.button:focus,.btn-color-3-flat:hover,.btn-color-3-flat:focus{background-color:white !important;border-color:white;color:var(--color-3-text-contrast)}.btn-color-3:hover a,.btn-color-3:focus a,.palette-primary .btn-color-3.button-primary:hover a,.palette-primary .woocommerce .btn-color-3.button:hover a,.palette-primary .btn-color-3.button-primary:focus a,.palette-primary .woocommerce .btn-color-3.button:focus a,.palette-primary .btn-color-3.button-secondary:hover a,.palette-primary .woocommerce .btn-color-3.alt.button:hover a,.palette-primary .btn-color-3.button-secondary:focus a,.palette-primary .woocommerce .btn-color-3.alt.button:focus a,.btn-color-3-flat:hover a,.btn-color-3-flat:focus a{color:var(--color-3-text-contrast)}.btn-color-3:active,.btn-color-3.active,.btn-color-3.is-active,.palette-primary .btn-color-3.button-primary:active,.palette-primary .woocommerce .btn-color-3.button:active,.palette-primary .btn-color-3.button-primary.active,.palette-primary .btn-color-3.active.button-primary,.palette-primary .woocommerce .btn-color-3.active.button,.palette-primary .btn-color-3.button-primary.is-active,.palette-primary .btn-color-3.is-active.button-primary,.palette-primary .woocommerce .btn-color-3.is-active.button,.palette-primary .btn-color-3.button-secondary:active,.palette-primary .woocommerce .btn-color-3.alt.button:active,.palette-primary .btn-color-3.button-secondary.active,.palette-primary .btn-color-3.active.button-secondary,.palette-primary .woocommerce .btn-color-3.active.alt.button,.palette-primary .btn-color-3.button-secondary.is-active,.palette-primary .btn-color-3.is-active.button-secondary,.palette-primary .woocommerce .btn-color-3.is-active.alt.button,.btn-color-3-flat:active,.btn-color-3-flat.active,.btn-color-3-flat.is-active{background-color:#deebf5 !important;border-color:#deebf5;color:#b2d3ee}.btn-color-3:active a,.btn-color-3.active a,.btn-color-3.is-active a,.palette-primary .btn-color-3.button-primary:active a,.palette-primary .woocommerce .btn-color-3.button:active a,.palette-primary .btn-color-3.button-primary.active a,.palette-primary .btn-color-3.active.button-primary a,.palette-primary .woocommerce .btn-color-3.active.button a,.palette-primary .btn-color-3.button-primary.is-active a,.palette-primary .btn-color-3.is-active.button-primary a,.palette-primary .woocommerce .btn-color-3.is-active.button a,.palette-primary .btn-color-3.button-secondary:active a,.palette-primary .woocommerce .btn-color-3.alt.button:active a,.palette-primary .btn-color-3.button-secondary.active a,.palette-primary .btn-color-3.active.button-secondary a,.palette-primary .woocommerce .btn-color-3.active.alt.button a,.palette-primary .btn-color-3.button-secondary.is-active a,.palette-primary .btn-color-3.is-active.button-secondary a,.palette-primary .woocommerce .btn-color-3.is-active.alt.button a,.btn-color-3-flat:active a,.btn-color-3-flat.active a,.btn-color-3-flat.is-active a{color:var(--color-3-text-contrast)}.btn-border-color-3,.palette-primary .btn-border-color-3.button-primary,.palette-primary .woocommerce .btn-border-color-3.button,.palette-primary .btn-border-color-3.button-secondary,.palette-primary .woocommerce .btn-border-color-3.alt.button,.btn-border-color-3-flat{border-color:#dcebf7 !important}.btn-border-color-3.btn-transparent,.palette-primary .btn-border-color-3.button-primary.btn-transparent,.palette-primary .btn-border-color-3.btn-transparent.button-primary,.palette-primary .woocommerce .btn-border-color-3.btn-transparent.button,.palette-primary .btn-border-color-3.button-secondary.btn-transparent,.palette-primary .btn-border-color-3.btn-transparent.button-secondary,.palette-primary .woocommerce .btn-border-color-3.btn-transparent.alt.button,.btn-border-color-3-flat.btn-transparent{color:#dcebf7}.btn-border-color-3:hover,.btn-border-color-3:focus,.palette-primary .btn-border-color-3.button-primary:hover,.palette-primary .woocommerce .btn-border-color-3.button:hover,.palette-primary .btn-border-color-3.button-primary:focus,.palette-primary .woocommerce .btn-border-color-3.button:focus,.palette-primary .btn-border-color-3.button-secondary:hover,.palette-primary .woocommerce .btn-border-color-3.alt.button:hover,.palette-primary .btn-border-color-3.button-secondary:focus,.palette-primary .woocommerce .btn-border-color-3.alt.button:focus,.btn-border-color-3-flat:hover,.btn-border-color-3-flat:focus{border-color:white !important}.btn-border-color-3:hover.btn-transparent,.btn-border-color-3:focus.btn-transparent,.palette-primary .btn-border-color-3.button-primary:hover.btn-transparent,.palette-primary .btn-border-color-3.btn-transparent.button-primary:hover,.palette-primary .woocommerce .btn-border-color-3.btn-transparent.button:hover,.palette-primary .btn-border-color-3.button-primary:focus.btn-transparent,.palette-primary .btn-border-color-3.btn-transparent.button-primary:focus,.palette-primary .woocommerce .btn-border-color-3.btn-transparent.button:focus,.palette-primary .btn-border-color-3.button-secondary:hover.btn-transparent,.palette-primary .btn-border-color-3.btn-transparent.button-secondary:hover,.palette-primary .woocommerce .btn-border-color-3.btn-transparent.alt.button:hover,.palette-primary .btn-border-color-3.button-secondary:focus.btn-transparent,.palette-primary .btn-border-color-3.btn-transparent.button-secondary:focus,.palette-primary .woocommerce .btn-border-color-3.btn-transparent.alt.button:focus,.btn-border-color-3-flat:hover.btn-transparent,.btn-border-color-3-flat:focus.btn-transparent{background-color:white !important;color:var(--color-3-text-contrast)}.btn-border-color-3:hover.btn-transparent a,.btn-border-color-3:focus.btn-transparent a,.palette-primary .btn-border-color-3.button-primary:hover.btn-transparent a,.palette-primary .btn-border-color-3.btn-transparent.button-primary:hover a,.palette-primary .woocommerce .btn-border-color-3.btn-transparent.button:hover a,.palette-primary .btn-border-color-3.button-primary:focus.btn-transparent a,.palette-primary .btn-border-color-3.btn-transparent.button-primary:focus a,.palette-primary .woocommerce .btn-border-color-3.btn-transparent.button:focus a,.palette-primary .btn-border-color-3.button-secondary:hover.btn-transparent a,.palette-primary .btn-border-color-3.btn-transparent.button-secondary:hover a,.palette-primary .woocommerce .btn-border-color-3.btn-transparent.alt.button:hover a,.palette-primary .btn-border-color-3.button-secondary:focus.btn-transparent a,.palette-primary .btn-border-color-3.btn-transparent.button-secondary:focus a,.palette-primary .woocommerce .btn-border-color-3.btn-transparent.alt.button:focus a,.btn-border-color-3-flat:hover.btn-transparent a,.btn-border-color-3-flat:focus.btn-transparent a{color:var(--color-3-text-contrast)}.btn-border-color-3:active,.btn-border-color-3.active,.btn-border-color-3.is-active,.palette-primary .btn-border-color-3.button-primary:active,.palette-primary .woocommerce .btn-border-color-3.button:active,.palette-primary .btn-border-color-3.button-primary.active,.palette-primary .btn-border-color-3.active.button-primary,.palette-primary .woocommerce .btn-border-color-3.active.button,.palette-primary .btn-border-color-3.button-primary.is-active,.palette-primary .btn-border-color-3.is-active.button-primary,.palette-primary .woocommerce .btn-border-color-3.is-active.button,.palette-primary .btn-border-color-3.button-secondary:active,.palette-primary .woocommerce .btn-border-color-3.alt.button:active,.palette-primary .btn-border-color-3.button-secondary.active,.palette-primary .btn-border-color-3.active.button-secondary,.palette-primary .woocommerce .btn-border-color-3.active.alt.button,.palette-primary .btn-border-color-3.button-secondary.is-active,.palette-primary .btn-border-color-3.is-active.button-secondary,.palette-primary .woocommerce .btn-border-color-3.is-active.alt.button,.btn-border-color-3-flat:active,.btn-border-color-3-flat.active,.btn-border-color-3-flat.is-active{border-color:#deebf5 !important}.btn-border-color-3:active.btn-transparent,.btn-border-color-3.active.btn-transparent,.btn-border-color-3.is-active.btn-transparent,.palette-primary .btn-border-color-3.button-primary:active.btn-transparent,.palette-primary .btn-border-color-3.btn-transparent.button-primary:active,.palette-primary .woocommerce .btn-border-color-3.btn-transparent.button:active,.palette-primary .btn-border-color-3.button-primary.active.btn-transparent,.palette-primary .btn-border-color-3.active.btn-transparent.button-primary,.palette-primary .woocommerce .btn-border-color-3.active.btn-transparent.button,.palette-primary .btn-border-color-3.button-primary.is-active.btn-transparent,.palette-primary .btn-border-color-3.is-active.btn-transparent.button-primary,.palette-primary .woocommerce .btn-border-color-3.is-active.btn-transparent.button,.palette-primary .btn-border-color-3.button-secondary:active.btn-transparent,.palette-primary .btn-border-color-3.btn-transparent.button-secondary:active,.palette-primary .woocommerce .btn-border-color-3.btn-transparent.alt.button:active,.palette-primary .btn-border-color-3.button-secondary.active.btn-transparent,.palette-primary .btn-border-color-3.active.btn-transparent.button-secondary,.palette-primary .woocommerce .btn-border-color-3.active.btn-transparent.alt.button,.palette-primary .btn-border-color-3.button-secondary.is-active.btn-transparent,.palette-primary .btn-border-color-3.is-active.btn-transparent.button-secondary,.palette-primary .woocommerce .btn-border-color-3.is-active.btn-transparent.alt.button,.btn-border-color-3-flat:active.btn-transparent,.btn-border-color-3-flat.active.btn-transparent,.btn-border-color-3-flat.is-active.btn-transparent{background-color:white !important;color:#b2d3ee}.btn-border-color-3:active.btn-transparent a,.btn-border-color-3.active.btn-transparent a,.btn-border-color-3.is-active.btn-transparent a,.palette-primary .btn-border-color-3.button-primary:active.btn-transparent a,.palette-primary .btn-border-color-3.btn-transparent.button-primary:active a,.palette-primary .woocommerce .btn-border-color-3.btn-transparent.button:active a,.palette-primary .btn-border-color-3.button-primary.active.btn-transparent a,.palette-primary .btn-border-color-3.active.btn-transparent.button-primary a,.palette-primary .woocommerce .btn-border-color-3.active.btn-transparent.button a,.palette-primary .btn-border-color-3.button-primary.is-active.btn-transparent a,.palette-primary .btn-border-color-3.is-active.btn-transparent.button-primary a,.palette-primary .woocommerce .btn-border-color-3.is-active.btn-transparent.button a,.palette-primary .btn-border-color-3.button-secondary:active.btn-transparent a,.palette-primary .btn-border-color-3.btn-transparent.button-secondary:active a,.palette-primary .woocommerce .btn-border-color-3.btn-transparent.alt.button:active a,.palette-primary .btn-border-color-3.button-secondary.active.btn-transparent a,.palette-primary .btn-border-color-3.active.btn-transparent.button-secondary a,.palette-primary .woocommerce .btn-border-color-3.active.btn-transparent.alt.button a,.palette-primary .btn-border-color-3.button-secondary.is-active.btn-transparent a,.palette-primary .btn-border-color-3.is-active.btn-transparent.button-secondary a,.palette-primary .woocommerce .btn-border-color-3.is-active.btn-transparent.alt.button a,.btn-border-color-3-flat:active.btn-transparent a,.btn-border-color-3-flat.active.btn-transparent a,.btn-border-color-3-flat.is-active.btn-transparent a{color:var(--color-3-text-contrast)}.btn-color-4,.palette-primary .btn-color-4.button-primary,.palette-primary .woocommerce .btn-color-4.button,.palette-primary .btn-color-4.button-secondary,.palette-primary .woocommerce .btn-color-4.alt.button,.btn-color-4-flat{background-color:#f9f9f9 !important;border-color:#f9f9f9;color:var(--color-4-text-contrast)}.btn-color-4 a,.palette-primary .btn-color-4.button-primary a,.palette-primary .woocommerce .btn-color-4.button a,.palette-primary .btn-color-4.button-secondary a,.palette-primary .woocommerce .btn-color-4.alt.button a,.btn-color-4-flat a{color:var(--color-4-text-contrast)}.btn-color-4:visited,.palette-primary .btn-color-4.button-primary:visited,.palette-primary .woocommerce .btn-color-4.button:visited,.palette-primary .btn-color-4.button-secondary:visited,.palette-primary .woocommerce .btn-color-4.alt.button:visited,.btn-color-4-flat:visited{color:var(--color-4-text-contrast)}.btn-color-4:visited a,.palette-primary .btn-color-4.button-primary:visited a,.palette-primary .woocommerce .btn-color-4.button:visited a,.palette-primary .btn-color-4.button-secondary:visited a,.palette-primary .woocommerce .btn-color-4.alt.button:visited a,.btn-color-4-flat:visited a{color:var(--color-4-text-contrast)}.btn-color-4:hover,.btn-color-4:focus,.palette-primary .btn-color-4.button-primary:hover,.palette-primary .woocommerce .btn-color-4.button:hover,.palette-primary .btn-color-4.button-primary:focus,.palette-primary .woocommerce .btn-color-4.button:focus,.palette-primary .btn-color-4.button-secondary:hover,.palette-primary .woocommerce .btn-color-4.alt.button:hover,.palette-primary .btn-color-4.button-secondary:focus,.palette-primary .woocommerce .btn-color-4.alt.button:focus,.btn-color-4-flat:hover,.btn-color-4-flat:focus{background-color:white !important;border-color:white;color:var(--color-4-text-contrast)}.btn-color-4:hover a,.btn-color-4:focus a,.palette-primary .btn-color-4.button-primary:hover a,.palette-primary .woocommerce .btn-color-4.button:hover a,.palette-primary .btn-color-4.button-primary:focus a,.palette-primary .woocommerce .btn-color-4.button:focus a,.palette-primary .btn-color-4.button-secondary:hover a,.palette-primary .woocommerce .btn-color-4.alt.button:hover a,.palette-primary .btn-color-4.button-secondary:focus a,.palette-primary .woocommerce .btn-color-4.alt.button:focus a,.btn-color-4-flat:hover a,.btn-color-4-flat:focus a{color:var(--color-4-text-contrast)}.btn-color-4:active,.btn-color-4.active,.btn-color-4.is-active,.palette-primary .btn-color-4.button-primary:active,.palette-primary .woocommerce .btn-color-4.button:active,.palette-primary .btn-color-4.button-primary.active,.palette-primary .btn-color-4.active.button-primary,.palette-primary .woocommerce .btn-color-4.active.button,.palette-primary .btn-color-4.button-primary.is-active,.palette-primary .btn-color-4.is-active.button-primary,.palette-primary .woocommerce .btn-color-4.is-active.button,.palette-primary .btn-color-4.button-secondary:active,.palette-primary .woocommerce .btn-color-4.alt.button:active,.palette-primary .btn-color-4.button-secondary.active,.palette-primary .btn-color-4.active.button-secondary,.palette-primary .woocommerce .btn-color-4.active.alt.button,.palette-primary .btn-color-4.button-secondary.is-active,.palette-primary .btn-color-4.is-active.button-secondary,.palette-primary .woocommerce .btn-color-4.is-active.alt.button,.btn-color-4-flat:active,.btn-color-4-flat.active,.btn-color-4-flat.is-active{background-color:#f9f9f9 !important;border-color:#f9f9f9;color:#e0e0e0}.btn-color-4:active a,.btn-color-4.active a,.btn-color-4.is-active a,.palette-primary .btn-color-4.button-primary:active a,.palette-primary .woocommerce .btn-color-4.button:active a,.palette-primary .btn-color-4.button-primary.active a,.palette-primary .btn-color-4.active.button-primary a,.palette-primary .woocommerce .btn-color-4.active.button a,.palette-primary .btn-color-4.button-primary.is-active a,.palette-primary .btn-color-4.is-active.button-primary a,.palette-primary .woocommerce .btn-color-4.is-active.button a,.palette-primary .btn-color-4.button-secondary:active a,.palette-primary .woocommerce .btn-color-4.alt.button:active a,.palette-primary .btn-color-4.button-secondary.active a,.palette-primary .btn-color-4.active.button-secondary a,.palette-primary .woocommerce .btn-color-4.active.alt.button a,.palette-primary .btn-color-4.button-secondary.is-active a,.palette-primary .btn-color-4.is-active.button-secondary a,.palette-primary .woocommerce .btn-color-4.is-active.alt.button a,.btn-color-4-flat:active a,.btn-color-4-flat.active a,.btn-color-4-flat.is-active a{color:var(--color-4-text-contrast)}.btn-border-color-4,.palette-primary .btn-border-color-4.button-primary,.palette-primary .woocommerce .btn-border-color-4.button,.palette-primary .btn-border-color-4.button-secondary,.palette-primary .woocommerce .btn-border-color-4.alt.button,.btn-border-color-4-flat{border-color:#f9f9f9 !important}.btn-border-color-4.btn-transparent,.palette-primary .btn-border-color-4.button-primary.btn-transparent,.palette-primary .btn-border-color-4.btn-transparent.button-primary,.palette-primary .woocommerce .btn-border-color-4.btn-transparent.button,.palette-primary .btn-border-color-4.button-secondary.btn-transparent,.palette-primary .btn-border-color-4.btn-transparent.button-secondary,.palette-primary .woocommerce .btn-border-color-4.btn-transparent.alt.button,.btn-border-color-4-flat.btn-transparent{color:#f9f9f9}.btn-border-color-4:hover,.btn-border-color-4:focus,.palette-primary .btn-border-color-4.button-primary:hover,.palette-primary .woocommerce .btn-border-color-4.button:hover,.palette-primary .btn-border-color-4.button-primary:focus,.palette-primary .woocommerce .btn-border-color-4.button:focus,.palette-primary .btn-border-color-4.button-secondary:hover,.palette-primary .woocommerce .btn-border-color-4.alt.button:hover,.palette-primary .btn-border-color-4.button-secondary:focus,.palette-primary .woocommerce .btn-border-color-4.alt.button:focus,.btn-border-color-4-flat:hover,.btn-border-color-4-flat:focus{border-color:white !important}.btn-border-color-4:hover.btn-transparent,.btn-border-color-4:focus.btn-transparent,.palette-primary .btn-border-color-4.button-primary:hover.btn-transparent,.palette-primary .btn-border-color-4.btn-transparent.button-primary:hover,.palette-primary .woocommerce .btn-border-color-4.btn-transparent.button:hover,.palette-primary .btn-border-color-4.button-primary:focus.btn-transparent,.palette-primary .btn-border-color-4.btn-transparent.button-primary:focus,.palette-primary .woocommerce .btn-border-color-4.btn-transparent.button:focus,.palette-primary .btn-border-color-4.button-secondary:hover.btn-transparent,.palette-primary .btn-border-color-4.btn-transparent.button-secondary:hover,.palette-primary .woocommerce .btn-border-color-4.btn-transparent.alt.button:hover,.palette-primary .btn-border-color-4.button-secondary:focus.btn-transparent,.palette-primary .btn-border-color-4.btn-transparent.button-secondary:focus,.palette-primary .woocommerce .btn-border-color-4.btn-transparent.alt.button:focus,.btn-border-color-4-flat:hover.btn-transparent,.btn-border-color-4-flat:focus.btn-transparent{background-color:white !important;color:var(--color-4-text-contrast)}.btn-border-color-4:hover.btn-transparent a,.btn-border-color-4:focus.btn-transparent a,.palette-primary .btn-border-color-4.button-primary:hover.btn-transparent a,.palette-primary .btn-border-color-4.btn-transparent.button-primary:hover a,.palette-primary .woocommerce .btn-border-color-4.btn-transparent.button:hover a,.palette-primary .btn-border-color-4.button-primary:focus.btn-transparent a,.palette-primary .btn-border-color-4.btn-transparent.button-primary:focus a,.palette-primary .woocommerce .btn-border-color-4.btn-transparent.button:focus a,.palette-primary .btn-border-color-4.button-secondary:hover.btn-transparent a,.palette-primary .btn-border-color-4.btn-transparent.button-secondary:hover a,.palette-primary .woocommerce .btn-border-color-4.btn-transparent.alt.button:hover a,.palette-primary .btn-border-color-4.button-secondary:focus.btn-transparent a,.palette-primary .btn-border-color-4.btn-transparent.button-secondary:focus a,.palette-primary .woocommerce .btn-border-color-4.btn-transparent.alt.button:focus a,.btn-border-color-4-flat:hover.btn-transparent a,.btn-border-color-4-flat:focus.btn-transparent a{color:var(--color-4-text-contrast)}.btn-border-color-4:active,.btn-border-color-4.active,.btn-border-color-4.is-active,.palette-primary .btn-border-color-4.button-primary:active,.palette-primary .woocommerce .btn-border-color-4.button:active,.palette-primary .btn-border-color-4.button-primary.active,.palette-primary .btn-border-color-4.active.button-primary,.palette-primary .woocommerce .btn-border-color-4.active.button,.palette-primary .btn-border-color-4.button-primary.is-active,.palette-primary .btn-border-color-4.is-active.button-primary,.palette-primary .woocommerce .btn-border-color-4.is-active.button,.palette-primary .btn-border-color-4.button-secondary:active,.palette-primary .woocommerce .btn-border-color-4.alt.button:active,.palette-primary .btn-border-color-4.button-secondary.active,.palette-primary .btn-border-color-4.active.button-secondary,.palette-primary .woocommerce .btn-border-color-4.active.alt.button,.palette-primary .btn-border-color-4.button-secondary.is-active,.palette-primary .btn-border-color-4.is-active.button-secondary,.palette-primary .woocommerce .btn-border-color-4.is-active.alt.button,.btn-border-color-4-flat:active,.btn-border-color-4-flat.active,.btn-border-color-4-flat.is-active{border-color:#f9f9f9 !important}.btn-border-color-4:active.btn-transparent,.btn-border-color-4.active.btn-transparent,.btn-border-color-4.is-active.btn-transparent,.palette-primary .btn-border-color-4.button-primary:active.btn-transparent,.palette-primary .btn-border-color-4.btn-transparent.button-primary:active,.palette-primary .woocommerce .btn-border-color-4.btn-transparent.button:active,.palette-primary .btn-border-color-4.button-primary.active.btn-transparent,.palette-primary .btn-border-color-4.active.btn-transparent.button-primary,.palette-primary .woocommerce .btn-border-color-4.active.btn-transparent.button,.palette-primary .btn-border-color-4.button-primary.is-active.btn-transparent,.palette-primary .btn-border-color-4.is-active.btn-transparent.button-primary,.palette-primary .woocommerce .btn-border-color-4.is-active.btn-transparent.button,.palette-primary .btn-border-color-4.button-secondary:active.btn-transparent,.palette-primary .btn-border-color-4.btn-transparent.button-secondary:active,.palette-primary .woocommerce .btn-border-color-4.btn-transparent.alt.button:active,.palette-primary .btn-border-color-4.button-secondary.active.btn-transparent,.palette-primary .btn-border-color-4.active.btn-transparent.button-secondary,.palette-primary .woocommerce .btn-border-color-4.active.btn-transparent.alt.button,.palette-primary .btn-border-color-4.button-secondary.is-active.btn-transparent,.palette-primary .btn-border-color-4.is-active.btn-transparent.button-secondary,.palette-primary .woocommerce .btn-border-color-4.is-active.btn-transparent.alt.button,.btn-border-color-4-flat:active.btn-transparent,.btn-border-color-4-flat.active.btn-transparent,.btn-border-color-4-flat.is-active.btn-transparent{background-color:white !important;color:#e0e0e0}.btn-border-color-4:active.btn-transparent a,.btn-border-color-4.active.btn-transparent a,.btn-border-color-4.is-active.btn-transparent a,.palette-primary .btn-border-color-4.button-primary:active.btn-transparent a,.palette-primary .btn-border-color-4.btn-transparent.button-primary:active a,.palette-primary .woocommerce .btn-border-color-4.btn-transparent.button:active a,.palette-primary .btn-border-color-4.button-primary.active.btn-transparent a,.palette-primary .btn-border-color-4.active.btn-transparent.button-primary a,.palette-primary .woocommerce .btn-border-color-4.active.btn-transparent.button a,.palette-primary .btn-border-color-4.button-primary.is-active.btn-transparent a,.palette-primary .btn-border-color-4.is-active.btn-transparent.button-primary a,.palette-primary .woocommerce .btn-border-color-4.is-active.btn-transparent.button a,.palette-primary .btn-border-color-4.button-secondary:active.btn-transparent a,.palette-primary .btn-border-color-4.btn-transparent.button-secondary:active a,.palette-primary .woocommerce .btn-border-color-4.btn-transparent.alt.button:active a,.palette-primary .btn-border-color-4.button-secondary.active.btn-transparent a,.palette-primary .btn-border-color-4.active.btn-transparent.button-secondary a,.palette-primary .woocommerce .btn-border-color-4.active.btn-transparent.alt.button a,.palette-primary .btn-border-color-4.button-secondary.is-active.btn-transparent a,.palette-primary .btn-border-color-4.is-active.btn-transparent.button-secondary a,.palette-primary .woocommerce .btn-border-color-4.is-active.btn-transparent.alt.button a,.btn-border-color-4-flat:active.btn-transparent a,.btn-border-color-4-flat.active.btn-transparent a,.btn-border-color-4-flat.is-active.btn-transparent a{color:var(--color-4-text-contrast)}.btn-color-5,.palette-primary .btn-color-5.button-primary,.palette-primary .woocommerce .btn-color-5.button,.palette-primary .btn-color-5.button-secondary,.palette-primary .woocommerce .btn-color-5.alt.button,.btn-color-5-flat{background-color:#011f3f !important;border-color:#011f3f;color:var(--color-5-text-contrast)}.btn-color-5 a,.palette-primary .btn-color-5.button-primary a,.palette-primary .woocommerce .btn-color-5.button a,.palette-primary .btn-color-5.button-secondary a,.palette-primary .woocommerce .btn-color-5.alt.button a,.btn-color-5-flat a{color:var(--color-5-text-contrast)}.btn-color-5:visited,.palette-primary .btn-color-5.button-primary:visited,.palette-primary .woocommerce .btn-color-5.button:visited,.palette-primary .btn-color-5.button-secondary:visited,.palette-primary .woocommerce .btn-color-5.alt.button:visited,.btn-color-5-flat:visited{color:var(--color-5-text-contrast)}.btn-color-5:visited a,.palette-primary .btn-color-5.button-primary:visited a,.palette-primary .woocommerce .btn-color-5.button:visited a,.palette-primary .btn-color-5.button-secondary:visited a,.palette-primary .woocommerce .btn-color-5.alt.button:visited a,.btn-color-5-flat:visited a{color:var(--color-5-text-contrast)}.btn-color-5:hover,.btn-color-5:focus,.palette-primary .btn-color-5.button-primary:hover,.palette-primary .woocommerce .btn-color-5.button:hover,.palette-primary .btn-color-5.button-primary:focus,.palette-primary .woocommerce .btn-color-5.button:focus,.palette-primary .btn-color-5.button-secondary:hover,.palette-primary .woocommerce .btn-color-5.alt.button:hover,.palette-primary .btn-color-5.button-secondary:focus,.palette-primary .woocommerce .btn-color-5.alt.button:focus,.btn-color-5-flat:hover,.btn-color-5-flat:focus{background-color:#023871 !important;border-color:#023871;color:var(--color-5-text-contrast)}.btn-color-5:hover a,.btn-color-5:focus a,.palette-primary .btn-color-5.button-primary:hover a,.palette-primary .woocommerce .btn-color-5.button:hover a,.palette-primary .btn-color-5.button-primary:focus a,.palette-primary .woocommerce .btn-color-5.button:focus a,.palette-primary .btn-color-5.button-secondary:hover a,.palette-primary .woocommerce .btn-color-5.alt.button:hover a,.palette-primary .btn-color-5.button-secondary:focus a,.palette-primary .woocommerce .btn-color-5.alt.button:focus a,.btn-color-5-flat:hover a,.btn-color-5-flat:focus a{color:var(--color-5-text-contrast)}.btn-color-5:active,.btn-color-5.active,.btn-color-5.is-active,.palette-primary .btn-color-5.button-primary:active,.palette-primary .woocommerce .btn-color-5.button:active,.palette-primary .btn-color-5.button-primary.active,.palette-primary .btn-color-5.active.button-primary,.palette-primary .woocommerce .btn-color-5.active.button,.palette-primary .btn-color-5.button-primary.is-active,.palette-primary .btn-color-5.is-active.button-primary,.palette-primary .woocommerce .btn-color-5.is-active.button,.palette-primary .btn-color-5.button-secondary:active,.palette-primary .woocommerce .btn-color-5.alt.button:active,.palette-primary .btn-color-5.button-secondary.active,.palette-primary .btn-color-5.active.button-secondary,.palette-primary .woocommerce .btn-color-5.active.alt.button,.palette-primary .btn-color-5.button-secondary.is-active,.palette-primary .btn-color-5.is-active.button-secondary,.palette-primary .woocommerce .btn-color-5.is-active.alt.button,.btn-color-5-flat:active,.btn-color-5-flat.active,.btn-color-5-flat.is-active{background-color:#041f3c !important;border-color:#041f3c;color:#00060d}.btn-color-5:active a,.btn-color-5.active a,.btn-color-5.is-active a,.palette-primary .btn-color-5.button-primary:active a,.palette-primary .woocommerce .btn-color-5.button:active a,.palette-primary .btn-color-5.button-primary.active a,.palette-primary .btn-color-5.active.button-primary a,.palette-primary .woocommerce .btn-color-5.active.button a,.palette-primary .btn-color-5.button-primary.is-active a,.palette-primary .btn-color-5.is-active.button-primary a,.palette-primary .woocommerce .btn-color-5.is-active.button a,.palette-primary .btn-color-5.button-secondary:active a,.palette-primary .woocommerce .btn-color-5.alt.button:active a,.palette-primary .btn-color-5.button-secondary.active a,.palette-primary .btn-color-5.active.button-secondary a,.palette-primary .woocommerce .btn-color-5.active.alt.button a,.palette-primary .btn-color-5.button-secondary.is-active a,.palette-primary .btn-color-5.is-active.button-secondary a,.palette-primary .woocommerce .btn-color-5.is-active.alt.button a,.btn-color-5-flat:active a,.btn-color-5-flat.active a,.btn-color-5-flat.is-active a{color:var(--color-5-text-contrast)}.btn-border-color-5,.palette-primary .btn-border-color-5.button-primary,.palette-primary .woocommerce .btn-border-color-5.button,.palette-primary .btn-border-color-5.button-secondary,.palette-primary .woocommerce .btn-border-color-5.alt.button,.btn-border-color-5-flat{border-color:#011f3f !important}.btn-border-color-5.btn-transparent,.palette-primary .btn-border-color-5.button-primary.btn-transparent,.palette-primary .btn-border-color-5.btn-transparent.button-primary,.palette-primary .woocommerce .btn-border-color-5.btn-transparent.button,.palette-primary .btn-border-color-5.button-secondary.btn-transparent,.palette-primary .btn-border-color-5.btn-transparent.button-secondary,.palette-primary .woocommerce .btn-border-color-5.btn-transparent.alt.button,.btn-border-color-5-flat.btn-transparent{color:#011f3f}.btn-border-color-5:hover,.btn-border-color-5:focus,.palette-primary .btn-border-color-5.button-primary:hover,.palette-primary .woocommerce .btn-border-color-5.button:hover,.palette-primary .btn-border-color-5.button-primary:focus,.palette-primary .woocommerce .btn-border-color-5.button:focus,.palette-primary .btn-border-color-5.button-secondary:hover,.palette-primary .woocommerce .btn-border-color-5.alt.button:hover,.palette-primary .btn-border-color-5.button-secondary:focus,.palette-primary .woocommerce .btn-border-color-5.alt.button:focus,.btn-border-color-5-flat:hover,.btn-border-color-5-flat:focus{border-color:#023871 !important}.btn-border-color-5:hover.btn-transparent,.btn-border-color-5:focus.btn-transparent,.palette-primary .btn-border-color-5.button-primary:hover.btn-transparent,.palette-primary .btn-border-color-5.btn-transparent.button-primary:hover,.palette-primary .woocommerce .btn-border-color-5.btn-transparent.button:hover,.palette-primary .btn-border-color-5.button-primary:focus.btn-transparent,.palette-primary .btn-border-color-5.btn-transparent.button-primary:focus,.palette-primary .woocommerce .btn-border-color-5.btn-transparent.button:focus,.palette-primary .btn-border-color-5.button-secondary:hover.btn-transparent,.palette-primary .btn-border-color-5.btn-transparent.button-secondary:hover,.palette-primary .woocommerce .btn-border-color-5.btn-transparent.alt.button:hover,.palette-primary .btn-border-color-5.button-secondary:focus.btn-transparent,.palette-primary .btn-border-color-5.btn-transparent.button-secondary:focus,.palette-primary .woocommerce .btn-border-color-5.btn-transparent.alt.button:focus,.btn-border-color-5-flat:hover.btn-transparent,.btn-border-color-5-flat:focus.btn-transparent{background-color:#023871 !important;color:var(--color-5-text-contrast)}.btn-border-color-5:hover.btn-transparent a,.btn-border-color-5:focus.btn-transparent a,.palette-primary .btn-border-color-5.button-primary:hover.btn-transparent a,.palette-primary .btn-border-color-5.btn-transparent.button-primary:hover a,.palette-primary .woocommerce .btn-border-color-5.btn-transparent.button:hover a,.palette-primary .btn-border-color-5.button-primary:focus.btn-transparent a,.palette-primary .btn-border-color-5.btn-transparent.button-primary:focus a,.palette-primary .woocommerce .btn-border-color-5.btn-transparent.button:focus a,.palette-primary .btn-border-color-5.button-secondary:hover.btn-transparent a,.palette-primary .btn-border-color-5.btn-transparent.button-secondary:hover a,.palette-primary .woocommerce .btn-border-color-5.btn-transparent.alt.button:hover a,.palette-primary .btn-border-color-5.button-secondary:focus.btn-transparent a,.palette-primary .btn-border-color-5.btn-transparent.button-secondary:focus a,.palette-primary .woocommerce .btn-border-color-5.btn-transparent.alt.button:focus a,.btn-border-color-5-flat:hover.btn-transparent a,.btn-border-color-5-flat:focus.btn-transparent a{color:var(--color-5-text-contrast)}.btn-border-color-5:active,.btn-border-color-5.active,.btn-border-color-5.is-active,.palette-primary .btn-border-color-5.button-primary:active,.palette-primary .woocommerce .btn-border-color-5.button:active,.palette-primary .btn-border-color-5.button-primary.active,.palette-primary .btn-border-color-5.active.button-primary,.palette-primary .woocommerce .btn-border-color-5.active.button,.palette-primary .btn-border-color-5.button-primary.is-active,.palette-primary .btn-border-color-5.is-active.button-primary,.palette-primary .woocommerce .btn-border-color-5.is-active.button,.palette-primary .btn-border-color-5.button-secondary:active,.palette-primary .woocommerce .btn-border-color-5.alt.button:active,.palette-primary .btn-border-color-5.button-secondary.active,.palette-primary .btn-border-color-5.active.button-secondary,.palette-primary .woocommerce .btn-border-color-5.active.alt.button,.palette-primary .btn-border-color-5.button-secondary.is-active,.palette-primary .btn-border-color-5.is-active.button-secondary,.palette-primary .woocommerce .btn-border-color-5.is-active.alt.button,.btn-border-color-5-flat:active,.btn-border-color-5-flat.active,.btn-border-color-5-flat.is-active{border-color:#041f3c !important}.btn-border-color-5:active.btn-transparent,.btn-border-color-5.active.btn-transparent,.btn-border-color-5.is-active.btn-transparent,.palette-primary .btn-border-color-5.button-primary:active.btn-transparent,.palette-primary .btn-border-color-5.btn-transparent.button-primary:active,.palette-primary .woocommerce .btn-border-color-5.btn-transparent.button:active,.palette-primary .btn-border-color-5.button-primary.active.btn-transparent,.palette-primary .btn-border-color-5.active.btn-transparent.button-primary,.palette-primary .woocommerce .btn-border-color-5.active.btn-transparent.button,.palette-primary .btn-border-color-5.button-primary.is-active.btn-transparent,.palette-primary .btn-border-color-5.is-active.btn-transparent.button-primary,.palette-primary .woocommerce .btn-border-color-5.is-active.btn-transparent.button,.palette-primary .btn-border-color-5.button-secondary:active.btn-transparent,.palette-primary .btn-border-color-5.btn-transparent.button-secondary:active,.palette-primary .woocommerce .btn-border-color-5.btn-transparent.alt.button:active,.palette-primary .btn-border-color-5.button-secondary.active.btn-transparent,.palette-primary .btn-border-color-5.active.btn-transparent.button-secondary,.palette-primary .woocommerce .btn-border-color-5.active.btn-transparent.alt.button,.palette-primary .btn-border-color-5.button-secondary.is-active.btn-transparent,.palette-primary .btn-border-color-5.is-active.btn-transparent.button-secondary,.palette-primary .woocommerce .btn-border-color-5.is-active.btn-transparent.alt.button,.btn-border-color-5-flat:active.btn-transparent,.btn-border-color-5-flat.active.btn-transparent,.btn-border-color-5-flat.is-active.btn-transparent{background-color:#023871 !important;color:#00060d}.btn-border-color-5:active.btn-transparent a,.btn-border-color-5.active.btn-transparent a,.btn-border-color-5.is-active.btn-transparent a,.palette-primary .btn-border-color-5.button-primary:active.btn-transparent a,.palette-primary .btn-border-color-5.btn-transparent.button-primary:active a,.palette-primary .woocommerce .btn-border-color-5.btn-transparent.button:active a,.palette-primary .btn-border-color-5.button-primary.active.btn-transparent a,.palette-primary .btn-border-color-5.active.btn-transparent.button-primary a,.palette-primary .woocommerce .btn-border-color-5.active.btn-transparent.button a,.palette-primary .btn-border-color-5.button-primary.is-active.btn-transparent a,.palette-primary .btn-border-color-5.is-active.btn-transparent.button-primary a,.palette-primary .woocommerce .btn-border-color-5.is-active.btn-transparent.button a,.palette-primary .btn-border-color-5.button-secondary:active.btn-transparent a,.palette-primary .btn-border-color-5.btn-transparent.button-secondary:active a,.palette-primary .woocommerce .btn-border-color-5.btn-transparent.alt.button:active a,.palette-primary .btn-border-color-5.button-secondary.active.btn-transparent a,.palette-primary .btn-border-color-5.active.btn-transparent.button-secondary a,.palette-primary .woocommerce .btn-border-color-5.active.btn-transparent.alt.button a,.palette-primary .btn-border-color-5.button-secondary.is-active.btn-transparent a,.palette-primary .btn-border-color-5.is-active.btn-transparent.button-secondary a,.palette-primary .woocommerce .btn-border-color-5.is-active.btn-transparent.alt.button a,.btn-border-color-5-flat:active.btn-transparent a,.btn-border-color-5-flat.active.btn-transparent a,.btn-border-color-5-flat.is-active.btn-transparent a{color:var(--color-5-text-contrast)}.btn-neutral-color,.palette-primary .btn-neutral-color.button-primary,.palette-primary .woocommerce .btn-neutral-color.button,.palette-primary .btn-neutral-color.button-secondary,.palette-primary .woocommerce .btn-neutral-color.alt.button,.btn-neutral-color-flat{background-color:#f9f9f9 !important;border-color:#f9f9f9;color:var(--color-neutral-text-contrast)}.btn-neutral-color a,.palette-primary .btn-neutral-color.button-primary a,.palette-primary .woocommerce .btn-neutral-color.button a,.palette-primary .btn-neutral-color.button-secondary a,.palette-primary .woocommerce .btn-neutral-color.alt.button a,.btn-neutral-color-flat a{color:var(--color-neutral-text-contrast)}.btn-neutral-color:visited,.palette-primary .btn-neutral-color.button-primary:visited,.palette-primary .woocommerce .btn-neutral-color.button:visited,.palette-primary .btn-neutral-color.button-secondary:visited,.palette-primary .woocommerce .btn-neutral-color.alt.button:visited,.btn-neutral-color-flat:visited{color:var(--color-neutral-text-contrast)}.btn-neutral-color:visited a,.palette-primary .btn-neutral-color.button-primary:visited a,.palette-primary .woocommerce .btn-neutral-color.button:visited a,.palette-primary .btn-neutral-color.button-secondary:visited a,.palette-primary .woocommerce .btn-neutral-color.alt.button:visited a,.btn-neutral-color-flat:visited a{color:var(--color-neutral-text-contrast)}.btn-neutral-color:hover,.btn-neutral-color:focus,.palette-primary .btn-neutral-color.button-primary:hover,.palette-primary .woocommerce .btn-neutral-color.button:hover,.palette-primary .btn-neutral-color.button-primary:focus,.palette-primary .woocommerce .btn-neutral-color.button:focus,.palette-primary .btn-neutral-color.button-secondary:hover,.palette-primary .woocommerce .btn-neutral-color.alt.button:hover,.palette-primary .btn-neutral-color.button-secondary:focus,.palette-primary .woocommerce .btn-neutral-color.alt.button:focus,.btn-neutral-color-flat:hover,.btn-neutral-color-flat:focus{background-color:white !important;border-color:white;color:var(--color-neutral-text-contrast)}.btn-neutral-color:hover a,.btn-neutral-color:focus a,.palette-primary .btn-neutral-color.button-primary:hover a,.palette-primary .woocommerce .btn-neutral-color.button:hover a,.palette-primary .btn-neutral-color.button-primary:focus a,.palette-primary .woocommerce .btn-neutral-color.button:focus a,.palette-primary .btn-neutral-color.button-secondary:hover a,.palette-primary .woocommerce .btn-neutral-color.alt.button:hover a,.palette-primary .btn-neutral-color.button-secondary:focus a,.palette-primary .woocommerce .btn-neutral-color.alt.button:focus a,.btn-neutral-color-flat:hover a,.btn-neutral-color-flat:focus a{color:var(--color-neutral-text-contrast)}.btn-neutral-color:active,.btn-neutral-color.active,.btn-neutral-color.is-active,.palette-primary .btn-neutral-color.button-primary:active,.palette-primary .woocommerce .btn-neutral-color.button:active,.palette-primary .btn-neutral-color.button-primary.active,.palette-primary .btn-neutral-color.active.button-primary,.palette-primary .woocommerce .btn-neutral-color.active.button,.palette-primary .btn-neutral-color.button-primary.is-active,.palette-primary .btn-neutral-color.is-active.button-primary,.palette-primary .woocommerce .btn-neutral-color.is-active.button,.palette-primary .btn-neutral-color.button-secondary:active,.palette-primary .woocommerce .btn-neutral-color.alt.button:active,.palette-primary .btn-neutral-color.button-secondary.active,.palette-primary .btn-neutral-color.active.button-secondary,.palette-primary .woocommerce .btn-neutral-color.active.alt.button,.palette-primary .btn-neutral-color.button-secondary.is-active,.palette-primary .btn-neutral-color.is-active.button-secondary,.palette-primary .woocommerce .btn-neutral-color.is-active.alt.button,.btn-neutral-color-flat:active,.btn-neutral-color-flat.active,.btn-neutral-color-flat.is-active{background-color:#f9f9f9 !important;border-color:#f9f9f9;color:#e0e0e0}.btn-neutral-color:active a,.btn-neutral-color.active a,.btn-neutral-color.is-active a,.palette-primary .btn-neutral-color.button-primary:active a,.palette-primary .woocommerce .btn-neutral-color.button:active a,.palette-primary .btn-neutral-color.button-primary.active a,.palette-primary .btn-neutral-color.active.button-primary a,.palette-primary .woocommerce .btn-neutral-color.active.button a,.palette-primary .btn-neutral-color.button-primary.is-active a,.palette-primary .btn-neutral-color.is-active.button-primary a,.palette-primary .woocommerce .btn-neutral-color.is-active.button a,.palette-primary .btn-neutral-color.button-secondary:active a,.palette-primary .woocommerce .btn-neutral-color.alt.button:active a,.palette-primary .btn-neutral-color.button-secondary.active a,.palette-primary .btn-neutral-color.active.button-secondary a,.palette-primary .woocommerce .btn-neutral-color.active.alt.button a,.palette-primary .btn-neutral-color.button-secondary.is-active a,.palette-primary .btn-neutral-color.is-active.button-secondary a,.palette-primary .woocommerce .btn-neutral-color.is-active.alt.button a,.btn-neutral-color-flat:active a,.btn-neutral-color-flat.active a,.btn-neutral-color-flat.is-active a{color:var(--color-neutral-text-contrast)}.btn-border-neutral-color,.palette-primary .btn-border-neutral-color.button-primary,.palette-primary .woocommerce .btn-border-neutral-color.button,.palette-primary .btn-border-neutral-color.button-secondary,.palette-primary .woocommerce .btn-border-neutral-color.alt.button,.btn-border-neutral-color-flat{border-color:#f9f9f9 !important}.btn-border-neutral-color.btn-transparent,.palette-primary .btn-border-neutral-color.button-primary.btn-transparent,.palette-primary .btn-border-neutral-color.btn-transparent.button-primary,.palette-primary .woocommerce .btn-border-neutral-color.btn-transparent.button,.palette-primary .btn-border-neutral-color.button-secondary.btn-transparent,.palette-primary .btn-border-neutral-color.btn-transparent.button-secondary,.palette-primary .woocommerce .btn-border-neutral-color.btn-transparent.alt.button,.btn-border-neutral-color-flat.btn-transparent{color:#f9f9f9}.btn-border-neutral-color:hover,.btn-border-neutral-color:focus,.palette-primary .btn-border-neutral-color.button-primary:hover,.palette-primary .woocommerce .btn-border-neutral-color.button:hover,.palette-primary .btn-border-neutral-color.button-primary:focus,.palette-primary .woocommerce .btn-border-neutral-color.button:focus,.palette-primary .btn-border-neutral-color.button-secondary:hover,.palette-primary .woocommerce .btn-border-neutral-color.alt.button:hover,.palette-primary .btn-border-neutral-color.button-secondary:focus,.palette-primary .woocommerce .btn-border-neutral-color.alt.button:focus,.btn-border-neutral-color-flat:hover,.btn-border-neutral-color-flat:focus{border-color:white !important}.btn-border-neutral-color:hover.btn-transparent,.btn-border-neutral-color:focus.btn-transparent,.palette-primary .btn-border-neutral-color.button-primary:hover.btn-transparent,.palette-primary .btn-border-neutral-color.btn-transparent.button-primary:hover,.palette-primary .woocommerce .btn-border-neutral-color.btn-transparent.button:hover,.palette-primary .btn-border-neutral-color.button-primary:focus.btn-transparent,.palette-primary .btn-border-neutral-color.btn-transparent.button-primary:focus,.palette-primary .woocommerce .btn-border-neutral-color.btn-transparent.button:focus,.palette-primary .btn-border-neutral-color.button-secondary:hover.btn-transparent,.palette-primary .btn-border-neutral-color.btn-transparent.button-secondary:hover,.palette-primary .woocommerce .btn-border-neutral-color.btn-transparent.alt.button:hover,.palette-primary .btn-border-neutral-color.button-secondary:focus.btn-transparent,.palette-primary .btn-border-neutral-color.btn-transparent.button-secondary:focus,.palette-primary .woocommerce .btn-border-neutral-color.btn-transparent.alt.button:focus,.btn-border-neutral-color-flat:hover.btn-transparent,.btn-border-neutral-color-flat:focus.btn-transparent{background-color:white !important;color:var(--color-neutral-text-contrast)}.btn-border-neutral-color:hover.btn-transparent a,.btn-border-neutral-color:focus.btn-transparent a,.palette-primary .btn-border-neutral-color.button-primary:hover.btn-transparent a,.palette-primary .btn-border-neutral-color.btn-transparent.button-primary:hover a,.palette-primary .woocommerce .btn-border-neutral-color.btn-transparent.button:hover a,.palette-primary .btn-border-neutral-color.button-primary:focus.btn-transparent a,.palette-primary .btn-border-neutral-color.btn-transparent.button-primary:focus a,.palette-primary .woocommerce .btn-border-neutral-color.btn-transparent.button:focus a,.palette-primary .btn-border-neutral-color.button-secondary:hover.btn-transparent a,.palette-primary .btn-border-neutral-color.btn-transparent.button-secondary:hover a,.palette-primary .woocommerce .btn-border-neutral-color.btn-transparent.alt.button:hover a,.palette-primary .btn-border-neutral-color.button-secondary:focus.btn-transparent a,.palette-primary .btn-border-neutral-color.btn-transparent.button-secondary:focus a,.palette-primary .woocommerce .btn-border-neutral-color.btn-transparent.alt.button:focus a,.btn-border-neutral-color-flat:hover.btn-transparent a,.btn-border-neutral-color-flat:focus.btn-transparent a{color:var(--color-neutral-text-contrast)}.btn-border-neutral-color:active,.btn-border-neutral-color.active,.btn-border-neutral-color.is-active,.palette-primary .btn-border-neutral-color.button-primary:active,.palette-primary .woocommerce .btn-border-neutral-color.button:active,.palette-primary .btn-border-neutral-color.button-primary.active,.palette-primary .btn-border-neutral-color.active.button-primary,.palette-primary .woocommerce .btn-border-neutral-color.active.button,.palette-primary .btn-border-neutral-color.button-primary.is-active,.palette-primary .btn-border-neutral-color.is-active.button-primary,.palette-primary .woocommerce .btn-border-neutral-color.is-active.button,.palette-primary .btn-border-neutral-color.button-secondary:active,.palette-primary .woocommerce .btn-border-neutral-color.alt.button:active,.palette-primary .btn-border-neutral-color.button-secondary.active,.palette-primary .btn-border-neutral-color.active.button-secondary,.palette-primary .woocommerce .btn-border-neutral-color.active.alt.button,.palette-primary .btn-border-neutral-color.button-secondary.is-active,.palette-primary .btn-border-neutral-color.is-active.button-secondary,.palette-primary .woocommerce .btn-border-neutral-color.is-active.alt.button,.btn-border-neutral-color-flat:active,.btn-border-neutral-color-flat.active,.btn-border-neutral-color-flat.is-active{border-color:#f9f9f9 !important}.btn-border-neutral-color:active.btn-transparent,.btn-border-neutral-color.active.btn-transparent,.btn-border-neutral-color.is-active.btn-transparent,.palette-primary .btn-border-neutral-color.button-primary:active.btn-transparent,.palette-primary .btn-border-neutral-color.btn-transparent.button-primary:active,.palette-primary .woocommerce .btn-border-neutral-color.btn-transparent.button:active,.palette-primary .btn-border-neutral-color.button-primary.active.btn-transparent,.palette-primary .btn-border-neutral-color.active.btn-transparent.button-primary,.palette-primary .woocommerce .btn-border-neutral-color.active.btn-transparent.button,.palette-primary .btn-border-neutral-color.button-primary.is-active.btn-transparent,.palette-primary .btn-border-neutral-color.is-active.btn-transparent.button-primary,.palette-primary .woocommerce .btn-border-neutral-color.is-active.btn-transparent.button,.palette-primary .btn-border-neutral-color.button-secondary:active.btn-transparent,.palette-primary .btn-border-neutral-color.btn-transparent.button-secondary:active,.palette-primary .woocommerce .btn-border-neutral-color.btn-transparent.alt.button:active,.palette-primary .btn-border-neutral-color.button-secondary.active.btn-transparent,.palette-primary .btn-border-neutral-color.active.btn-transparent.button-secondary,.palette-primary .woocommerce .btn-border-neutral-color.active.btn-transparent.alt.button,.palette-primary .btn-border-neutral-color.button-secondary.is-active.btn-transparent,.palette-primary .btn-border-neutral-color.is-active.btn-transparent.button-secondary,.palette-primary .woocommerce .btn-border-neutral-color.is-active.btn-transparent.alt.button,.btn-border-neutral-color-flat:active.btn-transparent,.btn-border-neutral-color-flat.active.btn-transparent,.btn-border-neutral-color-flat.is-active.btn-transparent{background-color:white !important;color:#e0e0e0}.btn-border-neutral-color:active.btn-transparent a,.btn-border-neutral-color.active.btn-transparent a,.btn-border-neutral-color.is-active.btn-transparent a,.palette-primary .btn-border-neutral-color.button-primary:active.btn-transparent a,.palette-primary .btn-border-neutral-color.btn-transparent.button-primary:active a,.palette-primary .woocommerce .btn-border-neutral-color.btn-transparent.button:active a,.palette-primary .btn-border-neutral-color.button-primary.active.btn-transparent a,.palette-primary .btn-border-neutral-color.active.btn-transparent.button-primary a,.palette-primary .woocommerce .btn-border-neutral-color.active.btn-transparent.button a,.palette-primary .btn-border-neutral-color.button-primary.is-active.btn-transparent a,.palette-primary .btn-border-neutral-color.is-active.btn-transparent.button-primary a,.palette-primary .woocommerce .btn-border-neutral-color.is-active.btn-transparent.button a,.palette-primary .btn-border-neutral-color.button-secondary:active.btn-transparent a,.palette-primary .btn-border-neutral-color.btn-transparent.button-secondary:active a,.palette-primary .woocommerce .btn-border-neutral-color.btn-transparent.alt.button:active a,.palette-primary .btn-border-neutral-color.button-secondary.active.btn-transparent a,.palette-primary .btn-border-neutral-color.active.btn-transparent.button-secondary a,.palette-primary .woocommerce .btn-border-neutral-color.active.btn-transparent.alt.button a,.palette-primary .btn-border-neutral-color.button-secondary.is-active.btn-transparent a,.palette-primary .btn-border-neutral-color.is-active.btn-transparent.button-secondary a,.palette-primary .woocommerce .btn-border-neutral-color.is-active.btn-transparent.alt.button a,.btn-border-neutral-color-flat:active.btn-transparent a,.btn-border-neutral-color-flat.active.btn-transparent a,.btn-border-neutral-color-flat.is-active.btn-transparent a{color:var(--color-neutral-text-contrast)}.palette-primary .color1-background-alpha{background-color:rgba(67, 146, 241, 0.7)}.palette-primary .color2-background-alpha{background-color:rgba(1, 31, 63, 0.7)}.palette-primary .color3-background-alpha{background-color:rgba(220, 235, 247, 0.7)}.palette-primary .color4-background-alpha{background-color:rgba(249, 249, 249, 0.7)}.palette-primary .color5-background-alpha{background-color:rgba(1, 31, 63, 0.7)}.palette-primary .boldgrid-shortcode .bgc-single-article{background-color:#dcebf7;color:#333333}.palette-primary .bgc-single-image .date{background-color:rgba(67, 146, 241, 0.7);color:#ffffff}.palette-primary .bgc-single-image .image-opacity{background-color:rgba(1, 31, 63, 0.3)}\";s:22:\"boldgrid_palette_class\";s:15:\"palette-primary\";s:13:\"bgtfw_version\";s:6:\"2.12.0\";s:20:\"force_scss_recompile\";a:2:{s:6:\"active\";b:0;s:7:\"staging\";b:1;}s:18:\"custom_css_post_id\";i:-1;s:19:\"bgtfw_header_border\";a:4:{s:3:\"css\";s:60:\".site-header header{border: 0;border-color:var(--color-3);;}\";s:5:\"media\";s:207:\"{\"base\":{\"unit\":\"px\",\"slidersLinked\":false,\"values\":{\"top\":0,\"right\":0,\"bottom\":5,\"left\":0},\"css\":\".site-header header{border: 0;border-color:var(--color-3);;}\",\"type\":\"\",\"color\":\"color-3:rgb(234,235,237)\"}}\";s:2:\"ID\";i:0;s:6:\"filter\";s:3:\"raw\";}s:21:\"bgtfw_pages_container\";s:0:\"\";s:25:\"hide_boldgrid_attribution\";b:0;s:25:\"bgtfw_headings_typography\";a:7:{s:11:\"font-family\";s:15:\"Julius Sans One\";s:11:\"line-height\";s:3:\"1.1\";s:14:\"text-transform\";s:9:\"uppercase\";s:7:\"variant\";s:7:\"regular\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";i:400;s:10:\"font-style\";s:6:\"normal\";}s:24:\"bgtfw_headings_font_size\";s:2:\"19\";s:21:\"bgtfw_body_typography\";a:8:{s:11:\"font-family\";s:9:\"Open Sans\";s:9:\"font-size\";s:4:\"12px\";s:11:\"line-height\";s:3:\"1.6\";s:14:\"text-transform\";s:4:\"none\";s:7:\"variant\";s:7:\"regular\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";i:400;s:10:\"font-style\";s:6:\"normal\";}s:27:\"bgtfw_site_title_typography\";a:8:{s:11:\"font-family\";s:15:\"Julius Sans One\";s:9:\"font-size\";s:4:\"35px\";s:14:\"text-transform\";s:9:\"uppercase\";s:11:\"line-height\";s:3:\"1.1\";s:7:\"variant\";s:7:\"regular\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";i:400;s:10:\"font-style\";s:6:\"normal\";}s:12:\"sidebar_meta\";a:9:{s:8:\"header-1\";a:3:{s:16:\"background_color\";s:30:\"color-neutral:rgb(249,249,249)\";s:14:\"headings_color\";s:20:\"color-2:rgb(1,31,63)\";s:11:\"links_color\";s:23:\"color-1:rgb(67,146,241)\";}s:8:\"header-2\";a:3:{s:16:\"background_color\";s:30:\"color-neutral:rgb(249,249,249)\";s:14:\"headings_color\";s:20:\"color-2:rgb(1,31,63)\";s:11:\"links_color\";s:23:\"color-1:rgb(67,146,241)\";}s:8:\"header-3\";a:3:{s:16:\"background_color\";s:30:\"color-neutral:rgb(249,249,249)\";s:14:\"headings_color\";s:20:\"color-2:rgb(1,31,63)\";s:11:\"links_color\";s:23:\"color-1:rgb(67,146,241)\";}s:8:\"header-4\";a:3:{s:16:\"background_color\";s:30:\"color-neutral:rgb(249,249,249)\";s:14:\"headings_color\";s:20:\"color-2:rgb(1,31,63)\";s:11:\"links_color\";s:23:\"color-1:rgb(67,146,241)\";}s:8:\"footer-1\";a:3:{s:16:\"background_color\";s:20:\"color-2:rgb(1,31,63)\";s:14:\"headings_color\";s:23:\"color-1:rgb(67,146,241)\";s:11:\"links_color\";s:24:\"color-4:rgb(249,249,249)\";}s:8:\"footer-2\";a:3:{s:16:\"background_color\";s:20:\"color-2:rgb(1,31,63)\";s:14:\"headings_color\";s:23:\"color-1:rgb(67,146,241)\";s:11:\"links_color\";s:24:\"color-4:rgb(249,249,249)\";}s:8:\"footer-3\";a:3:{s:16:\"background_color\";s:20:\"color-2:rgb(1,31,63)\";s:14:\"headings_color\";s:23:\"color-1:rgb(67,146,241)\";s:11:\"links_color\";s:24:\"color-4:rgb(249,249,249)\";}s:8:\"footer-4\";a:3:{s:16:\"background_color\";s:20:\"color-2:rgb(1,31,63)\";s:14:\"headings_color\";s:23:\"color-1:rgb(67,146,241)\";s:11:\"links_color\";s:24:\"color-4:rgb(249,249,249)\";}s:15:\"primary-sidebar\";a:3:{s:16:\"background_color\";s:30:\"color-neutral:rgb(249,249,249)\";s:14:\"headings_color\";s:20:\"color-2:rgb(1,31,63)\";s:11:\"links_color\";s:23:\"color-1:rgb(67,146,241)\";}}s:25:\"boldgrid_background_color\";s:30:\"color-neutral:rgb(249,249,249)\";s:30:\"bgtfw_background_overlay_color\";s:23:\"color-1:rgb(67,146,241)\";s:25:\"bgtfw_header_border_color\";s:24:\"color-3:rgb(220,235,247)\";s:25:\"bgtfw_footer_border_color\";s:23:\"color-1:rgb(67,146,241)\";s:27:\"bgtfw_posts_tags_link_color\";s:23:\"color-1:rgb(67,146,241)\";s:27:\"bgtfw_posts_cats_link_color\";s:23:\"color-1:rgb(67,146,241)\";s:33:\"bgtfw_posts_navigation_link_color\";s:23:\"color-1:rgb(67,146,241)\";s:20:\"bgtfw_headings_color\";s:20:\"color-2:rgb(1,31,63)\";s:19:\"bgtfw_tagline_color\";s:24:\"color-4:rgb(249,249,249)\";s:18:\"bgtfw_header_color\";s:20:\"color-5:rgb(1,31,63)\";s:22:\"bgtfw_site_title_color\";s:24:\"color-4:rgb(249,249,249)\";s:35:\"bgtfw_global_title_background_color\";s:30:\"color-neutral:rgb(249,249,249)\";s:24:\"bgtfw_global_title_color\";s:20:\"color-2:rgb(1,31,63)\";s:21:\"bgtfw_body_link_color\";s:23:\"color-1:rgb(67,146,241)\";s:26:\"bgtfw_header_overlay_color\";s:23:\"color-1:rgb(67,146,241)\";s:18:\"bgtfw_footer_color\";s:20:\"color-5:rgb(1,31,63)\";s:18:\"bgtfw_footer_links\";s:23:\"color-1:rgb(67,146,241)\";s:31:\"bgtfw_menu_hamburger_main_color\";s:23:\"color-1:rgb(67,146,241)\";s:28:\"bgtfw_menu_border_color_main\";s:24:\"color-3:rgb(220,235,247)\";s:34:\"bgtfw_menu_items_border_color_main\";s:24:\"color-3:rgb(220,235,247)\";s:33:\"bgtfw_menu_items_hover_color_main\";s:23:\"color-1:rgb(67,146,241)\";s:38:\"bgtfw_menu_items_hover_background_main\";s:24:\"color-3:rgb(220,235,247)\";s:32:\"bgtfw_menu_items_link_color_main\";s:24:\"color-4:rgb(249,249,249)\";s:39:\"bgtfw_menu_items_active_link_color_main\";s:23:\"color-1:rgb(67,146,241)\";s:46:\"bgtfw_menu_items_active_link_border_color_main\";s:24:\"color-3:rgb(220,235,247)\";s:23:\"bgtfw_blog_border_color\";s:23:\"color-1:rgb(67,146,241)\";s:34:\"bgtfw_blog_header_background_color\";s:20:\"color-2:rgb(1,31,63)\";s:32:\"bgtfw_blog_post_background_color\";s:30:\"color-neutral:rgb(249,249,249)\";s:34:\"bgtfw_blog_post_header_title_color\";s:30:\"color-neutral:rgb(249,249,249)\";s:38:\"bgtfw_blog_post_header_date_link_color\";s:23:\"color-1:rgb(67,146,241)\";s:40:\"bgtfw_blog_post_header_byline_link_color\";s:23:\"color-1:rgb(67,146,241)\";s:31:\"bgtfw_blog_post_tags_link_color\";s:23:\"color-1:rgb(67,146,241)\";s:31:\"bgtfw_blog_post_cats_link_color\";s:23:\"color-1:rgb(67,146,241)\";s:35:\"bgtfw_blog_post_comments_link_color\";s:23:\"color-1:rgb(67,146,241)\";s:35:\"bgtfw_blog_post_readmore_link_color\";s:23:\"color-1:rgb(67,146,241)\";s:34:\"bgtfw_menu_items_link_color_social\";s:24:\"color-4:rgb(249,249,249)\";s:35:\"bgtfw_menu_items_hover_color_social\";s:24:\"color-3:rgb(220,235,247)\";s:41:\"bgtfw_menu_items_active_link_color_social\";s:23:\"color-1:rgb(67,146,241)\";s:36:\"bgtfw_menu_hamburger_secondary_color\";s:23:\"color-1:rgb(67,146,241)\";s:35:\"bgtfw_menu_hamburger_tertiary_color\";s:23:\"color-1:rgb(67,146,241)\";s:37:\"bgtfw_menu_hamburger_quaternary_color\";s:23:\"color-1:rgb(67,146,241)\";s:33:\"bgtfw_menu_hamburger_social_color\";s:23:\"color-1:rgb(67,146,241)\";s:38:\"bgtfw_menu_hamburger_sticky-main_color\";s:23:\"color-1:rgb(67,146,241)\";s:43:\"bgtfw_menu_hamburger_sticky-secondary_color\";s:23:\"color-1:rgb(67,146,241)\";s:42:\"bgtfw_menu_hamburger_sticky-tertiary_color\";s:23:\"color-1:rgb(67,146,241)\";s:44:\"bgtfw_menu_hamburger_sticky-quaternary_color\";s:23:\"color-1:rgb(67,146,241)\";s:40:\"bgtfw_menu_hamburger_sticky-social_color\";s:23:\"color-1:rgb(67,146,241)\";s:33:\"bgtfw_menu_border_color_secondary\";s:24:\"color-3:rgb(220,235,247)\";s:32:\"bgtfw_menu_border_color_tertiary\";s:24:\"color-3:rgb(220,235,247)\";s:34:\"bgtfw_menu_border_color_quaternary\";s:24:\"color-3:rgb(220,235,247)\";s:30:\"bgtfw_menu_border_color_social\";s:24:\"color-3:rgb(220,235,247)\";s:35:\"bgtfw_menu_border_color_sticky-main\";s:24:\"color-3:rgb(220,235,247)\";s:40:\"bgtfw_menu_border_color_sticky-secondary\";s:24:\"color-3:rgb(220,235,247)\";s:39:\"bgtfw_menu_border_color_sticky-tertiary\";s:24:\"color-3:rgb(220,235,247)\";s:41:\"bgtfw_menu_border_color_sticky-quaternary\";s:24:\"color-3:rgb(220,235,247)\";s:37:\"bgtfw_menu_border_color_sticky-social\";s:24:\"color-3:rgb(220,235,247)\";s:39:\"bgtfw_menu_items_border_color_secondary\";s:24:\"color-3:rgb(220,235,247)\";s:38:\"bgtfw_menu_items_border_color_tertiary\";s:24:\"color-3:rgb(220,235,247)\";s:40:\"bgtfw_menu_items_border_color_quaternary\";s:24:\"color-3:rgb(220,235,247)\";s:36:\"bgtfw_menu_items_border_color_social\";s:24:\"color-3:rgb(220,235,247)\";s:41:\"bgtfw_menu_items_border_color_sticky-main\";s:24:\"color-3:rgb(220,235,247)\";s:46:\"bgtfw_menu_items_border_color_sticky-secondary\";s:24:\"color-3:rgb(220,235,247)\";s:45:\"bgtfw_menu_items_border_color_sticky-tertiary\";s:24:\"color-3:rgb(220,235,247)\";s:47:\"bgtfw_menu_items_border_color_sticky-quaternary\";s:24:\"color-3:rgb(220,235,247)\";s:43:\"bgtfw_menu_items_border_color_sticky-social\";s:24:\"color-3:rgb(220,235,247)\";s:38:\"bgtfw_menu_items_hover_color_secondary\";s:23:\"color-1:rgb(67,146,241)\";s:37:\"bgtfw_menu_items_hover_color_tertiary\";s:23:\"color-1:rgb(67,146,241)\";s:39:\"bgtfw_menu_items_hover_color_quaternary\";s:23:\"color-1:rgb(67,146,241)\";s:40:\"bgtfw_menu_items_hover_color_sticky-main\";s:23:\"color-1:rgb(67,146,241)\";s:45:\"bgtfw_menu_items_hover_color_sticky-secondary\";s:23:\"color-1:rgb(67,146,241)\";s:44:\"bgtfw_menu_items_hover_color_sticky-tertiary\";s:23:\"color-1:rgb(67,146,241)\";s:46:\"bgtfw_menu_items_hover_color_sticky-quaternary\";s:23:\"color-1:rgb(67,146,241)\";s:42:\"bgtfw_menu_items_hover_color_sticky-social\";s:23:\"color-1:rgb(67,146,241)\";s:43:\"bgtfw_menu_items_hover_background_secondary\";s:24:\"color-3:rgb(220,235,247)\";s:42:\"bgtfw_menu_items_hover_background_tertiary\";s:24:\"color-3:rgb(220,235,247)\";s:44:\"bgtfw_menu_items_hover_background_quaternary\";s:24:\"color-3:rgb(220,235,247)\";s:40:\"bgtfw_menu_items_hover_background_social\";s:24:\"color-3:rgb(220,235,247)\";s:45:\"bgtfw_menu_items_hover_background_sticky-main\";s:24:\"color-3:rgb(220,235,247)\";s:50:\"bgtfw_menu_items_hover_background_sticky-secondary\";s:24:\"color-3:rgb(220,235,247)\";s:49:\"bgtfw_menu_items_hover_background_sticky-tertiary\";s:24:\"color-3:rgb(220,235,247)\";s:51:\"bgtfw_menu_items_hover_background_sticky-quaternary\";s:24:\"color-3:rgb(220,235,247)\";s:47:\"bgtfw_menu_items_hover_background_sticky-social\";s:24:\"color-3:rgb(220,235,247)\";s:37:\"bgtfw_menu_items_link_color_secondary\";s:20:\"color-2:rgb(1,31,63)\";s:36:\"bgtfw_menu_items_link_color_tertiary\";s:20:\"color-2:rgb(1,31,63)\";s:38:\"bgtfw_menu_items_link_color_quaternary\";s:20:\"color-2:rgb(1,31,63)\";s:39:\"bgtfw_menu_items_link_color_sticky-main\";s:30:\"color-neutral:rgb(249,249,249)\";s:44:\"bgtfw_menu_items_link_color_sticky-secondary\";s:20:\"color-2:rgb(1,31,63)\";s:43:\"bgtfw_menu_items_link_color_sticky-tertiary\";s:20:\"color-2:rgb(1,31,63)\";s:45:\"bgtfw_menu_items_link_color_sticky-quaternary\";s:20:\"color-2:rgb(1,31,63)\";s:41:\"bgtfw_menu_items_link_color_sticky-social\";s:30:\"color-neutral:rgb(249,249,249)\";s:44:\"bgtfw_menu_items_active_link_color_secondary\";s:23:\"color-1:rgb(67,146,241)\";s:43:\"bgtfw_menu_items_active_link_color_tertiary\";s:23:\"color-1:rgb(67,146,241)\";s:45:\"bgtfw_menu_items_active_link_color_quaternary\";s:23:\"color-1:rgb(67,146,241)\";s:46:\"bgtfw_menu_items_active_link_color_sticky-main\";s:23:\"color-1:rgb(67,146,241)\";s:51:\"bgtfw_menu_items_active_link_color_sticky-secondary\";s:23:\"color-1:rgb(67,146,241)\";s:50:\"bgtfw_menu_items_active_link_color_sticky-tertiary\";s:23:\"color-1:rgb(67,146,241)\";s:52:\"bgtfw_menu_items_active_link_color_sticky-quaternary\";s:23:\"color-1:rgb(67,146,241)\";s:48:\"bgtfw_menu_items_active_link_color_sticky-social\";s:23:\"color-1:rgb(67,146,241)\";s:51:\"bgtfw_menu_items_active_link_border_color_secondary\";s:24:\"color-3:rgb(220,235,247)\";s:50:\"bgtfw_menu_items_active_link_border_color_tertiary\";s:24:\"color-3:rgb(220,235,247)\";s:52:\"bgtfw_menu_items_active_link_border_color_quaternary\";s:24:\"color-3:rgb(220,235,247)\";s:48:\"bgtfw_menu_items_active_link_border_color_social\";s:24:\"color-3:rgb(220,235,247)\";s:53:\"bgtfw_menu_items_active_link_border_color_sticky-main\";s:24:\"color-3:rgb(220,235,247)\";s:58:\"bgtfw_menu_items_active_link_border_color_sticky-secondary\";s:24:\"color-3:rgb(220,235,247)\";s:57:\"bgtfw_menu_items_active_link_border_color_sticky-tertiary\";s:24:\"color-3:rgb(220,235,247)\";s:59:\"bgtfw_menu_items_active_link_border_color_sticky-quaternary\";s:24:\"color-3:rgb(220,235,247)\";s:55:\"bgtfw_menu_items_active_link_border_color_sticky-social\";s:24:\"color-3:rgb(220,235,247)\";s:34:\"bgtfw_menu_items_hover_effect_main\";s:25:\"hvr-underline-from-center\";s:26:\"bgtfw_menu_typography_main\";a:8:{s:11:\"font-family\";s:9:\"Open Sans\";s:9:\"font-size\";s:4:\"14px\";s:11:\"line-height\";s:3:\"1.5\";s:14:\"text-transform\";s:9:\"uppercase\";s:7:\"variant\";s:7:\"regular\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";i:400;s:10:\"font-style\";s:6:\"normal\";}s:19:\"bgtfw_footer_layout\";a:1:{i:0;a:2:{s:9:\"container\";s:9:\"container\";s:5:\"items\";a:1:{i:0;a:4:{s:4:\"type\";s:34:\"boldgrid_display_attribution_links\";s:3:\"key\";s:11:\"attribution\";s:5:\"align\";s:1:\"c\";s:3:\"uid\";s:3:\"f44\";}}}}s:19:\"bgtfw_header_layout\";a:2:{i:0;a:2:{s:9:\"container\";s:9:\"container\";s:5:\"items\";a:2:{i:0;a:5:{s:4:\"type\";s:22:\"boldgrid_site_identity\";s:3:\"key\";s:8:\"branding\";s:5:\"align\";s:1:\"w\";s:7:\"display\";a:3:{i:0;a:3:{s:8:\"selector\";s:17:\".custom-logo-link\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:4:\"Logo\";}i:1;a:3:{s:8:\"selector\";s:11:\".site-title\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:5:\"Title\";}i:2;a:3:{s:8:\"selector\";s:17:\".site-description\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:7:\"Tagline\";}}s:3:\"uid\";s:3:\"h49\";}i:1;a:4:{s:4:\"type\";s:20:\"boldgrid_menu_social\";s:3:\"key\";s:4:\"menu\";s:5:\"align\";s:1:\"e\";s:3:\"uid\";s:3:\"h50\";}}}i:1;a:2:{s:9:\"container\";s:9:\"container\";s:5:\"items\";a:1:{i:0;a:4:{s:3:\"key\";s:4:\"menu\";s:4:\"type\";s:18:\"boldgrid_menu_main\";s:5:\"align\";s:1:\"e\";s:3:\"uid\";s:5:\"h2085\";}}}}s:29:\"bgtfw_blog_post_readmore_type\";s:20:\"btn button-secondary\";s:26:\"bgtfw_blog_posts_container\";s:0:\"\";s:24:\"bgtfw_tagline_typography\";a:8:{s:11:\"font-family\";s:9:\"Open Sans\";s:9:\"font-size\";s:4:\"18px\";s:14:\"text-transform\";s:4:\"none\";s:11:\"line-height\";s:3:\"1.1\";s:7:\"variant\";s:7:\"regular\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";i:400;s:10:\"font-style\";s:6:\"normal\";}s:20:\"bgtfw_header_padding\";a:4:{s:5:\"media\";s:193:\"{\"base\":{\"unit\":\"em\",\"slidersLinked\":false,\"values\":{\"top\":1,\"right\":0,\"bottom\":0,\"left\":0},\"css\":\".site-header header{padding-top:1em;padding-right:0em;padding-bottom:0em;padding-left:0em;}\"}}\";s:3:\"css\";s:91:\".site-header header{padding-top:1em;padding-right:0em;padding-bottom:0em;padding-left:0em;}\";s:2:\"ID\";i:0;s:6:\"filter\";s:3:\"raw\";}s:36:\"bgtfw_menu_items_hover_effect_social\";s:0:\"\";s:37:\"bgtfw_blog_post_header_title_position\";s:6:\"center\";s:41:\"bgtfw_pages_blog_blog_page_layout_content\";s:7:\"content\";s:36:\"bgtfw_blog_post_header_meta_position\";s:6:\"center\";s:37:\"bgtfw_blog_post_header_byline_display\";s:4:\"none\";s:35:\"bgtfw_blog_post_header_meta_display\";s:5:\"block\";s:34:\"bgtfw_blog_post_header_meta_format\";s:7:\"timeago\";s:29:\"bgtfw_header_layout_col_width\";a:4:{s:3:\"css\";s:510:\"@media only screen and ( max-width: 767px ){@media only screen and ( min-width: 1200px ){.site-header header row{width:12col;width:12col;width:12col;}}}@media only screen and (max-width: 991px) and (min-width: 768px){.site-header header row{width:12col;width:12col;width:12col;}}@media only screen and (max-width: 1199px) and (min-width: 992px){.site-header header row{width:8col;width:4col;width:12col;}}@media only screen and ( min-width: 1200px ){.site-header header row{width:8col;width:4col;width:12col;}}\";s:5:\"media\";s:886:\"{\"large\":{\"unit\":\"col\",\"slidersLinked\":false,\"values\":{\"h49\":8,\"h50\":4,\"h2085\":12},\"css\":\"@media only screen and ( min-width: 1200px ){.site-header header row{width:8col;width:4col;width:12col;}}\"},\"desktop\":{\"unit\":\"col\",\"slidersLinked\":false,\"values\":{\"h49\":8,\"h50\":4,\"h2085\":12},\"css\":\"@media only screen and (max-width: 1199px) and (min-width: 992px){.site-header header row{width:8col;width:4col;width:12col;}}\"},\"phone\":{\"unit\":\"col\",\"values\":{\"h49\":12,\"h50\":12,\"h2085\":12},\"css\":\"@media only screen and ( max-width: 767px ){@media only screen and ( min-width: 1200px ){.site-header header row{width:12col;width:12col;width:12col;}}}\",\"slidersLinked\":false},\"tablet\":{\"unit\":\"col\",\"slidersLinked\":false,\"values\":{\"h49\":12,\"h50\":12,\"h2085\":12},\"css\":\"@media only screen and (max-width: 991px) and (min-width: 768px){.site-header header row{width:12col;width:12col;width:12col;}}\"}}\";s:2:\"ID\";i:0;s:6:\"filter\";s:3:\"raw\";}s:26:\"bgtfw_body_link_decoration\";s:4:\"none\";s:27:\"bgtfw_header_layout_default\";a:2:{i:0;a:2:{s:9:\"container\";s:9:\"container\";s:5:\"items\";a:2:{i:0;a:5:{s:4:\"type\";s:22:\"boldgrid_site_identity\";s:3:\"key\";s:8:\"branding\";s:5:\"align\";s:1:\"w\";s:7:\"display\";a:3:{i:0;a:3:{s:8:\"selector\";s:17:\".custom-logo-link\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:4:\"Logo\";}i:1;a:3:{s:8:\"selector\";s:11:\".site-title\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:5:\"Title\";}i:2;a:3:{s:8:\"selector\";s:17:\".site-description\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:7:\"Tagline\";}}s:3:\"uid\";s:3:\"h49\";}i:1;a:4:{s:4:\"type\";s:20:\"boldgrid_menu_social\";s:3:\"key\";s:4:\"menu\";s:5:\"align\";s:1:\"e\";s:3:\"uid\";s:3:\"h50\";}}}i:1;a:2:{s:9:\"container\";s:9:\"container\";s:5:\"items\";a:1:{i:0;a:4:{s:3:\"key\";s:4:\"menu\";s:4:\"type\";s:18:\"boldgrid_menu_main\";s:5:\"align\";s:1:\"e\";s:3:\"uid\";s:5:\"h2085\";}}}}s:28:\"bgtfw_header_preset_branding\";a:2:{i:0;s:4:\"logo\";i:1;s:5:\"title\";}s:34:\"bgtfw_sticky_header_layout_default\";a:1:{i:0;a:2:{s:9:\"container\";s:9:\"container\";s:5:\"items\";a:2:{i:0;a:5:{s:4:\"type\";s:22:\"boldgrid_site_identity\";s:3:\"key\";s:8:\"branding\";s:5:\"align\";s:1:\"w\";s:3:\"uid\";s:3:\"s47\";s:7:\"display\";a:3:{i:0;a:3:{s:8:\"selector\";s:17:\".custom-logo-link\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:4:\"Logo\";}i:1;a:3:{s:8:\"selector\";s:11:\".site-title\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:5:\"Title\";}i:2;a:3:{s:8:\"selector\";s:17:\".site-description\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:7:\"Tagline\";}}}i:1;a:4:{s:4:\"type\";s:25:\"boldgrid_menu_sticky-main\";s:3:\"key\";s:4:\"menu\";s:5:\"align\";s:1:\"e\";s:3:\"uid\";s:3:\"s48\";}}}}s:26:\"bgtfw_header_layout_custom\";a:2:{i:0;a:2:{s:9:\"container\";s:9:\"container\";s:5:\"items\";a:2:{i:0;a:5:{s:4:\"type\";s:22:\"boldgrid_site_identity\";s:3:\"key\";s:8:\"branding\";s:5:\"align\";s:1:\"w\";s:7:\"display\";a:3:{i:0;a:3:{s:8:\"selector\";s:17:\".custom-logo-link\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:4:\"Logo\";}i:1;a:3:{s:8:\"selector\";s:11:\".site-title\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:5:\"Title\";}i:2;a:3:{s:8:\"selector\";s:17:\".site-description\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:7:\"Tagline\";}}s:3:\"uid\";s:3:\"h49\";}i:1;a:4:{s:4:\"type\";s:20:\"boldgrid_menu_social\";s:3:\"key\";s:4:\"menu\";s:5:\"align\";s:1:\"e\";s:3:\"uid\";s:3:\"h50\";}}}i:1;a:2:{s:9:\"container\";s:9:\"container\";s:5:\"items\";a:1:{i:0;a:4:{s:3:\"key\";s:4:\"menu\";s:4:\"type\";s:18:\"boldgrid_menu_main\";s:5:\"align\";s:1:\"e\";s:3:\"uid\";s:5:\"h2085\";}}}}s:33:\"bgtfw_sticky_header_layout_custom\";a:1:{i:0;a:2:{s:9:\"container\";s:9:\"container\";s:5:\"items\";a:2:{i:0;a:5:{s:4:\"type\";s:22:\"boldgrid_site_identity\";s:3:\"key\";s:8:\"branding\";s:5:\"align\";s:1:\"w\";s:3:\"uid\";s:3:\"s47\";s:7:\"display\";a:3:{i:0;a:3:{s:8:\"selector\";s:17:\".custom-logo-link\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:4:\"Logo\";}i:1;a:3:{s:8:\"selector\";s:11:\".site-title\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:5:\"Title\";}i:2;a:3:{s:8:\"selector\";s:17:\".site-description\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:7:\"Tagline\";}}}i:1;a:4:{s:4:\"type\";s:25:\"boldgrid_menu_sticky-main\";s:3:\"key\";s:4:\"menu\";s:5:\"align\";s:1:\"e\";s:3:\"uid\";s:3:\"s48\";}}}}s:24:\"bgtfw_header_layout_lbrm\";a:1:{i:0;a:2:{s:9:\"container\";s:9:\"container\";s:5:\"items\";a:2:{i:0;a:5:{s:4:\"type\";s:22:\"boldgrid_site_identity\";s:3:\"key\";s:8:\"branding\";s:5:\"align\";s:1:\"w\";s:7:\"display\";a:3:{i:0;a:3:{s:8:\"selector\";s:12:\".custom-logo\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:4:\"Logo\";}i:1;a:3:{s:8:\"selector\";s:11:\".site-title\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:5:\"Title\";}i:2;a:3:{s:8:\"selector\";s:17:\".site-description\";s:7:\"display\";s:4:\"hide\";s:5:\"title\";s:7:\"Tagline\";}}s:3:\"uid\";s:3:\"h47\";}i:1;a:4:{s:4:\"type\";s:18:\"boldgrid_menu_main\";s:3:\"key\";s:4:\"menu\";s:5:\"align\";s:1:\"e\";s:3:\"uid\";s:3:\"h48\";}}}}s:26:\"bgtfw_header_layout_lbcmrs\";a:1:{i:0;a:2:{s:9:\"container\";s:9:\"container\";s:5:\"items\";a:3:{i:0;a:5:{s:4:\"type\";s:22:\"boldgrid_site_identity\";s:3:\"key\";s:8:\"branding\";s:5:\"align\";s:1:\"w\";s:7:\"display\";a:3:{i:0;a:3:{s:8:\"selector\";s:12:\".custom-logo\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:4:\"Logo\";}i:1;a:3:{s:8:\"selector\";s:11:\".site-title\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:5:\"Title\";}i:2;a:3:{s:8:\"selector\";s:17:\".site-description\";s:7:\"display\";s:4:\"hide\";s:5:\"title\";s:7:\"Tagline\";}}s:3:\"uid\";s:3:\"h47\";}i:1;a:4:{s:4:\"type\";s:18:\"boldgrid_menu_main\";s:3:\"key\";s:4:\"menu\";s:5:\"align\";s:1:\"c\";s:3:\"uid\";s:3:\"h48\";}i:2;a:4:{s:3:\"key\";s:4:\"menu\";s:4:\"type\";s:20:\"boldgrid_menu_social\";s:5:\"align\";s:1:\"e\";s:3:\"uid\";s:4:\"h110\";}}}}s:24:\"bgtfw_header_layout_lmrb\";a:1:{i:0;a:2:{s:9:\"container\";s:9:\"container\";s:5:\"items\";a:2:{i:0;a:4:{s:4:\"type\";s:18:\"boldgrid_menu_main\";s:3:\"key\";s:4:\"menu\";s:5:\"align\";s:1:\"w\";s:3:\"uid\";s:3:\"h48\";}i:1;a:5:{s:4:\"type\";s:22:\"boldgrid_site_identity\";s:3:\"key\";s:8:\"branding\";s:5:\"align\";s:1:\"e\";s:7:\"display\";a:3:{i:0;a:3:{s:8:\"selector\";s:12:\".custom-logo\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:4:\"Logo\";}i:1;a:3:{s:8:\"selector\";s:11:\".site-title\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:5:\"Title\";}i:2;a:3:{s:8:\"selector\";s:17:\".site-description\";s:7:\"display\";s:4:\"hide\";s:5:\"title\";s:7:\"Tagline\";}}s:3:\"uid\";s:3:\"h47\";}}}}s:26:\"bgtfw_header_layout_lbrslm\";a:2:{i:0;a:2:{s:9:\"container\";s:9:\"container\";s:5:\"items\";a:2:{i:0;a:5:{s:4:\"type\";s:22:\"boldgrid_site_identity\";s:3:\"key\";s:8:\"branding\";s:5:\"align\";s:1:\"w\";s:7:\"display\";a:3:{i:0;a:3:{s:8:\"selector\";s:12:\".custom-logo\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:4:\"Logo\";}i:1;a:3:{s:8:\"selector\";s:11:\".site-title\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:5:\"Title\";}i:2;a:3:{s:8:\"selector\";s:17:\".site-description\";s:7:\"display\";s:4:\"hide\";s:5:\"title\";s:7:\"Tagline\";}}s:3:\"uid\";s:3:\"h47\";}i:1;a:4:{s:3:\"key\";s:4:\"menu\";s:4:\"type\";s:20:\"boldgrid_menu_social\";s:5:\"align\";s:1:\"e\";s:3:\"uid\";s:4:\"h110\";}}}i:1;a:2:{s:9:\"container\";s:9:\"container\";s:5:\"items\";a:1:{i:0;a:4:{s:3:\"key\";s:4:\"menu\";s:4:\"type\";s:18:\"boldgrid_menu_main\";s:5:\"align\";s:1:\"w\";s:3:\"uid\";s:4:\"h105\";}}}}s:26:\"bgtfw_header_layout_lbrscm\";a:2:{i:0;a:2:{s:9:\"container\";s:9:\"container\";s:5:\"items\";a:2:{i:0;a:5:{s:4:\"type\";s:22:\"boldgrid_site_identity\";s:3:\"key\";s:8:\"branding\";s:5:\"align\";s:1:\"w\";s:7:\"display\";a:3:{i:0;a:3:{s:8:\"selector\";s:12:\".custom-logo\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:4:\"Logo\";}i:1;a:3:{s:8:\"selector\";s:11:\".site-title\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:5:\"Title\";}i:2;a:3:{s:8:\"selector\";s:17:\".site-description\";s:7:\"display\";s:4:\"hide\";s:5:\"title\";s:7:\"Tagline\";}}s:3:\"uid\";s:3:\"h47\";}i:1;a:4:{s:3:\"key\";s:4:\"menu\";s:4:\"type\";s:20:\"boldgrid_menu_social\";s:5:\"align\";s:1:\"e\";s:3:\"uid\";s:4:\"h110\";}}}i:1;a:2:{s:9:\"container\";s:9:\"container\";s:5:\"items\";a:1:{i:0;a:4:{s:3:\"key\";s:4:\"menu\";s:4:\"type\";s:18:\"boldgrid_menu_main\";s:5:\"align\";s:1:\"c\";s:3:\"uid\";s:4:\"h105\";}}}}s:26:\"bgtfw_header_layout_lbrsrm\";a:2:{i:0;a:2:{s:9:\"container\";s:9:\"container\";s:5:\"items\";a:2:{i:0;a:5:{s:4:\"type\";s:22:\"boldgrid_site_identity\";s:3:\"key\";s:8:\"branding\";s:5:\"align\";s:1:\"w\";s:7:\"display\";a:3:{i:0;a:3:{s:8:\"selector\";s:12:\".custom-logo\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:4:\"Logo\";}i:1;a:3:{s:8:\"selector\";s:11:\".site-title\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:5:\"Title\";}i:2;a:3:{s:8:\"selector\";s:17:\".site-description\";s:7:\"display\";s:4:\"hide\";s:5:\"title\";s:7:\"Tagline\";}}s:3:\"uid\";s:3:\"h47\";}i:1;a:4:{s:3:\"key\";s:4:\"menu\";s:4:\"type\";s:20:\"boldgrid_menu_social\";s:5:\"align\";s:1:\"e\";s:3:\"uid\";s:4:\"h110\";}}}i:1;a:2:{s:9:\"container\";s:9:\"container\";s:5:\"items\";a:1:{i:0;a:4:{s:3:\"key\";s:4:\"menu\";s:4:\"type\";s:18:\"boldgrid_menu_main\";s:5:\"align\";s:1:\"e\";s:3:\"uid\";s:4:\"h105\";}}}}s:24:\"bgtfw_header_layout_cbcm\";a:2:{i:0;a:2:{s:9:\"container\";s:9:\"container\";s:5:\"items\";a:1:{i:0;a:5:{s:4:\"type\";s:22:\"boldgrid_site_identity\";s:3:\"key\";s:8:\"branding\";s:5:\"align\";s:1:\"c\";s:7:\"display\";a:3:{i:0;a:3:{s:8:\"selector\";s:12:\".custom-logo\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:4:\"Logo\";}i:1;a:3:{s:8:\"selector\";s:11:\".site-title\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:5:\"Title\";}i:2;a:3:{s:8:\"selector\";s:17:\".site-description\";s:7:\"display\";s:4:\"hide\";s:5:\"title\";s:7:\"Tagline\";}}s:3:\"uid\";s:3:\"h47\";}}}i:1;a:2:{s:9:\"container\";s:9:\"container\";s:5:\"items\";a:1:{i:0;a:4:{s:3:\"key\";s:4:\"menu\";s:4:\"type\";s:18:\"boldgrid_menu_main\";s:5:\"align\";s:1:\"c\";s:3:\"uid\";s:4:\"h105\";}}}}s:24:\"bgtfw_header_layout_cmcb\";a:2:{i:0;a:2:{s:9:\"container\";s:9:\"container\";s:5:\"items\";a:1:{i:0;a:4:{s:3:\"key\";s:4:\"menu\";s:4:\"type\";s:18:\"boldgrid_menu_main\";s:5:\"align\";s:1:\"c\";s:3:\"uid\";s:4:\"h105\";}}}i:1;a:2:{s:9:\"container\";s:9:\"container\";s:5:\"items\";a:1:{i:0;a:5:{s:4:\"type\";s:22:\"boldgrid_site_identity\";s:3:\"key\";s:8:\"branding\";s:5:\"align\";s:1:\"c\";s:7:\"display\";a:3:{i:0;a:3:{s:8:\"selector\";s:12:\".custom-logo\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:4:\"Logo\";}i:1;a:3:{s:8:\"selector\";s:11:\".site-title\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:5:\"Title\";}i:2;a:3:{s:8:\"selector\";s:17:\".site-description\";s:7:\"display\";s:4:\"hide\";s:5:\"title\";s:7:\"Tagline\";}}s:3:\"uid\";s:3:\"h47\";}}}}s:26:\"bgtfw_header_layout_lshsbm\";a:3:{i:0;a:2:{s:9:\"container\";s:9:\"container\";s:5:\"items\";a:1:{i:0;a:4:{s:3:\"key\";s:4:\"menu\";s:4:\"type\";s:20:\"boldgrid_menu_social\";s:5:\"align\";s:1:\"w\";s:3:\"uid\";s:4:\"h264\";}}}i:1;a:2:{s:9:\"container\";s:9:\"container\";s:5:\"items\";a:1:{i:0;a:5:{s:3:\"key\";s:8:\"branding\";s:4:\"type\";s:22:\"boldgrid_site_identity\";s:7:\"display\";a:3:{i:0;a:3:{s:8:\"selector\";s:17:\".custom-logo-link\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:4:\"Logo\";}i:1;a:3:{s:8:\"selector\";s:11:\".site-title\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:5:\"Title\";}i:2;a:3:{s:8:\"selector\";s:17:\".site-description\";s:7:\"display\";s:4:\"hide\";s:5:\"title\";s:7:\"Tagline\";}}s:5:\"align\";s:1:\"w\";s:3:\"uid\";s:3:\"h47\";}}}i:2;a:2:{s:9:\"container\";s:9:\"container\";s:5:\"items\";a:1:{i:0;a:4:{s:3:\"key\";s:4:\"menu\";s:4:\"type\";s:18:\"boldgrid_menu_main\";s:5:\"align\";s:1:\"w\";s:3:\"uid\";s:4:\"h263\";}}}}s:31:\"bgtfw_sticky_header_layout_lbrm\";a:1:{i:0;a:2:{s:9:\"container\";s:9:\"container\";s:5:\"items\";a:2:{i:0;a:5:{s:4:\"type\";s:22:\"boldgrid_site_identity\";s:3:\"key\";s:8:\"branding\";s:5:\"align\";s:1:\"w\";s:7:\"display\";a:3:{i:0;a:3:{s:8:\"selector\";s:12:\".custom-logo\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:4:\"Logo\";}i:1;a:3:{s:8:\"selector\";s:11:\".site-title\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:5:\"Title\";}i:2;a:3:{s:8:\"selector\";s:17:\".site-description\";s:7:\"display\";s:4:\"hide\";s:5:\"title\";s:7:\"Tagline\";}}s:3:\"uid\";s:3:\"s47\";}i:1;a:4:{s:4:\"type\";s:25:\"boldgrid_menu_sticky-main\";s:3:\"key\";s:4:\"menu\";s:5:\"align\";s:1:\"e\";s:3:\"uid\";s:3:\"s48\";}}}}s:33:\"bgtfw_sticky_header_layout_lbcmrs\";a:1:{i:0;a:2:{s:9:\"container\";s:9:\"container\";s:5:\"items\";a:3:{i:0;a:5:{s:4:\"type\";s:22:\"boldgrid_site_identity\";s:3:\"key\";s:8:\"branding\";s:5:\"align\";s:1:\"w\";s:7:\"display\";a:3:{i:0;a:3:{s:8:\"selector\";s:12:\".custom-logo\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:4:\"Logo\";}i:1;a:3:{s:8:\"selector\";s:11:\".site-title\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:5:\"Title\";}i:2;a:3:{s:8:\"selector\";s:17:\".site-description\";s:7:\"display\";s:4:\"hide\";s:5:\"title\";s:7:\"Tagline\";}}s:3:\"uid\";s:3:\"s47\";}i:1;a:4:{s:4:\"type\";s:25:\"boldgrid_menu_sticky-main\";s:3:\"key\";s:4:\"menu\";s:5:\"align\";s:1:\"c\";s:3:\"uid\";s:3:\"s48\";}i:2;a:4:{s:3:\"key\";s:4:\"menu\";s:4:\"type\";s:27:\"boldgrid_menu_sticky-social\";s:5:\"align\";s:1:\"e\";s:3:\"uid\";s:4:\"s110\";}}}}s:31:\"bgtfw_sticky_header_layout_lmrb\";a:1:{i:0;a:2:{s:9:\"container\";s:9:\"container\";s:5:\"items\";a:2:{i:0;a:4:{s:4:\"type\";s:25:\"boldgrid_menu_sticky-main\";s:3:\"key\";s:4:\"menu\";s:5:\"align\";s:1:\"w\";s:3:\"uid\";s:3:\"s48\";}i:1;a:5:{s:4:\"type\";s:22:\"boldgrid_site_identity\";s:3:\"key\";s:8:\"branding\";s:5:\"align\";s:1:\"e\";s:7:\"display\";a:3:{i:0;a:3:{s:8:\"selector\";s:12:\".custom-logo\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:4:\"Logo\";}i:1;a:3:{s:8:\"selector\";s:11:\".site-title\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:5:\"Title\";}i:2;a:3:{s:8:\"selector\";s:17:\".site-description\";s:7:\"display\";s:4:\"hide\";s:5:\"title\";s:7:\"Tagline\";}}s:3:\"uid\";s:3:\"s47\";}}}}s:33:\"bgtfw_sticky_header_layout_lbrslm\";a:2:{i:0;a:2:{s:9:\"container\";s:9:\"container\";s:5:\"items\";a:2:{i:0;a:5:{s:4:\"type\";s:22:\"boldgrid_site_identity\";s:3:\"key\";s:8:\"branding\";s:5:\"align\";s:1:\"w\";s:7:\"display\";a:3:{i:0;a:3:{s:8:\"selector\";s:12:\".custom-logo\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:4:\"Logo\";}i:1;a:3:{s:8:\"selector\";s:11:\".site-title\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:5:\"Title\";}i:2;a:3:{s:8:\"selector\";s:17:\".site-description\";s:7:\"display\";s:4:\"hide\";s:5:\"title\";s:7:\"Tagline\";}}s:3:\"uid\";s:3:\"s47\";}i:1;a:4:{s:3:\"key\";s:4:\"menu\";s:4:\"type\";s:27:\"boldgrid_menu_sticky-social\";s:5:\"align\";s:1:\"e\";s:3:\"uid\";s:4:\"s110\";}}}i:1;a:2:{s:9:\"container\";s:9:\"container\";s:5:\"items\";a:1:{i:0;a:4:{s:3:\"key\";s:4:\"menu\";s:4:\"type\";s:25:\"boldgrid_menu_sticky-main\";s:5:\"align\";s:1:\"w\";s:3:\"uid\";s:4:\"s105\";}}}}s:33:\"bgtfw_sticky_header_layout_lbrscm\";a:2:{i:0;a:2:{s:9:\"container\";s:9:\"container\";s:5:\"items\";a:2:{i:0;a:5:{s:4:\"type\";s:22:\"boldgrid_site_identity\";s:3:\"key\";s:8:\"branding\";s:5:\"align\";s:1:\"w\";s:7:\"display\";a:3:{i:0;a:3:{s:8:\"selector\";s:12:\".custom-logo\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:4:\"Logo\";}i:1;a:3:{s:8:\"selector\";s:11:\".site-title\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:5:\"Title\";}i:2;a:3:{s:8:\"selector\";s:17:\".site-description\";s:7:\"display\";s:4:\"hide\";s:5:\"title\";s:7:\"Tagline\";}}s:3:\"uid\";s:3:\"s47\";}i:1;a:4:{s:3:\"key\";s:4:\"menu\";s:4:\"type\";s:27:\"boldgrid_menu_sticky-social\";s:5:\"align\";s:1:\"e\";s:3:\"uid\";s:4:\"s110\";}}}i:1;a:2:{s:9:\"container\";s:9:\"container\";s:5:\"items\";a:1:{i:0;a:4:{s:3:\"key\";s:4:\"menu\";s:4:\"type\";s:25:\"boldgrid_menu_sticky-main\";s:5:\"align\";s:1:\"c\";s:3:\"uid\";s:4:\"s105\";}}}}s:33:\"bgtfw_sticky_header_layout_lbrsrm\";a:2:{i:0;a:2:{s:9:\"container\";s:9:\"container\";s:5:\"items\";a:2:{i:0;a:5:{s:4:\"type\";s:22:\"boldgrid_site_identity\";s:3:\"key\";s:8:\"branding\";s:5:\"align\";s:1:\"w\";s:7:\"display\";a:3:{i:0;a:3:{s:8:\"selector\";s:12:\".custom-logo\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:4:\"Logo\";}i:1;a:3:{s:8:\"selector\";s:11:\".site-title\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:5:\"Title\";}i:2;a:3:{s:8:\"selector\";s:17:\".site-description\";s:7:\"display\";s:4:\"hide\";s:5:\"title\";s:7:\"Tagline\";}}s:3:\"uid\";s:3:\"s47\";}i:1;a:4:{s:3:\"key\";s:4:\"menu\";s:4:\"type\";s:27:\"boldgrid_menu_sticky-social\";s:5:\"align\";s:1:\"e\";s:3:\"uid\";s:4:\"s110\";}}}i:1;a:2:{s:9:\"container\";s:9:\"container\";s:5:\"items\";a:1:{i:0;a:4:{s:3:\"key\";s:4:\"menu\";s:4:\"type\";s:25:\"boldgrid_menu_sticky-main\";s:5:\"align\";s:1:\"e\";s:3:\"uid\";s:4:\"s105\";}}}}s:31:\"bgtfw_sticky_header_layout_cbcm\";a:2:{i:0;a:2:{s:9:\"container\";s:9:\"container\";s:5:\"items\";a:1:{i:0;a:5:{s:4:\"type\";s:22:\"boldgrid_site_identity\";s:3:\"key\";s:8:\"branding\";s:5:\"align\";s:1:\"c\";s:7:\"display\";a:3:{i:0;a:3:{s:8:\"selector\";s:12:\".custom-logo\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:4:\"Logo\";}i:1;a:3:{s:8:\"selector\";s:11:\".site-title\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:5:\"Title\";}i:2;a:3:{s:8:\"selector\";s:17:\".site-description\";s:7:\"display\";s:4:\"hide\";s:5:\"title\";s:7:\"Tagline\";}}s:3:\"uid\";s:3:\"s47\";}}}i:1;a:2:{s:9:\"container\";s:9:\"container\";s:5:\"items\";a:1:{i:0;a:4:{s:3:\"key\";s:4:\"menu\";s:4:\"type\";s:25:\"boldgrid_menu_sticky-main\";s:5:\"align\";s:1:\"c\";s:3:\"uid\";s:4:\"s105\";}}}}s:31:\"bgtfw_sticky_header_layout_cmcb\";a:2:{i:0;a:2:{s:9:\"container\";s:9:\"container\";s:5:\"items\";a:1:{i:0;a:4:{s:3:\"key\";s:4:\"menu\";s:4:\"type\";s:25:\"boldgrid_menu_sticky-main\";s:5:\"align\";s:1:\"c\";s:3:\"uid\";s:4:\"s105\";}}}i:1;a:2:{s:9:\"container\";s:9:\"container\";s:5:\"items\";a:1:{i:0;a:5:{s:4:\"type\";s:22:\"boldgrid_site_identity\";s:3:\"key\";s:8:\"branding\";s:5:\"align\";s:1:\"c\";s:7:\"display\";a:3:{i:0;a:3:{s:8:\"selector\";s:12:\".custom-logo\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:4:\"Logo\";}i:1;a:3:{s:8:\"selector\";s:11:\".site-title\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:5:\"Title\";}i:2;a:3:{s:8:\"selector\";s:17:\".site-description\";s:7:\"display\";s:4:\"hide\";s:5:\"title\";s:7:\"Tagline\";}}s:3:\"uid\";s:3:\"s47\";}}}}s:18:\"bgtfw_fixed_header\";b:0;s:26:\"bgtfw_sticky_header_preset\";s:6:\"lbrsrm\";s:26:\"bgtfw_sticky_header_layout\";a:2:{i:0;a:2:{s:9:\"container\";s:9:\"container\";s:5:\"items\";a:2:{i:0;a:5:{s:4:\"type\";s:22:\"boldgrid_site_identity\";s:3:\"key\";s:8:\"branding\";s:5:\"align\";s:1:\"w\";s:7:\"display\";a:3:{i:0;a:3:{s:8:\"selector\";s:12:\".custom-logo\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:4:\"Logo\";}i:1;a:3:{s:8:\"selector\";s:11:\".site-title\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:5:\"Title\";}i:2;a:3:{s:8:\"selector\";s:17:\".site-description\";s:7:\"display\";s:4:\"hide\";s:5:\"title\";s:7:\"Tagline\";}}s:3:\"uid\";s:3:\"s47\";}i:1;a:4:{s:3:\"key\";s:4:\"menu\";s:4:\"type\";s:27:\"boldgrid_menu_sticky-social\";s:5:\"align\";s:1:\"e\";s:3:\"uid\";s:4:\"s110\";}}}i:1;a:2:{s:9:\"container\";s:9:\"container\";s:5:\"items\";a:1:{i:0;a:4:{s:3:\"key\";s:4:\"menu\";s:4:\"type\";s:25:\"boldgrid_menu_sticky-main\";s:5:\"align\";s:1:\"e\";s:3:\"uid\";s:4:\"s105\";}}}}s:33:\"bgtfw_menu_typography_sticky-main\";a:8:{s:11:\"font-family\";s:9:\"Open Sans\";s:9:\"font-size\";s:4:\"14px\";s:11:\"line-height\";s:3:\"1.5\";s:14:\"text-transform\";s:9:\"uppercase\";s:7:\"variant\";s:7:\"regular\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";i:400;s:10:\"font-style\";s:6:\"normal\";}s:43:\"bgtfw_menu_items_hover_effect_sticky-social\";s:0:\"\";s:27:\"bgtfw_scroll_to_top_display\";s:4:\"show\";}','yes'),(244,'theme_switch_menu_locations','a:1:{s:6:\"social\";i:2;}','yes'),(285,'boldgrid_static_pages','a:1:{s:5:\"pages\";a:2:{s:16:\"pages_in_pageset\";a:6:{i:0;O:8:\"stdClass\":17:{s:2:\"id\";s:3:\"658\";s:16:\"page_revision_id\";s:4:\"4912\";s:10:\"page_title\";s:4:\"Home\";s:9:\"page_slug\";s:4:\"home\";s:9:\"post_type\";s:4:\"page\";s:4:\"code\";s:10248:\"\n<div class=\"boldgrid-section\" style=\"color: #000; background-image: url(\'https://naplesirrigation.com/wp-content/uploads/2022/02/wedge-fitness-imhwpb-kh917lpg3c92iw1.jpg\'); background-size: cover; background-position: 50% 70%;\" data-image-url=\"https://naplesirrigation.com/wp-content/uploads/2022/02/wedge-fitness-imhwpb-kh917lpg3c92iw1.jpg\" data-imhwpb-asset-id=\"1175055\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 120px; padding-bottom: 140px;\">\r\n<div class=\"col-md-7 col-sm-4 col-xs-12\"></div>\r\n<div class=\"col-md-5 col-sm-8 col-xs-12 wedge-cta\" custom-classes=\"wedge-cta\">\r\n<h2 class=\"\">Let Us Expand Your Horizons</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-16\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\" style=\"margin-top: 20px; margin-bottom: 30px;\">Welcome to our full-service fitness center that focuses on more than just your body. When you sign-up, you will be introduced to a personalized trainer, a nutritionist, and a motivational coach. Achieving fitness goals is about more than losing weight and toning your physique. It is about finding a good balance in life.</p>\r\n<p class=\"\"><a class=\"button-secondary\" href=\"contact-us\">CONTACT US TODAY</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-bottom: 90px; padding-top: 90px;\">\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n<div class=\"row\">\r\n<div class=\"col-xs-12 col-sm-6 col-md-6\">\r\n<div>\r\n<h2 class=\"\">About Our Company</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"bg-hr bg-hr-2 color1-color\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-top: 25px;\">\r\n<div class=\"col-xs-12 col-sm-6 col-md-6\">\r\n<p class=\"\">For anyone who simply wants to workout on top of the line fitness equipment, our full-service fitness center is for you. Free weights, ellipticals, bikes, treadmills, and a multitude of other workout equipment are waiting for you.</p>\r\n\r\n</div>\r\n<div class=\"col-xs-12 col-sm-6 col-md-6\">\r\n<div>\r\n<p class=\"\">From continuing education classes, to learning the art of personalized training tactics, our entire staff is ready to help you meet and exceed your fitness goals. It is our firm belief that fitness goals can be used to help people achieve a healthier, more balanced life.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-1 col-xs-12 col-sm-12\"></div>\r\n<div class=\"col-md-5 col-xs-12 col-sm-12 align-column-center\">\r\n<p class=\"mod-img\"><img class=\"size-full aligncenter bg-img bg-img-1 wp-image-119\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_9HI8UJMSdZA-imhwpb-16lt57g6yolmmw5.jpg\" alt=\"\" data-imhwpb-asset-id=\"695398\" width=\"600\" height=\"300\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color3-background-color color-3-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-12\">\r\n<h2 class=\"\" style=\"text-align: center;\">See What We Can Offer</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-2 color1-color\" style=\"width: 65%;\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 90px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-4\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"size-full aligncenter bg-img bg-img-1 wp-image-120\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_b2-fBVrfx0o-imhwpb-zba1rzvazi2u1sy.jpg\" alt=\"\" data-imhwpb-asset-id=\"695399\" width=\"400\" height=\"300\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Personalized Training Classes</h3>\r\n<p class=\"\">If you want to experience the benefits of a customized workout program that focuses on your core areas, then try one of our personalized training classes. You&rsquo;ll be hooked in five minutes!</p>\r\n\r\n</div>\r\n<div class=\"col-xs-12 col-sm-6 col-md-4\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"size-full aligncenter bg-img bg-img-1 wp-image-121\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_Xv7k95vOFA-imhwpb-5blo5ds381thf3b.jpg\" alt=\"\" data-imhwpb-asset-id=\"695400\" width=\"400\" height=\"300\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Group Workout Classes</h3>\r\n<p class=\"\">Sometimes we all need a little motivation to make it to the gym every week. These group workout classes will get you pumped (literally) for the gym!</p>\r\n\r\n</div>\r\n<div class=\"col-xs-12 col-sm-6 col-md-4\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"size-full aligncenter bg-img bg-img-1 wp-image-122\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_78T99kbcp_4-imhwpb-zbik273bhi2omad.jpg\" alt=\"\" data-imhwpb-asset-id=\"695401\" width=\"400\" height=\"300\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Yoga &amp; Health Wellness Classes</h3>\r\n<p class=\"\">Achieving a better physique is about more than simply shedding the pounds and improving muscle tones. Our yoga and health wellness classes will help you to focus on both your mental and physical well-being.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color2-background-color color-2-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-12\">\r\n<h2 class=\"\" style=\"text-align: center;\">Customer Testimonials</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-2 color1-color\" style=\"width: 65%;\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 40px;\">\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-123\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_YadCgbsLHcE-imhwpb-kjakgkqww4nb5j2.jpg\" alt=\"\" data-imhwpb-asset-id=\"695402\" width=\"150\" height=\"150\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\"><strong>Derek Jamison</strong></p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">\"The fitness-center is the best that I&rsquo;ve ever seen. After a great workout I can head to the steam showers to give my muscles the relaxation that they need.\"</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-124\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_s_NxT6Gx-2A-imhwpb-jifkmjomsrquohk.jpg\" alt=\"\" data-imhwpb-asset-id=\"695403\" width=\"150\" height=\"150\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\"><strong>Caroline Keller</strong></p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">\"I was nervous about getting ready for my wedding day. I wanted to lose weight and was yo-yo dieting. The yoga classes really helped me find my Zen and lose the weight.\"</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-125\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_4YX0oj7gf8o-imhwpb-ut5s3lmwf6dg2wc.jpg\" alt=\"\" data-imhwpb-asset-id=\"695404\" width=\"150\" height=\"150\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\"><strong>Janet Clarke</strong></p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">\"My husband and I actually like coming to the gym&hellip; together! And it&rsquo;s all thanks to the group fitness classes.\"</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-126\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_8tN3flDTQBU-imhwpb-kxmpsoge3h4672l.jpg\" alt=\"\" data-imhwpb-asset-id=\"695405\" width=\"150\" height=\"150\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\"><strong>Matt Davis</strong></p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">\"The staff is incredibly friendly. The trainers are amazing. Thanks for giving me the body I&rsquo;ve always wanted.\"</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\n\n\n\";s:10:\"theme_mods\";s:80006:\"{\"_boldgrid_theme_id\":61,\"sidebars_widgets\":{\"time\":1613409498,\"data\":{\"wp_inactive_widgets\":[],\"sidebar-1\":[\"search-81\",\"recent-posts-81\",\"archives-79\",\"categories-79\"],\"sidebar-2\":[\"archives-2\",\"categories-2\",\"meta-2\"],\"boldgrid-editor-sidebar\":[],\"boldgrid-widget-3\":[],\"primary-sidebar\":[\"recent-posts-7\",\"search-7\"],\"boldgrid-widget-1\":[]}},\"boldgrid_color_palette\":\"{\\\"state\\\":{\\\"active-palette\\\":\\\"palette-primary\\\",\\\"active-palette-id\\\":\\\"2987e84c05e3e05d026d2c4987d09396\\\",\\\"palettes\\\":{\\\"palette-primary\\\":{\\\"format\\\":\\\"palette-primary\\\",\\\"colors\\\":[\\\"rgb(67, 146, 241)\\\",\\\"rgb(1, 31, 63)\\\",\\\"rgb(220, 235, 247)\\\",\\\"rgb(249, 249, 249)\\\",\\\"rgb(1, 31, 63)\\\"],\\\"neutral-color\\\":\\\"rgb(249, 249, 249)\\\"}},\\\"saved_palettes\\\":[{\\\"format\\\":\\\"palette-primary\\\",\\\"colors\\\":[\\\"rgb(163, 71, 255)\\\",\\\"rgb(26, 26, 26)\\\",\\\"rgb(217, 217, 217)\\\",\\\"rgb(255, 255, 255)\\\",\\\"rgb(26, 26, 26)\\\"],\\\"neutral-color\\\":\\\"rgb(255, 255, 255)\\\"},{\\\"format\\\":\\\"palette-primary\\\",\\\"colors\\\":[\\\"rgb(237, 97, 54)\\\",\\\"rgb(0, 3, 56)\\\",\\\"rgb(125, 17, 40)\\\",\\\"rgb(249, 249, 249)\\\",\\\"rgb(0, 3, 56)\\\"],\\\"neutral-color\\\":\\\"rgb(249, 249, 249)\\\"},{\\\"format\\\":\\\"palette-primary\\\",\\\"colors\\\":[\\\"rgb(225, 122, 165)\\\",\\\"rgb(31, 42, 48)\\\",\\\"rgb(214, 214, 214)\\\",\\\"rgb(255, 255, 255)\\\",\\\"rgb(31, 42, 48)\\\"],\\\"neutral-color\\\":\\\"rgb(255, 255, 255)\\\"},{\\\"format\\\":\\\"palette-primary\\\",\\\"colors\\\":[\\\"rgb(67, 146, 241)\\\",\\\"rgb(1, 31, 63)\\\",\\\"rgb(220, 235, 247)\\\",\\\"rgb(249, 249, 249)\\\",\\\"rgb(1, 31, 63)\\\"],\\\"neutral-color\\\":\\\"rgb(249, 249, 249)\\\"}]}}\",\"boldgrid_compiled_css\":\".sidebar.transparent-background-color.color-1-link-color a{color:#4392f1}.sidebar.transparent-background-color.color-1-link-color a:hover,.sidebar.transparent-background-color.color-1-link-color a:focus,.sidebar.transparent-background-color.color-1-link-color a:active,.sidebar.transparent-background-color.color-1-link-color a.highlighted{color:#0e5fc0}.sidebar.transparent-background-color.color-2-link-color a{color:#011f3f}.sidebar.transparent-background-color.color-2-link-color a:hover,.sidebar.transparent-background-color.color-2-link-color a:focus,.sidebar.transparent-background-color.color-2-link-color a:active,.sidebar.transparent-background-color.color-2-link-color a.highlighted{color:#0350a3}.sidebar.transparent-background-color.color-3-link-color a{color:#dcebf7}.sidebar.transparent-background-color.color-3-link-color a:hover,.sidebar.transparent-background-color.color-3-link-color a:focus,.sidebar.transparent-background-color.color-3-link-color a:active,.sidebar.transparent-background-color.color-3-link-color a.highlighted{color:#89bce4}.sidebar.transparent-background-color.color-4-link-color a{color:#f9f9f9}.sidebar.transparent-background-color.color-4-link-color a:hover,.sidebar.transparent-background-color.color-4-link-color a:focus,.sidebar.transparent-background-color.color-4-link-color a:active,.sidebar.transparent-background-color.color-4-link-color a.highlighted{color:#c6c6c6}.sidebar.transparent-background-color.color-5-link-color a{color:#011f3f}.sidebar.transparent-background-color.color-5-link-color a:hover,.sidebar.transparent-background-color.color-5-link-color a:focus,.sidebar.transparent-background-color.color-5-link-color a:active,.sidebar.transparent-background-color.color-5-link-color a.highlighted{color:#0350a3}.sidebar.transparent-background-color.color-neutral-link-color a{color:#f9f9f9}.sidebar.transparent-background-color.color-neutral-link-color a:hover,.sidebar.transparent-background-color.color-neutral-link-color a:focus,.sidebar.transparent-background-color.color-neutral-link-color a:active,.sidebar.transparent-background-color.color-neutral-link-color a.highlighted{color:#c6c6c6}.sidebar.transparent-background-color-hover:focus,.sidebar.transparent-background-color-hover:hover{background-color:#4392f1 ! important}.sidebar.transparent-background-color.color-1-link-color a{color:#4392f1}.sidebar.transparent-background-color.color-1-link-color a:hover,.sidebar.transparent-background-color.color-1-link-color a:focus,.sidebar.transparent-background-color.color-1-link-color a:active,.sidebar.transparent-background-color.color-1-link-color a.highlighted{color:#a2c9f8}.sidebar.transparent-background-color.color-2-link-color a{color:#011f3f}.sidebar.transparent-background-color.color-2-link-color a:hover,.sidebar.transparent-background-color.color-2-link-color a:focus,.sidebar.transparent-background-color.color-2-link-color a:active,.sidebar.transparent-background-color.color-2-link-color a.highlighted{color:#0350a3}.sidebar.transparent-background-color.color-3-link-color a{color:#dcebf7}.sidebar.transparent-background-color.color-3-link-color a:hover,.sidebar.transparent-background-color.color-3-link-color a:focus,.sidebar.transparent-background-color.color-3-link-color a:active,.sidebar.transparent-background-color.color-3-link-color a.highlighted{color:#89bce4}.sidebar.transparent-background-color.color-4-link-color a{color:#f9f9f9}.sidebar.transparent-background-color.color-4-link-color a:hover,.sidebar.transparent-background-color.color-4-link-color a:focus,.sidebar.transparent-background-color.color-4-link-color a:active,.sidebar.transparent-background-color.color-4-link-color a.highlighted{color:#c6c6c6}.sidebar.transparent-background-color.color-5-link-color a{color:#011f3f}.sidebar.transparent-background-color.color-5-link-color a:hover,.sidebar.transparent-background-color.color-5-link-color a:focus,.sidebar.transparent-background-color.color-5-link-color a:active,.sidebar.transparent-background-color.color-5-link-color a.highlighted{color:#0350a3}.sidebar.transparent-background-color.color-neutral-link-color a{color:#f9f9f9}.sidebar.transparent-background-color.color-neutral-link-color a:hover,.sidebar.transparent-background-color.color-neutral-link-color a:focus,.sidebar.transparent-background-color.color-neutral-link-color a:active,.sidebar.transparent-background-color.color-neutral-link-color a.highlighted{color:#c6c6c6}.sidebar.transparent-background-color-hover:focus,.sidebar.transparent-background-color-hover:hover{background-color:#011f3f ! important}.sidebar.transparent-background-color.color-1-link-color a{color:#4392f1}.sidebar.transparent-background-color.color-1-link-color a:hover,.sidebar.transparent-background-color.color-1-link-color a:focus,.sidebar.transparent-background-color.color-1-link-color a:active,.sidebar.transparent-background-color.color-1-link-color a.highlighted{color:#0e5fc0}.sidebar.transparent-background-color.color-2-link-color a{color:#011f3f}.sidebar.transparent-background-color.color-2-link-color a:hover,.sidebar.transparent-background-color.color-2-link-color a:focus,.sidebar.transparent-background-color.color-2-link-color a:active,.sidebar.transparent-background-color.color-2-link-color a.highlighted{color:#0350a3}.sidebar.transparent-background-color.color-3-link-color a{color:#dcebf7}.sidebar.transparent-background-color.color-3-link-color a:hover,.sidebar.transparent-background-color.color-3-link-color a:focus,.sidebar.transparent-background-color.color-3-link-color a:active,.sidebar.transparent-background-color.color-3-link-color a.highlighted{color:#89bce4}.sidebar.transparent-background-color.color-4-link-color a{color:#f9f9f9}.sidebar.transparent-background-color.color-4-link-color a:hover,.sidebar.transparent-background-color.color-4-link-color a:focus,.sidebar.transparent-background-color.color-4-link-color a:active,.sidebar.transparent-background-color.color-4-link-color a.highlighted{color:#c6c6c6}.sidebar.transparent-background-color.color-5-link-color a{color:#011f3f}.sidebar.transparent-background-color.color-5-link-color a:hover,.sidebar.transparent-background-color.color-5-link-color a:focus,.sidebar.transparent-background-color.color-5-link-color a:active,.sidebar.transparent-background-color.color-5-link-color a.highlighted{color:#0350a3}.sidebar.transparent-background-color.color-neutral-link-color a{color:#f9f9f9}.sidebar.transparent-background-color.color-neutral-link-color a:hover,.sidebar.transparent-background-color.color-neutral-link-color a:focus,.sidebar.transparent-background-color.color-neutral-link-color a:active,.sidebar.transparent-background-color.color-neutral-link-color a.highlighted{color:#c6c6c6}.sidebar.transparent-background-color-hover:focus,.sidebar.transparent-background-color-hover:hover{background-color:#dcebf7 ! important}.sidebar.transparent-background-color.color-1-link-color a{color:#4392f1}.sidebar.transparent-background-color.color-1-link-color a:hover,.sidebar.transparent-background-color.color-1-link-color a:focus,.sidebar.transparent-background-color.color-1-link-color a:active,.sidebar.transparent-background-color.color-1-link-color a.highlighted{color:#0e5fc0}.sidebar.transparent-background-color.color-2-link-color a{color:#011f3f}.sidebar.transparent-background-color.color-2-link-color a:hover,.sidebar.transparent-background-color.color-2-link-color a:focus,.sidebar.transparent-background-color.color-2-link-color a:active,.sidebar.transparent-background-color.color-2-link-color a.highlighted{color:#0350a3}.sidebar.transparent-background-color.color-3-link-color a{color:#dcebf7}.sidebar.transparent-background-color.color-3-link-color a:hover,.sidebar.transparent-background-color.color-3-link-color a:focus,.sidebar.transparent-background-color.color-3-link-color a:active,.sidebar.transparent-background-color.color-3-link-color a.highlighted{color:#89bce4}.sidebar.transparent-background-color.color-4-link-color a{color:#f9f9f9}.sidebar.transparent-background-color.color-4-link-color a:hover,.sidebar.transparent-background-color.color-4-link-color a:focus,.sidebar.transparent-background-color.color-4-link-color a:active,.sidebar.transparent-background-color.color-4-link-color a.highlighted{color:#c6c6c6}.sidebar.transparent-background-color.color-5-link-color a{color:#011f3f}.sidebar.transparent-background-color.color-5-link-color a:hover,.sidebar.transparent-background-color.color-5-link-color a:focus,.sidebar.transparent-background-color.color-5-link-color a:active,.sidebar.transparent-background-color.color-5-link-color a.highlighted{color:#0350a3}.sidebar.transparent-background-color.color-neutral-link-color a{color:#f9f9f9}.sidebar.transparent-background-color.color-neutral-link-color a:hover,.sidebar.transparent-background-color.color-neutral-link-color a:focus,.sidebar.transparent-background-color.color-neutral-link-color a:active,.sidebar.transparent-background-color.color-neutral-link-color a.highlighted{color:#c6c6c6}.sidebar.transparent-background-color-hover:focus,.sidebar.transparent-background-color-hover:hover{background-color:#f9f9f9 ! important}.sidebar.transparent-background-color.color-1-link-color a{color:#4392f1}.sidebar.transparent-background-color.color-1-link-color a:hover,.sidebar.transparent-background-color.color-1-link-color a:focus,.sidebar.transparent-background-color.color-1-link-color a:active,.sidebar.transparent-background-color.color-1-link-color a.highlighted{color:#a2c9f8}.sidebar.transparent-background-color.color-2-link-color a{color:#011f3f}.sidebar.transparent-background-color.color-2-link-color a:hover,.sidebar.transparent-background-color.color-2-link-color a:focus,.sidebar.transparent-background-color.color-2-link-color a:active,.sidebar.transparent-background-color.color-2-link-color a.highlighted{color:#0350a3}.sidebar.transparent-background-color.color-3-link-color a{color:#dcebf7}.sidebar.transparent-background-color.color-3-link-color a:hover,.sidebar.transparent-background-color.color-3-link-color a:focus,.sidebar.transparent-background-color.color-3-link-color a:active,.sidebar.transparent-background-color.color-3-link-color a.highlighted{color:#89bce4}.sidebar.transparent-background-color.color-4-link-color a{color:#f9f9f9}.sidebar.transparent-background-color.color-4-link-color a:hover,.sidebar.transparent-background-color.color-4-link-color a:focus,.sidebar.transparent-background-color.color-4-link-color a:active,.sidebar.transparent-background-color.color-4-link-color a.highlighted{color:#c6c6c6}.sidebar.transparent-background-color.color-5-link-color a{color:#011f3f}.sidebar.transparent-background-color.color-5-link-color a:hover,.sidebar.transparent-background-color.color-5-link-color a:focus,.sidebar.transparent-background-color.color-5-link-color a:active,.sidebar.transparent-background-color.color-5-link-color a.highlighted{color:#0350a3}.sidebar.transparent-background-color.color-neutral-link-color a{color:#f9f9f9}.sidebar.transparent-background-color.color-neutral-link-color a:hover,.sidebar.transparent-background-color.color-neutral-link-color a:focus,.sidebar.transparent-background-color.color-neutral-link-color a:active,.sidebar.transparent-background-color.color-neutral-link-color a.highlighted{color:#c6c6c6}.sidebar.transparent-background-color-hover:focus,.sidebar.transparent-background-color-hover:hover{background-color:#011f3f ! important}.color1-background.color-1-link-color a{color:#4392f1}.color1-background.color-1-link-color a:hover,.color1-background.color-1-link-color a:focus,.color1-background.color-1-link-color a:active,.color1-background.color-1-link-color a.highlighted{color:#0e5fc0}.color1-background.sidebar.color-1-link-color a{color:#4392f1}.color1-background.sidebar.color-1-link-color a:hover,.color1-background.sidebar.color-1-link-color a:focus,.color1-background.sidebar.color-1-link-color a:active,.color1-background.sidebar.color-1-link-color a.highlighted{color:#0e5fc0}.color1-background.color-2-link-color a{color:#011f3f}.color1-background.color-2-link-color a:hover,.color1-background.color-2-link-color a:focus,.color1-background.color-2-link-color a:active,.color1-background.color-2-link-color a.highlighted{color:#0350a3}.color1-background.sidebar.color-2-link-color a{color:#011f3f}.color1-background.sidebar.color-2-link-color a:hover,.color1-background.sidebar.color-2-link-color a:focus,.color1-background.sidebar.color-2-link-color a:active,.color1-background.sidebar.color-2-link-color a.highlighted{color:#0350a3}.color1-background.color-3-link-color a{color:#dcebf7}.color1-background.color-3-link-color a:hover,.color1-background.color-3-link-color a:focus,.color1-background.color-3-link-color a:active,.color1-background.color-3-link-color a.highlighted{color:#89bce4}.color1-background.sidebar.color-3-link-color a{color:#dcebf7}.color1-background.sidebar.color-3-link-color a:hover,.color1-background.sidebar.color-3-link-color a:focus,.color1-background.sidebar.color-3-link-color a:active,.color1-background.sidebar.color-3-link-color a.highlighted{color:#89bce4}.color1-background.color-4-link-color a{color:#f9f9f9}.color1-background.color-4-link-color a:hover,.color1-background.color-4-link-color a:focus,.color1-background.color-4-link-color a:active,.color1-background.color-4-link-color a.highlighted{color:#c6c6c6}.color1-background.sidebar.color-4-link-color a{color:#f9f9f9}.color1-background.sidebar.color-4-link-color a:hover,.color1-background.sidebar.color-4-link-color a:focus,.color1-background.sidebar.color-4-link-color a:active,.color1-background.sidebar.color-4-link-color a.highlighted{color:#c6c6c6}.color1-background.color-5-link-color a{color:#011f3f}.color1-background.color-5-link-color a:hover,.color1-background.color-5-link-color a:focus,.color1-background.color-5-link-color a:active,.color1-background.color-5-link-color a.highlighted{color:#0350a3}.color1-background.sidebar.color-5-link-color a{color:#011f3f}.color1-background.sidebar.color-5-link-color a:hover,.color1-background.sidebar.color-5-link-color a:focus,.color1-background.sidebar.color-5-link-color a:active,.color1-background.sidebar.color-5-link-color a.highlighted{color:#0350a3}.color1-background.color-neutral-link-color a{color:#f9f9f9}.color1-background.color-neutral-link-color a:hover,.color1-background.color-neutral-link-color a:focus,.color1-background.color-neutral-link-color a:active,.color1-background.color-neutral-link-color a.highlighted{color:#c6c6c6}.color1-background-hover:focus,.color1-background-hover:hover{background:#4392f1 ! important}.color2-background.color-1-link-color a{color:#4392f1}.color2-background.color-1-link-color a:hover,.color2-background.color-1-link-color a:focus,.color2-background.color-1-link-color a:active,.color2-background.color-1-link-color a.highlighted{color:#a2c9f8}.color2-background.sidebar.color-1-link-color a{color:#4392f1}.color2-background.sidebar.color-1-link-color a:hover,.color2-background.sidebar.color-1-link-color a:focus,.color2-background.sidebar.color-1-link-color a:active,.color2-background.sidebar.color-1-link-color a.highlighted{color:#a2c9f8}.color2-background.color-2-link-color a{color:#011f3f}.color2-background.color-2-link-color a:hover,.color2-background.color-2-link-color a:focus,.color2-background.color-2-link-color a:active,.color2-background.color-2-link-color a.highlighted{color:#0350a3}.color2-background.sidebar.color-2-link-color a{color:#011f3f}.color2-background.sidebar.color-2-link-color a:hover,.color2-background.sidebar.color-2-link-color a:focus,.color2-background.sidebar.color-2-link-color a:active,.color2-background.sidebar.color-2-link-color a.highlighted{color:#0350a3}.color2-background.color-3-link-color a{color:#dcebf7}.color2-background.color-3-link-color a:hover,.color2-background.color-3-link-color a:focus,.color2-background.color-3-link-color a:active,.color2-background.color-3-link-color a.highlighted{color:#89bce4}.color2-background.sidebar.color-3-link-color a{color:#dcebf7}.color2-background.sidebar.color-3-link-color a:hover,.color2-background.sidebar.color-3-link-color a:focus,.color2-background.sidebar.color-3-link-color a:active,.color2-background.sidebar.color-3-link-color a.highlighted{color:#89bce4}.color2-background.color-4-link-color a{color:#f9f9f9}.color2-background.color-4-link-color a:hover,.color2-background.color-4-link-color a:focus,.color2-background.color-4-link-color a:active,.color2-background.color-4-link-color a.highlighted{color:#c6c6c6}.color2-background.sidebar.color-4-link-color a{color:#f9f9f9}.color2-background.sidebar.color-4-link-color a:hover,.color2-background.sidebar.color-4-link-color a:focus,.color2-background.sidebar.color-4-link-color a:active,.color2-background.sidebar.color-4-link-color a.highlighted{color:#c6c6c6}.color2-background.color-5-link-color a{color:#011f3f}.color2-background.color-5-link-color a:hover,.color2-background.color-5-link-color a:focus,.color2-background.color-5-link-color a:active,.color2-background.color-5-link-color a.highlighted{color:#0350a3}.color2-background.sidebar.color-5-link-color a{color:#011f3f}.color2-background.sidebar.color-5-link-color a:hover,.color2-background.sidebar.color-5-link-color a:focus,.color2-background.sidebar.color-5-link-color a:active,.color2-background.sidebar.color-5-link-color a.highlighted{color:#0350a3}.color2-background.color-neutral-link-color a{color:#f9f9f9}.color2-background.color-neutral-link-color a:hover,.color2-background.color-neutral-link-color a:focus,.color2-background.color-neutral-link-color a:active,.color2-background.color-neutral-link-color a.highlighted{color:#c6c6c6}.color2-background-hover:focus,.color2-background-hover:hover{background:#011f3f ! important}.color3-background.color-1-link-color a{color:#4392f1}.color3-background.color-1-link-color a:hover,.color3-background.color-1-link-color a:focus,.color3-background.color-1-link-color a:active,.color3-background.color-1-link-color a.highlighted{color:#0e5fc0}.color3-background.sidebar.color-1-link-color a{color:#4392f1}.color3-background.sidebar.color-1-link-color a:hover,.color3-background.sidebar.color-1-link-color a:focus,.color3-background.sidebar.color-1-link-color a:active,.color3-background.sidebar.color-1-link-color a.highlighted{color:#0e5fc0}.color3-background.color-2-link-color a{color:#011f3f}.color3-background.color-2-link-color a:hover,.color3-background.color-2-link-color a:focus,.color3-background.color-2-link-color a:active,.color3-background.color-2-link-color a.highlighted{color:#0350a3}.color3-background.sidebar.color-2-link-color a{color:#011f3f}.color3-background.sidebar.color-2-link-color a:hover,.color3-background.sidebar.color-2-link-color a:focus,.color3-background.sidebar.color-2-link-color a:active,.color3-background.sidebar.color-2-link-color a.highlighted{color:#0350a3}.color3-background.color-3-link-color a{color:#dcebf7}.color3-background.color-3-link-color a:hover,.color3-background.color-3-link-color a:focus,.color3-background.color-3-link-color a:active,.color3-background.color-3-link-color a.highlighted{color:#89bce4}.color3-background.sidebar.color-3-link-color a{color:#dcebf7}.color3-background.sidebar.color-3-link-color a:hover,.color3-background.sidebar.color-3-link-color a:focus,.color3-background.sidebar.color-3-link-color a:active,.color3-background.sidebar.color-3-link-color a.highlighted{color:#89bce4}.color3-background.color-4-link-color a{color:#f9f9f9}.color3-background.color-4-link-color a:hover,.color3-background.color-4-link-color a:focus,.color3-background.color-4-link-color a:active,.color3-background.color-4-link-color a.highlighted{color:#c6c6c6}.color3-background.sidebar.color-4-link-color a{color:#f9f9f9}.color3-background.sidebar.color-4-link-color a:hover,.color3-background.sidebar.color-4-link-color a:focus,.color3-background.sidebar.color-4-link-color a:active,.color3-background.sidebar.color-4-link-color a.highlighted{color:#c6c6c6}.color3-background.color-5-link-color a{color:#011f3f}.color3-background.color-5-link-color a:hover,.color3-background.color-5-link-color a:focus,.color3-background.color-5-link-color a:active,.color3-background.color-5-link-color a.highlighted{color:#0350a3}.color3-background.sidebar.color-5-link-color a{color:#011f3f}.color3-background.sidebar.color-5-link-color a:hover,.color3-background.sidebar.color-5-link-color a:focus,.color3-background.sidebar.color-5-link-color a:active,.color3-background.sidebar.color-5-link-color a.highlighted{color:#0350a3}.color3-background.color-neutral-link-color a{color:#f9f9f9}.color3-background.color-neutral-link-color a:hover,.color3-background.color-neutral-link-color a:focus,.color3-background.color-neutral-link-color a:active,.color3-background.color-neutral-link-color a.highlighted{color:#c6c6c6}.color3-background-hover:focus,.color3-background-hover:hover{background:#dcebf7 ! important}.color4-background.color-1-link-color a{color:#4392f1}.color4-background.color-1-link-color a:hover,.color4-background.color-1-link-color a:focus,.color4-background.color-1-link-color a:active,.color4-background.color-1-link-color a.highlighted{color:#0e5fc0}.color4-background.sidebar.color-1-link-color a{color:#4392f1}.color4-background.sidebar.color-1-link-color a:hover,.color4-background.sidebar.color-1-link-color a:focus,.color4-background.sidebar.color-1-link-color a:active,.color4-background.sidebar.color-1-link-color a.highlighted{color:#0e5fc0}.color4-background.color-2-link-color a{color:#011f3f}.color4-background.color-2-link-color a:hover,.color4-background.color-2-link-color a:focus,.color4-background.color-2-link-color a:active,.color4-background.color-2-link-color a.highlighted{color:#0350a3}.color4-background.sidebar.color-2-link-color a{color:#011f3f}.color4-background.sidebar.color-2-link-color a:hover,.color4-background.sidebar.color-2-link-color a:focus,.color4-background.sidebar.color-2-link-color a:active,.color4-background.sidebar.color-2-link-color a.highlighted{color:#0350a3}.color4-background.color-3-link-color a{color:#dcebf7}.color4-background.color-3-link-color a:hover,.color4-background.color-3-link-color a:focus,.color4-background.color-3-link-color a:active,.color4-background.color-3-link-color a.highlighted{color:#89bce4}.color4-background.sidebar.color-3-link-color a{color:#dcebf7}.color4-background.sidebar.color-3-link-color a:hover,.color4-background.sidebar.color-3-link-color a:focus,.color4-background.sidebar.color-3-link-color a:active,.color4-background.sidebar.color-3-link-color a.highlighted{color:#89bce4}.color4-background.color-4-link-color a{color:#f9f9f9}.color4-background.color-4-link-color a:hover,.color4-background.color-4-link-color a:focus,.color4-background.color-4-link-color a:active,.color4-background.color-4-link-color a.highlighted{color:#c6c6c6}.color4-background.sidebar.color-4-link-color a{color:#f9f9f9}.color4-background.sidebar.color-4-link-color a:hover,.color4-background.sidebar.color-4-link-color a:focus,.color4-background.sidebar.color-4-link-color a:active,.color4-background.sidebar.color-4-link-color a.highlighted{color:#c6c6c6}.color4-background.color-5-link-color a{color:#011f3f}.color4-background.color-5-link-color a:hover,.color4-background.color-5-link-color a:focus,.color4-background.color-5-link-color a:active,.color4-background.color-5-link-color a.highlighted{color:#0350a3}.color4-background.sidebar.color-5-link-color a{color:#011f3f}.color4-background.sidebar.color-5-link-color a:hover,.color4-background.sidebar.color-5-link-color a:focus,.color4-background.sidebar.color-5-link-color a:active,.color4-background.sidebar.color-5-link-color a.highlighted{color:#0350a3}.color4-background.color-neutral-link-color a{color:#f9f9f9}.color4-background.color-neutral-link-color a:hover,.color4-background.color-neutral-link-color a:focus,.color4-background.color-neutral-link-color a:active,.color4-background.color-neutral-link-color a.highlighted{color:#c6c6c6}.color4-background-hover:focus,.color4-background-hover:hover{background:#f9f9f9 ! important}.color5-background.color-1-link-color a{color:#4392f1}.color5-background.color-1-link-color a:hover,.color5-background.color-1-link-color a:focus,.color5-background.color-1-link-color a:active,.color5-background.color-1-link-color a.highlighted{color:#a2c9f8}.color5-background.sidebar.color-1-link-color a{color:#4392f1}.color5-background.sidebar.color-1-link-color a:hover,.color5-background.sidebar.color-1-link-color a:focus,.color5-background.sidebar.color-1-link-color a:active,.color5-background.sidebar.color-1-link-color a.highlighted{color:#a2c9f8}.color5-background.color-2-link-color a{color:#011f3f}.color5-background.color-2-link-color a:hover,.color5-background.color-2-link-color a:focus,.color5-background.color-2-link-color a:active,.color5-background.color-2-link-color a.highlighted{color:#0350a3}.color5-background.sidebar.color-2-link-color a{color:#011f3f}.color5-background.sidebar.color-2-link-color a:hover,.color5-background.sidebar.color-2-link-color a:focus,.color5-background.sidebar.color-2-link-color a:active,.color5-background.sidebar.color-2-link-color a.highlighted{color:#0350a3}.color5-background.color-3-link-color a{color:#dcebf7}.color5-background.color-3-link-color a:hover,.color5-background.color-3-link-color a:focus,.color5-background.color-3-link-color a:active,.color5-background.color-3-link-color a.highlighted{color:#89bce4}.color5-background.sidebar.color-3-link-color a{color:#dcebf7}.color5-background.sidebar.color-3-link-color a:hover,.color5-background.sidebar.color-3-link-color a:focus,.color5-background.sidebar.color-3-link-color a:active,.color5-background.sidebar.color-3-link-color a.highlighted{color:#89bce4}.color5-background.color-4-link-color a{color:#f9f9f9}.color5-background.color-4-link-color a:hover,.color5-background.color-4-link-color a:focus,.color5-background.color-4-link-color a:active,.color5-background.color-4-link-color a.highlighted{color:#c6c6c6}.color5-background.sidebar.color-4-link-color a{color:#f9f9f9}.color5-background.sidebar.color-4-link-color a:hover,.color5-background.sidebar.color-4-link-color a:focus,.color5-background.sidebar.color-4-link-color a:active,.color5-background.sidebar.color-4-link-color a.highlighted{color:#c6c6c6}.color5-background.color-5-link-color a{color:#011f3f}.color5-background.color-5-link-color a:hover,.color5-background.color-5-link-color a:focus,.color5-background.color-5-link-color a:active,.color5-background.color-5-link-color a.highlighted{color:#0350a3}.color5-background.sidebar.color-5-link-color a{color:#011f3f}.color5-background.sidebar.color-5-link-color a:hover,.color5-background.sidebar.color-5-link-color a:focus,.color5-background.sidebar.color-5-link-color a:active,.color5-background.sidebar.color-5-link-color a.highlighted{color:#0350a3}.color5-background.color-neutral-link-color a{color:#f9f9f9}.color5-background.color-neutral-link-color a:hover,.color5-background.color-neutral-link-color a:focus,.color5-background.color-neutral-link-color a:active,.color5-background.color-neutral-link-color a.highlighted{color:#c6c6c6}.color5-background-hover:focus,.color5-background-hover:hover{background:#011f3f ! important}.color-neutral-background.color-1-link-color a{color:#4392f1}.color-neutral-background.color-1-link-color a:hover,.color-neutral-background.color-1-link-color a:focus,.color-neutral-background.color-1-link-color a:active,.color-neutral-background.color-1-link-color a.highlighted{color:#0e5fc0}.color-neutral-background.color-2-link-color a{color:#011f3f}.color-neutral-background.color-2-link-color a:hover,.color-neutral-background.color-2-link-color a:focus,.color-neutral-background.color-2-link-color a:active,.color-neutral-background.color-2-link-color a.highlighted{color:#0350a3}.color-neutral-background.color-3-link-color a{color:#dcebf7}.color-neutral-background.color-3-link-color a:hover,.color-neutral-background.color-3-link-color a:focus,.color-neutral-background.color-3-link-color a:active,.color-neutral-background.color-3-link-color a.highlighted{color:#89bce4}.color-neutral-background.color-4-link-color a{color:#f9f9f9}.color-neutral-background.color-4-link-color a:hover,.color-neutral-background.color-4-link-color a:focus,.color-neutral-background.color-4-link-color a:active,.color-neutral-background.color-4-link-color a.highlighted{color:#c6c6c6}.color-neutral-background.color-5-link-color a{color:#011f3f}.color-neutral-background.color-5-link-color a:hover,.color-neutral-background.color-5-link-color a:focus,.color-neutral-background.color-5-link-color a:active,.color-neutral-background.color-5-link-color a.highlighted{color:#0350a3}.color-neutral-background.color-neutral-link-color a{color:#f9f9f9}.color-neutral-background.color-neutral-link-color a:hover,.color-neutral-background.color-neutral-link-color a:focus,.color-neutral-background.color-neutral-link-color a:active,.color-neutral-background.color-neutral-link-color a.highlighted{color:#c6c6c6}.color1-background-color.color-1-link-color a{color:#4392f1}.color1-background-color.color-1-link-color a:hover,.color1-background-color.color-1-link-color a:focus,.color1-background-color.color-1-link-color a:active,.color1-background-color.color-1-link-color a.highlighted{color:#0e5fc0}.color1-background-color.sidebar.color-1-link-color a{color:#4392f1}.color1-background-color.sidebar.color-1-link-color a:hover,.color1-background-color.sidebar.color-1-link-color a:focus,.color1-background-color.sidebar.color-1-link-color a:active,.color1-background-color.sidebar.color-1-link-color a.highlighted{color:#0e5fc0}.color1-background-color.color-2-link-color a{color:#011f3f}.color1-background-color.color-2-link-color a:hover,.color1-background-color.color-2-link-color a:focus,.color1-background-color.color-2-link-color a:active,.color1-background-color.color-2-link-color a.highlighted{color:#0350a3}.color1-background-color.sidebar.color-2-link-color a{color:#011f3f}.color1-background-color.sidebar.color-2-link-color a:hover,.color1-background-color.sidebar.color-2-link-color a:focus,.color1-background-color.sidebar.color-2-link-color a:active,.color1-background-color.sidebar.color-2-link-color a.highlighted{color:#0350a3}.color1-background-color.color-3-link-color a{color:#dcebf7}.color1-background-color.color-3-link-color a:hover,.color1-background-color.color-3-link-color a:focus,.color1-background-color.color-3-link-color a:active,.color1-background-color.color-3-link-color a.highlighted{color:#89bce4}.color1-background-color.sidebar.color-3-link-color a{color:#dcebf7}.color1-background-color.sidebar.color-3-link-color a:hover,.color1-background-color.sidebar.color-3-link-color a:focus,.color1-background-color.sidebar.color-3-link-color a:active,.color1-background-color.sidebar.color-3-link-color a.highlighted{color:#89bce4}.color1-background-color.color-4-link-color a{color:#f9f9f9}.color1-background-color.color-4-link-color a:hover,.color1-background-color.color-4-link-color a:focus,.color1-background-color.color-4-link-color a:active,.color1-background-color.color-4-link-color a.highlighted{color:#c6c6c6}.color1-background-color.sidebar.color-4-link-color a{color:#f9f9f9}.color1-background-color.sidebar.color-4-link-color a:hover,.color1-background-color.sidebar.color-4-link-color a:focus,.color1-background-color.sidebar.color-4-link-color a:active,.color1-background-color.sidebar.color-4-link-color a.highlighted{color:#c6c6c6}.color1-background-color.color-5-link-color a{color:#011f3f}.color1-background-color.color-5-link-color a:hover,.color1-background-color.color-5-link-color a:focus,.color1-background-color.color-5-link-color a:active,.color1-background-color.color-5-link-color a.highlighted{color:#0350a3}.color1-background-color.sidebar.color-5-link-color a{color:#011f3f}.color1-background-color.sidebar.color-5-link-color a:hover,.color1-background-color.sidebar.color-5-link-color a:focus,.color1-background-color.sidebar.color-5-link-color a:active,.color1-background-color.sidebar.color-5-link-color a.highlighted{color:#0350a3}.color1-background-color.color-neutral-link-color a{color:#f9f9f9}.color1-background-color.color-neutral-link-color a:hover,.color1-background-color.color-neutral-link-color a:focus,.color1-background-color.color-neutral-link-color a:active,.color1-background-color.color-neutral-link-color a.highlighted{color:#c6c6c6}.color1-background-color-hover:focus,.color1-background-color-hover:hover{background-color:#4392f1 ! important}.color2-background-color.color-1-link-color a{color:#4392f1}.color2-background-color.color-1-link-color a:hover,.color2-background-color.color-1-link-color a:focus,.color2-background-color.color-1-link-color a:active,.color2-background-color.color-1-link-color a.highlighted{color:#a2c9f8}.color2-background-color.sidebar.color-1-link-color a{color:#4392f1}.color2-background-color.sidebar.color-1-link-color a:hover,.color2-background-color.sidebar.color-1-link-color a:focus,.color2-background-color.sidebar.color-1-link-color a:active,.color2-background-color.sidebar.color-1-link-color a.highlighted{color:#a2c9f8}.color2-background-color.color-2-link-color a{color:#011f3f}.color2-background-color.color-2-link-color a:hover,.color2-background-color.color-2-link-color a:focus,.color2-background-color.color-2-link-color a:active,.color2-background-color.color-2-link-color a.highlighted{color:#0350a3}.color2-background-color.sidebar.color-2-link-color a{color:#011f3f}.color2-background-color.sidebar.color-2-link-color a:hover,.color2-background-color.sidebar.color-2-link-color a:focus,.color2-background-color.sidebar.color-2-link-color a:active,.color2-background-color.sidebar.color-2-link-color a.highlighted{color:#0350a3}.color2-background-color.color-3-link-color a{color:#dcebf7}.color2-background-color.color-3-link-color a:hover,.color2-background-color.color-3-link-color a:focus,.color2-background-color.color-3-link-color a:active,.color2-background-color.color-3-link-color a.highlighted{color:#89bce4}.color2-background-color.sidebar.color-3-link-color a{color:#dcebf7}.color2-background-color.sidebar.color-3-link-color a:hover,.color2-background-color.sidebar.color-3-link-color a:focus,.color2-background-color.sidebar.color-3-link-color a:active,.color2-background-color.sidebar.color-3-link-color a.highlighted{color:#89bce4}.color2-background-color.color-4-link-color a{color:#f9f9f9}.color2-background-color.color-4-link-color a:hover,.color2-background-color.color-4-link-color a:focus,.color2-background-color.color-4-link-color a:active,.color2-background-color.color-4-link-color a.highlighted{color:#c6c6c6}.color2-background-color.sidebar.color-4-link-color a{color:#f9f9f9}.color2-background-color.sidebar.color-4-link-color a:hover,.color2-background-color.sidebar.color-4-link-color a:focus,.color2-background-color.sidebar.color-4-link-color a:active,.color2-background-color.sidebar.color-4-link-color a.highlighted{color:#c6c6c6}.color2-background-color.color-5-link-color a{color:#011f3f}.color2-background-color.color-5-link-color a:hover,.color2-background-color.color-5-link-color a:focus,.color2-background-color.color-5-link-color a:active,.color2-background-color.color-5-link-color a.highlighted{color:#0350a3}.color2-background-color.sidebar.color-5-link-color a{color:#011f3f}.color2-background-color.sidebar.color-5-link-color a:hover,.color2-background-color.sidebar.color-5-link-color a:focus,.color2-background-color.sidebar.color-5-link-color a:active,.color2-background-color.sidebar.color-5-link-color a.highlighted{color:#0350a3}.color2-background-color.color-neutral-link-color a{color:#f9f9f9}.color2-background-color.color-neutral-link-color a:hover,.color2-background-color.color-neutral-link-color a:focus,.color2-background-color.color-neutral-link-color a:active,.color2-background-color.color-neutral-link-color a.highlighted{color:#c6c6c6}.color2-background-color-hover:focus,.color2-background-color-hover:hover{background-color:#011f3f ! important}.color3-background-color.color-1-link-color a{color:#4392f1}.color3-background-color.color-1-link-color a:hover,.color3-background-color.color-1-link-color a:focus,.color3-background-color.color-1-link-color a:active,.color3-background-color.color-1-link-color a.highlighted{color:#0e5fc0}.color3-background-color.sidebar.color-1-link-color a{color:#4392f1}.color3-background-color.sidebar.color-1-link-color a:hover,.color3-background-color.sidebar.color-1-link-color a:focus,.color3-background-color.sidebar.color-1-link-color a:active,.color3-background-color.sidebar.color-1-link-color a.highlighted{color:#0e5fc0}.color3-background-color.color-2-link-color a{color:#011f3f}.color3-background-color.color-2-link-color a:hover,.color3-background-color.color-2-link-color a:focus,.color3-background-color.color-2-link-color a:active,.color3-background-color.color-2-link-color a.highlighted{color:#0350a3}.color3-background-color.sidebar.color-2-link-color a{color:#011f3f}.color3-background-color.sidebar.color-2-link-color a:hover,.color3-background-color.sidebar.color-2-link-color a:focus,.color3-background-color.sidebar.color-2-link-color a:active,.color3-background-color.sidebar.color-2-link-color a.highlighted{color:#0350a3}.color3-background-color.color-3-link-color a{color:#dcebf7}.color3-background-color.color-3-link-color a:hover,.color3-background-color.color-3-link-color a:focus,.color3-background-color.color-3-link-color a:active,.color3-background-color.color-3-link-color a.highlighted{color:#89bce4}.color3-background-color.sidebar.color-3-link-color a{color:#dcebf7}.color3-background-color.sidebar.color-3-link-color a:hover,.color3-background-color.sidebar.color-3-link-color a:focus,.color3-background-color.sidebar.color-3-link-color a:active,.color3-background-color.sidebar.color-3-link-color a.highlighted{color:#89bce4}.color3-background-color.color-4-link-color a{color:#f9f9f9}.color3-background-color.color-4-link-color a:hover,.color3-background-color.color-4-link-color a:focus,.color3-background-color.color-4-link-color a:active,.color3-background-color.color-4-link-color a.highlighted{color:#c6c6c6}.color3-background-color.sidebar.color-4-link-color a{color:#f9f9f9}.color3-background-color.sidebar.color-4-link-color a:hover,.color3-background-color.sidebar.color-4-link-color a:focus,.color3-background-color.sidebar.color-4-link-color a:active,.color3-background-color.sidebar.color-4-link-color a.highlighted{color:#c6c6c6}.color3-background-color.color-5-link-color a{color:#011f3f}.color3-background-color.color-5-link-color a:hover,.color3-background-color.color-5-link-color a:focus,.color3-background-color.color-5-link-color a:active,.color3-background-color.color-5-link-color a.highlighted{color:#0350a3}.color3-background-color.sidebar.color-5-link-color a{color:#011f3f}.color3-background-color.sidebar.color-5-link-color a:hover,.color3-background-color.sidebar.color-5-link-color a:focus,.color3-background-color.sidebar.color-5-link-color a:active,.color3-background-color.sidebar.color-5-link-color a.highlighted{color:#0350a3}.color3-background-color.color-neutral-link-color a{color:#f9f9f9}.color3-background-color.color-neutral-link-color a:hover,.color3-background-color.color-neutral-link-color a:focus,.color3-background-color.color-neutral-link-color a:active,.color3-background-color.color-neutral-link-color a.highlighted{color:#c6c6c6}.color3-background-color-hover:focus,.color3-background-color-hover:hover{background-color:#dcebf7 ! important}.color4-background-color.color-1-link-color a{color:#4392f1}.color4-background-color.color-1-link-color a:hover,.color4-background-color.color-1-link-color a:focus,.color4-background-color.color-1-link-color a:active,.color4-background-color.color-1-link-color a.highlighted{color:#0e5fc0}.color4-background-color.sidebar.color-1-link-color a{color:#4392f1}.color4-background-color.sidebar.color-1-link-color a:hover,.color4-background-color.sidebar.color-1-link-color a:focus,.color4-background-color.sidebar.color-1-link-color a:active,.color4-background-color.sidebar.color-1-link-color a.highlighted{color:#0e5fc0}.color4-background-color.color-2-link-color a{color:#011f3f}.color4-background-color.color-2-link-color a:hover,.color4-background-color.color-2-link-color a:focus,.color4-background-color.color-2-link-color a:active,.color4-background-color.color-2-link-color a.highlighted{color:#0350a3}.color4-background-color.sidebar.color-2-link-color a{color:#011f3f}.color4-background-color.sidebar.color-2-link-color a:hover,.color4-background-color.sidebar.color-2-link-color a:focus,.color4-background-color.sidebar.color-2-link-color a:active,.color4-background-color.sidebar.color-2-link-color a.highlighted{color:#0350a3}.color4-background-color.color-3-link-color a{color:#dcebf7}.color4-background-color.color-3-link-color a:hover,.color4-background-color.color-3-link-color a:focus,.color4-background-color.color-3-link-color a:active,.color4-background-color.color-3-link-color a.highlighted{color:#89bce4}.color4-background-color.sidebar.color-3-link-color a{color:#dcebf7}.color4-background-color.sidebar.color-3-link-color a:hover,.color4-background-color.sidebar.color-3-link-color a:focus,.color4-background-color.sidebar.color-3-link-color a:active,.color4-background-color.sidebar.color-3-link-color a.highlighted{color:#89bce4}.color4-background-color.color-4-link-color a{color:#f9f9f9}.color4-background-color.color-4-link-color a:hover,.color4-background-color.color-4-link-color a:focus,.color4-background-color.color-4-link-color a:active,.color4-background-color.color-4-link-color a.highlighted{color:#c6c6c6}.color4-background-color.sidebar.color-4-link-color a{color:#f9f9f9}.color4-background-color.sidebar.color-4-link-color a:hover,.color4-background-color.sidebar.color-4-link-color a:focus,.color4-background-color.sidebar.color-4-link-color a:active,.color4-background-color.sidebar.color-4-link-color a.highlighted{color:#c6c6c6}.color4-background-color.color-5-link-color a{color:#011f3f}.color4-background-color.color-5-link-color a:hover,.color4-background-color.color-5-link-color a:focus,.color4-background-color.color-5-link-color a:active,.color4-background-color.color-5-link-color a.highlighted{color:#0350a3}.color4-background-color.sidebar.color-5-link-color a{color:#011f3f}.color4-background-color.sidebar.color-5-link-color a:hover,.color4-background-color.sidebar.color-5-link-color a:focus,.color4-background-color.sidebar.color-5-link-color a:active,.color4-background-color.sidebar.color-5-link-color a.highlighted{color:#0350a3}.color4-background-color.color-neutral-link-color a{color:#f9f9f9}.color4-background-color.color-neutral-link-color a:hover,.color4-background-color.color-neutral-link-color a:focus,.color4-background-color.color-neutral-link-color a:active,.color4-background-color.color-neutral-link-color a.highlighted{color:#c6c6c6}.color4-background-color-hover:focus,.color4-background-color-hover:hover{background-color:#f9f9f9 ! important}.color5-background-color.color-1-link-color a{color:#4392f1}.color5-background-color.color-1-link-color a:hover,.color5-background-color.color-1-link-color a:focus,.color5-background-color.color-1-link-color a:active,.color5-background-color.color-1-link-color a.highlighted{color:#a2c9f8}.color5-background-color.sidebar.color-1-link-color a{color:#4392f1}.color5-background-color.sidebar.color-1-link-color a:hover,.color5-background-color.sidebar.color-1-link-color a:focus,.color5-background-color.sidebar.color-1-link-color a:active,.color5-background-color.sidebar.color-1-link-color a.highlighted{color:#a2c9f8}.color5-background-color.color-2-link-color a{color:#011f3f}.color5-background-color.color-2-link-color a:hover,.color5-background-color.color-2-link-color a:focus,.color5-background-color.color-2-link-color a:active,.color5-background-color.color-2-link-color a.highlighted{color:#0350a3}.color5-background-color.sidebar.color-2-link-color a{color:#011f3f}.color5-background-color.sidebar.color-2-link-color a:hover,.color5-background-color.sidebar.color-2-link-color a:focus,.color5-background-color.sidebar.color-2-link-color a:active,.color5-background-color.sidebar.color-2-link-color a.highlighted{color:#0350a3}.color5-background-color.color-3-link-color a{color:#dcebf7}.color5-background-color.color-3-link-color a:hover,.color5-background-color.color-3-link-color a:focus,.color5-background-color.color-3-link-color a:active,.color5-background-color.color-3-link-color a.highlighted{color:#89bce4}.color5-background-color.sidebar.color-3-link-color a{color:#dcebf7}.color5-background-color.sidebar.color-3-link-color a:hover,.color5-background-color.sidebar.color-3-link-color a:focus,.color5-background-color.sidebar.color-3-link-color a:active,.color5-background-color.sidebar.color-3-link-color a.highlighted{color:#89bce4}.color5-background-color.color-4-link-color a{color:#f9f9f9}.color5-background-color.color-4-link-color a:hover,.color5-background-color.color-4-link-color a:focus,.color5-background-color.color-4-link-color a:active,.color5-background-color.color-4-link-color a.highlighted{color:#c6c6c6}.color5-background-color.sidebar.color-4-link-color a{color:#f9f9f9}.color5-background-color.sidebar.color-4-link-color a:hover,.color5-background-color.sidebar.color-4-link-color a:focus,.color5-background-color.sidebar.color-4-link-color a:active,.color5-background-color.sidebar.color-4-link-color a.highlighted{color:#c6c6c6}.color5-background-color.color-5-link-color a{color:#011f3f}.color5-background-color.color-5-link-color a:hover,.color5-background-color.color-5-link-color a:focus,.color5-background-color.color-5-link-color a:active,.color5-background-color.color-5-link-color a.highlighted{color:#0350a3}.color5-background-color.sidebar.color-5-link-color a{color:#011f3f}.color5-background-color.sidebar.color-5-link-color a:hover,.color5-background-color.sidebar.color-5-link-color a:focus,.color5-background-color.sidebar.color-5-link-color a:active,.color5-background-color.sidebar.color-5-link-color a.highlighted{color:#0350a3}.color5-background-color.color-neutral-link-color a{color:#f9f9f9}.color5-background-color.color-neutral-link-color a:hover,.color5-background-color.color-neutral-link-color a:focus,.color5-background-color.color-neutral-link-color a:active,.color5-background-color.color-neutral-link-color a.highlighted{color:#c6c6c6}.color5-background-color-hover:focus,.color5-background-color-hover:hover{background-color:#011f3f ! important}.color-neutral-background-color.color-1-link-color a{color:#4392f1}.color-neutral-background-color.color-1-link-color a:hover,.color-neutral-background-color.color-1-link-color a:focus,.color-neutral-background-color.color-1-link-color a:active,.color-neutral-background-color.color-1-link-color a.highlighted{color:#0e5fc0}.color-neutral-background-color.color-2-link-color a{color:#011f3f}.color-neutral-background-color.color-2-link-color a:hover,.color-neutral-background-color.color-2-link-color a:focus,.color-neutral-background-color.color-2-link-color a:active,.color-neutral-background-color.color-2-link-color a.highlighted{color:#0350a3}.color-neutral-background-color.color-3-link-color a{color:#dcebf7}.color-neutral-background-color.color-3-link-color a:hover,.color-neutral-background-color.color-3-link-color a:focus,.color-neutral-background-color.color-3-link-color a:active,.color-neutral-background-color.color-3-link-color a.highlighted{color:#89bce4}.color-neutral-background-color.color-4-link-color a{color:#f9f9f9}.color-neutral-background-color.color-4-link-color a:hover,.color-neutral-background-color.color-4-link-color a:focus,.color-neutral-background-color.color-4-link-color a:active,.color-neutral-background-color.color-4-link-color a.highlighted{color:#c6c6c6}.color-neutral-background-color.color-5-link-color a{color:#011f3f}.color-neutral-background-color.color-5-link-color a:hover,.color-neutral-background-color.color-5-link-color a:focus,.color-neutral-background-color.color-5-link-color a:active,.color-neutral-background-color.color-5-link-color a.highlighted{color:#0350a3}.color-neutral-background-color.color-neutral-link-color a{color:#f9f9f9}.color-neutral-background-color.color-neutral-link-color a:hover,.color-neutral-background-color.color-neutral-link-color a:focus,.color-neutral-background-color.color-neutral-link-color a:active,.color-neutral-background-color.color-neutral-link-color a.highlighted{color:#c6c6c6}.btn-color-1,.palette-primary .button-primary,.palette-primary .woocommerce .button,.btn-color-1-flat{background-color:#4392f1;border-color:#4392f1;color:var(--color-1-text-contrast) !important}.btn-color-1:visited,.palette-primary .button-primary:visited,.palette-primary .woocommerce .button:visited,.btn-color-1-flat:visited{color:var(--color-1-text-contrast)}.btn-color-1:hover,.palette-primary .button-primary:hover,.palette-primary .woocommerce .button:hover,.btn-color-1:focus,.palette-primary .button-primary:focus,.palette-primary .woocommerce .button:focus,.btn-color-1-flat:hover,.btn-color-1-flat:focus{background-color:#72aef5;border-color:#72aef5;color:var(--color-1-text-contrast) !important}.btn-color-1:active,.palette-primary .button-primary:active,.palette-primary .woocommerce .button:active,.btn-color-1.active,.palette-primary .active.button-primary,.palette-primary .woocommerce .active.button,.btn-color-1.is-active,.palette-primary .is-active.button-primary,.palette-primary .woocommerce .is-active.button,.btn-color-1-flat:active,.btn-color-1-flat.active,.btn-color-1-flat.is-active{background-color:#4d93e7;border-color:#4d93e7;color:#1476ed !important}.btn-color-2,.palette-primary .button-secondary,.palette-primary .woocommerce .alt.button,.btn-color-2-flat{background-color:#011f3f;border-color:#011f3f;color:var(--color-2-text-contrast) !important}.btn-color-2:visited,.palette-primary .button-secondary:visited,.palette-primary .woocommerce .alt.button:visited,.btn-color-2-flat:visited{color:var(--color-2-text-contrast)}.btn-color-2:hover,.palette-primary .button-secondary:hover,.palette-primary .woocommerce .alt.button:hover,.btn-color-2:focus,.palette-primary .button-secondary:focus,.palette-primary .woocommerce .alt.button:focus,.btn-color-2-flat:hover,.btn-color-2-flat:focus{background-color:#023871;border-color:#023871;color:var(--color-2-text-contrast) !important}.btn-color-2:active,.palette-primary .button-secondary:active,.palette-primary .woocommerce .alt.button:active,.btn-color-2.active,.palette-primary .active.button-secondary,.palette-primary .woocommerce .active.alt.button,.btn-color-2.is-active,.palette-primary .is-active.button-secondary,.palette-primary .woocommerce .is-active.alt.button,.btn-color-2-flat:active,.btn-color-2-flat.active,.btn-color-2-flat.is-active{background-color:#041f3c;border-color:#041f3c;color:#00060d !important}.btn-color-3,.btn-color-3-flat{background-color:#dcebf7;border-color:#dcebf7;color:var(--color-3-text-contrast) !important}.btn-color-3:visited,.btn-color-3-flat:visited{color:var(--color-3-text-contrast)}.btn-color-3:hover,.btn-color-3:focus,.btn-color-3-flat:hover,.btn-color-3-flat:focus{background-color:white;border-color:white;color:var(--color-3-text-contrast) !important}.btn-color-3:active,.btn-color-3.active,.btn-color-3.is-active,.btn-color-3-flat:active,.btn-color-3-flat.active,.btn-color-3-flat.is-active{background-color:#deebf5;border-color:#deebf5;color:#b2d3ee !important}.btn-color-4,.btn-color-4-flat{background-color:#f9f9f9;border-color:#f9f9f9;color:var(--color-4-text-contrast) !important}.btn-color-4:visited,.btn-color-4-flat:visited{color:var(--color-4-text-contrast)}.btn-color-4:hover,.btn-color-4:focus,.btn-color-4-flat:hover,.btn-color-4-flat:focus{background-color:white;border-color:white;color:var(--color-4-text-contrast) !important}.btn-color-4:active,.btn-color-4.active,.btn-color-4.is-active,.btn-color-4-flat:active,.btn-color-4-flat.active,.btn-color-4-flat.is-active{background-color:#f9f9f9;border-color:#f9f9f9;color:#e0e0e0 !important}.btn-color-5,.btn-color-5-flat{background-color:#011f3f;border-color:#011f3f;color:var(--color-5-text-contrast) !important}.btn-color-5:visited,.btn-color-5-flat:visited{color:var(--color-5-text-contrast)}.btn-color-5:hover,.btn-color-5:focus,.btn-color-5-flat:hover,.btn-color-5-flat:focus{background-color:#023871;border-color:#023871;color:var(--color-5-text-contrast) !important}.btn-color-5:active,.btn-color-5.active,.btn-color-5.is-active,.btn-color-5-flat:active,.btn-color-5-flat.active,.btn-color-5-flat.is-active{background-color:#041f3c;border-color:#041f3c;color:#00060d !important}.btn-neutral-color,.btn-neutral-color-flat{background-color:#f9f9f9;border-color:#f9f9f9;color:var(--color-neutral-text-contrast) !important}.btn-neutral-color:visited,.btn-neutral-color-flat:visited{color:var(--color-neutral-text-contrast)}.btn-neutral-color:hover,.btn-neutral-color:focus,.btn-neutral-color-flat:hover,.btn-neutral-color-flat:focus{background-color:white;border-color:white;color:var(--color-neutral-text-contrast) !important}.btn-neutral-color:active,.btn-neutral-color.active,.btn-neutral-color.is-active,.btn-neutral-color-flat:active,.btn-neutral-color-flat.active,.btn-neutral-color-flat.is-active{background-color:#f9f9f9;border-color:#f9f9f9;color:#e0e0e0 !important}.palette-primary .color1-background-alpha{background-color:rgba(67, 146, 241, 0.7)}.palette-primary .color2-background-alpha{background-color:rgba(1, 31, 63, 0.7)}.palette-primary .color3-background-alpha{background-color:rgba(220, 235, 247, 0.7)}.palette-primary .color4-background-alpha{background-color:rgba(249, 249, 249, 0.7)}.palette-primary .color5-background-alpha{background-color:rgba(1, 31, 63, 0.7)}.palette-primary .boldgrid-shortcode .bgc-single-article{background-color:#dcebf7;color:#333333}.palette-primary .bgc-single-image .date{background-color:rgba(67, 146, 241, 0.7);color:#ffffff}.palette-primary .bgc-single-image .image-opacity{background-color:rgba(1, 31, 63, 0.3)}\",\"boldgrid_palette_class\":\"palette-primary\",\"bgtfw_version\":\"2.9.0\",\"force_scss_recompile\":{\"active\":false,\"staging\":true},\"custom_css_post_id\":2070,\"bgtfw_header_border\":{\"css\":\".site-header header{border: 0;border-color:var(--color-3);;}\",\"media\":\"{\\\"base\\\":{\\\"unit\\\":\\\"px\\\",\\\"slidersLinked\\\":false,\\\"values\\\":{\\\"top\\\":0,\\\"right\\\":0,\\\"bottom\\\":5,\\\"left\\\":0},\\\"css\\\":\\\".site-header header{border: 0;border-color:var(--color-3);;}\\\",\\\"type\\\":\\\"\\\",\\\"color\\\":\\\"color-3:rgb(234,235,237)\\\"}}\",\"ID\":0,\"filter\":\"raw\"},\"bgtfw_pages_container\":\"\",\"hide_boldgrid_attribution\":false,\"bgtfw_headings_typography\":{\"font-family\":\"Julius Sans One\",\"line-height\":\"1.1\",\"text-transform\":\"uppercase\",\"variant\":\"regular\",\"font-backup\":\"\",\"font-weight\":400,\"font-style\":\"normal\"},\"bgtfw_headings_font_size\":\"19\",\"bgtfw_body_typography\":{\"font-family\":\"Open Sans\",\"font-size\":\"14px\",\"line-height\":\"1.6\",\"text-transform\":\"none\",\"variant\":\"regular\",\"font-backup\":\"\",\"font-weight\":400,\"font-style\":\"normal\"},\"bgtfw_site_title_typography\":{\"font-family\":\"Julius Sans One\",\"font-size\":\"44px\",\"text-transform\":\"uppercase\",\"line-height\":\"1.1\",\"variant\":\"regular\",\"font-backup\":\"\",\"font-weight\":400,\"font-style\":\"normal\"},\"sidebar_meta\":{\"header-1\":{\"background_color\":\"color-neutral:rgb(249,249,249)\",\"headings_color\":\"color-2:rgb(1,31,63)\",\"links_color\":\"color-1:rgb(67,146,241)\"},\"header-2\":{\"background_color\":\"color-neutral:rgb(249,249,249)\",\"headings_color\":\"color-2:rgb(1,31,63)\",\"links_color\":\"color-1:rgb(67,146,241)\"},\"header-3\":{\"background_color\":\"color-neutral:rgb(249,249,249)\",\"headings_color\":\"color-2:rgb(1,31,63)\",\"links_color\":\"color-1:rgb(67,146,241)\"},\"header-4\":{\"background_color\":\"color-neutral:rgb(249,249,249)\",\"headings_color\":\"color-2:rgb(1,31,63)\",\"links_color\":\"color-1:rgb(67,146,241)\"},\"footer-1\":{\"background_color\":\"color-2:rgb(1,31,63)\",\"headings_color\":\"color-1:rgb(67,146,241)\",\"links_color\":\"color-4:rgb(249,249,249)\"},\"footer-2\":{\"background_color\":\"color-2:rgb(1,31,63)\",\"headings_color\":\"color-1:rgb(67,146,241)\",\"links_color\":\"color-4:rgb(249,249,249)\"},\"footer-3\":{\"background_color\":\"color-2:rgb(1,31,63)\",\"headings_color\":\"color-1:rgb(67,146,241)\",\"links_color\":\"color-4:rgb(249,249,249)\"},\"footer-4\":{\"background_color\":\"color-2:rgb(1,31,63)\",\"headings_color\":\"color-1:rgb(67,146,241)\",\"links_color\":\"color-4:rgb(249,249,249)\"},\"primary-sidebar\":{\"background_color\":\"color-neutral:rgb(249,249,249)\",\"headings_color\":\"color-2:rgb(1,31,63)\",\"links_color\":\"color-1:rgb(67,146,241)\"}},\"boldgrid_background_color\":\"color-neutral:rgb(249,249,249)\",\"bgtfw_background_overlay_color\":\"color-1:rgb(67,146,241)\",\"bgtfw_header_border_color\":\"color-3:rgb(220,235,247)\",\"bgtfw_footer_border_color\":\"color-1:rgb(67,146,241)\",\"bgtfw_posts_tags_link_color\":\"color-1:rgb(67,146,241)\",\"bgtfw_posts_cats_link_color\":\"color-1:rgb(67,146,241)\",\"bgtfw_posts_navigation_link_color\":\"color-1:rgb(67,146,241)\",\"bgtfw_headings_color\":\"color-2:rgb(1,31,63)\",\"bgtfw_tagline_color\":\"color-4:rgb(249,249,249)\",\"bgtfw_header_color\":\"color-5:rgb(1,31,63)\",\"bgtfw_site_title_color\":\"color-4:rgb(249,249,249)\",\"bgtfw_global_title_background_color\":\"color-neutral:rgb(249,249,249)\",\"bgtfw_global_title_color\":\"color-2:rgb(1,31,63)\",\"bgtfw_body_link_color\":\"color-1:rgb(67,146,241)\",\"bgtfw_header_overlay_color\":\"color-1:rgb(67,146,241)\",\"bgtfw_footer_color\":\"color-5:rgb(1,31,63)\",\"bgtfw_footer_links\":\"color-1:rgb(67,146,241)\",\"bgtfw_menu_hamburger_main_color\":\"color-1:rgb(67,146,241)\",\"bgtfw_menu_border_color_main\":\"color-3:rgb(220,235,247)\",\"bgtfw_menu_items_border_color_main\":\"color-3:rgb(220,235,247)\",\"bgtfw_menu_items_hover_color_main\":\"color-1:rgb(67,146,241)\",\"bgtfw_menu_items_hover_background_main\":\"color-3:rgb(220,235,247)\",\"bgtfw_menu_items_link_color_main\":\"color-4:rgb(249,249,249)\",\"bgtfw_menu_items_active_link_color_main\":\"color-1:rgb(67,146,241)\",\"bgtfw_menu_items_active_link_border_color_main\":\"color-3:rgb(220,235,247)\",\"bgtfw_blog_border_color\":\"color-1:rgb(67,146,241)\",\"bgtfw_blog_header_background_color\":\"color-2:rgb(1,31,63)\",\"bgtfw_blog_post_background_color\":\"color-neutral:rgb(249,249,249)\",\"bgtfw_blog_post_header_title_color\":\"color-neutral:rgb(249,249,249)\",\"bgtfw_blog_post_header_date_link_color\":\"color-1:rgb(67,146,241)\",\"bgtfw_blog_post_header_byline_link_color\":\"color-1:rgb(67,146,241)\",\"bgtfw_blog_post_tags_link_color\":\"color-1:rgb(67,146,241)\",\"bgtfw_blog_post_cats_link_color\":\"color-1:rgb(67,146,241)\",\"bgtfw_blog_post_comments_link_color\":\"color-1:rgb(67,146,241)\",\"bgtfw_blog_post_readmore_link_color\":\"color-1:rgb(67,146,241)\",\"bgtfw_menu_items_link_color_social\":\"color-4:rgb(249,249,249)\",\"bgtfw_menu_items_hover_color_social\":\"color-3:rgb(220,235,247)\",\"bgtfw_menu_items_active_link_color_social\":\"color-1:rgb(67,146,241)\",\"bgtfw_menu_hamburger_secondary_color\":\"color-1:rgb(67,146,241)\",\"bgtfw_menu_hamburger_tertiary_color\":\"color-1:rgb(67,146,241)\",\"bgtfw_menu_hamburger_quaternary_color\":\"color-1:rgb(67,146,241)\",\"bgtfw_menu_hamburger_social_color\":\"color-1:rgb(67,146,241)\",\"bgtfw_menu_hamburger_sticky-main_color\":\"color-1:rgb(67,146,241)\",\"bgtfw_menu_hamburger_sticky-secondary_color\":\"color-1:rgb(67,146,241)\",\"bgtfw_menu_hamburger_sticky-tertiary_color\":\"color-1:rgb(67,146,241)\",\"bgtfw_menu_hamburger_sticky-quaternary_color\":\"color-1:rgb(67,146,241)\",\"bgtfw_menu_hamburger_sticky-social_color\":\"color-1:rgb(67,146,241)\",\"bgtfw_menu_border_color_secondary\":\"color-3:rgb(220,235,247)\",\"bgtfw_menu_border_color_tertiary\":\"color-3:rgb(220,235,247)\",\"bgtfw_menu_border_color_quaternary\":\"color-3:rgb(220,235,247)\",\"bgtfw_menu_border_color_social\":\"color-3:rgb(220,235,247)\",\"bgtfw_menu_border_color_sticky-main\":\"color-3:rgb(220,235,247)\",\"bgtfw_menu_border_color_sticky-secondary\":\"color-3:rgb(220,235,247)\",\"bgtfw_menu_border_color_sticky-tertiary\":\"color-3:rgb(220,235,247)\",\"bgtfw_menu_border_color_sticky-quaternary\":\"color-3:rgb(220,235,247)\",\"bgtfw_menu_border_color_sticky-social\":\"color-3:rgb(220,235,247)\",\"bgtfw_menu_items_border_color_secondary\":\"color-3:rgb(220,235,247)\",\"bgtfw_menu_items_border_color_tertiary\":\"color-3:rgb(220,235,247)\",\"bgtfw_menu_items_border_color_quaternary\":\"color-3:rgb(220,235,247)\",\"bgtfw_menu_items_border_color_social\":\"color-3:rgb(220,235,247)\",\"bgtfw_menu_items_border_color_sticky-main\":\"color-3:rgb(220,235,247)\",\"bgtfw_menu_items_border_color_sticky-secondary\":\"color-3:rgb(220,235,247)\",\"bgtfw_menu_items_border_color_sticky-tertiary\":\"color-3:rgb(220,235,247)\",\"bgtfw_menu_items_border_color_sticky-quaternary\":\"color-3:rgb(220,235,247)\",\"bgtfw_menu_items_border_color_sticky-social\":\"color-3:rgb(220,235,247)\",\"bgtfw_menu_items_hover_color_secondary\":\"color-1:rgb(67,146,241)\",\"bgtfw_menu_items_hover_color_tertiary\":\"color-1:rgb(67,146,241)\",\"bgtfw_menu_items_hover_color_quaternary\":\"color-1:rgb(67,146,241)\",\"bgtfw_menu_items_hover_color_sticky-main\":\"color-1:rgb(67,146,241)\",\"bgtfw_menu_items_hover_color_sticky-secondary\":\"color-1:rgb(67,146,241)\",\"bgtfw_menu_items_hover_color_sticky-tertiary\":\"color-1:rgb(67,146,241)\",\"bgtfw_menu_items_hover_color_sticky-quaternary\":\"color-1:rgb(67,146,241)\",\"bgtfw_menu_items_hover_color_sticky-social\":\"color-1:rgb(67,146,241)\",\"bgtfw_menu_items_hover_background_secondary\":\"color-3:rgb(220,235,247)\",\"bgtfw_menu_items_hover_background_tertiary\":\"color-3:rgb(220,235,247)\",\"bgtfw_menu_items_hover_background_quaternary\":\"color-3:rgb(220,235,247)\",\"bgtfw_menu_items_hover_background_social\":\"color-3:rgb(220,235,247)\",\"bgtfw_menu_items_hover_background_sticky-main\":\"color-3:rgb(220,235,247)\",\"bgtfw_menu_items_hover_background_sticky-secondary\":\"color-3:rgb(220,235,247)\",\"bgtfw_menu_items_hover_background_sticky-tertiary\":\"color-3:rgb(220,235,247)\",\"bgtfw_menu_items_hover_background_sticky-quaternary\":\"color-3:rgb(220,235,247)\",\"bgtfw_menu_items_hover_background_sticky-social\":\"color-3:rgb(220,235,247)\",\"bgtfw_menu_items_link_color_secondary\":\"color-2:rgb(1,31,63)\",\"bgtfw_menu_items_link_color_tertiary\":\"color-2:rgb(1,31,63)\",\"bgtfw_menu_items_link_color_quaternary\":\"color-2:rgb(1,31,63)\",\"bgtfw_menu_items_link_color_sticky-main\":\"color-neutral:rgb(249,249,249)\",\"bgtfw_menu_items_link_color_sticky-secondary\":\"color-2:rgb(1,31,63)\",\"bgtfw_menu_items_link_color_sticky-tertiary\":\"color-2:rgb(1,31,63)\",\"bgtfw_menu_items_link_color_sticky-quaternary\":\"color-2:rgb(1,31,63)\",\"bgtfw_menu_items_link_color_sticky-social\":\"color-neutral:rgb(249,249,249)\",\"bgtfw_menu_items_active_link_color_secondary\":\"color-1:rgb(67,146,241)\",\"bgtfw_menu_items_active_link_color_tertiary\":\"color-1:rgb(67,146,241)\",\"bgtfw_menu_items_active_link_color_quaternary\":\"color-1:rgb(67,146,241)\",\"bgtfw_menu_items_active_link_color_sticky-main\":\"color-1:rgb(67,146,241)\",\"bgtfw_menu_items_active_link_color_sticky-secondary\":\"color-1:rgb(67,146,241)\",\"bgtfw_menu_items_active_link_color_sticky-tertiary\":\"color-1:rgb(67,146,241)\",\"bgtfw_menu_items_active_link_color_sticky-quaternary\":\"color-1:rgb(67,146,241)\",\"bgtfw_menu_items_active_link_color_sticky-social\":\"color-1:rgb(67,146,241)\",\"bgtfw_menu_items_active_link_border_color_secondary\":\"color-3:rgb(220,235,247)\",\"bgtfw_menu_items_active_link_border_color_tertiary\":\"color-3:rgb(220,235,247)\",\"bgtfw_menu_items_active_link_border_color_quaternary\":\"color-3:rgb(220,235,247)\",\"bgtfw_menu_items_active_link_border_color_social\":\"color-3:rgb(220,235,247)\",\"bgtfw_menu_items_active_link_border_color_sticky-main\":\"color-3:rgb(220,235,247)\",\"bgtfw_menu_items_active_link_border_color_sticky-secondary\":\"color-3:rgb(220,235,247)\",\"bgtfw_menu_items_active_link_border_color_sticky-tertiary\":\"color-3:rgb(220,235,247)\",\"bgtfw_menu_items_active_link_border_color_sticky-quaternary\":\"color-3:rgb(220,235,247)\",\"bgtfw_menu_items_active_link_border_color_sticky-social\":\"color-3:rgb(220,235,247)\",\"bgtfw_menu_items_hover_effect_main\":\"hvr-underline-from-center\",\"bgtfw_menu_typography_main\":{\"font-family\":\"Open Sans\",\"font-size\":\"14px\",\"line-height\":\"1.5\",\"text-transform\":\"uppercase\",\"variant\":\"regular\",\"font-backup\":\"\",\"font-weight\":400,\"font-style\":\"normal\"},\"bgtfw_footer_layout\":[{\"container\":\"container\",\"items\":[{\"type\":\"boldgrid_display_attribution_links\",\"key\":\"attribution\",\"align\":\"c\",\"uid\":\"f44\"}]}],\"bgtfw_header_layout\":[{\"container\":\"container\",\"items\":[{\"type\":\"boldgrid_site_identity\",\"key\":\"branding\",\"align\":\"w\",\"display\":[{\"selector\":\".custom-logo-link\",\"display\":\"show\",\"title\":\"Logo\"},{\"selector\":\".site-title\",\"display\":\"show\",\"title\":\"Title\"},{\"selector\":\".site-description\",\"display\":\"show\",\"title\":\"Tagline\"}],\"uid\":\"h49\"},{\"type\":\"boldgrid_menu_social\",\"key\":\"menu\",\"align\":\"e\",\"uid\":\"h50\"}]},{\"container\":\"container\",\"items\":[{\"key\":\"menu\",\"type\":\"boldgrid_menu_main\",\"align\":\"e\",\"uid\":\"h2085\"}]}],\"bgtfw_blog_post_readmore_type\":\"btn button-secondary\",\"bgtfw_blog_posts_container\":\"\",\"bgtfw_tagline_typography\":{\"font-family\":\"Open Sans\",\"font-size\":\"18px\",\"text-transform\":\"none\",\"line-height\":\"1.1\",\"variant\":\"regular\",\"font-backup\":\"\",\"font-weight\":400,\"font-style\":\"normal\"},\"bgtfw_header_padding\":{\"media\":\"{\\\"base\\\":{\\\"unit\\\":\\\"em\\\",\\\"slidersLinked\\\":false,\\\"values\\\":{\\\"top\\\":1,\\\"right\\\":0,\\\"bottom\\\":0,\\\"left\\\":0},\\\"css\\\":\\\".site-header header{padding-top:1em;padding-right:0em;padding-bottom:0em;padding-left:0em;}\\\"}}\",\"css\":\".site-header header{padding-top:1em;padding-right:0em;padding-bottom:0em;padding-left:0em;}\",\"ID\":0,\"filter\":\"raw\"},\"bgtfw_menu_items_hover_effect_social\":\"\",\"bgtfw_blog_post_header_title_position\":\"center\",\"bgtfw_pages_blog_blog_page_layout_content\":\"content\",\"bgtfw_blog_post_header_meta_position\":\"center\",\"bgtfw_blog_post_header_byline_display\":\"none\",\"bgtfw_blog_post_header_meta_display\":\"block\",\"bgtfw_blog_post_header_meta_format\":\"timeago\",\"bgtfw_header_layout_col_width\":{\"css\":\"@media only screen and ( max-width: 767px ){@media only screen and ( min-width: 1200px ){.site-header header row{width:12col;width:12col;width:12col;}}}@media only screen and (max-width: 991px) and (min-width: 768px){.site-header header row{width:12col;width:12col;width:12col;}}@media only screen and (max-width: 1199px) and (min-width: 992px){.site-header header row{width:8col;width:4col;width:12col;}}@media only screen and ( min-width: 1200px ){.site-header header row{width:8col;width:4col;width:12col;}}\",\"media\":\"{\\\"large\\\":{\\\"unit\\\":\\\"col\\\",\\\"slidersLinked\\\":false,\\\"values\\\":{\\\"h49\\\":8,\\\"h50\\\":4,\\\"h2085\\\":12},\\\"css\\\":\\\"@media only screen and ( min-width: 1200px ){.site-header header row{width:8col;width:4col;width:12col;}}\\\"},\\\"desktop\\\":{\\\"unit\\\":\\\"col\\\",\\\"slidersLinked\\\":false,\\\"values\\\":{\\\"h49\\\":8,\\\"h50\\\":4,\\\"h2085\\\":12},\\\"css\\\":\\\"@media only screen and (max-width: 1199px) and (min-width: 992px){.site-header header row{width:8col;width:4col;width:12col;}}\\\"},\\\"phone\\\":{\\\"unit\\\":\\\"col\\\",\\\"values\\\":{\\\"h49\\\":12,\\\"h50\\\":12,\\\"h2085\\\":12},\\\"css\\\":\\\"@media only screen and ( max-width: 767px ){@media only screen and ( min-width: 1200px ){.site-header header row{width:12col;width:12col;width:12col;}}}\\\",\\\"slidersLinked\\\":false},\\\"tablet\\\":{\\\"unit\\\":\\\"col\\\",\\\"slidersLinked\\\":false,\\\"values\\\":{\\\"h49\\\":12,\\\"h50\\\":12,\\\"h2085\\\":12},\\\"css\\\":\\\"@media only screen and (max-width: 991px) and (min-width: 768px){.site-header header row{width:12col;width:12col;width:12col;}}\\\"}}\",\"ID\":0,\"filter\":\"raw\"},\"bgtfw_body_link_decoration\":\"none\",\"bgtfw_header_layout_default\":[{\"container\":\"container\",\"items\":[{\"type\":\"boldgrid_site_identity\",\"key\":\"branding\",\"align\":\"w\",\"display\":[{\"selector\":\".custom-logo-link\",\"display\":\"show\",\"title\":\"Logo\"},{\"selector\":\".site-title\",\"display\":\"show\",\"title\":\"Title\"},{\"selector\":\".site-description\",\"display\":\"show\",\"title\":\"Tagline\"}],\"uid\":\"h49\"},{\"type\":\"boldgrid_menu_social\",\"key\":\"menu\",\"align\":\"e\",\"uid\":\"h50\"}]},{\"container\":\"container\",\"items\":[{\"key\":\"menu\",\"type\":\"boldgrid_menu_main\",\"align\":\"e\",\"uid\":\"h2085\"}]}],\"bgtfw_header_preset_branding\":[\"logo\",\"title\"],\"bgtfw_sticky_header_layout_default\":[{\"container\":\"container\",\"items\":[{\"type\":\"boldgrid_site_identity\",\"key\":\"branding\",\"align\":\"w\",\"uid\":\"s47\",\"display\":[{\"selector\":\".custom-logo-link\",\"display\":\"show\",\"title\":\"Logo\"},{\"selector\":\".site-title\",\"display\":\"show\",\"title\":\"Title\"},{\"selector\":\".site-description\",\"display\":\"show\",\"title\":\"Tagline\"}]},{\"type\":\"boldgrid_menu_sticky-main\",\"key\":\"menu\",\"align\":\"e\",\"uid\":\"s48\"}]}],\"bgtfw_header_layout_custom\":[{\"container\":\"container\",\"items\":[{\"type\":\"boldgrid_site_identity\",\"key\":\"branding\",\"align\":\"w\",\"display\":[{\"selector\":\".custom-logo-link\",\"display\":\"show\",\"title\":\"Logo\"},{\"selector\":\".site-title\",\"display\":\"show\",\"title\":\"Title\"},{\"selector\":\".site-description\",\"display\":\"show\",\"title\":\"Tagline\"}],\"uid\":\"h49\"},{\"type\":\"boldgrid_menu_social\",\"key\":\"menu\",\"align\":\"e\",\"uid\":\"h50\"}]},{\"container\":\"container\",\"items\":[{\"key\":\"menu\",\"type\":\"boldgrid_menu_main\",\"align\":\"e\",\"uid\":\"h2085\"}]}],\"bgtfw_sticky_header_layout_custom\":[{\"container\":\"container\",\"items\":[{\"type\":\"boldgrid_site_identity\",\"key\":\"branding\",\"align\":\"w\",\"uid\":\"s47\",\"display\":[{\"selector\":\".custom-logo-link\",\"display\":\"show\",\"title\":\"Logo\"},{\"selector\":\".site-title\",\"display\":\"show\",\"title\":\"Title\"},{\"selector\":\".site-description\",\"display\":\"show\",\"title\":\"Tagline\"}]},{\"type\":\"boldgrid_menu_sticky-main\",\"key\":\"menu\",\"align\":\"e\",\"uid\":\"s48\"}]}],\"bgtfw_header_layout_lbrm\":[{\"container\":\"container\",\"items\":[{\"type\":\"boldgrid_site_identity\",\"key\":\"branding\",\"align\":\"w\",\"display\":[{\"selector\":\".custom-logo\",\"display\":\"show\",\"title\":\"Logo\"},{\"selector\":\".site-title\",\"display\":\"show\",\"title\":\"Title\"},{\"selector\":\".site-description\",\"display\":\"hide\",\"title\":\"Tagline\"}],\"uid\":\"h47\"},{\"type\":\"boldgrid_menu_main\",\"key\":\"menu\",\"align\":\"e\",\"uid\":\"h48\"}]}],\"bgtfw_header_layout_lbcmrs\":[{\"container\":\"container\",\"items\":[{\"type\":\"boldgrid_site_identity\",\"key\":\"branding\",\"align\":\"w\",\"display\":[{\"selector\":\".custom-logo\",\"display\":\"show\",\"title\":\"Logo\"},{\"selector\":\".site-title\",\"display\":\"show\",\"title\":\"Title\"},{\"selector\":\".site-description\",\"display\":\"hide\",\"title\":\"Tagline\"}],\"uid\":\"h47\"},{\"type\":\"boldgrid_menu_main\",\"key\":\"menu\",\"align\":\"c\",\"uid\":\"h48\"},{\"key\":\"menu\",\"type\":\"boldgrid_menu_social\",\"align\":\"e\",\"uid\":\"h110\"}]}],\"bgtfw_header_layout_lmrb\":[{\"container\":\"container\",\"items\":[{\"type\":\"boldgrid_menu_main\",\"key\":\"menu\",\"align\":\"w\",\"uid\":\"h48\"},{\"type\":\"boldgrid_site_identity\",\"key\":\"branding\",\"align\":\"e\",\"display\":[{\"selector\":\".custom-logo\",\"display\":\"show\",\"title\":\"Logo\"},{\"selector\":\".site-title\",\"display\":\"show\",\"title\":\"Title\"},{\"selector\":\".site-description\",\"display\":\"hide\",\"title\":\"Tagline\"}],\"uid\":\"h47\"}]}],\"bgtfw_header_layout_lbrslm\":[{\"container\":\"container\",\"items\":[{\"type\":\"boldgrid_site_identity\",\"key\":\"branding\",\"align\":\"w\",\"display\":[{\"selector\":\".custom-logo\",\"display\":\"show\",\"title\":\"Logo\"},{\"selector\":\".site-title\",\"display\":\"show\",\"title\":\"Title\"},{\"selector\":\".site-description\",\"display\":\"hide\",\"title\":\"Tagline\"}],\"uid\":\"h47\"},{\"key\":\"menu\",\"type\":\"boldgrid_menu_social\",\"align\":\"e\",\"uid\":\"h110\"}]},{\"container\":\"container\",\"items\":[{\"key\":\"menu\",\"type\":\"boldgrid_menu_main\",\"align\":\"w\",\"uid\":\"h105\"}]}],\"bgtfw_header_layout_lbrscm\":[{\"container\":\"container\",\"items\":[{\"type\":\"boldgrid_site_identity\",\"key\":\"branding\",\"align\":\"w\",\"display\":[{\"selector\":\".custom-logo\",\"display\":\"show\",\"title\":\"Logo\"},{\"selector\":\".site-title\",\"display\":\"show\",\"title\":\"Title\"},{\"selector\":\".site-description\",\"display\":\"hide\",\"title\":\"Tagline\"}],\"uid\":\"h47\"},{\"key\":\"menu\",\"type\":\"boldgrid_menu_social\",\"align\":\"e\",\"uid\":\"h110\"}]},{\"container\":\"container\",\"items\":[{\"key\":\"menu\",\"type\":\"boldgrid_menu_main\",\"align\":\"c\",\"uid\":\"h105\"}]}],\"bgtfw_header_layout_lbrsrm\":[{\"container\":\"container\",\"items\":[{\"type\":\"boldgrid_site_identity\",\"key\":\"branding\",\"align\":\"w\",\"display\":[{\"selector\":\".custom-logo\",\"display\":\"show\",\"title\":\"Logo\"},{\"selector\":\".site-title\",\"display\":\"show\",\"title\":\"Title\"},{\"selector\":\".site-description\",\"display\":\"hide\",\"title\":\"Tagline\"}],\"uid\":\"h47\"},{\"key\":\"menu\",\"type\":\"boldgrid_menu_social\",\"align\":\"e\",\"uid\":\"h110\"}]},{\"container\":\"container\",\"items\":[{\"key\":\"menu\",\"type\":\"boldgrid_menu_main\",\"align\":\"e\",\"uid\":\"h105\"}]}],\"bgtfw_header_layout_cbcm\":[{\"container\":\"container\",\"items\":[{\"type\":\"boldgrid_site_identity\",\"key\":\"branding\",\"align\":\"c\",\"display\":[{\"selector\":\".custom-logo\",\"display\":\"show\",\"title\":\"Logo\"},{\"selector\":\".site-title\",\"display\":\"show\",\"title\":\"Title\"},{\"selector\":\".site-description\",\"display\":\"hide\",\"title\":\"Tagline\"}],\"uid\":\"h47\"}]},{\"container\":\"container\",\"items\":[{\"key\":\"menu\",\"type\":\"boldgrid_menu_main\",\"align\":\"c\",\"uid\":\"h105\"}]}],\"bgtfw_header_layout_cmcb\":[{\"container\":\"container\",\"items\":[{\"key\":\"menu\",\"type\":\"boldgrid_menu_main\",\"align\":\"c\",\"uid\":\"h105\"}]},{\"container\":\"container\",\"items\":[{\"type\":\"boldgrid_site_identity\",\"key\":\"branding\",\"align\":\"c\",\"display\":[{\"selector\":\".custom-logo\",\"display\":\"show\",\"title\":\"Logo\"},{\"selector\":\".site-title\",\"display\":\"show\",\"title\":\"Title\"},{\"selector\":\".site-description\",\"display\":\"hide\",\"title\":\"Tagline\"}],\"uid\":\"h47\"}]}],\"bgtfw_header_layout_lshsbm\":[{\"container\":\"container\",\"items\":[{\"key\":\"menu\",\"type\":\"boldgrid_menu_social\",\"align\":\"w\",\"uid\":\"h264\"}]},{\"container\":\"container\",\"items\":[{\"key\":\"branding\",\"type\":\"boldgrid_site_identity\",\"display\":[{\"selector\":\".custom-logo-link\",\"display\":\"show\",\"title\":\"Logo\"},{\"selector\":\".site-title\",\"display\":\"show\",\"title\":\"Title\"},{\"selector\":\".site-description\",\"display\":\"hide\",\"title\":\"Tagline\"}],\"align\":\"w\",\"uid\":\"h47\"}]},{\"container\":\"container\",\"items\":[{\"key\":\"menu\",\"type\":\"boldgrid_menu_main\",\"align\":\"w\",\"uid\":\"h263\"}]}],\"bgtfw_sticky_header_layout_lbrm\":[{\"container\":\"container\",\"items\":[{\"type\":\"boldgrid_site_identity\",\"key\":\"branding\",\"align\":\"w\",\"display\":[{\"selector\":\".custom-logo\",\"display\":\"show\",\"title\":\"Logo\"},{\"selector\":\".site-title\",\"display\":\"show\",\"title\":\"Title\"},{\"selector\":\".site-description\",\"display\":\"hide\",\"title\":\"Tagline\"}],\"uid\":\"s47\"},{\"type\":\"boldgrid_menu_sticky-main\",\"key\":\"menu\",\"align\":\"e\",\"uid\":\"s48\"}]}],\"bgtfw_sticky_header_layout_lbcmrs\":[{\"container\":\"container\",\"items\":[{\"type\":\"boldgrid_site_identity\",\"key\":\"branding\",\"align\":\"w\",\"display\":[{\"selector\":\".custom-logo\",\"display\":\"show\",\"title\":\"Logo\"},{\"selector\":\".site-title\",\"display\":\"show\",\"title\":\"Title\"},{\"selector\":\".site-description\",\"display\":\"hide\",\"title\":\"Tagline\"}],\"uid\":\"s47\"},{\"type\":\"boldgrid_menu_sticky-main\",\"key\":\"menu\",\"align\":\"c\",\"uid\":\"s48\"},{\"key\":\"menu\",\"type\":\"boldgrid_menu_sticky-social\",\"align\":\"e\",\"uid\":\"s110\"}]}],\"bgtfw_sticky_header_layout_lmrb\":[{\"container\":\"container\",\"items\":[{\"type\":\"boldgrid_menu_sticky-main\",\"key\":\"menu\",\"align\":\"w\",\"uid\":\"s48\"},{\"type\":\"boldgrid_site_identity\",\"key\":\"branding\",\"align\":\"e\",\"display\":[{\"selector\":\".custom-logo\",\"display\":\"show\",\"title\":\"Logo\"},{\"selector\":\".site-title\",\"display\":\"show\",\"title\":\"Title\"},{\"selector\":\".site-description\",\"display\":\"hide\",\"title\":\"Tagline\"}],\"uid\":\"s47\"}]}],\"bgtfw_sticky_header_layout_lbrslm\":[{\"container\":\"container\",\"items\":[{\"type\":\"boldgrid_site_identity\",\"key\":\"branding\",\"align\":\"w\",\"display\":[{\"selector\":\".custom-logo\",\"display\":\"show\",\"title\":\"Logo\"},{\"selector\":\".site-title\",\"display\":\"show\",\"title\":\"Title\"},{\"selector\":\".site-description\",\"display\":\"hide\",\"title\":\"Tagline\"}],\"uid\":\"s47\"},{\"key\":\"menu\",\"type\":\"boldgrid_menu_sticky-social\",\"align\":\"e\",\"uid\":\"s110\"}]},{\"container\":\"container\",\"items\":[{\"key\":\"menu\",\"type\":\"boldgrid_menu_sticky-main\",\"align\":\"w\",\"uid\":\"s105\"}]}],\"bgtfw_sticky_header_layout_lbrscm\":[{\"container\":\"container\",\"items\":[{\"type\":\"boldgrid_site_identity\",\"key\":\"branding\",\"align\":\"w\",\"display\":[{\"selector\":\".custom-logo\",\"display\":\"show\",\"title\":\"Logo\"},{\"selector\":\".site-title\",\"display\":\"show\",\"title\":\"Title\"},{\"selector\":\".site-description\",\"display\":\"hide\",\"title\":\"Tagline\"}],\"uid\":\"s47\"},{\"key\":\"menu\",\"type\":\"boldgrid_menu_sticky-social\",\"align\":\"e\",\"uid\":\"s110\"}]},{\"container\":\"container\",\"items\":[{\"key\":\"menu\",\"type\":\"boldgrid_menu_sticky-main\",\"align\":\"c\",\"uid\":\"s105\"}]}],\"bgtfw_sticky_header_layout_lbrsrm\":[{\"container\":\"container\",\"items\":[{\"type\":\"boldgrid_site_identity\",\"key\":\"branding\",\"align\":\"w\",\"display\":[{\"selector\":\".custom-logo\",\"display\":\"show\",\"title\":\"Logo\"},{\"selector\":\".site-title\",\"display\":\"show\",\"title\":\"Title\"},{\"selector\":\".site-description\",\"display\":\"hide\",\"title\":\"Tagline\"}],\"uid\":\"s47\"},{\"key\":\"menu\",\"type\":\"boldgrid_menu_sticky-social\",\"align\":\"e\",\"uid\":\"s110\"}]},{\"container\":\"container\",\"items\":[{\"key\":\"menu\",\"type\":\"boldgrid_menu_sticky-main\",\"align\":\"e\",\"uid\":\"s105\"}]}],\"bgtfw_sticky_header_layout_cbcm\":[{\"container\":\"container\",\"items\":[{\"type\":\"boldgrid_site_identity\",\"key\":\"branding\",\"align\":\"c\",\"display\":[{\"selector\":\".custom-logo\",\"display\":\"show\",\"title\":\"Logo\"},{\"selector\":\".site-title\",\"display\":\"show\",\"title\":\"Title\"},{\"selector\":\".site-description\",\"display\":\"hide\",\"title\":\"Tagline\"}],\"uid\":\"s47\"}]},{\"container\":\"container\",\"items\":[{\"key\":\"menu\",\"type\":\"boldgrid_menu_sticky-main\",\"align\":\"c\",\"uid\":\"s105\"}]}],\"bgtfw_sticky_header_layout_cmcb\":[{\"container\":\"container\",\"items\":[{\"key\":\"menu\",\"type\":\"boldgrid_menu_sticky-main\",\"align\":\"c\",\"uid\":\"s105\"}]},{\"container\":\"container\",\"items\":[{\"type\":\"boldgrid_site_identity\",\"key\":\"branding\",\"align\":\"c\",\"display\":[{\"selector\":\".custom-logo\",\"display\":\"show\",\"title\":\"Logo\"},{\"selector\":\".site-title\",\"display\":\"show\",\"title\":\"Title\"},{\"selector\":\".site-description\",\"display\":\"hide\",\"title\":\"Tagline\"}],\"uid\":\"s47\"}]}],\"bgtfw_fixed_header\":false,\"bgtfw_sticky_header_preset\":\"lbrsrm\",\"bgtfw_sticky_header_layout\":[{\"container\":\"container\",\"items\":[{\"type\":\"boldgrid_site_identity\",\"key\":\"branding\",\"align\":\"w\",\"display\":[{\"selector\":\".custom-logo\",\"display\":\"show\",\"title\":\"Logo\"},{\"selector\":\".site-title\",\"display\":\"show\",\"title\":\"Title\"},{\"selector\":\".site-description\",\"display\":\"hide\",\"title\":\"Tagline\"}],\"uid\":\"s47\"},{\"key\":\"menu\",\"type\":\"boldgrid_menu_sticky-social\",\"align\":\"e\",\"uid\":\"s110\"}]},{\"container\":\"container\",\"items\":[{\"key\":\"menu\",\"type\":\"boldgrid_menu_sticky-main\",\"align\":\"e\",\"uid\":\"s105\"}]}],\"bgtfw_menu_typography_sticky-main\":{\"font-family\":\"Open Sans\",\"font-size\":\"14px\",\"line-height\":\"1.5\",\"text-transform\":\"uppercase\",\"variant\":\"regular\",\"font-backup\":\"\",\"font-weight\":400,\"font-style\":\"normal\"},\"bgtfw_menu_items_hover_effect_sticky-social\":\"\"}\";s:14:\"checklist_html\";N;s:6:\"layout\";N;s:19:\"has_page_containers\";s:1:\"1\";s:17:\"homepage_theme_id\";s:2:\"61\";s:7:\"in_menu\";s:1:\"1\";s:10:\"menu_order\";s:1:\"1\";s:23:\"featured_image_asset_id\";N;s:11:\"is_readonly\";s:1:\"0\";s:8:\"is_posts\";s:1:\"0\";s:12:\"is_blog_post\";s:1:\"0\";}i:1;O:8:\"stdClass\":17:{s:2:\"id\";s:2:\"67\";s:16:\"page_revision_id\";s:3:\"326\";s:10:\"page_title\";s:12:\"Blogging 101\";s:9:\"page_slug\";s:12:\"blogging-101\";s:9:\"post_type\";s:4:\"post\";s:4:\"code\";s:0:\"\";s:10:\"theme_mods\";N;s:14:\"checklist_html\";s:0:\"\";s:6:\"layout\";s:7:\"default\";s:19:\"has_page_containers\";s:1:\"1\";s:17:\"homepage_theme_id\";N;s:7:\"in_menu\";s:1:\"0\";s:10:\"menu_order\";s:1:\"0\";s:23:\"featured_image_asset_id\";N;s:11:\"is_readonly\";s:1:\"0\";s:8:\"is_posts\";s:1:\"0\";s:12:\"is_blog_post\";s:1:\"1\";}i:2;O:8:\"stdClass\":17:{s:2:\"id\";s:2:\"68\";s:16:\"page_revision_id\";s:3:\"331\";s:10:\"page_title\";s:16:\"Basic Taxonomies\";s:9:\"page_slug\";s:16:\"basic-taxonomies\";s:9:\"post_type\";s:4:\"post\";s:4:\"code\";s:0:\"\";s:10:\"theme_mods\";N;s:14:\"checklist_html\";s:0:\"\";s:6:\"layout\";s:7:\"default\";s:19:\"has_page_containers\";s:1:\"1\";s:17:\"homepage_theme_id\";N;s:7:\"in_menu\";s:1:\"0\";s:10:\"menu_order\";s:1:\"0\";s:23:\"featured_image_asset_id\";N;s:11:\"is_readonly\";s:1:\"0\";s:8:\"is_posts\";s:1:\"0\";s:12:\"is_blog_post\";s:1:\"1\";}i:3;O:8:\"stdClass\":17:{s:2:\"id\";s:2:\"69\";s:16:\"page_revision_id\";s:4:\"1683\";s:10:\"page_title\";s:23:\"Tips For Better Writing\";s:9:\"page_slug\";s:23:\"tips-for-better-writing\";s:9:\"post_type\";s:4:\"post\";s:4:\"code\";s:0:\"\";s:10:\"theme_mods\";N;s:14:\"checklist_html\";s:0:\"\";s:6:\"layout\";s:7:\"default\";s:19:\"has_page_containers\";s:1:\"0\";s:17:\"homepage_theme_id\";N;s:7:\"in_menu\";s:1:\"0\";s:10:\"menu_order\";s:1:\"0\";s:23:\"featured_image_asset_id\";N;s:11:\"is_readonly\";s:1:\"0\";s:8:\"is_posts\";s:1:\"0\";s:12:\"is_blog_post\";s:1:\"1\";}i:4;O:8:\"stdClass\":17:{s:2:\"id\";s:1:\"9\";s:16:\"page_revision_id\";s:4:\"2719\";s:10:\"page_title\";s:8:\"About Us\";s:9:\"page_slug\";s:10:\"about-us-2\";s:9:\"post_type\";s:4:\"page\";s:4:\"code\";s:4869:\"\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 42px;\">\r\n<div class=\"col-md-5 col-xs-12 col-sm-12\">\r\n<h1>Four Pillars of Fitness</h1>\r\n<h4>A Well-rounded Program for Well-rounded Results</h4>\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr></div>\r\n</div>\r\n</div>\r\n</div>\r\nOur health and fitness program has been designed to help you develop the four core areas of fitness: cardiovascular exercise, flexibility, nutrition, and strength training. Developing these four core areas can help you improve your health and your physique. Whether you are interested in toning and tightening, worried about weight management, or just want to get into a weekly workout routine, our team of professional fitness experts are here to help.\r\n\r\nWe offer personalized training sessions, group workout classes, and Do-It-Yourself access to top of the line fitness equipment. Our goal is to help you achieve the healthy physique that is best suited to your personal goals and lifestyle. We offer a dedicated, professional, and friendly environment that is designed to support your every need.\r\n\r\nTo learn more about how you can join today we invite you to contact us today. We look forward to helping you start your fitness journey.\r\n<p class=\"\"><a class=\"button-primary\" href=\"#\">Contact Us</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n<p class=\"mod-img\"><img class=\"aligncenter size-full wp-image-111\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/coiWR0gT8Cw-1-imhwpb-91r89phud3kxfaw.jpg\" height=\"600\" width=\"600\" data-imhwpb-asset-id=\"789476\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\">\r\n<p class=\"mod-img\"><img src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/f887dd50-ca4a1125-goodluz110900317-200x200.jpg\" alt=\"\" data-imhwpb-built-photo-search=\"68|any\" width=\"200\" class=\"wp-image-112\"></p>\r\n<p class=\"mod-img\"><img src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/495e2588-23e4182d-fizkes151200039-200x200.jpg\" alt=\"\" data-imhwpb-built-photo-search=\"68|any\" width=\"200\" class=\"wp-image-113\"></p>\r\n<p class=\"mod-img\"><img src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/917f105d-0e9345b2-fizkes150800140-200x200.jpg\" alt=\"\" data-imhwpb-built-photo-search=\"68|any\" width=\"200\" class=\"wp-image-114\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-12\">\r\n<p class=\"mod-img\"><img class=\"aligncenter size-full wp-image-115\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tLy1yV2p5ZE5oQVR3LzYwMHg0NTA_3D-imhwpb-qi6hj44g334fjqc.jpg\" alt=\"\" data-imhwpb-asset-id=\"780386\" height=\"450\" width=\"600\"></p>\r\n\r\n<h2 style=\"text-align: center;\">Dedication to Fitness</h2>\r\nWe are dedicated to everything fitness! From cardiovascular to medicine balls to resistance training, we offer a wide-variety of services and equipment that are designed to help you reach your fitness goals.\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12\">\r\n<p class=\"mod-img\"><img class=\"aligncenter size-full wp-image-116\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL19QZFpkVzdmaURjLzYwMHg0NTA_3D-imhwpb-24tawnme8snkr6i.jpg\" alt=\"\" data-imhwpb-asset-id=\"780387\" height=\"450\" width=\"600\"></p>\r\n\r\n<h2 style=\"text-align: center;\">Personal Training</h2>\r\nDo you need help staying motivated and reaching your fitness goals? Check out our personal training services. We will design a customized program to help you on your fitness journey.\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12\">\r\n<p class=\"mod-img\"><img class=\"aligncenter size-full wp-image-117\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL3ZHUTQ5bDlJNEVFLzYwMHg0NTA_3D-imhwpb-ceho1ljgk9lzazx.jpg\" alt=\"\" data-imhwpb-asset-id=\"780388\" height=\"450\" width=\"600\"></p>\r\n\r\n<h2 style=\"text-align: center;\">Helping Customers Focus on Health</h2>\r\nOur services are designed to help our customers focus on health. Whether you are worried about weight management or simply want to learn more about the effects of a healthy diet and fitness regime, we can help you to achieve a balanced lifestyle.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n\n\n\";s:10:\"theme_mods\";s:0:\"\";s:14:\"checklist_html\";s:0:\"\";s:6:\"layout\";s:7:\"default\";s:19:\"has_page_containers\";s:1:\"1\";s:17:\"homepage_theme_id\";N;s:7:\"in_menu\";s:1:\"1\";s:10:\"menu_order\";s:1:\"1\";s:23:\"featured_image_asset_id\";N;s:11:\"is_readonly\";s:1:\"0\";s:8:\"is_posts\";s:1:\"0\";s:12:\"is_blog_post\";s:1:\"0\";}i:5;O:8:\"stdClass\":17:{s:2:\"id\";s:2:\"10\";s:16:\"page_revision_id\";s:4:\"2699\";s:10:\"page_title\";s:10:\"Contact Us\";s:9:\"page_slug\";s:10:\"contact-us\";s:9:\"post_type\";s:4:\"page\";s:4:\"code\";s:1412:\"\n<div class=\"boldgrid-section\">\n<div class=\"container\">\n<div class=\"row\">\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\n<div class=\"image-gallery\">\n<p class=\"mod-reset\"><img class=\"alignnone size-full wp-image-118\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL052VjgtcUZVVjRJLzYwMHgzMDA_3D-imhwpb-by6i1wxava2jjv6.jpg\" alt=\"\" width=\"600\" height=\"300\" data-imhwpb-asset-id=\"780395\"></p>\n\n</div>\nOur Office is located at the intersection of Grid Blvd. and Bold Way. If you have trouble finding us, please contact us for more information and hours.\n\n<h3><i class=\"fa fa-1x fa-envelope-o\"><!-- icon --></i> Email</h3>\n<p><a href=\"mailto:hooperirrigation@gmail.com\">hooperirrigation@gmail.com</a></p>\n\n<h3><i class=\"fa fa-1x fa-phone\"><!-- icon --></i> Phone</h3>\n<p>239-793-7755 or 239-250-5265</p>\n\n<h3><i class=\"fa fa-1x fa-map-marker\"><!-- icon --></i> Address</h3>\n<p>PO Box 2857, Naples FL 34106</p>\n<p class=\"boldgrid-google-maps\" style=\"width:100%;height:200px;\"><iframe style=\"width:100%;height:100%;\" src=\"https://maps.google.com/maps?q=PO+Box+2857%2C+Naples+FL+34106&amp;t=m&amp;z=16&amp;output=embed\" frameborder=\"0\"></iframe></p>\n\n</div>\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\n<h3>Get in Touch</h3>\nWe are here to answer any questions you may have. Reach out to us and we\'ll respond as soon as we can.\n\n[weforms id=\"63\"]\n\n</div>\n</div>\n</div>\n</div>\n\n\";s:10:\"theme_mods\";N;s:14:\"checklist_html\";s:0:\"\";s:6:\"layout\";s:7:\"default\";s:19:\"has_page_containers\";s:1:\"1\";s:17:\"homepage_theme_id\";N;s:7:\"in_menu\";s:1:\"1\";s:10:\"menu_order\";s:2:\"99\";s:23:\"featured_image_asset_id\";N;s:11:\"is_readonly\";s:1:\"0\";s:8:\"is_posts\";s:1:\"0\";s:12:\"is_blog_post\";s:1:\"0\";}}s:10:\"additional\";a:0:{}}}','yes');
INSERT INTO `wp_options` VALUES (287,'boldgrid_has_built_site','yes','yes'),(288,'boldgrid_show_tip_start_editing','yes','yes'),(295,'boldgrid_easy_seo_version','1.6.10','off'),(296,'widget_weforms_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(299,'template_locations_children','a:0:{}','yes'),(1463940,'_site_transient_timeout_kirki_googlefonts_cache','1738012420','off'),(1463941,'_site_transient_kirki_googlefonts_cache','a:993:{s:7:\"ABeeZee\";a:3:{s:5:\"label\";s:7:\"ABeeZee\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Abel\";a:3:{s:5:\"label\";s:4:\"Abel\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Abhaya Libre\";a:3:{s:5:\"label\";s:12:\"Abhaya Libre\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Abril Fatface\";a:3:{s:5:\"label\";s:13:\"Abril Fatface\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Aclonica\";a:3:{s:5:\"label\";s:8:\"Aclonica\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Acme\";a:3:{s:5:\"label\";s:4:\"Acme\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Actor\";a:3:{s:5:\"label\";s:5:\"Actor\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Adamina\";a:3:{s:5:\"label\";s:7:\"Adamina\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Advent Pro\";a:3:{s:5:\"label\";s:10:\"Advent Pro\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Aguafina Script\";a:3:{s:5:\"label\";s:15:\"Aguafina Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Akronim\";a:3:{s:5:\"label\";s:7:\"Akronim\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Aladin\";a:3:{s:5:\"label\";s:6:\"Aladin\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Alata\";a:3:{s:5:\"label\";s:5:\"Alata\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Alatsi\";a:3:{s:5:\"label\";s:6:\"Alatsi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Aldrich\";a:3:{s:5:\"label\";s:7:\"Aldrich\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Alef\";a:3:{s:5:\"label\";s:4:\"Alef\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Alegreya\";a:3:{s:5:\"label\";s:8:\"Alegreya\";s:8:\"variants\";a:10:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:3:\"800\";i:5;s:9:\"800italic\";i:6;s:3:\"900\";i:7;s:9:\"900italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Alegreya SC\";a:3:{s:5:\"label\";s:11:\"Alegreya SC\";s:8:\"variants\";a:10:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:3:\"800\";i:5;s:9:\"800italic\";i:6;s:3:\"900\";i:7;s:9:\"900italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Alegreya Sans\";a:3:{s:5:\"label\";s:13:\"Alegreya Sans\";s:8:\"variants\";a:14:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"800\";i:9;s:9:\"800italic\";i:10;s:3:\"900\";i:11;s:9:\"900italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Alegreya Sans SC\";a:3:{s:5:\"label\";s:16:\"Alegreya Sans SC\";s:8:\"variants\";a:14:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"800\";i:9;s:9:\"800italic\";i:10;s:3:\"900\";i:11;s:9:\"900italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Aleo\";a:3:{s:5:\"label\";s:4:\"Aleo\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Alex Brush\";a:3:{s:5:\"label\";s:10:\"Alex Brush\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"Alfa Slab One\";a:3:{s:5:\"label\";s:13:\"Alfa Slab One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Alice\";a:3:{s:5:\"label\";s:5:\"Alice\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Alike\";a:3:{s:5:\"label\";s:5:\"Alike\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Alike Angular\";a:3:{s:5:\"label\";s:13:\"Alike Angular\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Allan\";a:3:{s:5:\"label\";s:5:\"Allan\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Allerta\";a:3:{s:5:\"label\";s:7:\"Allerta\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Allerta Stencil\";a:3:{s:5:\"label\";s:15:\"Allerta Stencil\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Allura\";a:3:{s:5:\"label\";s:6:\"Allura\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Almarai\";a:3:{s:5:\"label\";s:7:\"Almarai\";s:8:\"variants\";a:4:{i:0;s:3:\"300\";i:1;s:3:\"700\";i:2;s:3:\"800\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Almendra\";a:3:{s:5:\"label\";s:8:\"Almendra\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:16:\"Almendra Display\";a:3:{s:5:\"label\";s:16:\"Almendra Display\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Almendra SC\";a:3:{s:5:\"label\";s:11:\"Almendra SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Amarante\";a:3:{s:5:\"label\";s:8:\"Amarante\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Amaranth\";a:3:{s:5:\"label\";s:8:\"Amaranth\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Amatic SC\";a:3:{s:5:\"label\";s:9:\"Amatic SC\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Amethysta\";a:3:{s:5:\"label\";s:9:\"Amethysta\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Amiko\";a:3:{s:5:\"label\";s:5:\"Amiko\";s:8:\"variants\";a:3:{i:0;s:3:\"600\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Amiri\";a:3:{s:5:\"label\";s:5:\"Amiri\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Amita\";a:3:{s:5:\"label\";s:5:\"Amita\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Anaheim\";a:3:{s:5:\"label\";s:7:\"Anaheim\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Andada\";a:3:{s:5:\"label\";s:6:\"Andada\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Andika\";a:3:{s:5:\"label\";s:6:\"Andika\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Angkor\";a:3:{s:5:\"label\";s:6:\"Angkor\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:24:\"Annie Use Your Telescope\";a:3:{s:5:\"label\";s:24:\"Annie Use Your Telescope\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"Anonymous Pro\";a:3:{s:5:\"label\";s:13:\"Anonymous Pro\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:5:\"Antic\";a:3:{s:5:\"label\";s:5:\"Antic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Antic Didone\";a:3:{s:5:\"label\";s:12:\"Antic Didone\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Antic Slab\";a:3:{s:5:\"label\";s:10:\"Antic Slab\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Anton\";a:3:{s:5:\"label\";s:5:\"Anton\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Arapey\";a:3:{s:5:\"label\";s:6:\"Arapey\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Arbutus\";a:3:{s:5:\"label\";s:7:\"Arbutus\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Arbutus Slab\";a:3:{s:5:\"label\";s:12:\"Arbutus Slab\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:19:\"Architects Daughter\";a:3:{s:5:\"label\";s:19:\"Architects Daughter\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Archivo\";a:3:{s:5:\"label\";s:7:\"Archivo\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Archivo Black\";a:3:{s:5:\"label\";s:13:\"Archivo Black\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Archivo Narrow\";a:3:{s:5:\"label\";s:14:\"Archivo Narrow\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Aref Ruqaa\";a:3:{s:5:\"label\";s:10:\"Aref Ruqaa\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Arima Madurai\";a:3:{s:5:\"label\";s:13:\"Arima Madurai\";s:8:\"variants\";a:8:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:3:\"900\";i:7;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Arimo\";a:3:{s:5:\"label\";s:5:\"Arimo\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Arizonia\";a:3:{s:5:\"label\";s:8:\"Arizonia\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Armata\";a:3:{s:5:\"label\";s:6:\"Armata\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Arsenal\";a:3:{s:5:\"label\";s:7:\"Arsenal\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Artifika\";a:3:{s:5:\"label\";s:8:\"Artifika\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:4:\"Arvo\";a:3:{s:5:\"label\";s:4:\"Arvo\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:4:\"Arya\";a:3:{s:5:\"label\";s:4:\"Arya\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Asap\";a:3:{s:5:\"label\";s:4:\"Asap\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Asap Condensed\";a:3:{s:5:\"label\";s:14:\"Asap Condensed\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Asar\";a:3:{s:5:\"label\";s:4:\"Asar\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Asset\";a:3:{s:5:\"label\";s:5:\"Asset\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Assistant\";a:3:{s:5:\"label\";s:9:\"Assistant\";s:8:\"variants\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Astloch\";a:3:{s:5:\"label\";s:7:\"Astloch\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:4:\"Asul\";a:3:{s:5:\"label\";s:4:\"Asul\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Athiti\";a:3:{s:5:\"label\";s:6:\"Athiti\";s:8:\"variants\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Atma\";a:3:{s:5:\"label\";s:4:\"Atma\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Atomic Age\";a:3:{s:5:\"label\";s:10:\"Atomic Age\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Aubrey\";a:3:{s:5:\"label\";s:6:\"Aubrey\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Audiowide\";a:3:{s:5:\"label\";s:9:\"Audiowide\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Autour One\";a:3:{s:5:\"label\";s:10:\"Autour One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Average\";a:3:{s:5:\"label\";s:7:\"Average\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Average Sans\";a:3:{s:5:\"label\";s:12:\"Average Sans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Averia Gruesa Libre\";a:3:{s:5:\"label\";s:19:\"Averia Gruesa Libre\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Averia Libre\";a:3:{s:5:\"label\";s:12:\"Averia Libre\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:17:\"Averia Sans Libre\";a:3:{s:5:\"label\";s:17:\"Averia Sans Libre\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:18:\"Averia Serif Libre\";a:3:{s:5:\"label\";s:18:\"Averia Serif Libre\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:4:\"B612\";a:3:{s:5:\"label\";s:4:\"B612\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"B612 Mono\";a:3:{s:5:\"label\";s:9:\"B612 Mono\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:10:\"Bad Script\";a:3:{s:5:\"label\";s:10:\"Bad Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Bahiana\";a:3:{s:5:\"label\";s:7:\"Bahiana\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Bahianita\";a:3:{s:5:\"label\";s:9:\"Bahianita\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Bai Jamjuree\";a:3:{s:5:\"label\";s:12:\"Bai Jamjuree\";s:8:\"variants\";a:12:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Baloo 2\";a:3:{s:5:\"label\";s:7:\"Baloo 2\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Baloo Bhai 2\";a:3:{s:5:\"label\";s:12:\"Baloo Bhai 2\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Baloo Bhaina 2\";a:3:{s:5:\"label\";s:14:\"Baloo Bhaina 2\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Baloo Chettan 2\";a:3:{s:5:\"label\";s:15:\"Baloo Chettan 2\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Baloo Da 2\";a:3:{s:5:\"label\";s:10:\"Baloo Da 2\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Baloo Paaji 2\";a:3:{s:5:\"label\";s:13:\"Baloo Paaji 2\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Baloo Tamma 2\";a:3:{s:5:\"label\";s:13:\"Baloo Tamma 2\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Baloo Tammudu 2\";a:3:{s:5:\"label\";s:15:\"Baloo Tammudu 2\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Baloo Thambi 2\";a:3:{s:5:\"label\";s:14:\"Baloo Thambi 2\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Balsamiq Sans\";a:3:{s:5:\"label\";s:13:\"Balsamiq Sans\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Balthazar\";a:3:{s:5:\"label\";s:9:\"Balthazar\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Bangers\";a:3:{s:5:\"label\";s:7:\"Bangers\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Barlow\";a:3:{s:5:\"label\";s:6:\"Barlow\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Barlow Condensed\";a:3:{s:5:\"label\";s:16:\"Barlow Condensed\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"Barlow Semi Condensed\";a:3:{s:5:\"label\";s:21:\"Barlow Semi Condensed\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Barriecito\";a:3:{s:5:\"label\";s:10:\"Barriecito\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Barrio\";a:3:{s:5:\"label\";s:6:\"Barrio\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Basic\";a:3:{s:5:\"label\";s:5:\"Basic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Baskervville\";a:3:{s:5:\"label\";s:12:\"Baskervville\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Battambang\";a:3:{s:5:\"label\";s:10:\"Battambang\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Baumans\";a:3:{s:5:\"label\";s:7:\"Baumans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Bayon\";a:3:{s:5:\"label\";s:5:\"Bayon\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Be Vietnam\";a:3:{s:5:\"label\";s:10:\"Be Vietnam\";s:8:\"variants\";a:14:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"800\";i:11;s:9:\"800italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Bebas Neue\";a:3:{s:5:\"label\";s:10:\"Bebas Neue\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Belgrano\";a:3:{s:5:\"label\";s:8:\"Belgrano\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Bellefair\";a:3:{s:5:\"label\";s:9:\"Bellefair\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Belleza\";a:3:{s:5:\"label\";s:7:\"Belleza\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Bellota\";a:3:{s:5:\"label\";s:7:\"Bellota\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Bellota Text\";a:3:{s:5:\"label\";s:12:\"Bellota Text\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"BenchNine\";a:3:{s:5:\"label\";s:9:\"BenchNine\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Bentham\";a:3:{s:5:\"label\";s:7:\"Bentham\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:15:\"Berkshire Swash\";a:3:{s:5:\"label\";s:15:\"Berkshire Swash\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:10:\"Beth Ellen\";a:3:{s:5:\"label\";s:10:\"Beth Ellen\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Bevan\";a:3:{s:5:\"label\";s:5:\"Bevan\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:21:\"Big Shoulders Display\";a:3:{s:5:\"label\";s:21:\"Big Shoulders Display\";s:8:\"variants\";a:8:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:3:\"900\";i:7;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:18:\"Big Shoulders Text\";a:3:{s:5:\"label\";s:18:\"Big Shoulders Text\";s:8:\"variants\";a:8:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:3:\"900\";i:7;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Bigelow Rules\";a:3:{s:5:\"label\";s:13:\"Bigelow Rules\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Bigshot One\";a:3:{s:5:\"label\";s:11:\"Bigshot One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Bilbo\";a:3:{s:5:\"label\";s:5:\"Bilbo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:16:\"Bilbo Swash Caps\";a:3:{s:5:\"label\";s:16:\"Bilbo Swash Caps\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"BioRhyme\";a:3:{s:5:\"label\";s:8:\"BioRhyme\";s:8:\"variants\";a:5:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"BioRhyme Expanded\";a:3:{s:5:\"label\";s:17:\"BioRhyme Expanded\";s:8:\"variants\";a:5:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Biryani\";a:3:{s:5:\"label\";s:7:\"Biryani\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Bitter\";a:3:{s:5:\"label\";s:6:\"Bitter\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:6:\"italic\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:23:\"Black And White Picture\";a:3:{s:5:\"label\";s:23:\"Black And White Picture\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Black Han Sans\";a:3:{s:5:\"label\";s:14:\"Black Han Sans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Black Ops One\";a:3:{s:5:\"label\";s:13:\"Black Ops One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Blinker\";a:3:{s:5:\"label\";s:7:\"Blinker\";s:8:\"variants\";a:8:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:3:\"900\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Bokor\";a:3:{s:5:\"label\";s:5:\"Bokor\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Bonbon\";a:3:{s:5:\"label\";s:6:\"Bonbon\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Boogaloo\";a:3:{s:5:\"label\";s:8:\"Boogaloo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Bowlby One\";a:3:{s:5:\"label\";s:10:\"Bowlby One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Bowlby One SC\";a:3:{s:5:\"label\";s:13:\"Bowlby One SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Brawler\";a:3:{s:5:\"label\";s:7:\"Brawler\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Bree Serif\";a:3:{s:5:\"label\";s:10:\"Bree Serif\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:14:\"Bubblegum Sans\";a:3:{s:5:\"label\";s:14:\"Bubblegum Sans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Bubbler One\";a:3:{s:5:\"label\";s:11:\"Bubbler One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Buda\";a:3:{s:5:\"label\";s:4:\"Buda\";s:8:\"variants\";a:1:{i:0;s:3:\"300\";}s:8:\"category\";s:7:\"display\";}s:7:\"Buenard\";a:3:{s:5:\"label\";s:7:\"Buenard\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Bungee\";a:3:{s:5:\"label\";s:6:\"Bungee\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Bungee Hairline\";a:3:{s:5:\"label\";s:15:\"Bungee Hairline\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Bungee Inline\";a:3:{s:5:\"label\";s:13:\"Bungee Inline\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Bungee Outline\";a:3:{s:5:\"label\";s:14:\"Bungee Outline\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Bungee Shade\";a:3:{s:5:\"label\";s:12:\"Bungee Shade\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Butcherman\";a:3:{s:5:\"label\";s:10:\"Butcherman\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Butterfly Kids\";a:3:{s:5:\"label\";s:14:\"Butterfly Kids\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Cabin\";a:3:{s:5:\"label\";s:5:\"Cabin\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Cabin Condensed\";a:3:{s:5:\"label\";s:15:\"Cabin Condensed\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Cabin Sketch\";a:3:{s:5:\"label\";s:12:\"Cabin Sketch\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Caesar Dressing\";a:3:{s:5:\"label\";s:15:\"Caesar Dressing\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Cagliostro\";a:3:{s:5:\"label\";s:10:\"Cagliostro\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Cairo\";a:3:{s:5:\"label\";s:5:\"Cairo\";s:8:\"variants\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"900\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Caladea\";a:3:{s:5:\"label\";s:7:\"Caladea\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Calistoga\";a:3:{s:5:\"label\";s:9:\"Calistoga\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Calligraffitti\";a:3:{s:5:\"label\";s:14:\"Calligraffitti\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Cambay\";a:3:{s:5:\"label\";s:6:\"Cambay\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Cambo\";a:3:{s:5:\"label\";s:5:\"Cambo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Candal\";a:3:{s:5:\"label\";s:6:\"Candal\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Cantarell\";a:3:{s:5:\"label\";s:9:\"Cantarell\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Cantata One\";a:3:{s:5:\"label\";s:11:\"Cantata One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Cantora One\";a:3:{s:5:\"label\";s:11:\"Cantora One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Capriola\";a:3:{s:5:\"label\";s:8:\"Capriola\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Cardo\";a:3:{s:5:\"label\";s:5:\"Cardo\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:6:\"italic\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Carme\";a:3:{s:5:\"label\";s:5:\"Carme\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Carrois Gothic\";a:3:{s:5:\"label\";s:14:\"Carrois Gothic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Carrois Gothic SC\";a:3:{s:5:\"label\";s:17:\"Carrois Gothic SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Carter One\";a:3:{s:5:\"label\";s:10:\"Carter One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Catamaran\";a:3:{s:5:\"label\";s:9:\"Catamaran\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Caudex\";a:3:{s:5:\"label\";s:6:\"Caudex\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Caveat\";a:3:{s:5:\"label\";s:6:\"Caveat\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:12:\"Caveat Brush\";a:3:{s:5:\"label\";s:12:\"Caveat Brush\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:18:\"Cedarville Cursive\";a:3:{s:5:\"label\";s:18:\"Cedarville Cursive\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:11:\"Ceviche One\";a:3:{s:5:\"label\";s:11:\"Ceviche One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Chakra Petch\";a:3:{s:5:\"label\";s:12:\"Chakra Petch\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Changa\";a:3:{s:5:\"label\";s:6:\"Changa\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Changa One\";a:3:{s:5:\"label\";s:10:\"Changa One\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Chango\";a:3:{s:5:\"label\";s:6:\"Chango\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Charm\";a:3:{s:5:\"label\";s:5:\"Charm\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:10:\"Charmonman\";a:3:{s:5:\"label\";s:10:\"Charmonman\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Chathura\";a:3:{s:5:\"label\";s:8:\"Chathura\";s:8:\"variants\";a:5:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Chau Philomene One\";a:3:{s:5:\"label\";s:18:\"Chau Philomene One\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Chela One\";a:3:{s:5:\"label\";s:9:\"Chela One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Chelsea Market\";a:3:{s:5:\"label\";s:14:\"Chelsea Market\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Chenla\";a:3:{s:5:\"label\";s:6:\"Chenla\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:17:\"Cherry Cream Soda\";a:3:{s:5:\"label\";s:17:\"Cherry Cream Soda\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Cherry Swash\";a:3:{s:5:\"label\";s:12:\"Cherry Swash\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Chewy\";a:3:{s:5:\"label\";s:5:\"Chewy\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Chicle\";a:3:{s:5:\"label\";s:6:\"Chicle\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Chilanka\";a:3:{s:5:\"label\";s:8:\"Chilanka\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Chivo\";a:3:{s:5:\"label\";s:5:\"Chivo\";s:8:\"variants\";a:8:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:3:\"900\";i:5;s:9:\"900italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Chonburi\";a:3:{s:5:\"label\";s:8:\"Chonburi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Cinzel\";a:3:{s:5:\"label\";s:6:\"Cinzel\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:3:\"900\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"Cinzel Decorative\";a:3:{s:5:\"label\";s:17:\"Cinzel Decorative\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:3:\"900\";i:2;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Clicker Script\";a:3:{s:5:\"label\";s:14:\"Clicker Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:4:\"Coda\";a:3:{s:5:\"label\";s:4:\"Coda\";s:8:\"variants\";a:2:{i:0;s:3:\"800\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Coda Caption\";a:3:{s:5:\"label\";s:12:\"Coda Caption\";s:8:\"variants\";a:1:{i:0;s:3:\"800\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Codystar\";a:3:{s:5:\"label\";s:8:\"Codystar\";s:8:\"variants\";a:2:{i:0;s:3:\"300\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Coiny\";a:3:{s:5:\"label\";s:5:\"Coiny\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Combo\";a:3:{s:5:\"label\";s:5:\"Combo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Comfortaa\";a:3:{s:5:\"label\";s:9:\"Comfortaa\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Comic Neue\";a:3:{s:5:\"label\";s:10:\"Comic Neue\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:11:\"Coming Soon\";a:3:{s:5:\"label\";s:11:\"Coming Soon\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:11:\"Concert One\";a:3:{s:5:\"label\";s:11:\"Concert One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Condiment\";a:3:{s:5:\"label\";s:9:\"Condiment\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Content\";a:3:{s:5:\"label\";s:7:\"Content\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Contrail One\";a:3:{s:5:\"label\";s:12:\"Contrail One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Convergence\";a:3:{s:5:\"label\";s:11:\"Convergence\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Cookie\";a:3:{s:5:\"label\";s:6:\"Cookie\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Copse\";a:3:{s:5:\"label\";s:5:\"Copse\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Corben\";a:3:{s:5:\"label\";s:6:\"Corben\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Cormorant\";a:3:{s:5:\"label\";s:9:\"Cormorant\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:18:\"Cormorant Garamond\";a:3:{s:5:\"label\";s:18:\"Cormorant Garamond\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:16:\"Cormorant Infant\";a:3:{s:5:\"label\";s:16:\"Cormorant Infant\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Cormorant SC\";a:3:{s:5:\"label\";s:12:\"Cormorant SC\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"Cormorant Unicase\";a:3:{s:5:\"label\";s:17:\"Cormorant Unicase\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"Cormorant Upright\";a:3:{s:5:\"label\";s:17:\"Cormorant Upright\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Courgette\";a:3:{s:5:\"label\";s:9:\"Courgette\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"Courier Prime\";a:3:{s:5:\"label\";s:13:\"Courier Prime\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:7:\"Cousine\";a:3:{s:5:\"label\";s:7:\"Cousine\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:8:\"Coustard\";a:3:{s:5:\"label\";s:8:\"Coustard\";s:8:\"variants\";a:2:{i:0;s:3:\"900\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:21:\"Covered By Your Grace\";a:3:{s:5:\"label\";s:21:\"Covered By Your Grace\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:12:\"Crafty Girls\";a:3:{s:5:\"label\";s:12:\"Crafty Girls\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Creepster\";a:3:{s:5:\"label\";s:9:\"Creepster\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Crete Round\";a:3:{s:5:\"label\";s:11:\"Crete Round\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Crimson Pro\";a:3:{s:5:\"label\";s:11:\"Crimson Pro\";s:8:\"variants\";a:16:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"800\";i:11;s:9:\"800italic\";i:12;s:3:\"900\";i:13;s:9:\"900italic\";i:14;s:6:\"italic\";i:15;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Crimson Text\";a:3:{s:5:\"label\";s:12:\"Crimson Text\";s:8:\"variants\";a:6:{i:0;s:3:\"600\";i:1;s:9:\"600italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Croissant One\";a:3:{s:5:\"label\";s:13:\"Croissant One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Crushed\";a:3:{s:5:\"label\";s:7:\"Crushed\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Cuprum\";a:3:{s:5:\"label\";s:6:\"Cuprum\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Cute Font\";a:3:{s:5:\"label\";s:9:\"Cute Font\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Cutive\";a:3:{s:5:\"label\";s:6:\"Cutive\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Cutive Mono\";a:3:{s:5:\"label\";s:11:\"Cutive Mono\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:7:\"DM Mono\";a:3:{s:5:\"label\";s:7:\"DM Mono\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:7:\"DM Sans\";a:3:{s:5:\"label\";s:7:\"DM Sans\";s:8:\"variants\";a:6:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"DM Serif Display\";a:3:{s:5:\"label\";s:16:\"DM Serif Display\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"DM Serif Text\";a:3:{s:5:\"label\";s:13:\"DM Serif Text\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Damion\";a:3:{s:5:\"label\";s:6:\"Damion\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:14:\"Dancing Script\";a:3:{s:5:\"label\";s:14:\"Dancing Script\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Dangrek\";a:3:{s:5:\"label\";s:7:\"Dangrek\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:16:\"Darker Grotesque\";a:3:{s:5:\"label\";s:16:\"Darker Grotesque\";s:8:\"variants\";a:7:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"David Libre\";a:3:{s:5:\"label\";s:11:\"David Libre\";s:8:\"variants\";a:3:{i:0;s:3:\"500\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:20:\"Dawning of a New Day\";a:3:{s:5:\"label\";s:20:\"Dawning of a New Day\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Days One\";a:3:{s:5:\"label\";s:8:\"Days One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Dekko\";a:3:{s:5:\"label\";s:5:\"Dekko\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Delius\";a:3:{s:5:\"label\";s:6:\"Delius\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:17:\"Delius Swash Caps\";a:3:{s:5:\"label\";s:17:\"Delius Swash Caps\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:14:\"Delius Unicase\";a:3:{s:5:\"label\";s:14:\"Delius Unicase\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"Della Respira\";a:3:{s:5:\"label\";s:13:\"Della Respira\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Denk One\";a:3:{s:5:\"label\";s:8:\"Denk One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Devonshire\";a:3:{s:5:\"label\";s:10:\"Devonshire\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Dhurjati\";a:3:{s:5:\"label\";s:8:\"Dhurjati\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Didact Gothic\";a:3:{s:5:\"label\";s:13:\"Didact Gothic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Diplomata\";a:3:{s:5:\"label\";s:9:\"Diplomata\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Diplomata SC\";a:3:{s:5:\"label\";s:12:\"Diplomata SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Do Hyeon\";a:3:{s:5:\"label\";s:8:\"Do Hyeon\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Dokdo\";a:3:{s:5:\"label\";s:5:\"Dokdo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Domine\";a:3:{s:5:\"label\";s:6:\"Domine\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Donegal One\";a:3:{s:5:\"label\";s:11:\"Donegal One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Doppio One\";a:3:{s:5:\"label\";s:10:\"Doppio One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Dorsa\";a:3:{s:5:\"label\";s:5:\"Dorsa\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Dosis\";a:3:{s:5:\"label\";s:5:\"Dosis\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Dr Sugiyama\";a:3:{s:5:\"label\";s:11:\"Dr Sugiyama\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Duru Sans\";a:3:{s:5:\"label\";s:9:\"Duru Sans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Dynalight\";a:3:{s:5:\"label\";s:9:\"Dynalight\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"EB Garamond\";a:3:{s:5:\"label\";s:11:\"EB Garamond\";s:8:\"variants\";a:10:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:3:\"800\";i:7;s:9:\"800italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Eagle Lake\";a:3:{s:5:\"label\";s:10:\"Eagle Lake\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:14:\"East Sea Dokdo\";a:3:{s:5:\"label\";s:14:\"East Sea Dokdo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Eater\";a:3:{s:5:\"label\";s:5:\"Eater\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Economica\";a:3:{s:5:\"label\";s:9:\"Economica\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Eczar\";a:3:{s:5:\"label\";s:5:\"Eczar\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"El Messiri\";a:3:{s:5:\"label\";s:10:\"El Messiri\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Electrolize\";a:3:{s:5:\"label\";s:11:\"Electrolize\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Elsie\";a:3:{s:5:\"label\";s:5:\"Elsie\";s:8:\"variants\";a:2:{i:0;s:3:\"900\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:16:\"Elsie Swash Caps\";a:3:{s:5:\"label\";s:16:\"Elsie Swash Caps\";s:8:\"variants\";a:2:{i:0;s:3:\"900\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Emblema One\";a:3:{s:5:\"label\";s:11:\"Emblema One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Emilys Candy\";a:3:{s:5:\"label\";s:12:\"Emilys Candy\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Encode Sans\";a:3:{s:5:\"label\";s:11:\"Encode Sans\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"Encode Sans Condensed\";a:3:{s:5:\"label\";s:21:\"Encode Sans Condensed\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:20:\"Encode Sans Expanded\";a:3:{s:5:\"label\";s:20:\"Encode Sans Expanded\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:26:\"Encode Sans Semi Condensed\";a:3:{s:5:\"label\";s:26:\"Encode Sans Semi Condensed\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:25:\"Encode Sans Semi Expanded\";a:3:{s:5:\"label\";s:25:\"Encode Sans Semi Expanded\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Engagement\";a:3:{s:5:\"label\";s:10:\"Engagement\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Englebert\";a:3:{s:5:\"label\";s:9:\"Englebert\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Enriqueta\";a:3:{s:5:\"label\";s:9:\"Enriqueta\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Erica One\";a:3:{s:5:\"label\";s:9:\"Erica One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Esteban\";a:3:{s:5:\"label\";s:7:\"Esteban\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:15:\"Euphoria Script\";a:3:{s:5:\"label\";s:15:\"Euphoria Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Ewert\";a:3:{s:5:\"label\";s:5:\"Ewert\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:3:\"Exo\";a:3:{s:5:\"label\";s:3:\"Exo\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Exo 2\";a:3:{s:5:\"label\";s:5:\"Exo 2\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Expletus Sans\";a:3:{s:5:\"label\";s:13:\"Expletus Sans\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Fahkwang\";a:3:{s:5:\"label\";s:8:\"Fahkwang\";s:8:\"variants\";a:12:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Fanwood Text\";a:3:{s:5:\"label\";s:12:\"Fanwood Text\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Farro\";a:3:{s:5:\"label\";s:5:\"Farro\";s:8:\"variants\";a:4:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Farsan\";a:3:{s:5:\"label\";s:6:\"Farsan\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Fascinate\";a:3:{s:5:\"label\";s:9:\"Fascinate\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:16:\"Fascinate Inline\";a:3:{s:5:\"label\";s:16:\"Fascinate Inline\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Faster One\";a:3:{s:5:\"label\";s:10:\"Faster One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Fasthand\";a:3:{s:5:\"label\";s:8:\"Fasthand\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Fauna One\";a:3:{s:5:\"label\";s:9:\"Fauna One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Faustina\";a:3:{s:5:\"label\";s:8:\"Faustina\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Federant\";a:3:{s:5:\"label\";s:8:\"Federant\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Federo\";a:3:{s:5:\"label\";s:6:\"Federo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Felipa\";a:3:{s:5:\"label\";s:6:\"Felipa\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Fenix\";a:3:{s:5:\"label\";s:5:\"Fenix\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Finger Paint\";a:3:{s:5:\"label\";s:12:\"Finger Paint\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Fira Code\";a:3:{s:5:\"label\";s:9:\"Fira Code\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:9:\"Fira Mono\";a:3:{s:5:\"label\";s:9:\"Fira Mono\";s:8:\"variants\";a:3:{i:0;s:3:\"500\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:9:\"Fira Sans\";a:3:{s:5:\"label\";s:9:\"Fira Sans\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Fira Sans Condensed\";a:3:{s:5:\"label\";s:19:\"Fira Sans Condensed\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:25:\"Fira Sans Extra Condensed\";a:3:{s:5:\"label\";s:25:\"Fira Sans Extra Condensed\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Fjalla One\";a:3:{s:5:\"label\";s:10:\"Fjalla One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Fjord One\";a:3:{s:5:\"label\";s:9:\"Fjord One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Flamenco\";a:3:{s:5:\"label\";s:8:\"Flamenco\";s:8:\"variants\";a:2:{i:0;s:3:\"300\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Flavors\";a:3:{s:5:\"label\";s:7:\"Flavors\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Fondamento\";a:3:{s:5:\"label\";s:10:\"Fondamento\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:16:\"Fontdiner Swanky\";a:3:{s:5:\"label\";s:16:\"Fontdiner Swanky\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Forum\";a:3:{s:5:\"label\";s:5:\"Forum\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Francois One\";a:3:{s:5:\"label\";s:12:\"Francois One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Frank Ruhl Libre\";a:3:{s:5:\"label\";s:16:\"Frank Ruhl Libre\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"700\";i:3;s:3:\"900\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Freckle Face\";a:3:{s:5:\"label\";s:12:\"Freckle Face\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:20:\"Fredericka the Great\";a:3:{s:5:\"label\";s:20:\"Fredericka the Great\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Fredoka One\";a:3:{s:5:\"label\";s:11:\"Fredoka One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Freehand\";a:3:{s:5:\"label\";s:8:\"Freehand\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Fresca\";a:3:{s:5:\"label\";s:6:\"Fresca\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Frijole\";a:3:{s:5:\"label\";s:7:\"Frijole\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Fruktur\";a:3:{s:5:\"label\";s:7:\"Fruktur\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Fugaz One\";a:3:{s:5:\"label\";s:9:\"Fugaz One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"GFS Didot\";a:3:{s:5:\"label\";s:9:\"GFS Didot\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:15:\"GFS Neohellenic\";a:3:{s:5:\"label\";s:15:\"GFS Neohellenic\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Gabriela\";a:3:{s:5:\"label\";s:8:\"Gabriela\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Gaegu\";a:3:{s:5:\"label\";s:5:\"Gaegu\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Gafata\";a:3:{s:5:\"label\";s:6:\"Gafata\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Galada\";a:3:{s:5:\"label\";s:6:\"Galada\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Galdeano\";a:3:{s:5:\"label\";s:8:\"Galdeano\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Galindo\";a:3:{s:5:\"label\";s:7:\"Galindo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Gamja Flower\";a:3:{s:5:\"label\";s:12:\"Gamja Flower\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Gayathri\";a:3:{s:5:\"label\";s:8:\"Gayathri\";s:8:\"variants\";a:3:{i:0;s:3:\"100\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Gelasio\";a:3:{s:5:\"label\";s:7:\"Gelasio\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Gentium Basic\";a:3:{s:5:\"label\";s:13:\"Gentium Basic\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:18:\"Gentium Book Basic\";a:3:{s:5:\"label\";s:18:\"Gentium Book Basic\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:3:\"Geo\";a:3:{s:5:\"label\";s:3:\"Geo\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Geostar\";a:3:{s:5:\"label\";s:7:\"Geostar\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Geostar Fill\";a:3:{s:5:\"label\";s:12:\"Geostar Fill\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Germania One\";a:3:{s:5:\"label\";s:12:\"Germania One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Gidugu\";a:3:{s:5:\"label\";s:6:\"Gidugu\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Gilda Display\";a:3:{s:5:\"label\";s:13:\"Gilda Display\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Girassol\";a:3:{s:5:\"label\";s:8:\"Girassol\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Give You Glory\";a:3:{s:5:\"label\";s:14:\"Give You Glory\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"Glass Antiqua\";a:3:{s:5:\"label\";s:13:\"Glass Antiqua\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Glegoo\";a:3:{s:5:\"label\";s:6:\"Glegoo\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"Gloria Hallelujah\";a:3:{s:5:\"label\";s:17:\"Gloria Hallelujah\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:10:\"Goblin One\";a:3:{s:5:\"label\";s:10:\"Goblin One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Gochi Hand\";a:3:{s:5:\"label\";s:10:\"Gochi Hand\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Gorditas\";a:3:{s:5:\"label\";s:8:\"Gorditas\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Gothic A1\";a:3:{s:5:\"label\";s:9:\"Gothic A1\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Gotu\";a:3:{s:5:\"label\";s:4:\"Gotu\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"Goudy Bookletter 1911\";a:3:{s:5:\"label\";s:21:\"Goudy Bookletter 1911\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Graduate\";a:3:{s:5:\"label\";s:8:\"Graduate\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Grand Hotel\";a:3:{s:5:\"label\";s:11:\"Grand Hotel\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:12:\"Gravitas One\";a:3:{s:5:\"label\";s:12:\"Gravitas One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Great Vibes\";a:3:{s:5:\"label\";s:11:\"Great Vibes\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Grenze\";a:3:{s:5:\"label\";s:6:\"Grenze\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:14:\"Grenze Gotisch\";a:3:{s:5:\"label\";s:14:\"Grenze Gotisch\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Griffy\";a:3:{s:5:\"label\";s:6:\"Griffy\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Gruppo\";a:3:{s:5:\"label\";s:6:\"Gruppo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Gudea\";a:3:{s:5:\"label\";s:5:\"Gudea\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:6:\"italic\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Gugi\";a:3:{s:5:\"label\";s:4:\"Gugi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Gupter\";a:3:{s:5:\"label\";s:6:\"Gupter\";s:8:\"variants\";a:3:{i:0;s:3:\"500\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Gurajada\";a:3:{s:5:\"label\";s:8:\"Gurajada\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Habibi\";a:3:{s:5:\"label\";s:6:\"Habibi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Halant\";a:3:{s:5:\"label\";s:6:\"Halant\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:15:\"Hammersmith One\";a:3:{s:5:\"label\";s:15:\"Hammersmith One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Hanalei\";a:3:{s:5:\"label\";s:7:\"Hanalei\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Hanalei Fill\";a:3:{s:5:\"label\";s:12:\"Hanalei Fill\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Handlee\";a:3:{s:5:\"label\";s:7:\"Handlee\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Hanuman\";a:3:{s:5:\"label\";s:7:\"Hanuman\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Happy Monkey\";a:3:{s:5:\"label\";s:12:\"Happy Monkey\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Harmattan\";a:3:{s:5:\"label\";s:9:\"Harmattan\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Headland One\";a:3:{s:5:\"label\";s:12:\"Headland One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Heebo\";a:3:{s:5:\"label\";s:5:\"Heebo\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Henny Penny\";a:3:{s:5:\"label\";s:11:\"Henny Penny\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Hepta Slab\";a:3:{s:5:\"label\";s:10:\"Hepta Slab\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:20:\"Herr Von Muellerhoff\";a:3:{s:5:\"label\";s:20:\"Herr Von Muellerhoff\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Hi Melody\";a:3:{s:5:\"label\";s:9:\"Hi Melody\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:4:\"Hind\";a:3:{s:5:\"label\";s:4:\"Hind\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Hind Guntur\";a:3:{s:5:\"label\";s:11:\"Hind Guntur\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Hind Madurai\";a:3:{s:5:\"label\";s:12:\"Hind Madurai\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Hind Siliguri\";a:3:{s:5:\"label\";s:13:\"Hind Siliguri\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Hind Vadodara\";a:3:{s:5:\"label\";s:13:\"Hind Vadodara\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Holtwood One SC\";a:3:{s:5:\"label\";s:15:\"Holtwood One SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:14:\"Homemade Apple\";a:3:{s:5:\"label\";s:14:\"Homemade Apple\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Homenaje\";a:3:{s:5:\"label\";s:8:\"Homenaje\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"IBM Plex Mono\";a:3:{s:5:\"label\";s:13:\"IBM Plex Mono\";s:8:\"variants\";a:14:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:13:\"IBM Plex Sans\";a:3:{s:5:\"label\";s:13:\"IBM Plex Sans\";s:8:\"variants\";a:14:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:23:\"IBM Plex Sans Condensed\";a:3:{s:5:\"label\";s:23:\"IBM Plex Sans Condensed\";s:8:\"variants\";a:14:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"IBM Plex Serif\";a:3:{s:5:\"label\";s:14:\"IBM Plex Serif\";s:8:\"variants\";a:14:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:15:\"IM Fell DW Pica\";a:3:{s:5:\"label\";s:15:\"IM Fell DW Pica\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:18:\"IM Fell DW Pica SC\";a:3:{s:5:\"label\";s:18:\"IM Fell DW Pica SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:19:\"IM Fell Double Pica\";a:3:{s:5:\"label\";s:19:\"IM Fell Double Pica\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:22:\"IM Fell Double Pica SC\";a:3:{s:5:\"label\";s:22:\"IM Fell Double Pica SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:15:\"IM Fell English\";a:3:{s:5:\"label\";s:15:\"IM Fell English\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:18:\"IM Fell English SC\";a:3:{s:5:\"label\";s:18:\"IM Fell English SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:20:\"IM Fell French Canon\";a:3:{s:5:\"label\";s:20:\"IM Fell French Canon\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:23:\"IM Fell French Canon SC\";a:3:{s:5:\"label\";s:23:\"IM Fell French Canon SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:20:\"IM Fell Great Primer\";a:3:{s:5:\"label\";s:20:\"IM Fell Great Primer\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:23:\"IM Fell Great Primer SC\";a:3:{s:5:\"label\";s:23:\"IM Fell Great Primer SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:16:\"Ibarra Real Nova\";a:3:{s:5:\"label\";s:16:\"Ibarra Real Nova\";s:8:\"variants\";a:6:{i:0;s:3:\"600\";i:1;s:9:\"600italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Iceberg\";a:3:{s:5:\"label\";s:7:\"Iceberg\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Iceland\";a:3:{s:5:\"label\";s:7:\"Iceland\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Imprima\";a:3:{s:5:\"label\";s:7:\"Imprima\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Inconsolata\";a:3:{s:5:\"label\";s:11:\"Inconsolata\";s:8:\"variants\";a:8:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:3:\"900\";i:7;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:5:\"Inder\";a:3:{s:5:\"label\";s:5:\"Inder\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Indie Flower\";a:3:{s:5:\"label\";s:12:\"Indie Flower\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Inika\";a:3:{s:5:\"label\";s:5:\"Inika\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:14:\"Inknut Antiqua\";a:3:{s:5:\"label\";s:14:\"Inknut Antiqua\";s:8:\"variants\";a:7:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Inria Sans\";a:3:{s:5:\"label\";s:10:\"Inria Sans\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Inria Serif\";a:3:{s:5:\"label\";s:11:\"Inria Serif\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Inter\";a:3:{s:5:\"label\";s:5:\"Inter\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Irish Grover\";a:3:{s:5:\"label\";s:12:\"Irish Grover\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Istok Web\";a:3:{s:5:\"label\";s:9:\"Istok Web\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Italiana\";a:3:{s:5:\"label\";s:8:\"Italiana\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Italianno\";a:3:{s:5:\"label\";s:9:\"Italianno\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:4:\"Itim\";a:3:{s:5:\"label\";s:4:\"Itim\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:16:\"Jacques Francois\";a:3:{s:5:\"label\";s:16:\"Jacques Francois\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:23:\"Jacques Francois Shadow\";a:3:{s:5:\"label\";s:23:\"Jacques Francois Shadow\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Jaldi\";a:3:{s:5:\"label\";s:5:\"Jaldi\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Jim Nightshade\";a:3:{s:5:\"label\";s:14:\"Jim Nightshade\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:10:\"Jockey One\";a:3:{s:5:\"label\";s:10:\"Jockey One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Jolly Lodger\";a:3:{s:5:\"label\";s:12:\"Jolly Lodger\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Jomhuria\";a:3:{s:5:\"label\";s:8:\"Jomhuria\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Jomolhari\";a:3:{s:5:\"label\";s:9:\"Jomolhari\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Josefin Sans\";a:3:{s:5:\"label\";s:12:\"Josefin Sans\";s:8:\"variants\";a:14:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Josefin Slab\";a:3:{s:5:\"label\";s:12:\"Josefin Slab\";s:8:\"variants\";a:10:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:4:\"Jost\";a:3:{s:5:\"label\";s:4:\"Jost\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Joti One\";a:3:{s:5:\"label\";s:8:\"Joti One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:3:\"Jua\";a:3:{s:5:\"label\";s:3:\"Jua\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Judson\";a:3:{s:5:\"label\";s:6:\"Judson\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:6:\"italic\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Julee\";a:3:{s:5:\"label\";s:5:\"Julee\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:15:\"Julius Sans One\";a:3:{s:5:\"label\";s:15:\"Julius Sans One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Junge\";a:3:{s:5:\"label\";s:5:\"Junge\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:4:\"Jura\";a:3:{s:5:\"label\";s:4:\"Jura\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Just Another Hand\";a:3:{s:5:\"label\";s:17:\"Just Another Hand\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:23:\"Just Me Again Down Here\";a:3:{s:5:\"label\";s:23:\"Just Me Again Down Here\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:3:\"K2D\";a:3:{s:5:\"label\";s:3:\"K2D\";s:8:\"variants\";a:16:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:6:\"italic\";i:15;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Kadwa\";a:3:{s:5:\"label\";s:5:\"Kadwa\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Kalam\";a:3:{s:5:\"label\";s:5:\"Kalam\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Kameron\";a:3:{s:5:\"label\";s:7:\"Kameron\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Kanit\";a:3:{s:5:\"label\";s:5:\"Kanit\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Kantumruy\";a:3:{s:5:\"label\";s:9:\"Kantumruy\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Karla\";a:3:{s:5:\"label\";s:5:\"Karla\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Karma\";a:3:{s:5:\"label\";s:5:\"Karma\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Katibeh\";a:3:{s:5:\"label\";s:7:\"Katibeh\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Kaushan Script\";a:3:{s:5:\"label\";s:14:\"Kaushan Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Kavivanar\";a:3:{s:5:\"label\";s:9:\"Kavivanar\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Kavoon\";a:3:{s:5:\"label\";s:6:\"Kavoon\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Kdam Thmor\";a:3:{s:5:\"label\";s:10:\"Kdam Thmor\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Keania One\";a:3:{s:5:\"label\";s:10:\"Keania One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Kelly Slab\";a:3:{s:5:\"label\";s:10:\"Kelly Slab\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Kenia\";a:3:{s:5:\"label\";s:5:\"Kenia\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Khand\";a:3:{s:5:\"label\";s:5:\"Khand\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Khmer\";a:3:{s:5:\"label\";s:5:\"Khmer\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Khula\";a:3:{s:5:\"label\";s:5:\"Khula\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Kirang Haerang\";a:3:{s:5:\"label\";s:14:\"Kirang Haerang\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Kite One\";a:3:{s:5:\"label\";s:8:\"Kite One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Knewave\";a:3:{s:5:\"label\";s:7:\"Knewave\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:4:\"KoHo\";a:3:{s:5:\"label\";s:4:\"KoHo\";s:8:\"variants\";a:12:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Kodchasan\";a:3:{s:5:\"label\";s:9:\"Kodchasan\";s:8:\"variants\";a:12:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Kosugi\";a:3:{s:5:\"label\";s:6:\"Kosugi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Kosugi Maru\";a:3:{s:5:\"label\";s:11:\"Kosugi Maru\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Kotta One\";a:3:{s:5:\"label\";s:9:\"Kotta One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Koulen\";a:3:{s:5:\"label\";s:6:\"Koulen\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Kranky\";a:3:{s:5:\"label\";s:6:\"Kranky\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Kreon\";a:3:{s:5:\"label\";s:5:\"Kreon\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Kristi\";a:3:{s:5:\"label\";s:6:\"Kristi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Krona One\";a:3:{s:5:\"label\";s:9:\"Krona One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Krub\";a:3:{s:5:\"label\";s:4:\"Krub\";s:8:\"variants\";a:12:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Kulim Park\";a:3:{s:5:\"label\";s:10:\"Kulim Park\";s:8:\"variants\";a:10:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Kumar One\";a:3:{s:5:\"label\";s:9:\"Kumar One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:17:\"Kumar One Outline\";a:3:{s:5:\"label\";s:17:\"Kumar One Outline\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Kurale\";a:3:{s:5:\"label\";s:6:\"Kurale\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:15:\"La Belle Aurore\";a:3:{s:5:\"label\";s:15:\"La Belle Aurore\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Lacquer\";a:3:{s:5:\"label\";s:7:\"Lacquer\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Laila\";a:3:{s:5:\"label\";s:5:\"Laila\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Lakki Reddy\";a:3:{s:5:\"label\";s:11:\"Lakki Reddy\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Lalezar\";a:3:{s:5:\"label\";s:7:\"Lalezar\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Lancelot\";a:3:{s:5:\"label\";s:8:\"Lancelot\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Lateef\";a:3:{s:5:\"label\";s:6:\"Lateef\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:4:\"Lato\";a:3:{s:5:\"label\";s:4:\"Lato\";s:8:\"variants\";a:10:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:3:\"900\";i:7;s:9:\"900italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"League Script\";a:3:{s:5:\"label\";s:13:\"League Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:12:\"Leckerli One\";a:3:{s:5:\"label\";s:12:\"Leckerli One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Ledger\";a:3:{s:5:\"label\";s:6:\"Ledger\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Lekton\";a:3:{s:5:\"label\";s:6:\"Lekton\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:6:\"italic\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Lemon\";a:3:{s:5:\"label\";s:5:\"Lemon\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Lemonada\";a:3:{s:5:\"label\";s:8:\"Lemonada\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Lexend Deca\";a:3:{s:5:\"label\";s:11:\"Lexend Deca\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Lexend Exa\";a:3:{s:5:\"label\";s:10:\"Lexend Exa\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Lexend Giga\";a:3:{s:5:\"label\";s:11:\"Lexend Giga\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Lexend Mega\";a:3:{s:5:\"label\";s:11:\"Lexend Mega\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Lexend Peta\";a:3:{s:5:\"label\";s:11:\"Lexend Peta\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Lexend Tera\";a:3:{s:5:\"label\";s:11:\"Lexend Tera\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Lexend Zetta\";a:3:{s:5:\"label\";s:12:\"Lexend Zetta\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Libre Barcode 128\";a:3:{s:5:\"label\";s:17:\"Libre Barcode 128\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:22:\"Libre Barcode 128 Text\";a:3:{s:5:\"label\";s:22:\"Libre Barcode 128 Text\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:16:\"Libre Barcode 39\";a:3:{s:5:\"label\";s:16:\"Libre Barcode 39\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:25:\"Libre Barcode 39 Extended\";a:3:{s:5:\"label\";s:25:\"Libre Barcode 39 Extended\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:30:\"Libre Barcode 39 Extended Text\";a:3:{s:5:\"label\";s:30:\"Libre Barcode 39 Extended Text\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:21:\"Libre Barcode 39 Text\";a:3:{s:5:\"label\";s:21:\"Libre Barcode 39 Text\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:17:\"Libre Baskerville\";a:3:{s:5:\"label\";s:17:\"Libre Baskerville\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:6:\"italic\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:20:\"Libre Caslon Display\";a:3:{s:5:\"label\";s:20:\"Libre Caslon Display\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"Libre Caslon Text\";a:3:{s:5:\"label\";s:17:\"Libre Caslon Text\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:6:\"italic\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:14:\"Libre Franklin\";a:3:{s:5:\"label\";s:14:\"Libre Franklin\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Life Savers\";a:3:{s:5:\"label\";s:11:\"Life Savers\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:3:\"800\";i:2;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Lilita One\";a:3:{s:5:\"label\";s:10:\"Lilita One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Lily Script One\";a:3:{s:5:\"label\";s:15:\"Lily Script One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Limelight\";a:3:{s:5:\"label\";s:9:\"Limelight\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Linden Hill\";a:3:{s:5:\"label\";s:11:\"Linden Hill\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Literata\";a:3:{s:5:\"label\";s:8:\"Literata\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:16:\"Liu Jian Mao Cao\";a:3:{s:5:\"label\";s:16:\"Liu Jian Mao Cao\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Livvic\";a:3:{s:5:\"label\";s:6:\"Livvic\";s:8:\"variants\";a:16:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"900\";i:13;s:9:\"900italic\";i:14;s:6:\"italic\";i:15;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Lobster\";a:3:{s:5:\"label\";s:7:\"Lobster\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Lobster Two\";a:3:{s:5:\"label\";s:11:\"Lobster Two\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:16:\"Londrina Outline\";a:3:{s:5:\"label\";s:16:\"Londrina Outline\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Londrina Shadow\";a:3:{s:5:\"label\";s:15:\"Londrina Shadow\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Londrina Sketch\";a:3:{s:5:\"label\";s:15:\"Londrina Sketch\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Londrina Solid\";a:3:{s:5:\"label\";s:14:\"Londrina Solid\";s:8:\"variants\";a:4:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"900\";i:3;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Long Cang\";a:3:{s:5:\"label\";s:9:\"Long Cang\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:4:\"Lora\";a:3:{s:5:\"label\";s:4:\"Lora\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:21:\"Love Ya Like A Sister\";a:3:{s:5:\"label\";s:21:\"Love Ya Like A Sister\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:17:\"Loved by the King\";a:3:{s:5:\"label\";s:17:\"Loved by the King\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:14:\"Lovers Quarrel\";a:3:{s:5:\"label\";s:14:\"Lovers Quarrel\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:12:\"Luckiest Guy\";a:3:{s:5:\"label\";s:12:\"Luckiest Guy\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Lusitana\";a:3:{s:5:\"label\";s:8:\"Lusitana\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Lustria\";a:3:{s:5:\"label\";s:7:\"Lustria\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"M PLUS 1p\";a:3:{s:5:\"label\";s:9:\"M PLUS 1p\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"M PLUS Rounded 1c\";a:3:{s:5:\"label\";s:17:\"M PLUS Rounded 1c\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Ma Shan Zheng\";a:3:{s:5:\"label\";s:13:\"Ma Shan Zheng\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Macondo\";a:3:{s:5:\"label\";s:7:\"Macondo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:18:\"Macondo Swash Caps\";a:3:{s:5:\"label\";s:18:\"Macondo Swash Caps\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:4:\"Mada\";a:3:{s:5:\"label\";s:4:\"Mada\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Magra\";a:3:{s:5:\"label\";s:5:\"Magra\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Maiden Orange\";a:3:{s:5:\"label\";s:13:\"Maiden Orange\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Maitree\";a:3:{s:5:\"label\";s:7:\"Maitree\";s:8:\"variants\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:18:\"Major Mono Display\";a:3:{s:5:\"label\";s:18:\"Major Mono Display\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:4:\"Mako\";a:3:{s:5:\"label\";s:4:\"Mako\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Mali\";a:3:{s:5:\"label\";s:4:\"Mali\";s:8:\"variants\";a:12:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Mallanna\";a:3:{s:5:\"label\";s:8:\"Mallanna\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Mandali\";a:3:{s:5:\"label\";s:7:\"Mandali\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Manjari\";a:3:{s:5:\"label\";s:7:\"Manjari\";s:8:\"variants\";a:3:{i:0;s:3:\"100\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Manrope\";a:3:{s:5:\"label\";s:7:\"Manrope\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Mansalva\";a:3:{s:5:\"label\";s:8:\"Mansalva\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Manuale\";a:3:{s:5:\"label\";s:7:\"Manuale\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Marcellus\";a:3:{s:5:\"label\";s:9:\"Marcellus\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Marcellus SC\";a:3:{s:5:\"label\";s:12:\"Marcellus SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Marck Script\";a:3:{s:5:\"label\";s:12:\"Marck Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Margarine\";a:3:{s:5:\"label\";s:9:\"Margarine\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Markazi Text\";a:3:{s:5:\"label\";s:12:\"Markazi Text\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Marko One\";a:3:{s:5:\"label\";s:9:\"Marko One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Marmelad\";a:3:{s:5:\"label\";s:8:\"Marmelad\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Martel\";a:3:{s:5:\"label\";s:6:\"Martel\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Martel Sans\";a:3:{s:5:\"label\";s:11:\"Martel Sans\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Marvel\";a:3:{s:5:\"label\";s:6:\"Marvel\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Mate\";a:3:{s:5:\"label\";s:4:\"Mate\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Mate SC\";a:3:{s:5:\"label\";s:7:\"Mate SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Maven Pro\";a:3:{s:5:\"label\";s:9:\"Maven Pro\";s:8:\"variants\";a:6:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:3:\"900\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"McLaren\";a:3:{s:5:\"label\";s:7:\"McLaren\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Meddon\";a:3:{s:5:\"label\";s:6:\"Meddon\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"MedievalSharp\";a:3:{s:5:\"label\";s:13:\"MedievalSharp\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Medula One\";a:3:{s:5:\"label\";s:10:\"Medula One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Meera Inimai\";a:3:{s:5:\"label\";s:12:\"Meera Inimai\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Megrim\";a:3:{s:5:\"label\";s:6:\"Megrim\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Meie Script\";a:3:{s:5:\"label\";s:11:\"Meie Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Merienda\";a:3:{s:5:\"label\";s:8:\"Merienda\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:12:\"Merienda One\";a:3:{s:5:\"label\";s:12:\"Merienda One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:12:\"Merriweather\";a:3:{s:5:\"label\";s:12:\"Merriweather\";s:8:\"variants\";a:8:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:3:\"900\";i:5;s:9:\"900italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"Merriweather Sans\";a:3:{s:5:\"label\";s:17:\"Merriweather Sans\";s:8:\"variants\";a:8:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:3:\"800\";i:5;s:9:\"800italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Metal\";a:3:{s:5:\"label\";s:5:\"Metal\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Metal Mania\";a:3:{s:5:\"label\";s:11:\"Metal Mania\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Metamorphous\";a:3:{s:5:\"label\";s:12:\"Metamorphous\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Metrophobic\";a:3:{s:5:\"label\";s:11:\"Metrophobic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Michroma\";a:3:{s:5:\"label\";s:8:\"Michroma\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Milonga\";a:3:{s:5:\"label\";s:7:\"Milonga\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Miltonian\";a:3:{s:5:\"label\";s:9:\"Miltonian\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:16:\"Miltonian Tattoo\";a:3:{s:5:\"label\";s:16:\"Miltonian Tattoo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:4:\"Mina\";a:3:{s:5:\"label\";s:4:\"Mina\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Miniver\";a:3:{s:5:\"label\";s:7:\"Miniver\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Miriam Libre\";a:3:{s:5:\"label\";s:12:\"Miriam Libre\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Mirza\";a:3:{s:5:\"label\";s:5:\"Mirza\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Miss Fajardose\";a:3:{s:5:\"label\";s:14:\"Miss Fajardose\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:4:\"Mitr\";a:3:{s:5:\"label\";s:4:\"Mitr\";s:8:\"variants\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Modak\";a:3:{s:5:\"label\";s:5:\"Modak\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Modern Antiqua\";a:3:{s:5:\"label\";s:14:\"Modern Antiqua\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Mogra\";a:3:{s:5:\"label\";s:5:\"Mogra\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Molengo\";a:3:{s:5:\"label\";s:7:\"Molengo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Molle\";a:3:{s:5:\"label\";s:5:\"Molle\";s:8:\"variants\";a:1:{i:0;s:6:\"italic\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Monda\";a:3:{s:5:\"label\";s:5:\"Monda\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Monofett\";a:3:{s:5:\"label\";s:8:\"Monofett\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Monoton\";a:3:{s:5:\"label\";s:7:\"Monoton\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:20:\"Monsieur La Doulaise\";a:3:{s:5:\"label\";s:20:\"Monsieur La Doulaise\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Montaga\";a:3:{s:5:\"label\";s:7:\"Montaga\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Montez\";a:3:{s:5:\"label\";s:6:\"Montez\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:10:\"Montserrat\";a:3:{s:5:\"label\";s:10:\"Montserrat\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"Montserrat Alternates\";a:3:{s:5:\"label\";s:21:\"Montserrat Alternates\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:20:\"Montserrat Subrayada\";a:3:{s:5:\"label\";s:20:\"Montserrat Subrayada\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Moul\";a:3:{s:5:\"label\";s:4:\"Moul\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Moulpali\";a:3:{s:5:\"label\";s:8:\"Moulpali\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:22:\"Mountains of Christmas\";a:3:{s:5:\"label\";s:22:\"Mountains of Christmas\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Mouse Memoirs\";a:3:{s:5:\"label\";s:13:\"Mouse Memoirs\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Mr Bedfort\";a:3:{s:5:\"label\";s:10:\"Mr Bedfort\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Mr Dafoe\";a:3:{s:5:\"label\";s:8:\"Mr Dafoe\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:14:\"Mr De Haviland\";a:3:{s:5:\"label\";s:14:\"Mr De Haviland\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:19:\"Mrs Saint Delafield\";a:3:{s:5:\"label\";s:19:\"Mrs Saint Delafield\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"Mrs Sheppards\";a:3:{s:5:\"label\";s:13:\"Mrs Sheppards\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Mukta\";a:3:{s:5:\"label\";s:5:\"Mukta\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Mukta Mahee\";a:3:{s:5:\"label\";s:11:\"Mukta Mahee\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Mukta Malar\";a:3:{s:5:\"label\";s:11:\"Mukta Malar\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Mukta Vaani\";a:3:{s:5:\"label\";s:11:\"Mukta Vaani\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Muli\";a:3:{s:5:\"label\";s:4:\"Muli\";s:8:\"variants\";a:16:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"800\";i:11;s:9:\"800italic\";i:12;s:3:\"900\";i:13;s:9:\"900italic\";i:14;s:6:\"italic\";i:15;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"MuseoModerno\";a:3:{s:5:\"label\";s:12:\"MuseoModerno\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Mystery Quest\";a:3:{s:5:\"label\";s:13:\"Mystery Quest\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:3:\"NTR\";a:3:{s:5:\"label\";s:3:\"NTR\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Nanum Brush Script\";a:3:{s:5:\"label\";s:18:\"Nanum Brush Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:12:\"Nanum Gothic\";a:3:{s:5:\"label\";s:12:\"Nanum Gothic\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:3:\"800\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Nanum Gothic Coding\";a:3:{s:5:\"label\";s:19:\"Nanum Gothic Coding\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:14:\"Nanum Myeongjo\";a:3:{s:5:\"label\";s:14:\"Nanum Myeongjo\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:3:\"800\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:16:\"Nanum Pen Script\";a:3:{s:5:\"label\";s:16:\"Nanum Pen Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Neucha\";a:3:{s:5:\"label\";s:6:\"Neucha\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Neuton\";a:3:{s:5:\"label\";s:6:\"Neuton\";s:8:\"variants\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"New Rocker\";a:3:{s:5:\"label\";s:10:\"New Rocker\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"News Cycle\";a:3:{s:5:\"label\";s:10:\"News Cycle\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Niconne\";a:3:{s:5:\"label\";s:7:\"Niconne\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Niramit\";a:3:{s:5:\"label\";s:7:\"Niramit\";s:8:\"variants\";a:12:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Nixie One\";a:3:{s:5:\"label\";s:9:\"Nixie One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Nobile\";a:3:{s:5:\"label\";s:6:\"Nobile\";s:8:\"variants\";a:6:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Nokora\";a:3:{s:5:\"label\";s:6:\"Nokora\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Norican\";a:3:{s:5:\"label\";s:7:\"Norican\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Nosifer\";a:3:{s:5:\"label\";s:7:\"Nosifer\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Notable\";a:3:{s:5:\"label\";s:7:\"Notable\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:20:\"Nothing You Could Do\";a:3:{s:5:\"label\";s:20:\"Nothing You Could Do\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:12:\"Noticia Text\";a:3:{s:5:\"label\";s:12:\"Noticia Text\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Noto Sans\";a:3:{s:5:\"label\";s:9:\"Noto Sans\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Noto Sans HK\";a:3:{s:5:\"label\";s:12:\"Noto Sans HK\";s:8:\"variants\";a:6:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"700\";i:4;s:3:\"900\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Noto Sans JP\";a:3:{s:5:\"label\";s:12:\"Noto Sans JP\";s:8:\"variants\";a:6:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"700\";i:4;s:3:\"900\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Noto Sans KR\";a:3:{s:5:\"label\";s:12:\"Noto Sans KR\";s:8:\"variants\";a:6:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"700\";i:4;s:3:\"900\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Noto Sans SC\";a:3:{s:5:\"label\";s:12:\"Noto Sans SC\";s:8:\"variants\";a:6:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"700\";i:4;s:3:\"900\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Noto Sans TC\";a:3:{s:5:\"label\";s:12:\"Noto Sans TC\";s:8:\"variants\";a:6:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"700\";i:4;s:3:\"900\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Noto Serif\";a:3:{s:5:\"label\";s:10:\"Noto Serif\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Noto Serif JP\";a:3:{s:5:\"label\";s:13:\"Noto Serif JP\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Noto Serif KR\";a:3:{s:5:\"label\";s:13:\"Noto Serif KR\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Noto Serif SC\";a:3:{s:5:\"label\";s:13:\"Noto Serif SC\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Noto Serif TC\";a:3:{s:5:\"label\";s:13:\"Noto Serif TC\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Nova Cut\";a:3:{s:5:\"label\";s:8:\"Nova Cut\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Nova Flat\";a:3:{s:5:\"label\";s:9:\"Nova Flat\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Nova Mono\";a:3:{s:5:\"label\";s:9:\"Nova Mono\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:9:\"Nova Oval\";a:3:{s:5:\"label\";s:9:\"Nova Oval\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Nova Round\";a:3:{s:5:\"label\";s:10:\"Nova Round\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Nova Script\";a:3:{s:5:\"label\";s:11:\"Nova Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Nova Slim\";a:3:{s:5:\"label\";s:9:\"Nova Slim\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Nova Square\";a:3:{s:5:\"label\";s:11:\"Nova Square\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Numans\";a:3:{s:5:\"label\";s:6:\"Numans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Nunito\";a:3:{s:5:\"label\";s:6:\"Nunito\";s:8:\"variants\";a:14:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"800\";i:9;s:9:\"800italic\";i:10;s:3:\"900\";i:11;s:9:\"900italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Nunito Sans\";a:3:{s:5:\"label\";s:11:\"Nunito Sans\";s:8:\"variants\";a:14:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"800\";i:9;s:9:\"800italic\";i:10;s:3:\"900\";i:11;s:9:\"900italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Odibee Sans\";a:3:{s:5:\"label\";s:11:\"Odibee Sans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Odor Mean Chey\";a:3:{s:5:\"label\";s:14:\"Odor Mean Chey\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Offside\";a:3:{s:5:\"label\";s:7:\"Offside\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Old Standard TT\";a:3:{s:5:\"label\";s:15:\"Old Standard TT\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:6:\"italic\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Oldenburg\";a:3:{s:5:\"label\";s:9:\"Oldenburg\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Oleo Script\";a:3:{s:5:\"label\";s:11:\"Oleo Script\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:22:\"Oleo Script Swash Caps\";a:3:{s:5:\"label\";s:22:\"Oleo Script Swash Caps\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Open Sans\";a:3:{s:5:\"label\";s:9:\"Open Sans\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:3:\"800\";i:7;s:9:\"800italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Open Sans Condensed\";a:3:{s:5:\"label\";s:19:\"Open Sans Condensed\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Oranienbaum\";a:3:{s:5:\"label\";s:11:\"Oranienbaum\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Orbitron\";a:3:{s:5:\"label\";s:8:\"Orbitron\";s:8:\"variants\";a:6:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:3:\"900\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Oregano\";a:3:{s:5:\"label\";s:7:\"Oregano\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Orienta\";a:3:{s:5:\"label\";s:7:\"Orienta\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Original Surfer\";a:3:{s:5:\"label\";s:15:\"Original Surfer\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Oswald\";a:3:{s:5:\"label\";s:6:\"Oswald\";s:8:\"variants\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Over the Rainbow\";a:3:{s:5:\"label\";s:16:\"Over the Rainbow\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Overlock\";a:3:{s:5:\"label\";s:8:\"Overlock\";s:8:\"variants\";a:6:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:3:\"900\";i:3;s:9:\"900italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Overlock SC\";a:3:{s:5:\"label\";s:11:\"Overlock SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Overpass\";a:3:{s:5:\"label\";s:8:\"Overpass\";s:8:\"variants\";a:16:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"800\";i:11;s:9:\"800italic\";i:12;s:3:\"900\";i:13;s:9:\"900italic\";i:14;s:6:\"italic\";i:15;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Overpass Mono\";a:3:{s:5:\"label\";s:13:\"Overpass Mono\";s:8:\"variants\";a:4:{i:0;s:3:\"300\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:3:\"Ovo\";a:3:{s:5:\"label\";s:3:\"Ovo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Oxanium\";a:3:{s:5:\"label\";s:7:\"Oxanium\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Oxygen\";a:3:{s:5:\"label\";s:6:\"Oxygen\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Oxygen Mono\";a:3:{s:5:\"label\";s:11:\"Oxygen Mono\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:7:\"PT Mono\";a:3:{s:5:\"label\";s:7:\"PT Mono\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:7:\"PT Sans\";a:3:{s:5:\"label\";s:7:\"PT Sans\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"PT Sans Caption\";a:3:{s:5:\"label\";s:15:\"PT Sans Caption\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"PT Sans Narrow\";a:3:{s:5:\"label\";s:14:\"PT Sans Narrow\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"PT Serif\";a:3:{s:5:\"label\";s:8:\"PT Serif\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:16:\"PT Serif Caption\";a:3:{s:5:\"label\";s:16:\"PT Serif Caption\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Pacifico\";a:3:{s:5:\"label\";s:8:\"Pacifico\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Padauk\";a:3:{s:5:\"label\";s:6:\"Padauk\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Palanquin\";a:3:{s:5:\"label\";s:9:\"Palanquin\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Palanquin Dark\";a:3:{s:5:\"label\";s:14:\"Palanquin Dark\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Pangolin\";a:3:{s:5:\"label\";s:8:\"Pangolin\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Paprika\";a:3:{s:5:\"label\";s:7:\"Paprika\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Parisienne\";a:3:{s:5:\"label\";s:10:\"Parisienne\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:11:\"Passero One\";a:3:{s:5:\"label\";s:11:\"Passero One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Passion One\";a:3:{s:5:\"label\";s:11:\"Passion One\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:3:\"900\";i:2;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:18:\"Pathway Gothic One\";a:3:{s:5:\"label\";s:18:\"Pathway Gothic One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Patrick Hand\";a:3:{s:5:\"label\";s:12:\"Patrick Hand\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:15:\"Patrick Hand SC\";a:3:{s:5:\"label\";s:15:\"Patrick Hand SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Pattaya\";a:3:{s:5:\"label\";s:7:\"Pattaya\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Patua One\";a:3:{s:5:\"label\";s:9:\"Patua One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Pavanam\";a:3:{s:5:\"label\";s:7:\"Pavanam\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Paytone One\";a:3:{s:5:\"label\";s:11:\"Paytone One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Peddana\";a:3:{s:5:\"label\";s:7:\"Peddana\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Peralta\";a:3:{s:5:\"label\";s:7:\"Peralta\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:16:\"Permanent Marker\";a:3:{s:5:\"label\";s:16:\"Permanent Marker\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:19:\"Petit Formal Script\";a:3:{s:5:\"label\";s:19:\"Petit Formal Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Petrona\";a:3:{s:5:\"label\";s:7:\"Petrona\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Philosopher\";a:3:{s:5:\"label\";s:11:\"Philosopher\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Piedra\";a:3:{s:5:\"label\";s:6:\"Piedra\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Pinyon Script\";a:3:{s:5:\"label\";s:13:\"Pinyon Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:10:\"Pirata One\";a:3:{s:5:\"label\";s:10:\"Pirata One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Plaster\";a:3:{s:5:\"label\";s:7:\"Plaster\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:4:\"Play\";a:3:{s:5:\"label\";s:4:\"Play\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Playball\";a:3:{s:5:\"label\";s:8:\"Playball\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:16:\"Playfair Display\";a:3:{s:5:\"label\";s:16:\"Playfair Display\";s:8:\"variants\";a:12:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:3:\"800\";i:7;s:9:\"800italic\";i:8;s:3:\"900\";i:9;s:9:\"900italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:19:\"Playfair Display SC\";a:3:{s:5:\"label\";s:19:\"Playfair Display SC\";s:8:\"variants\";a:6:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:3:\"900\";i:3;s:9:\"900italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Podkova\";a:3:{s:5:\"label\";s:7:\"Podkova\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Poiret One\";a:3:{s:5:\"label\";s:10:\"Poiret One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Poller One\";a:3:{s:5:\"label\";s:10:\"Poller One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:4:\"Poly\";a:3:{s:5:\"label\";s:4:\"Poly\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Pompiere\";a:3:{s:5:\"label\";s:8:\"Pompiere\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Pontano Sans\";a:3:{s:5:\"label\";s:12:\"Pontano Sans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Poor Story\";a:3:{s:5:\"label\";s:10:\"Poor Story\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Poppins\";a:3:{s:5:\"label\";s:7:\"Poppins\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Port Lligat Sans\";a:3:{s:5:\"label\";s:16:\"Port Lligat Sans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Port Lligat Slab\";a:3:{s:5:\"label\";s:16:\"Port Lligat Slab\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:14:\"Pragati Narrow\";a:3:{s:5:\"label\";s:14:\"Pragati Narrow\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Prata\";a:3:{s:5:\"label\";s:5:\"Prata\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Preahvihear\";a:3:{s:5:\"label\";s:11:\"Preahvihear\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Press Start 2P\";a:3:{s:5:\"label\";s:14:\"Press Start 2P\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Pridi\";a:3:{s:5:\"label\";s:5:\"Pridi\";s:8:\"variants\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:14:\"Princess Sofia\";a:3:{s:5:\"label\";s:14:\"Princess Sofia\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Prociono\";a:3:{s:5:\"label\";s:8:\"Prociono\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Prompt\";a:3:{s:5:\"label\";s:6:\"Prompt\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Prosto One\";a:3:{s:5:\"label\";s:10:\"Prosto One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Proza Libre\";a:3:{s:5:\"label\";s:11:\"Proza Libre\";s:8:\"variants\";a:10:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:3:\"800\";i:7;s:9:\"800italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Public Sans\";a:3:{s:5:\"label\";s:11:\"Public Sans\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Puritan\";a:3:{s:5:\"label\";s:7:\"Puritan\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Purple Purse\";a:3:{s:5:\"label\";s:12:\"Purple Purse\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Quando\";a:3:{s:5:\"label\";s:6:\"Quando\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Quantico\";a:3:{s:5:\"label\";s:8:\"Quantico\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Quattrocento\";a:3:{s:5:\"label\";s:12:\"Quattrocento\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"Quattrocento Sans\";a:3:{s:5:\"label\";s:17:\"Quattrocento Sans\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Questrial\";a:3:{s:5:\"label\";s:9:\"Questrial\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Quicksand\";a:3:{s:5:\"label\";s:9:\"Quicksand\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Quintessential\";a:3:{s:5:\"label\";s:14:\"Quintessential\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Qwigley\";a:3:{s:5:\"label\";s:7:\"Qwigley\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:15:\"Racing Sans One\";a:3:{s:5:\"label\";s:15:\"Racing Sans One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Radley\";a:3:{s:5:\"label\";s:6:\"Radley\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Rajdhani\";a:3:{s:5:\"label\";s:8:\"Rajdhani\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Rakkas\";a:3:{s:5:\"label\";s:6:\"Rakkas\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Raleway\";a:3:{s:5:\"label\";s:7:\"Raleway\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Raleway Dots\";a:3:{s:5:\"label\";s:12:\"Raleway Dots\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Ramabhadra\";a:3:{s:5:\"label\";s:10:\"Ramabhadra\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Ramaraja\";a:3:{s:5:\"label\";s:8:\"Ramaraja\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Rambla\";a:3:{s:5:\"label\";s:6:\"Rambla\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Rammetto One\";a:3:{s:5:\"label\";s:12:\"Rammetto One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Ranchers\";a:3:{s:5:\"label\";s:8:\"Ranchers\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Rancho\";a:3:{s:5:\"label\";s:6:\"Rancho\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Ranga\";a:3:{s:5:\"label\";s:5:\"Ranga\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:4:\"Rasa\";a:3:{s:5:\"label\";s:4:\"Rasa\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Rationale\";a:3:{s:5:\"label\";s:9:\"Rationale\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Ravi Prakash\";a:3:{s:5:\"label\";s:12:\"Ravi Prakash\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Red Hat Display\";a:3:{s:5:\"label\";s:15:\"Red Hat Display\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:3:\"900\";i:5;s:9:\"900italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Red Hat Text\";a:3:{s:5:\"label\";s:12:\"Red Hat Text\";s:8:\"variants\";a:6:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Redressed\";a:3:{s:5:\"label\";s:9:\"Redressed\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Reem Kufi\";a:3:{s:5:\"label\";s:9:\"Reem Kufi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Reenie Beanie\";a:3:{s:5:\"label\";s:13:\"Reenie Beanie\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Revalia\";a:3:{s:5:\"label\";s:7:\"Revalia\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Rhodium Libre\";a:3:{s:5:\"label\";s:13:\"Rhodium Libre\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Ribeye\";a:3:{s:5:\"label\";s:6:\"Ribeye\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Ribeye Marrow\";a:3:{s:5:\"label\";s:13:\"Ribeye Marrow\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Righteous\";a:3:{s:5:\"label\";s:9:\"Righteous\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Risque\";a:3:{s:5:\"label\";s:6:\"Risque\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Roboto\";a:3:{s:5:\"label\";s:6:\"Roboto\";s:8:\"variants\";a:12:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"900\";i:9;s:9:\"900italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Roboto Condensed\";a:3:{s:5:\"label\";s:16:\"Roboto Condensed\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Roboto Mono\";a:3:{s:5:\"label\";s:11:\"Roboto Mono\";s:8:\"variants\";a:14:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:11:\"Roboto Slab\";a:3:{s:5:\"label\";s:11:\"Roboto Slab\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Rochester\";a:3:{s:5:\"label\";s:9:\"Rochester\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Rock Salt\";a:3:{s:5:\"label\";s:9:\"Rock Salt\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Rokkitt\";a:3:{s:5:\"label\";s:7:\"Rokkitt\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Romanesco\";a:3:{s:5:\"label\";s:9:\"Romanesco\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Ropa Sans\";a:3:{s:5:\"label\";s:9:\"Ropa Sans\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Rosario\";a:3:{s:5:\"label\";s:7:\"Rosario\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Rosarivo\";a:3:{s:5:\"label\";s:8:\"Rosarivo\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Rouge Script\";a:3:{s:5:\"label\";s:12:\"Rouge Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Rozha One\";a:3:{s:5:\"label\";s:9:\"Rozha One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Rubik\";a:3:{s:5:\"label\";s:5:\"Rubik\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:3:\"900\";i:7;s:9:\"900italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Rubik Mono One\";a:3:{s:5:\"label\";s:14:\"Rubik Mono One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Ruda\";a:3:{s:5:\"label\";s:4:\"Ruda\";s:8:\"variants\";a:6:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:3:\"900\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Rufina\";a:3:{s:5:\"label\";s:6:\"Rufina\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Ruge Boogie\";a:3:{s:5:\"label\";s:11:\"Ruge Boogie\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Ruluko\";a:3:{s:5:\"label\";s:6:\"Ruluko\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Rum Raisin\";a:3:{s:5:\"label\";s:10:\"Rum Raisin\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Ruslan Display\";a:3:{s:5:\"label\";s:14:\"Ruslan Display\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Russo One\";a:3:{s:5:\"label\";s:9:\"Russo One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Ruthie\";a:3:{s:5:\"label\";s:6:\"Ruthie\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:3:\"Rye\";a:3:{s:5:\"label\";s:3:\"Rye\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Sacramento\";a:3:{s:5:\"label\";s:10:\"Sacramento\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Sahitya\";a:3:{s:5:\"label\";s:7:\"Sahitya\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:4:\"Sail\";a:3:{s:5:\"label\";s:4:\"Sail\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Saira\";a:3:{s:5:\"label\";s:5:\"Saira\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Saira Condensed\";a:3:{s:5:\"label\";s:15:\"Saira Condensed\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"Saira Extra Condensed\";a:3:{s:5:\"label\";s:21:\"Saira Extra Condensed\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:20:\"Saira Semi Condensed\";a:3:{s:5:\"label\";s:20:\"Saira Semi Condensed\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Saira Stencil One\";a:3:{s:5:\"label\";s:17:\"Saira Stencil One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Salsa\";a:3:{s:5:\"label\";s:5:\"Salsa\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Sanchez\";a:3:{s:5:\"label\";s:7:\"Sanchez\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Sancreek\";a:3:{s:5:\"label\";s:8:\"Sancreek\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Sansita\";a:3:{s:5:\"label\";s:7:\"Sansita\";s:8:\"variants\";a:8:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:3:\"800\";i:3;s:9:\"800italic\";i:4;s:3:\"900\";i:5;s:9:\"900italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Sarabun\";a:3:{s:5:\"label\";s:7:\"Sarabun\";s:8:\"variants\";a:16:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:6:\"italic\";i:15;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Sarala\";a:3:{s:5:\"label\";s:6:\"Sarala\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Sarina\";a:3:{s:5:\"label\";s:6:\"Sarina\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Sarpanch\";a:3:{s:5:\"label\";s:8:\"Sarpanch\";s:8:\"variants\";a:6:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:3:\"900\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Satisfy\";a:3:{s:5:\"label\";s:7:\"Satisfy\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:15:\"Sawarabi Gothic\";a:3:{s:5:\"label\";s:15:\"Sawarabi Gothic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Sawarabi Mincho\";a:3:{s:5:\"label\";s:15:\"Sawarabi Mincho\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Scada\";a:3:{s:5:\"label\";s:5:\"Scada\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Scheherazade\";a:3:{s:5:\"label\";s:12:\"Scheherazade\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Schoolbell\";a:3:{s:5:\"label\";s:10:\"Schoolbell\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Scope One\";a:3:{s:5:\"label\";s:9:\"Scope One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:14:\"Seaweed Script\";a:3:{s:5:\"label\";s:14:\"Seaweed Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Secular One\";a:3:{s:5:\"label\";s:11:\"Secular One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Sedgwick Ave\";a:3:{s:5:\"label\";s:12:\"Sedgwick Ave\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:20:\"Sedgwick Ave Display\";a:3:{s:5:\"label\";s:20:\"Sedgwick Ave Display\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:3:\"Sen\";a:3:{s:5:\"label\";s:3:\"Sen\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:3:\"800\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Sevillana\";a:3:{s:5:\"label\";s:9:\"Sevillana\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Seymour One\";a:3:{s:5:\"label\";s:11:\"Seymour One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Shadows Into Light\";a:3:{s:5:\"label\";s:18:\"Shadows Into Light\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:22:\"Shadows Into Light Two\";a:3:{s:5:\"label\";s:22:\"Shadows Into Light Two\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Shanti\";a:3:{s:5:\"label\";s:6:\"Shanti\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Share\";a:3:{s:5:\"label\";s:5:\"Share\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Share Tech\";a:3:{s:5:\"label\";s:10:\"Share Tech\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Share Tech Mono\";a:3:{s:5:\"label\";s:15:\"Share Tech Mono\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:9:\"Shojumaru\";a:3:{s:5:\"label\";s:9:\"Shojumaru\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Short Stack\";a:3:{s:5:\"label\";s:11:\"Short Stack\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Shrikhand\";a:3:{s:5:\"label\";s:9:\"Shrikhand\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Siemreap\";a:3:{s:5:\"label\";s:8:\"Siemreap\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Sigmar One\";a:3:{s:5:\"label\";s:10:\"Sigmar One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Signika\";a:3:{s:5:\"label\";s:7:\"Signika\";s:8:\"variants\";a:4:{i:0;s:3:\"300\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Signika Negative\";a:3:{s:5:\"label\";s:16:\"Signika Negative\";s:8:\"variants\";a:4:{i:0;s:3:\"300\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Simonetta\";a:3:{s:5:\"label\";s:9:\"Simonetta\";s:8:\"variants\";a:4:{i:0;s:3:\"900\";i:1;s:9:\"900italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Single Day\";a:3:{s:5:\"label\";s:10:\"Single Day\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Sintony\";a:3:{s:5:\"label\";s:7:\"Sintony\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Sirin Stencil\";a:3:{s:5:\"label\";s:13:\"Sirin Stencil\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Six Caps\";a:3:{s:5:\"label\";s:8:\"Six Caps\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Skranji\";a:3:{s:5:\"label\";s:7:\"Skranji\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Slabo 13px\";a:3:{s:5:\"label\";s:10:\"Slabo 13px\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Slabo 27px\";a:3:{s:5:\"label\";s:10:\"Slabo 27px\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Slackey\";a:3:{s:5:\"label\";s:7:\"Slackey\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Smokum\";a:3:{s:5:\"label\";s:6:\"Smokum\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Smythe\";a:3:{s:5:\"label\";s:6:\"Smythe\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Sniglet\";a:3:{s:5:\"label\";s:7:\"Sniglet\";s:8:\"variants\";a:2:{i:0;s:3:\"800\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Snippet\";a:3:{s:5:\"label\";s:7:\"Snippet\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Snowburst One\";a:3:{s:5:\"label\";s:13:\"Snowburst One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Sofadi One\";a:3:{s:5:\"label\";s:10:\"Sofadi One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Sofia\";a:3:{s:5:\"label\";s:5:\"Sofia\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Solway\";a:3:{s:5:\"label\";s:6:\"Solway\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Song Myung\";a:3:{s:5:\"label\";s:10:\"Song Myung\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Sonsie One\";a:3:{s:5:\"label\";s:10:\"Sonsie One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:16:\"Sorts Mill Goudy\";a:3:{s:5:\"label\";s:16:\"Sorts Mill Goudy\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:15:\"Source Code Pro\";a:3:{s:5:\"label\";s:15:\"Source Code Pro\";s:8:\"variants\";a:14:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"900\";i:11;s:9:\"900italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:15:\"Source Sans Pro\";a:3:{s:5:\"label\";s:15:\"Source Sans Pro\";s:8:\"variants\";a:12:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"900\";i:9;s:9:\"900italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Source Serif Pro\";a:3:{s:5:\"label\";s:16:\"Source Serif Pro\";s:8:\"variants\";a:3:{i:0;s:3:\"600\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Space Mono\";a:3:{s:5:\"label\";s:10:\"Space Mono\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:7:\"Spartan\";a:3:{s:5:\"label\";s:7:\"Spartan\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Special Elite\";a:3:{s:5:\"label\";s:13:\"Special Elite\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Spectral\";a:3:{s:5:\"label\";s:8:\"Spectral\";s:8:\"variants\";a:14:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"800\";i:11;s:9:\"800italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Spectral SC\";a:3:{s:5:\"label\";s:11:\"Spectral SC\";s:8:\"variants\";a:14:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"800\";i:11;s:9:\"800italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Spicy Rice\";a:3:{s:5:\"label\";s:10:\"Spicy Rice\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Spinnaker\";a:3:{s:5:\"label\";s:9:\"Spinnaker\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Spirax\";a:3:{s:5:\"label\";s:6:\"Spirax\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Squada One\";a:3:{s:5:\"label\";s:10:\"Squada One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:20:\"Sree Krushnadevaraya\";a:3:{s:5:\"label\";s:20:\"Sree Krushnadevaraya\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Sriracha\";a:3:{s:5:\"label\";s:8:\"Sriracha\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Srisakdi\";a:3:{s:5:\"label\";s:8:\"Srisakdi\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Staatliches\";a:3:{s:5:\"label\";s:11:\"Staatliches\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Stalemate\";a:3:{s:5:\"label\";s:9:\"Stalemate\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"Stalinist One\";a:3:{s:5:\"label\";s:13:\"Stalinist One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Stardos Stencil\";a:3:{s:5:\"label\";s:15:\"Stardos Stencil\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:21:\"Stint Ultra Condensed\";a:3:{s:5:\"label\";s:21:\"Stint Ultra Condensed\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:20:\"Stint Ultra Expanded\";a:3:{s:5:\"label\";s:20:\"Stint Ultra Expanded\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Stoke\";a:3:{s:5:\"label\";s:5:\"Stoke\";s:8:\"variants\";a:2:{i:0;s:3:\"300\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Strait\";a:3:{s:5:\"label\";s:6:\"Strait\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Stylish\";a:3:{s:5:\"label\";s:7:\"Stylish\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Sue Ellen Francisco\";a:3:{s:5:\"label\";s:19:\"Sue Ellen Francisco\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Suez One\";a:3:{s:5:\"label\";s:8:\"Suez One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Sulphur Point\";a:3:{s:5:\"label\";s:13:\"Sulphur Point\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Sumana\";a:3:{s:5:\"label\";s:6:\"Sumana\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Sunflower\";a:3:{s:5:\"label\";s:9:\"Sunflower\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"700\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Sunshiney\";a:3:{s:5:\"label\";s:9:\"Sunshiney\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:16:\"Supermercado One\";a:3:{s:5:\"label\";s:16:\"Supermercado One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:4:\"Sura\";a:3:{s:5:\"label\";s:4:\"Sura\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Suranna\";a:3:{s:5:\"label\";s:7:\"Suranna\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Suravaram\";a:3:{s:5:\"label\";s:9:\"Suravaram\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Suwannaphum\";a:3:{s:5:\"label\";s:11:\"Suwannaphum\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:18:\"Swanky and Moo Moo\";a:3:{s:5:\"label\";s:18:\"Swanky and Moo Moo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Syncopate\";a:3:{s:5:\"label\";s:9:\"Syncopate\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Tajawal\";a:3:{s:5:\"label\";s:7:\"Tajawal\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Tangerine\";a:3:{s:5:\"label\";s:9:\"Tangerine\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Taprom\";a:3:{s:5:\"label\";s:6:\"Taprom\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Tauri\";a:3:{s:5:\"label\";s:5:\"Tauri\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Taviraj\";a:3:{s:5:\"label\";s:7:\"Taviraj\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:4:\"Teko\";a:3:{s:5:\"label\";s:4:\"Teko\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Telex\";a:3:{s:5:\"label\";s:5:\"Telex\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Tenali Ramakrishna\";a:3:{s:5:\"label\";s:18:\"Tenali Ramakrishna\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Tenor Sans\";a:3:{s:5:\"label\";s:10:\"Tenor Sans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Text Me One\";a:3:{s:5:\"label\";s:11:\"Text Me One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Thasadith\";a:3:{s:5:\"label\";s:9:\"Thasadith\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"The Girl Next Door\";a:3:{s:5:\"label\";s:18:\"The Girl Next Door\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Tienne\";a:3:{s:5:\"label\";s:6:\"Tienne\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:3:\"900\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Tillana\";a:3:{s:5:\"label\";s:7:\"Tillana\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Timmana\";a:3:{s:5:\"label\";s:7:\"Timmana\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Tinos\";a:3:{s:5:\"label\";s:5:\"Tinos\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Titan One\";a:3:{s:5:\"label\";s:9:\"Titan One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Titillium Web\";a:3:{s:5:\"label\";s:13:\"Titillium Web\";s:8:\"variants\";a:11:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"900\";i:9;s:6:\"italic\";i:10;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Tomorrow\";a:3:{s:5:\"label\";s:8:\"Tomorrow\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Trade Winds\";a:3:{s:5:\"label\";s:11:\"Trade Winds\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Trirong\";a:3:{s:5:\"label\";s:7:\"Trirong\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Trocchi\";a:3:{s:5:\"label\";s:7:\"Trocchi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Trochut\";a:3:{s:5:\"label\";s:7:\"Trochut\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:6:\"italic\";i:2;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Trykker\";a:3:{s:5:\"label\";s:7:\"Trykker\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Tulpen One\";a:3:{s:5:\"label\";s:10:\"Tulpen One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Turret Road\";a:3:{s:5:\"label\";s:11:\"Turret Road\";s:8:\"variants\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Ubuntu\";a:3:{s:5:\"label\";s:6:\"Ubuntu\";s:8:\"variants\";a:8:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Ubuntu Condensed\";a:3:{s:5:\"label\";s:16:\"Ubuntu Condensed\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Ubuntu Mono\";a:3:{s:5:\"label\";s:11:\"Ubuntu Mono\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:5:\"Ultra\";a:3:{s:5:\"label\";s:5:\"Ultra\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:14:\"Uncial Antiqua\";a:3:{s:5:\"label\";s:14:\"Uncial Antiqua\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Underdog\";a:3:{s:5:\"label\";s:8:\"Underdog\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Unica One\";a:3:{s:5:\"label\";s:9:\"Unica One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"UnifrakturCook\";a:3:{s:5:\"label\";s:14:\"UnifrakturCook\";s:8:\"variants\";a:1:{i:0;s:3:\"700\";}s:8:\"category\";s:7:\"display\";}s:18:\"UnifrakturMaguntia\";a:3:{s:5:\"label\";s:18:\"UnifrakturMaguntia\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Unkempt\";a:3:{s:5:\"label\";s:7:\"Unkempt\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Unlock\";a:3:{s:5:\"label\";s:6:\"Unlock\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:4:\"Unna\";a:3:{s:5:\"label\";s:4:\"Unna\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"VT323\";a:3:{s:5:\"label\";s:5:\"VT323\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:11:\"Vampiro One\";a:3:{s:5:\"label\";s:11:\"Vampiro One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Varela\";a:3:{s:5:\"label\";s:6:\"Varela\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Varela Round\";a:3:{s:5:\"label\";s:12:\"Varela Round\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Vast Shadow\";a:3:{s:5:\"label\";s:11:\"Vast Shadow\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Vesper Libre\";a:3:{s:5:\"label\";s:12:\"Vesper Libre\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"700\";i:2;s:3:\"900\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Viaoda Libre\";a:3:{s:5:\"label\";s:12:\"Viaoda Libre\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Vibes\";a:3:{s:5:\"label\";s:5:\"Vibes\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Vibur\";a:3:{s:5:\"label\";s:5:\"Vibur\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Vidaloka\";a:3:{s:5:\"label\";s:8:\"Vidaloka\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:4:\"Viga\";a:3:{s:5:\"label\";s:4:\"Viga\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Voces\";a:3:{s:5:\"label\";s:5:\"Voces\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Volkhov\";a:3:{s:5:\"label\";s:7:\"Volkhov\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Vollkorn\";a:3:{s:5:\"label\";s:8:\"Vollkorn\";s:8:\"variants\";a:12:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:3:\"800\";i:7;s:9:\"800italic\";i:8;s:3:\"900\";i:9;s:9:\"900italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Vollkorn SC\";a:3:{s:5:\"label\";s:11:\"Vollkorn SC\";s:8:\"variants\";a:4:{i:0;s:3:\"600\";i:1;s:3:\"700\";i:2;s:3:\"900\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Voltaire\";a:3:{s:5:\"label\";s:8:\"Voltaire\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:23:\"Waiting for the Sunrise\";a:3:{s:5:\"label\";s:23:\"Waiting for the Sunrise\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Wallpoet\";a:3:{s:5:\"label\";s:8:\"Wallpoet\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Walter Turncoat\";a:3:{s:5:\"label\";s:15:\"Walter Turncoat\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Warnes\";a:3:{s:5:\"label\";s:6:\"Warnes\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Wellfleet\";a:3:{s:5:\"label\";s:9:\"Wellfleet\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Wendy One\";a:3:{s:5:\"label\";s:9:\"Wendy One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Wire One\";a:3:{s:5:\"label\";s:8:\"Wire One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Work Sans\";a:3:{s:5:\"label\";s:9:\"Work Sans\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Yanone Kaffeesatz\";a:3:{s:5:\"label\";s:17:\"Yanone Kaffeesatz\";s:8:\"variants\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Yantramanav\";a:3:{s:5:\"label\";s:11:\"Yantramanav\";s:8:\"variants\";a:6:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"700\";i:4;s:3:\"900\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Yatra One\";a:3:{s:5:\"label\";s:9:\"Yatra One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Yellowtail\";a:3:{s:5:\"label\";s:10:\"Yellowtail\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Yeon Sung\";a:3:{s:5:\"label\";s:9:\"Yeon Sung\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Yeseva One\";a:3:{s:5:\"label\";s:10:\"Yeseva One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Yesteryear\";a:3:{s:5:\"label\";s:10:\"Yesteryear\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:4:\"Yrsa\";a:3:{s:5:\"label\";s:4:\"Yrsa\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"ZCOOL KuaiLe\";a:3:{s:5:\"label\";s:12:\"ZCOOL KuaiLe\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:21:\"ZCOOL QingKe HuangYou\";a:3:{s:5:\"label\";s:21:\"ZCOOL QingKe HuangYou\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"ZCOOL XiaoWei\";a:3:{s:5:\"label\";s:13:\"ZCOOL XiaoWei\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Zeyada\";a:3:{s:5:\"label\";s:6:\"Zeyada\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"Zhi Mang Xing\";a:3:{s:5:\"label\";s:13:\"Zhi Mang Xing\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:10:\"Zilla Slab\";a:3:{s:5:\"label\";s:10:\"Zilla Slab\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:20:\"Zilla Slab Highlight\";a:3:{s:5:\"label\";s:20:\"Zilla Slab Highlight\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}}','off'),(306,'kirki_downloaded_font_files','a:21:{s:116:\"https://fonts.gstatic.com/s/opensans/v40/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4taVQUwaEQXjN_mQ.woff\";s:137:\"/home/ndd6915/naplesirrigation.com/wp-content/fonts/open-sans/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4taVQUwaEQXjN_mQ.woff\";s:116:\"https://fonts.gstatic.com/s/opensans/v40/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4kaVQUwaEQXjN_mQ.woff\";s:137:\"/home/ndd6915/naplesirrigation.com/wp-content/fonts/open-sans/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4kaVQUwaEQXjN_mQ.woff\";s:116:\"https://fonts.gstatic.com/s/opensans/v40/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4saVQUwaEQXjN_mQ.woff\";s:137:\"/home/ndd6915/naplesirrigation.com/wp-content/fonts/open-sans/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4saVQUwaEQXjN_mQ.woff\";s:116:\"https://fonts.gstatic.com/s/opensans/v40/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4jaVQUwaEQXjN_mQ.woff\";s:137:\"/home/ndd6915/naplesirrigation.com/wp-content/fonts/open-sans/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4jaVQUwaEQXjN_mQ.woff\";s:116:\"https://fonts.gstatic.com/s/opensans/v40/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4iaVQUwaEQXjN_mQ.woff\";s:137:\"/home/ndd6915/naplesirrigation.com/wp-content/fonts/open-sans/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4iaVQUwaEQXjN_mQ.woff\";s:116:\"https://fonts.gstatic.com/s/opensans/v40/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B5caVQUwaEQXjN_mQ.woff\";s:137:\"/home/ndd6915/naplesirrigation.com/wp-content/fonts/open-sans/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B5caVQUwaEQXjN_mQ.woff\";s:116:\"https://fonts.gstatic.com/s/opensans/v40/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B5OaVQUwaEQXjN_mQ.woff\";s:137:\"/home/ndd6915/naplesirrigation.com/wp-content/fonts/open-sans/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B5OaVQUwaEQXjN_mQ.woff\";s:116:\"https://fonts.gstatic.com/s/opensans/v40/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4vaVQUwaEQXjN_mQ.woff\";s:137:\"/home/ndd6915/naplesirrigation.com/wp-content/fonts/open-sans/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4vaVQUwaEQXjN_mQ.woff\";s:116:\"https://fonts.gstatic.com/s/opensans/v40/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4uaVQUwaEQXjN_mQ.woff\";s:137:\"/home/ndd6915/naplesirrigation.com/wp-content/fonts/open-sans/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4uaVQUwaEQXjN_mQ.woff\";s:113:\"https://fonts.gstatic.com/s/opensans/v40/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4gaVQUwaEQXjM.woff\";s:134:\"/home/ndd6915/naplesirrigation.com/wp-content/fonts/open-sans/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4gaVQUwaEQXjM.woff\";s:91:\"https://fonts.gstatic.com/s/juliussansone/v18/1Pt2g8TAX_SGgBGUi0tGOYEga5WOzHsRy6KHHow-.woff\";s:113:\"/home/ndd6915/naplesirrigation.com/wp-content/fonts/julius-sans-one/1Pt2g8TAX_SGgBGUi0tGOYEga5WOzHsRy6KHHow-.woff\";s:89:\"https://fonts.gstatic.com/s/juliussansone/v18/1Pt2g8TAX_SGgBGUi0tGOYEga5WOwnsRy6KHHg.woff\";s:111:\"/home/ndd6915/naplesirrigation.com/wp-content/fonts/julius-sans-one/1Pt2g8TAX_SGgBGUi0tGOYEga5WOwnsRy6KHHg.woff\";s:110:\"https://fonts.gstatic.com/s/roboto/v47/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbVmZiAz0klQm_20O0g.woff\";s:130:\"/home/ndd6915/naplesirrigation.com/wp-content/fonts/roboto/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbVmZiAz0klQm_20O0g.woff\";s:110:\"https://fonts.gstatic.com/s/roboto/v47/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbVmQiAz0klQm_20O0g.woff\";s:130:\"/home/ndd6915/naplesirrigation.com/wp-content/fonts/roboto/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbVmQiAz0klQm_20O0g.woff\";s:110:\"https://fonts.gstatic.com/s/roboto/v47/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbVmYiAz0klQm_20O0g.woff\";s:130:\"/home/ndd6915/naplesirrigation.com/wp-content/fonts/roboto/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbVmYiAz0klQm_20O0g.woff\";s:110:\"https://fonts.gstatic.com/s/roboto/v47/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbVmXiAz0klQm_20O0g.woff\";s:130:\"/home/ndd6915/naplesirrigation.com/wp-content/fonts/roboto/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbVmXiAz0klQm_20O0g.woff\";s:110:\"https://fonts.gstatic.com/s/roboto/v47/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbVnoiAz0klQm_20O0g.woff\";s:130:\"/home/ndd6915/naplesirrigation.com/wp-content/fonts/roboto/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbVnoiAz0klQm_20O0g.woff\";s:110:\"https://fonts.gstatic.com/s/roboto/v47/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbVn6iAz0klQm_20O0g.woff\";s:130:\"/home/ndd6915/naplesirrigation.com/wp-content/fonts/roboto/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbVn6iAz0klQm_20O0g.woff\";s:110:\"https://fonts.gstatic.com/s/roboto/v47/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbVmbiAz0klQm_20O0g.woff\";s:130:\"/home/ndd6915/naplesirrigation.com/wp-content/fonts/roboto/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbVmbiAz0klQm_20O0g.woff\";s:110:\"https://fonts.gstatic.com/s/roboto/v47/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbVmaiAz0klQm_20O0g.woff\";s:130:\"/home/ndd6915/naplesirrigation.com/wp-content/fonts/roboto/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbVmaiAz0klQm_20O0g.woff\";s:107:\"https://fonts.gstatic.com/s/roboto/v47/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbVmUiAz0klQm_20.woff\";s:127:\"/home/ndd6915/naplesirrigation.com/wp-content/fonts/roboto/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbVmUiAz0klQm_20.woff\";}','yes'),(1463591,'can_compress_scripts','1','on'),(739159,'_site_transient_bg_license_data','O:8:\"stdClass\":5:{s:3:\"key\";s:64:\"uhtxl9XEpYtu4AWogStWMlclUXDf0kYukak7Nh3dvT5XBz5P0wgL1AeV8+VPGNtq\";s:6:\"cipher\";s:11:\"AES-128-CBC\";s:2:\"iv\";s:36:\"6%7B%EB%E6%FDzMWS%09%BB%C9F%1F%E2%AB\";s:4:\"data\";s:556:\"YO5pYOFQJJ117F0Q3kJ4l1KpMCcJhDDcZXydK9FhEORx78a0t7UIiGjughgjyZrVx0RNz+TH7FVvBlzJWuEibt6Kap/KRhxaLde5YFN2mgsNoSKuYWbu2hLVFRKQbToxWPqD/EX2EklzsVJjURqfDauqozo+vvzysqO2PlYJG0nC4i/BwkpcmN5ufxnH9wBHF4HR5besK0EBUNs0EpCfmKy8dIKyAbOoBjXaiZn+amgxcLZKwfbJgT9M0zJsBY+UBnzOgfRsPbAWK3pek30SC3lYU4sqlBlf7tSPxFQhmek1eLJNCsW3NOS8reJGYDJCnSL3Bl+GLWrXhVJfnnynIKpJtM+g97+9osJBdzKSpBevddh8geBtwtcFCv661jOEfPjW0RAp7EFc5Zjqy3bllOt0Jdh6+dlx6qANtx45bNbHDWxkbJoOMQ8W8hEpxDx7yVSTVENajWjP6GmDV8nBFwVL1wdABnvbt7le7R/xBWeU94guR82ruIZbFiADSWn+pLdcYwiU607Gn7GyFrBbEVcWtO2i33iM93Vf+WeECYM=\";s:7:\"version\";i:2;}','no'),(378,'boldgrid_inspirations_activated_version','2.6.3','no'),(559,'boldgrid_customizer_first_use','2022-02-28 19:55:59','yes'),(561,'category_children','a:0:{}','yes'),(7897,'widget_akismet_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(116008,'boldgrid_inspirations_previous_version','2.6.3','no'),(124366,'user_count','1','no'),(1464431,'_site_transient_timeout_boldgrid_backup_premium_version_data','1738007307','off'),(1464432,'_site_transient_boldgrid_backup_premium_version_data','O:8:\"stdClass\":4:{s:6:\"status\";i:200;s:7:\"message\";s:2:\"OK\";s:6:\"result\";O:8:\"stdClass\":1:{s:4:\"data\";O:8:\"stdClass\":13:{s:5:\"title\";s:64:\"Total Upkeep Premium &ndash; WordPress Backup Plugin plus Restor\";s:7:\"version\";s:6:\"1.5.12\";s:8:\"asset_id\";i:1300634;s:12:\"release_date\";s:19:\"2024-11-08 02:19:58\";s:19:\"requires_wp_version\";s:3:\"4.4\";s:17:\"tested_wp_version\";s:3:\"6.7\";s:8:\"sections\";s:5328:\"{\"description\":\"<p>Premium extension for the Total Upkeep plugin.<\\/p>\\n\",\"installation\":\"<h4>Minimum Requirements<\\/h4>\\n\\n<ul>\\n<li>PHP 5.4 or higher<\\/li>\\n<\\/ul>\\n\\n<h4>Manually<\\/h4>\\n\\n<ol>\\n<li>Upload the entire boldgrid-backup-premium folder to the \\/wp-content\\/plugins\\/ directory.<\\/li>\\n<li>Activate the plugin through the Plugins menu in WordPress.<\\/li>\\n<\\/ol>\\n\",\"changelog\":\"<h4>1.5.12<\\/h4>\\n\\n<p>Release Date: Nov 7, 2024<\\/p>\\n\\n<ul>\\n<li>Bug Fix: WP 6.7 - Localizing Script Incorrectly <a href=\\\"https:\\/\\/github.com\\/BoldGrid\\/boldgrid-backup-premium\\/issues\\/103\\\">#103<\\/a><\\/li>\\n<\\/ul>\\n\\n<h4>1.5.11<\\/h4>\\n\\n<p>Release Date: May 20th, 2024<\\/p>\\n\\n<ul>\\n<li>Update: Changed Minimum PHP version to 7.2.<\\/li>\\n<\\/ul>\\n\\n<h4>1.5.10<\\/h4>\\n\\n<p>Release date: May 15th, 2024<\\/p>\\n\\n<ul>\\n<li>Update: Updated dependencies to fix PHP 8.2 deprecated notices.<\\/li>\\n<\\/ul>\\n\\n<h4>1.5.9<\\/h4>\\n\\n<p>Release date: April 29th, 2021<\\/p>\\n\\n<ul>\\n<li>Update: Fixed nonce for restoring single files.<\\/li>\\n<\\/ul>\\n\\n<h4>1.5.8<\\/h4>\\n\\n<p>Release date: March 11th, 2021<\\/p>\\n\\n<ul>\\n<li>Update: Updated dependencies, including aws-php-sdk from version 2 to 3.<\\/li>\\n<li>Update: Adding google-drive-download.og<\\/li>\\n<\\/ul>\\n\\n<h4>1.5.7<\\/h4>\\n\\n<p>Release date: February 16th, 2021<\\/p>\\n\\n<ul>\\n<li>Bug fix: Fixed confings type in update class.<\\/li>\\n<\\/ul>\\n\\n<h4>1.5.6<\\/h4>\\n\\n<p>Release date: December 8th, 2020<\\/p>\\n\\n<ul>\\n<li>Bug fix: Various JQMIGRATE warnings fixed.<\\/li>\\n<\\/ul>\\n\\n<h4>1.5.5<\\/h4>\\n\\n<p>Release date: December 2nd, 2020<\\/p>\\n\\n<ul>\\n<li>Bug fix: Fixed invalid nonce when downloading Amazon S3 backups.<\\/li>\\n<\\/ul>\\n\\n<h4>1.5.4<\\/h4>\\n\\n<p>Release date: October 15th, 2020<\\/p>\\n\\n<ul>\\n<li>Bug fix: Fixed issue with installing plugins.<\\/li>\\n<\\/ul>\\n\\n<h4>1.5.3<\\/h4>\\n\\n<p>Release date: October 13th, 2020<\\/p>\\n\\n<ul>\\n<li>Update: Added additional logging for Google Drive.<\\/li>\\n<\\/ul>\\n\\n<h4>1.5.2<\\/h4>\\n\\n<p>Release date: August 12th, 2020<\\/p>\\n\\n<ul>\\n<li>Update: Updated Timely Auto Updates to work with the new WordPress 5.5+ Auto Update UI.<\\/li>\\n<\\/ul>\\n\\n<h4>1.5.1<\\/h4>\\n\\n<p>Release date: July 7th, 2020<\\/p>\\n\\n<ul>\\n<li>Bug fix: Auto Update Translation filter causes fatal error with JetPack active <a href=\\\"https:\\/\\/github.com\\/BoldGrid\\/boldgrid-backup-premium\\/issues\\/50\\\">#50<\\/a><\\/li>\\n<\\/ul>\\n\\n<h4>1.5.0<\\/h4>\\n\\n<p>Release date: July 7th, 2020<\\/p>\\n\\n<ul>\\n<li>New Feature: Added Timely Auto Updates.<\\/li>\\n<\\/ul>\\n\\n<h4>1.4.0<\\/h4>\\n\\n<p>Release date: May 19th, 2020<\\/p>\\n\\n<ul>\\n<li>New feature: Google drive - shared drive support.<\\/li>\\n<li>New feature: Google drive - upload to any folder by using a folder id.<\\/li>\\n<li>Bug fix: Cleaned up Amazon libraries loaded to prevent conflict with W3TC.<\\/li>\\n<\\/ul>\\n\\n<h4>1.3.3<\\/h4>\\n\\n<p>Release date: February 19th, 2020<\\/p>\\n\\n<ul>\\n<li>Bug fix: Cannot save Google Drive on settings page.<\\/li>\\n<\\/ul>\\n\\n<h4>1.3.2<\\/h4>\\n\\n<p>Release date: February 18th, 2020<\\/p>\\n\\n<ul>\\n<li>Update: Allow Google Drive settings to be reset, and which allows for reauthorization.<\\/li>\\n<li>Update: Show error messages when validating Google Drive.<\\/li>\\n<li>Bug fix: Error 403: Daily Limit for Unauthenticated Use Exceeded.<\\/li>\\n<\\/ul>\\n\\n<h4>1.3.1<\\/h4>\\n\\n<p>Release date: December 13th, 2019<\\/p>\\n\\n<ul>\\n<li>Bug fix: Fixed filtering of archive attributes.<\\/li>\\n<\\/ul>\\n\\n<h4>1.3.0<\\/h4>\\n\\n<p>Release data: November 21th, 2019<\\/p>\\n\\n<ul>\\n<li>Update: Renamed plugin from \\\"BoldGrid Backup Premium\\\" to \\\"Total Upkeep Premium\\\".<\\/li>\\n<li>New feature: Added database dump file encryption.<\\/li>\\n<\\/ul>\\n\\n<h4>1.2.1<\\/h4>\\n\\n<p>Release date: October 1st, 2019<\\/p>\\n\\n<ul>\\n<li>Bug fix: Fix bucket errors on archive details page.<\\/li>\\n<\\/ul>\\n\\n<h4>1.2.0<\\/h4>\\n\\n<p>Release date: October 1st, 2019<\\/p>\\n\\n<ul>\\n<li>New feature: DreamObjects support.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1.2<\\/h4>\\n\\n<p>Release date: May 21th, 2019<\\/p>\\n\\n<ul>\\n<li>Bug fix: Google Drive attempting to upload archive that does not exist.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1.1<\\/h4>\\n\\n<p>Release date: May 14th, 2019<\\/p>\\n\\n<ul>\\n<li>Bug fix: Themes autoupdated not showing in Tools > History.<\\/li>\\n<li>Bug fix: Incorrect theme version listed in history during autoupdate.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1.0<\\/h4>\\n\\n<p>Release date: Feb 14th, 2019<\\/p>\\n\\n<ul>\\n<li>New feature: Google Drive support.<\\/li>\\n<li>Update: Composer libraries updated.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.3<\\/h4>\\n\\n<p>Release date: Dec 5th, 2018<\\/p>\\n\\n<ul>\\n<li>Bug fix: Fixed updating plugin via ajax.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.2<\\/h4>\\n\\n<p>Release date: Nov 20th, 2018<\\/p>\\n\\n<ul>\\n<li>Bug fix: Fixed ob_flush warning with S3.<\\/li>\\n<li>Bug fix: Fixed error: Invalid argument supplied for foreach().<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.1<\\/h4>\\n\\n<p>Release Date: October 25th, 2018<\\/p>\\n\\n<ul>\\n<li>Bug fix: Fixed handling of hook parameter on non-bulk plugin upgrades.<\\/li>\\n<li>Bug fix: Fatal error: Uncaught Error: Call to undefined function wp<em>generate<\\/em>password.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.0<\\/h4>\\n\\n<p>Release Date: April 11th, 2017<\\/p>\\n\\n<ul>\\n<li>Initial release.<\\/li>\\n<\\/ul>\\n\",\"upgrade_notice\":\"<h4>1.3.0<\\/h4>\\n\\n<p>BoldGrid Backup Premium has been renamed to Total Upkeep Premium.  Different name with the same great features.<\\/p>\\n\"}\";s:7:\"siteurl\";s:25:\"https://www.boldgrid.com/\";s:13:\"compatibility\";s:53473:\"{\"6.6.2\":{\"1.5.12\":[100,95]},\"6.6.1\":{\"1.5.12\":[100,95]},\"6.6\":{\"1.5.12\":[100,95]},\"6.5.5\":{\"1.5.12\":[100,95]},\"6.5.4\":{\"1.5.12\":[100,95]},\"6.5.3\":{\"1.5.12\":[100,95]},\"6.5.2\":{\"1.5.12\":[100,95]},\"6.5.1\":{\"1.5.12\":[100,95]},\"6.5\":{\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"6.4.5\":{\"1.5.12\":[100,95]},\"6.4.4\":{\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"6.4.3\":{\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"6.4.2\":{\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"6.4.1\":{\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"6.4\":{\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"6.3.5\":{\"1.5.12\":[100,95]},\"6.3.4\":{\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"6.3.3\":{\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"6.3.2\":{\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"6.3.1\":{\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"6.3\":{\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"6.2.6\":{\"1.5.12\":[100,95]},\"6.2.5\":{\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"6.2.4\":{\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"6.2.3\":{\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"6.2.2\":{\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"6.2.1\":{\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"6.2\":{\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"6.1.7\":{\"1.5.12\":[100,95]},\"6.1.6\":{\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"6.1.5\":{\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"6.1.4\":{\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"6.1.3\":{\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"6.1.2\":{\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"6.1.1\":{\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"6.1\":{\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"6.0.8\":{\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"6.0.7\":{\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"6.0.6\":{\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"5.7\":{\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"5.6.3\":{\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"5.6.2\":{\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"5.6.1\":{\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"5.6\":{\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"5.5.4\":{\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"5.5.3\":{\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"5.5.2\":{\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"5.5.1\":{\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"5.5\":{\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"5.4.5\":{\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"5.4.4\":{\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"5.4.3\":{\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"5.4.2\":{\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"5.4.1\":{\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"5.4\":{\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"5.3.7\":{\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"5.3.6\":{\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"5.3.5\":{\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"5.3.4\":{\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"5.3.3\":{\"1.4.0-rc.2\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"5.3.2\":{\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"5.3.1\":{\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"5.3\":{\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"5.2.9\":{\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"5.2.8\":{\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"5.2.7\":{\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"5.2.6\":{\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"5.2.5\":{\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"5.2.4\":{\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"5.2.3\":{\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"5.2.2\":{\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"5.2.10\":{\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"5.2.1\":{\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"5.2\":{\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"5.1.8\":{\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"5.1.7\":{\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"5.1.6\":{\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"5.1.5\":{\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"5.1.4\":{\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"5.1.3\":{\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"5.1.2\":{\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"5.1.1\":{\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"5.1\":{\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"5.0.9\":{\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"5.0.8\":{\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"5.0.7\":{\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"5.0.6\":{\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"5.0.5\":{\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"5.0.4\":{\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"5.0.3\":{\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"5.0.2\":{\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"5.0.10\":{\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"5.0.1\":{\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"5.0\":{\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"4.9.9\":{\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"4.9.8\":{\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"4.9.7\":{\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"4.9.6\":{\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"4.9.5\":{\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"4.9.4\":{\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"4.9.3\":{\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"4.9.2\":{\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"4.9.14\":{\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"4.9.13\":{\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"4.9.12\":{\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"4.9.11\":{\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"4.9.10\":{\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"4.9.1\":{\"1.0.0\":[100,12],\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"4.9\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"4.8.9\":{\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"4.8.8\":{\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"4.8.7\":{\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"4.8.6\":{\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"4.8.5\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"4.8.4\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"4.8.3\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"4.8.2\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"4.8.10\":{\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"4.8.1\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"4.8\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"4.7.9\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"4.7.8\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"4.7.7\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"4.7.6\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"4.7.5\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"4.7.4\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"4.7.3\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"4.7.2\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"4.7.12\":{\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"4.7.11\":{\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"4.7.10\":{\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"4.7.1\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"4.7\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"4.6.9\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"4.6.8\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"4.6.7\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"4.6.6\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"4.6.5\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"4.6.4\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"4.6.3\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"4.6.2\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"4.6.12\":{\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"4.6.11\":{\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"4.6.10\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"4.6.1\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]},\"4.6\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95],\"1.5.10\":[100,95],\"1.5.11\":[100,95],\"1.5.12\":[100,95]}}\";s:6:\"rating\";i:100;s:11:\"num_ratings\";i:100000;s:4:\"tags\";s:143:\"{\"backup\":\"Backup\",\"cloud backup\":\"Cloud backup\",\"database backup\":\"Database backup\",\"restore\":\"Restore\",\"wordpress backup\":\"Wordpress backup\"}\";s:7:\"banners\";s:125:\"{\"low\":\"//repo.boldgrid.com/assets/banner-backup-772x250.png\",\"high\":\"//repo.boldgrid.com/assets/banner-backup-1544x500.png\"}\";}}s:7:\"updated\";i:1737978507;}','off'),(917495,'wp_attachment_pages_enabled','1','yes'),(1464421,'_site_transient_timeout_boldgrid_connect_version_data','1738007307','off'),(1464422,'_site_transient_boldgrid_connect_version_data','O:8:\"stdClass\":4:{s:6:\"status\";i:200;s:7:\"message\";s:2:\"OK\";s:6:\"result\";O:8:\"stdClass\":1:{s:4:\"data\";O:8:\"stdClass\":13:{s:5:\"title\";s:16:\"BoldGrid Connect\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"asset_id\";i:1026632;s:12:\"release_date\";s:19:\"2019-10-15 17:28:26\";s:19:\"requires_wp_version\";s:3:\"4.4\";s:17:\"tested_wp_version\";s:5:\"6.3.1\";s:8:\"sections\";s:927:\"{\"description\":\"<p>Connects users and sites with BoldGrid Central.<\\/p>\\n\",\"installation\":\"<h4>Minimum Requirements<\\/h4>\\n\\n<ul>\\n<li>PHP 5.4 or higher<\\/li>\\n<\\/ul>\\n\\n<h4>Manually<\\/h4>\\n\\n<ol>\\n<li>Upload the entire boldgrid-connect folder to the \\/wp-content\\/plugins\\/ directory.<\\/li>\\n<li>Activate the plugin through the Plugins menu in WordPress.<\\/li>\\n<\\/ol>\\n\",\"changelog\":\"<h4>1.0.2<\\/h4>\\n\\n<p>Release Date: October 15th, 2019<\\/p>\\n\\n<ul>\\n<li>Update:  Updated dependency boldgrid\\/library to 2.10.4.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.1<\\/h4>\\n\\n<p>Release Date: September 11th, 2019<\\/p>\\n\\n<ul>\\n<li>Bug fix: Fixed conflict between tgmpa plugin installer and the BoldGrid custom update classes.<\\/li>\\n<li>Bug fix: Added composer hook for library build.<\\/li>\\n<li>Update:  Updated dependencies.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.0<\\/h4>\\n\\n<p>Release Date: August 13th, 2018<\\/p>\\n\\n<ul>\\n<li>Initial release.<\\/li>\\n<\\/ul>\\n\"}\";s:7:\"siteurl\";s:25:\"https://www.boldgrid.com/\";s:13:\"compatibility\";s:4217:\"{\"5.2\":{\"1.0.1\":[100,95],\"1.0.2\":[100,95]},\"5.1.3\":{\"1.0.2\":[100,95]},\"5.1.2\":{\"1.0.1\":[100,95],\"1.0.2\":[100,95]},\"5.1.1\":{\"1.0.1\":[100,95],\"1.0.2\":[100,95]},\"5.1\":{\"1.0.1\":[100,95],\"1.0.2\":[100,95]},\"5.0.7\":{\"1.0.2\":[100,95]},\"5.0.6\":{\"1.0.1\":[100,95],\"1.0.2\":[100,95]},\"5.0.5\":{\"1.0.1\":[100,95],\"1.0.2\":[100,95]},\"5.0.4\":{\"1.0.1\":[100,95],\"1.0.2\":[100,95]},\"5.0.3\":{\"1.0.1\":[100,95],\"1.0.2\":[100,95]},\"5.0.2\":{\"1.0.1\":[100,95],\"1.0.2\":[100,95]},\"5.0.1\":{\"1.0.1\":[100,95],\"1.0.2\":[100,95]},\"5.0\":{\"1.0.1\":[100,95],\"1.0.2\":[100,95]},\"4.9.9\":{\"1.0.1\":[100,95],\"1.0.2\":[100,95]},\"4.9.8\":{\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95]},\"4.9.7\":{\"1.0.0\":[100,95],\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95]},\"4.9.6\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95]},\"4.9.5\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95]},\"4.9.4\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95]},\"4.9.3\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95]},\"4.9.2\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95]},\"4.9.12\":{\"1.0.2\":[100,95]},\"4.9.11\":{\"1.0.1\":[100,95],\"1.0.2\":[100,95]},\"4.9.10\":{\"1.0.1\":[100,95],\"1.0.2\":[100,95]},\"4.9.1\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95]},\"4.9\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95]},\"4.8.9\":{\"1.0.1\":[100,95],\"1.0.2\":[100,95]},\"4.8.8\":{\"1.0.1\":[100,95],\"1.0.2\":[100,95]},\"4.8.7\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95]},\"4.8.6\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95]},\"4.8.5\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95]},\"4.8.4\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95]},\"4.8.3\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95]},\"4.8.2\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95]},\"4.8.10\":{\"1.0.1\":[100,95],\"1.0.2\":[100,95]},\"4.8.1\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95]},\"4.8\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95]},\"4.7.9\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95]},\"4.7.8\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95]},\"4.7.7\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95]},\"4.7.6\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95]},\"4.7.5\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95]},\"4.7.4\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95]},\"4.7.3\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95]},\"4.7.2\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95]},\"4.7.11\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95]},\"4.7.10\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95]},\"4.7.1\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95]},\"4.7\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95]},\"4.6.12\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95]},\"4.6.11\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95]}}\";s:6:\"rating\";i:100;s:11:\"num_ratings\";i:100000;s:4:\"tags\";s:61:\"{\"boldgrid\":\"Boldgrid\",\"connect\":\"Connect\",\"manage\":\"Manage\"}\";s:7:\"banners\";s:127:\"{\"low\":\"//repo.boldgrid.com/assets/banner-connect-772x250.png\",\"high\":\"//repo.boldgrid.com/assets/banner-connect-1544x500.png\"}\";}}s:7:\"updated\";i:1737978507;}','off'),(1464426,'_site_transient_timeout_boldgrid_ppbp_version_data','1738007307','off'),(1464427,'_site_transient_boldgrid_ppbp_version_data','O:8:\"stdClass\":4:{s:6:\"status\";i:200;s:7:\"message\";s:2:\"OK\";s:6:\"result\";O:8:\"stdClass\":1:{s:4:\"data\";O:8:\"stdClass\":13:{s:5:\"title\";s:29:\"Post and Page Builder Premium\";s:7:\"version\";s:5:\"1.2.6\";s:8:\"asset_id\";i:1301404;s:12:\"release_date\";s:19:\"2025-01-22 05:00:00\";s:19:\"requires_wp_version\";s:3:\"4.7\";s:17:\"tested_wp_version\";s:3:\"6.7\";s:8:\"sections\";s:9105:\"{\"description\":\"<h4>What is the Post and Page Builder by BoldGrid?<\\/h4>\\n\\n<p>The Post and Page Builder is an intuitive drag and drop editor plugin and the easiest way to create and edit pages for any theme. Whether you are new to WordPress or consider yourself a pro, BoldGrid solutions will make your WordPress life better. Stop dealing with site-breaking shortcodes and theme restricted editors. You are going to love just how fast and easily you can create beautiful websites now.<\\/p>\\n\\n<p>Try out the <a href=\\\"https:\\/\\/www.boldgrid.com\\/central\\/get-it-now?redirect_url=wp-admin%2Fpost-new.php%3Fpost_type%3Dpage&amp;plugins=post-and-page-builder\\\">BoldGrid Demo<\\/a> on Cloud WordPress to see for yourself!<\\/p>\\n\\n<p>[youtube https:\\/\\/youtu.be\\/QoIb7OhV9ys?rel=0]<\\/p>\\n\\n<h4>Features<\\/h4>\\n\\n<ul>\\n<li><strong>Drag and Drop Editing<\\/strong> - Create simple or complex layouts with our unique editing experience<\\/li>\\n<li><strong>BoldGrid Blocks<\\/strong> - Hundreds of professional layout designs to work from<\\/li>\\n<li><strong>100% Mobile-friendly<\\/strong> - Responsive layouts and controls to change the design per device<\\/li>\\n<li><strong>Google Fonts<\\/strong> - Change font family, font size, font color, letter spacing, line height and more<\\/li>\\n<li><strong>Theme Compatibility<\\/strong> - Our WordPress Page Builder is designed to work with any WordPress Theme<\\/li>\\n<li><strong>Custom Backgrounds<\\/strong> - Add background images, gradient backgrounds, patterns, overlays, and background colors<\\/li>\\n<li><strong>Fast and Free Support<\\/strong> - Growing Community and knowledge base<\\/li>\\n<li><strong>Animations<\\/strong> - Add effects as the user scrolls down the page with Animate.css or background parallax scroll effects<\\/li>\\n<li><strong>Advanced Controls<\\/strong> - Add margin, padding, box shadows, borders, alignment and more to almost any element<\\/li>\\n<li><strong>Bootstrap Grid<\\/strong> - Drag and drop controls for bootstrap rows and columns elements<\\/li>\\n<li><strong>Add Custom CSS Classes<\\/strong> - Complete control over any element<\\/li>\\n<li><strong>Clean, Simple Markup<\\/strong> - Easily create a professionally coded template without experience<\\/li>\\n<li><strong>Google Maps<\\/strong> - Embed and customize maps into your post or page<\\/li>\\n<li><strong>Web Components<\\/strong> - High quality reusable and customizable HTML elements<\\/li>\\n<li><strong>Font Awesome Icons<\\/strong> - Insert and customize any Font Awesome icons<\\/li>\\n<li><strong>CSS Grid<\\/strong> - Full width, column and row based layouts<\\/li>\\n<li><strong>Image Editing<\\/strong> - Apply image filters and automatically crop images<\\/li>\\n<li><strong>Button Designs<\\/strong> - Fully customizable button designs<\\/li>\\n<li><strong>Custom Post Types<\\/strong> - Save and reuse full page layouts or BoldGrid Block designs<\\/li>\\n<li><strong>WordPress Editor Integration<\\/strong> - Integrated into TinyMCE so you can keep the same workflow<\\/li>\\n<li><strong>No Need for Shortcodes!<\\/strong> - Faster page loads by saving your custom HTML5 elements<\\/li>\\n<\\/ul>\\n\\n<p>Additional Features when used with other BoldGrid plugins:<\\/p>\\n\\n<ul>\\n<li>Dozens of free layout templates<\\/li>\\n<li>Integrated with professional image banks<\\/li>\\n<li>Contact Forms<\\/li>\\n<li>On-page SEO recommendations for targeted search phrase<\\/li>\\n<\\/ul>\\n\\n<p>Visit our website to learn more about additional <a href=\\\"https:\\/\\/www.boldgrid.com\\/wordpress-plugins\\/\\\">BoldGrid plugins<\\/a> to further improve your WordPress experience!<\\/p>\\n\\n<h4>People Love BoldGrid<\\/h4>\\n\\n<p>\\\"It\'s really the perfect starting point for just about any web project, allowing users to get their site up and running in very short time. \\\" - Digital.com<\\/p>\\n\\n<p>\\\"BoldGrid is a great extension to WordPress that will make my job a lot easier and faster while creating custom layouts and pages.\\\" - Webhostingmedia.net<\\/p>\\n\\n<p>\\\"Well, I have seen many site builders but this is the only one that provides so many features.\\\" - Woblogger.com<\\/p>\\n\\n<h4>A Post and Page Builder That Works With Your Theme and Plugins<\\/h4>\\n\\n<p>The Post and Page Builder by BoldGrid is designed to work with almost any WordPress theme. Add it to your existing website today, or try a BoldGrid theme for your new website. Alternatively, consider upgrading and using the powerful BoldGrid framework theme (available in Premium subscription) as an excellent time saver for agencies and developers.<\\/p>\\n\\n<h4>A Post and Page Builder Stuffed With Pre-Designed Templates &amp; Blocks<\\/h4>\\n\\n<p>Create layouts and pages faster and easier than ever with Blocks by BoldGrid. Blocks are pre-built page sections consisting of various layouts of rows and columns prepopulated with content that can be edited visually or with HTML and CSS. Blocks utilize a wide variety of content that can be completely customized to fit your needs such as icons, buttons, free and premium images, font packs, and more.<\\/p>\\n\\n<h4>A Post and Page Builder That Is Faster Than The Rest<\\/h4>\\n\\n<p>The Post and Page Builder by BoldGrid is designed to create pages that load fast. BoldGrid ditches shortcodes in favor of clean markup that can be served quickly. That also means BoldGrid code is easy to assess and customize.<\\/p>\\n\\n<h4>Coming Soon \\/ Maintenance Page<\\/h4>\\n\\n<p>Great for making \\\"under construction\\\" or \\\"coming soon\\\" pages. You can create a simple page within minutes by using free professionally designed WordPress Blocks.<\\/p>\\n\\n<h4>Bootstrap WYSIWYG Post &amp; Page Builder for WordPress<\\/h4>\\n\\n<p>Our drag and drop system is built on the Bootstrap Grid. You can drag columns, rows, and containers around your pages to make quick updates to pages.  Advanced CSS controls allow you to make pixel perfect designs.<\\/p>\\n\\n<h4>Create Custom Color Palette<\\/h4>\\n\\n<p>Choose your brand\'s colors and we\'ll help your design stay unified. Our unique color palette system is built with SASS and allows you to change all the colors on your site. You don\'t have to choose from a few presets anymore!<\\/p>\\n\",\"installation\":\"<h4>Minimum Requirements<\\/h4>\\n\\n<ul>\\n<li>PHP version 5.4 or greater<\\/li>\\n<li>WordPress 4.4 or greater<\\/li>\\n<\\/ul>\\n\\n<h4>Manually<\\/h4>\\n\\n<ol>\\n<li>Upload the entire post-and-page-builder folder to the \\/wp-content\\/plugins\\/ directory.<\\/li>\\n<li>Activate the plugin through the Plugins menu in WordPress.<\\/li>\\n<\\/ol>\\n\\n<p>You will find a \'Post and Page Builder\' menu in your WordPress admin panel and find most features within the\\nWordPress Editor.<\\/p>\\n\",\"changelog\":\"<h4>1.2.2<\\/h4>\\n\\n<p>Release Date: September 12, 2024\\n* * Enhancement: Improved experimental BoldGrid AI functionality.</p>\\n\\n<h4>1.2.1<\\/h4>\\n\\n<p>Release Date: August 13, 2024\\n* Enhancement: Added Preview Modal for BoldGrid AI functionality.<\\/p>\\n\\n<h4>1.2.0<\\/h4>\\n\\n<p>Release Date: July 30, 2024\\n* New Feature: Added BoldGrid AI functionality for internal testing.<\\/p>\\n\\n<h4>1.1.4<\\/h4>\\n\\n<p>Release date: February 12, 2024<\\/p>\\n\\n<ul>\\n<li>Bug Fix: Yoast SEO Sitemaps failing to generate due to warnings from Post and Page Builder <a href=\\\"https:\\/\\/github.com\\/BoldGrid\\/post-and-page-builder\\/issues\\/536\\\">#536<\\/a><\\/li>\\n<\\/ul>\\n\\n<h4>1.1.3<\\/h4>\\n\\n<p>Release date: January 22, 2024<\\/p>\\n\\n<ul>\\n<li>Bug Fix: 404 for slick.ttf and slick.woff files <a href=\\\"https:\\/\\/github.com\\/BoldGrid\\/post-and-page-builder-premium\\/issues\\/39\\\">#39<\\/a><\\/li>\\n<\\/ul>\\n\\n<h4>1.1.2<\\/h4>\\n\\n<p>Release date: November 6, 2023<\\/p>\\n\\n<ul>\\n<li>Update: Updated tested up to version to 6.4<\\/li>\\n<\\/ul>\\n\\n<h4>1.1.1<\\/h4>\\n\\n<p>Release date: March 15, 2023<\\/p>\\n\\n<ul>\\n<li>HotFix: Fixed missing class method in 1.1.0 release.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1.0<\\/h4>\\n\\n<p>Release date: March 14, 2023<\\/p>\\n\\n<ul>\\n<li>New Feature: Added a new \\\"Tabs\\\" component to allow for adding and customizing tabbed content <a href=\\\"https:\\/\\/github.com\\/BoldGrid\\/post-and-page-builder-premium\\/issues\\/27\\\">#27<\\/a><\\/li>\\n<\\/ul>\\n\\n<h4>1.0.6<\\/h4>\\n\\n<p>Release date: April 26, 2022<\\/p>\\n\\n<ul>\\n<li>Fix: Slider Navigation Buttons are transparent <a href=\\\"https:\\/\\/github.com\\/BoldGrid\\/post-and-page-builder-premium\\/issues\\/7\\\">#7<\\/a><\\/li>\\n<\\/ul>\\n\\n<h4>1.0.5<\\/h4>\\n\\n<p>Release date: December 8th, 2020<\\/p>\\n\\n<ul>\\n<li>Fix: Compatibility issues with WordPress 5.6<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.4<\\/h4>\\n\\n<p>Release date: November 11th, 2019<\\/p>\\n\\n<ul>\\n<li>Fix: Order posts by date instead of id.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.3<\\/h4>\\n\\n<p>Release date: October 30th, 2019<\\/p>\\n\\n<ul>\\n<li>Update: Optimizing build files.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.2<\\/h4>\\n\\n<p>Release date: December 5th, 2018<\\/p>\\n\\n<ul>\\n<li>Bug fix: Fixed updating plugin via ajax<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.1<\\/h4>\\n\\n<p>Release Date: December 4th, 2018<\\/p>\\n\\n<ul>\\n<li>Bug Fix: Fixing post excerpt wrapping element<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.0<\\/h4>\\n\\n<p>Release Date: October 16th, 2018<\\/p>\\n\\n<ul>\\n<li>New feature: Slider Components<\\/li>\\n<li>New feature: Post List Widget<\\/li>\\n<li>New feature: Single Post Widget<\\/li>\\n<\\/ul>\\n\"}\";s:7:\"siteurl\";s:24:\"http://www.boldgrid.com/\";s:13:\"compatibility\";s:26162:\"{\"6.7\":{\"1.2.5\":[100,95],\"1.2.6\":[100,95]},\"6.6\":{\"1.2.5\":[100,95],\"1.2.6\":[100,95]},\"6.5.5\":{\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"6.5.4\":{\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"6.5.3\":{\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"6.5.2\":{\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"6.5.1\":{\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"6.5\":{\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"6.4.5\":{\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"6.4.4\":{\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"6.4.3\":{\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"6.4.2\":{\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"6.4.1\":{\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"6.4\":{\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"6.3.5\":{\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"6.3.4\":{\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"6.3.3\":{\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"6.3.2\":{\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"6.3.1\":{\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"6.3\":{\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"6.2.6\":{\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"6.2.5\":{\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"6.2.4\":{\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"6.2.3\":{\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"6.2.2\":{\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"6.2.1\":{\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"6.2\":{\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"6.1.7\":{\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"6.1.6\":{\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"6.1.5\":{\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"6.1.4\":{\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"6.1.3\":{\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"6.1.2\":{\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"6.1.1\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"6.1\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"6.0.7\":{\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"6.0.6\":{\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"6.0.5\":{\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"6.0.4\":{\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"6.0.3\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"6.0.2\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"6.0.1\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"6.0\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"5.9.9\":{\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"5.9.8\":{\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"5.9.7\":{\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"5.9.6\":{\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"5.9.5\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"5.9.4\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"5.9.3\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"5.9.2\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"5.9.1\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"5.9\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"5.8.8\":{\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"5.8.7\":{\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"5.8.6\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"5.8.5\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"5.8.4\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"5.8.3\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"5.8.2\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"5.8.1\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"5.8\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"5.7.8\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"5.7.7\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"5.7.6\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"5.7.5\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"5.7.4\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"5.7.3\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"5.7.2\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"5.7.1\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"5.7\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"5.6.9\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"5.6.10\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"5.6.1\":{\"1.0.5\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"5.6\":{\"1.0.5\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"5.5.3\":{\"1.0.5\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"5.5.2\":{\"1.0.5\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"5.5.1\":{\"1.0.5\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"5.5\":{\"1.0.5\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"5.4.4\":{\"1.0.5\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"5.4.3\":{\"1.0.5\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"5.4.2\":{\"1.0.5\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"5.4.1\":{\"1.0.5\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"5.4\":{\"1.0.5\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"5.3.6\":{\"1.0.5\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"5.3.5\":{\"1.0.5\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"5.3.4\":{\"1.0.5\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"5.3.3\":{\"1.0.5\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"5.3.2\":{\"1.0.5\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"5.3.1\":{\"1.0.5\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"5.3\":{\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"5.2.9\":{\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"5.2.8\":{\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"5.2.7\":{\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"5.2.6\":{\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"5.2.5\":{\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"5.2.4\":{\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"5.2.3\":{\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"5.2.2\":{\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"5.2.1\":{\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"5.2\":{\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"5.1.8\":{\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"5.1.7\":{\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"5.1.6\":{\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"5.1.5\":{\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"5.1.3\":{\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"5.1.2\":{\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"5.1.1\":{\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"5.1\":{\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"5.0.7\":{\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"5.0.6\":{\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"5.0.5\":{\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"5.0.4\":{\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"5.0.3\":{\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"5.0.2\":{\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"5.0.1\":{\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"5.0\":{\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"4.9.9\":{\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"4.9.8\":{\"1.0.0-alpha.0\":[100,12],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"4.9.7\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"4.9.6\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"4.9.5\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"4.9.4\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"4.9.3\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"4.9.2\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"4.9.12\":{\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"4.9.11\":{\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"4.9.10\":{\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"4.9.1\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"4.9\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"4.8.7\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"4.8.6\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"4.8.5\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"4.8.4\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"4.8.3\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"4.8.2\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"4.8.1\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"4.8\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"4.7.9\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"4.7.8\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"4.7.7\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"4.7.6\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"4.7.5\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"4.7.4\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"4.7.3\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"4.7.2\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"4.7.11\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"4.7.10\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"4.7.1\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"4.7\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95]},\"4.6.12\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.1.3\":[100,95],\"1.1.4\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.2.2\":[100,95],\"1.2.3\":[100,95],\"1.2.4\":[100,95],\"1.2.5\":[100,95]}}\";s:6:\"rating\";i:100;s:11:\"num_ratings\";i:100000;s:4:\"tags\";s:153:\"{\"boldgrid\":\"Boldgrid\",\"page builder\":\"Page builder\",\"drag and drop\":\"Drag and drop\",\"tinymce\":\"Tinymce\",\"editor\":\"Editor\",\"landing page\":\"Landing page\"}\";s:7:\"banners\";s:137:\"{\"low\":\"//ps.w.org/post-and-page-builder/assets/banner-772x250.png\",\"high\":\"//ps.w.org/post-and-page-builder/assets/banner-1544x500.png\"}\";}}s:7:\"updated\";i:1737978507;}','off'),(1464743,'_site_transient_timeout_boldgrid_api_data','1738031493','off'),(1464744,'_site_transient_boldgrid_api_data','O:8:\"stdClass\":4:{s:6:\"status\";i:200;s:7:\"message\";s:2:\"OK\";s:6:\"result\";O:8:\"stdClass\":1:{s:4:\"data\";O:8:\"stdClass\":30:{s:5:\"title\";s:21:\"BoldGrid Inspirations\";s:7:\"version\";s:5:\"2.9.3\";s:8:\"asset_id\";i:1300633;s:12:\"release_date\";s:19:\"2024-11-08 02:19:27\";s:19:\"requires_wp_version\";s:3:\"4.4\";s:17:\"tested_wp_version\";s:3:\"6.7\";s:8:\"sections\";s:52168:\"{\"description\":\"<p>BoldGrid Inspirations is an inspiration-driven plugin to assist with creating a fresh new website, or to customize an existing website.<\\/p>\\n\\n<p>The first phase is Inspiration; the guided tool creates your base website.  If you already have a website, then you can skip this step.<\\/p>\\n\\n<p>The second phase is Customization; tools to transform your website into your vision.<\\/p>\\n\",\"installation\":\"<ol>\\n<li><p>Upload the entire boldgrid-inspirations folder to the \\/wp-content\\/plugins\\/ directory.<\\/p><\\/li>\\n<li><p>Activate the plugin through the Plugins menu in WordPress.<\\/p><\\/li>\\n<li><p>You will find the Inspirations menu in your WordPress Dashboard \\/ admin panel.<\\/p><\\/li>\\n<\\/ol>\\n\",\"changelog\":\"<h4>2.9.3<\\/h4>\\n\\n<p>Release Date: November 7th, 2024<\\/p>\\n\\n<ul>\\n<li>Bug Fix: WP 6.7 - Function load<em>plugin<\\/em>textdomain was called incorrectly <a href=\\\"https:\\/\\/github.com\\/BoldGrid\\/boldgrid-inspirations\\/issues\\/205\\\">#205<\\/a><\\/li>\\n<\\/ul>\\n\\n<h4>2.9.2<\\/h4>\\n\\n<p>Release Date: July 3rd, 2024<\\/p>\\n\\n<ul>\\n<li>Bug Fix: WP 6.6 - Inspirations onboarding links to Customizer don\\u2019t go to correct panel <a href=\\\"https:\\/\\/github.com\\/BoldGrid\\/boldgrid-inspirations\\/issues\\/202\\\">#202<\\/a><\\/li>\\n<\\/ul>\\n\\n<h4>2.9.1<\\/h4>\\n\\n<p>Release Date: March 25th, 2024<\\/p>\\n\\n<ul>\\n<li>Bug Fix: If no social media menu is installed the main menu goes in that spot without styling <a href=\\\"https:\\/\\/github.com\\/BoldGrid\\/boldgrid-inspirations\\/issues\\/181\\\">181<\\/a><\\/li>\\n<\\/ul>\\n\\n<h4>2.9.0<\\/h4>\\n\\n<p>Release Date: December 4th, 2023<\\/p>\\n\\n<ul>\\n<li>New Feature: Added onboarding videos that are fetched from the BoldGrid API Server.<\\/li>\\n<\\/ul>\\n\\n<h4>2.8.1<\\/h4>\\n\\n<p>Release Date: November 8th, 2023<\\/p>\\n\\n<ul>\\n<li>Update: Updated tested up to version to 6.4<\\/li>\\n<\\/ul>\\n\\n<h4>2.8.0<\\/h4>\\n\\n<p>Release Date: October 16th, 2023<\\/p>\\n\\n<ul>\\n<li>New Feature: Added onboarding checklist to help users get started with Inspirations.<\\/li>\\n<li>New Feature: Theme screenshot now displays the specific Crio theme design chosen <a href=\\\"https:\\/\\/github.com\\/BoldGrid\\/boldgrid-inspirations\\/issues\\/168\\\">168<\\/a><\\/li>\\n<li>Bug Fix: Image purchase fails with error \'No local cost data\' <a href=\\\"https:\\/\\/github.com\\/BoldGrid\\/boldgrid-inspirations\\/issues\\/185\\\">#185<\\/a><\\/li>\\n<\\/ul>\\n\\n<h4>2.7.6<\\/h4>\\n\\n<p>Release Date: July 17th, 2023<\\/p>\\n\\n<ul>\\n<li>Update: Improve support for PHP 8.1 &amp; 8.2<\\/li>\\n<li>Update: Allow for specific themes to dis-allow adding a blog during the inspirations process.<\\/li>\\n<\\/ul>\\n\\n<h4>2.7.5<\\/h4>\\n\\n<p>Release date: March 23rd, 2023<\\/p>\\n\\n<ul>\\n<li>Bug Fix: WP 6.2 - get<em>page<\\/em>by_tlte is deprecated <a href=\\\"https:\\/\\/github.com\\/BoldGrid\\/boldgrid-inspirations\\/issues\\/173\\\">#173<\\/a><\\/li>\\n<li>Update: Update Boldgrid\\/BGforms dependancy.<\\/li>\\n<\\/ul>\\n\\n<h4>2.7.4<\\/h4>\\n\\n<p>Release date: September 20th, 2022<\\/p>\\n\\n<ul>\\n<li>Bug Fix: background images in crio<em>page<\\/em>headers are not getting replaced <a href=\\\"https:\\/\\/github.com\\/BoldGrid\\/boldgrid-inspirations\\/issues\\/155\\\">#155<\\/a><\\/li>\\n<li>Bug Fix: Object of class WP_Error could not be converted to int <a href=\\\"https:\\/\\/github.com\\/BoldGrid\\/boldgrid-inspirations\\/issues\\/153\\\">#153<\\/a><\\/li>\\n<\\/ul>\\n\\n<h4>2.7.3<\\/h4>\\n\\n<p>Release date: September 7th, 2022<\\/p>\\n\\n<ul>\\n<li>Update: Prevent hidden categories from displaying in the sidebar during inspirations process.<\\/li>\\n<\\/ul>\\n\\n<h4>2.7.2<\\/h4>\\n\\n<p>Release date: August 8th, 2022<\\/p>\\n\\n<ul>\\n<li>Update: Increased image download timeout to 60 seconds.<\\/li>\\n<\\/ul>\\n\\n<h4>2.7.1<\\/h4>\\n\\n<p>Release date: July 8th, 2022<\\/p>\\n\\n<ul>\\n<li>Update: Updated dependencies (php 7.1).<\\/li>\\n<\\/ul>\\n\\n<h4>2.7.0<\\/h4>\\n\\n<p>Release date: July 7th, 2022<\\/p>\\n\\n<ul>\\n<li>New feature: Logo support.<\\/li>\\n<li>New feature: Nested menus.<\\/li>\\n<li>New feature: Taxonmy per post.<\\/li>\\n<li>New feature: Custom headers.<\\/li>\\n<li>Update: Updated dependencies.<\\/li>\\n<li>Update: Remove page headers on start over.<\\/li>\\n<\\/ul>\\n\\n<h4>2.6.5<\\/h4>\\n\\n<p>Release date: January 25th, 2022<\\/p>\\n\\n<ul>\\n<li>Update: Several php8 fixes.<\\/li>\\n<li>Update: Automated tests run against php 5.6, 7.4, and 8.0<\\/li>\\n<\\/ul>\\n\\n<h4>2.6.4<\\/h4>\\n\\n<p>Release date: October 18th, 2021<\\/p>\\n\\n<ul>\\n<li>Update: Add filters to allow dev installs of Crio and Crio Premium.<\\/li>\\n<\\/ul>\\n\\n<h4>2.6.3<\\/h4>\\n\\n<p>Release date: June 10th, 2021<\\/p>\\n\\n<ul>\\n<li>Update: Updated the way blogs are installed via Inspirations.<\\/li>\\n<li>Update: Updated the My Inspirations page with links to theme support.<\\/li>\\n<li>Update: Updated dependencies.<\\/li>\\n<\\/ul>\\n\\n<h4>2.6.2<\\/h4>\\n\\n<p>Release date: April 14th, 2021<\\/p>\\n\\n<ul>\\n<li>Update: Add support for footer-menu locations<\\/li>\\n<\\/ul>\\n\\n<h4>2.6.1<\\/h4>\\n\\n<p>Release date: February 16th, 2021<\\/p>\\n\\n<ul>\\n<li>Update: Disable custom menu by default.<\\/li>\\n<li>Bug fix: Add \\\"My Inspirations\\\" link in case js does not redirect.<\\/li>\\n<\\/ul>\\n\\n<h4>2.6.0<\\/h4>\\n\\n<p>Release date: January 25th, 2021<\\/p>\\n\\n<ul>\\n<li>New feature: Theme deployments can now include theme specific plugins.<\\/li>\\n<\\/ul>\\n\\n<h4>2.5.2<\\/h4>\\n\\n<p>Release date: December 8th, 2020<\\/p>\\n\\n<ul>\\n<li>Bug fix: Fixed Gutenberg detection, avoid errors when adding media.<\\/li>\\n<li>Bug fix: Avoid js errors when editor screens have no ability to add media.<\\/li>\\n<\\/ul>\\n\\n<h4>2.5.1<\\/h4>\\n\\n<p>Release date: October 23rd, 2020<\\/p>\\n\\n<ul>\\n<li>Bug fix: Fixed \\\"Only variables should be passed by reference\\\" in class-boldgrid-inspirations-purchase-for-publish.php.<\\/li>\\n<\\/ul>\\n\\n<h4>2.5.0<\\/h4>\\n\\n<p>Release date: October 17th, 2020<\\/p>\\n\\n<ul>\\n<li>New feature: Invoicing and Caching options added as Inspirations features.<\\/li>\\n<\\/ul>\\n\\n<h4>2.4.4<\\/h4>\\n\\n<p>Release date: September 22nd, 2020<\\/p>\\n\\n<ul>\\n<li>Update: Updated dependencies.<\\/li>\\n<\\/ul>\\n\\n<h4>2.4.3<\\/h4>\\n\\n<p>Release date: August 11th, 2020<\\/p>\\n\\n<ul>\\n<li>Bug fix: WordPress 5.5 compatibility changes.<\\/li>\\n<li>Update: Optimized usage of set<em>staging<\\/em>installed.<\\/li>\\n<li>Update: Optimized \\\"get total coin cost\\\".<\\/li>\\n<li>Update: Updated links in login footer<\\/li>\\n<li>Update: Updated dependencies.<\\/li>\\n<\\/ul>\\n\\n<h4>2.4.2<\\/h4>\\n\\n<p>Release date: June 15th, 2020<\\/p>\\n\\n<ul>\\n<li>Update: Updated dependencies.<\\/li>\\n<\\/ul>\\n\\n<h4>2.4.1<\\/h4>\\n\\n<p>Release date: May 29th, 2020<\\/p>\\n\\n<ul>\\n<li>Update: Updated dependencies.<\\/li>\\n<\\/ul>\\n\\n<h4>2.4.0<\\/h4>\\n\\n<p>Release date: May 18th, 2020<\\/p>\\n\\n<ul>\\n<li>Update: Changes needed for Crio.<\\/li>\\n<li>Bug fix: Attribution page will not show excpert.<\\/li>\\n<li>Bug fix: Fixed display \\/ position of BoldGrid Connect image search results.<\\/li>\\n<\\/ul>\\n\\n<h4>2.3.1<\\/h4>\\n\\n<p>Release date: March 12th, 2020<\\/p>\\n\\n<ul>\\n<li>Bug fix: Unable to click button on email confirmation page.<\\/li>\\n<li>Update: Removed \\\"Add new from GridBlocks\\\" feature.<\\/li>\\n<\\/ul>\\n\\n<h4>2.3.0<\\/h4>\\n\\n<p>Release date: December 17th, 2019<\\/p>\\n\\n<ul>\\n<li>Bug fix: Added noindex to the attribution page.<\\/li>\\n<li>Update: Changed the form plugin from WPForms to weForms.<\\/li>\\n<li>Update: Updated dependencies.<\\/li>\\n<\\/ul>\\n\\n<h4>2.2.2<\\/h4>\\n\\n<p>Release date: November 22st, 2019<\\/p>\\n\\n<ul>\\n<li>Update: BoldGrid Backup is now Total Upkeep - updating references.<\\/li>\\n<li>Update: Updated dependency boldgrid\\/library to 2.10.6.<\\/li>\\n<\\/ul>\\n\\n<h4>2.2.1<\\/h4>\\n\\n<p>Release date: October 15th, 2019<\\/p>\\n\\n<ul>\\n<li>Update:  Updated dependency boldgrid\\/library to 2.10.4.<\\/li>\\n<\\/ul>\\n\\n<h4>2.2.0<\\/h4>\\n\\n<p>Release date: September 17th, 2019<\\/p>\\n\\n<ul>\\n<li>New feature: Recommend the BoldGrid Backup plugin for users needing to transfer a site.<\\/li>\\n<li>Update: Updating dependencies<\\/li>\\n<\\/ul>\\n\\n<h4>2.1.1<\\/h4>\\n\\n<p>Release date: September 5th, 2019<\\/p>\\n\\n<ul>\\n<li>Update: Updating dependencies<\\/li>\\n<\\/ul>\\n\\n<h4>2.1.0<\\/h4>\\n\\n<p>Release date: August 29th, 2019<\\/p>\\n\\n<ul>\\n<li>Update: Removed the \\\"Welcome to BoldGrid\\\" dashboard widget.<\\/li>\\n<li>Update: Add notice to dashboard widget.<\\/li>\\n<li>Update: Remove news widget from dashboard.<\\/li>\\n<\\/ul>\\n\\n<h4>2.0.7<\\/h4>\\n\\n<p>Release date: August 16, 2019<\\/p>\\n\\n<ul>\\n<li>Bug fix: Fixing compact warnings<\\/li>\\n<\\/ul>\\n\\n<h4>2.0.6<\\/h4>\\n\\n<p>Release date: August 1st, 2019<\\/p>\\n\\n<ul>\\n<li>Update: Updated dependencies<\\/li>\\n<\\/ul>\\n\\n<h4>2.0.5<\\/h4>\\n\\n<p>Release date: July 25th, 2019<\\/p>\\n\\n<ul>\\n<li>Update: Added a switch for toggling branding of the login page.<\\/li>\\n<li>Update: Cleaned up logic on purchase coins page.<\\/li>\\n<li>Update: Updated dependencies<\\/li>\\n<\\/ul>\\n\\n<h4>2.0.4<\\/h4>\\n\\n<p>Release date: July 2nd, 2019<\\/p>\\n\\n<ul>\\n<li>Update: Replaced the BoldGrid RSS feed widget on the dashboard with one in the updated library package.<\\/li>\\n<li>Update: Updated dependencies.<\\/li>\\n<\\/ul>\\n\\n<h4>2.0.3<\\/h4>\\n\\n<p>Release date: May 21st, 2019<\\/p>\\n\\n<ul>\\n<li>Bug fix: Fixing \\\"Call to undefined method getAttribute\\\" error.<\\/li>\\n<li>Bug fix: Replacing deprecated filter on login: login<em>headertitle \\/ login<\\/em>headertext.<\\/li>\\n<\\/ul>\\n\\n<h4>2.0.2<\\/h4>\\n\\n<p>Release date: Apr 23nd, 2019<\\/p>\\n\\n<ul>\\n<li>Bug fix: Fixing usage of php\'s empty function for php &lt; 5.5<\\/li>\\n<\\/ul>\\n\\n<h4>2.0.1<\\/h4>\\n\\n<p>Release date: Apr 19th, 2019<\\/p>\\n\\n<ul>\\n<li>Bug fix: Fixing class property declaration for php &lt; 5.6<\\/li>\\n<\\/ul>\\n\\n<h4>2.0.0<\\/h4>\\n\\n<p>Release date: Apr 16th, 2019<\\/p>\\n\\n<ul>\\n<li>Update: Made translation ready. Text domain is boldgrid-inspirations.<\\/li>\\n<li>Update: Inspirations process with full screen mode and design updates.<\\/li>\\n<li>New feature: Inspirations dashboard.<\\/li>\\n<li>New feature: German translations added - de_DE.<\\/li>\\n<\\/ul>\\n\\n<h4>1.6.5<\\/h4>\\n\\n<p>Release date: Jan 29th, 2019<\\/p>\\n\\n<ul>\\n<li>Bug fix:                       Pages fail to install on Pages > Add New.<\\/li>\\n<\\/ul>\\n\\n<h4>1.6.4<\\/h4>\\n\\n<p>Release date: Dec 5th, 2018<\\/p>\\n\\n<ul>\\n<li>Bug fix:                       Unable to save \\\"boldgrid<em>menu<\\/em>option\\\" on settings page.<\\/li>\\n<li>Bug fix:                       Fixed updating plugin via ajax.<\\/li>\\n<\\/ul>\\n\\n<h4>1.6.3<\\/h4>\\n\\n<p>Release date: Dec 4th, 2018<\\/p>\\n\\n<ul>\\n<li>Bug fix:                       Coin Budget help was not toggling when clicked.<\\/li>\\n<\\/ul>\\n\\n<h4>1.6.2<\\/h4>\\n\\n<p>Release date: Nov 26th, 2018<\\/p>\\n\\n<ul>\\n<li>Bug fix:      JIRA BGINSP-33   Fixed missing build for library dependencies; Updated production build process to use composer post-autoload-dump hook.<\\/li>\\n<\\/ul>\\n\\n<h4>1.6.1<\\/h4>\\n\\n<p>Release date: Nov 20th, 2018<\\/p>\\n\\n<ul>\\n<li>Update:       JIRA BGCONN-20   Removed update settings; have been moved to the BoldGrid Library packages.<\\/li>\\n<li>Bug fix:      JIRA BGTHEME-558 Fixed conflict between tgmpa plugin installer and the BoldGrid custom update classes.<\\/li>\\n<li>Bug fix:                       BoldGrid Connect Search \\/ WP 5.0 fix.<\\/li>\\n<li>Bug fix:                       Attribution page not being rebuilt \\/ WP 5.0 fix.<\\/li>\\n<li>Bug fix:                       BoldGrid Connect Search in the Customizer \\/ WP 5.0 fix.<\\/li>\\n<li>Bug fix:                       Recommended image sizes not working as expected.<\\/li>\\n<\\/ul>\\n\\n<h4>1.6.0<\\/h4>\\n\\n<ul>\\n<li>Update:                       Updated BoldGrid library to version 2.4.2.<\\/li>\\n<li>New feature:  JIRA BGINSP-24  Log data when there may be a connection or Ajax error.<\\/li>\\n<\\/ul>\\n\\n<h4>1.5.8<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA BGINSP-16  Warnings and notices within inspiration w\\/ Crio theme<\\/li>\\n<li>Bug fix:      JIRA BGINSP-23  Fixed issue: Connect Search may load with connection notice.<\\/li>\\n<\\/ul>\\n\\n<h4>1.5.7<\\/h4>\\n\\n<ul>\\n<li>Update:                       Updated to library version 2.3.5.<\\/li>\\n<\\/ul>\\n\\n<h4>1.5.6<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA BGINSP-14  Fatal in PHP >=7.1.0 when creating internal preview builds.<\\/li>\\n<li>Bug fix:      JIRA WPB-3767   Prevent invalid API calls for check-version.<\\/li>\\n<li>Update:       JIRA BGBKUP-180 Auto update code moved to library and removed from Inspirations.<\\/li>\\n<li>Update:       JIRA WPB-3730   Updated library dependency to ^2.0.0.<\\/li>\\n<li>Update:       JIRA BGINSP-3   Forcing display of Connect Key prompt admin notice on the Inspirations page, even if dismissed, until key is entered.<\\/li>\\n<li>Update:       JIRA WPB-3684   Updated composer.json, due to package changes.<\\/li>\\n<li>New feature:  JIRA BGCNTRL-46 Added filters for manipulating Dashboard help in trial sites.<\\/li>\\n<\\/ul>\\n\\n<h4>1.5.5<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA BGSTAGE-32 Fixed staging plugin install.<\\/li>\\n<\\/ul>\\n\\n<h4>1.5.4<\\/h4>\\n\\n<ul>\\n<li>Update:       JIRA BGINSP-4   Removed admin notice recommending plugin installations.<\\/li>\\n<\\/ul>\\n\\n<h4>1.5.3<\\/h4>\\n\\n<ul>\\n<li>New feature:  JIRA WPB-3643   Ensure that deployment does not install new wporg plugins if old ones are installed.<\\/li>\\n<\\/ul>\\n\\n<h4>1.5.2<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-3587   Menu assignment after deployment broken in WP 4.9.<\\/li>\\n<li>Bug fix:      JIRA WPB-3570   Inspirations Select button misplaced in WP 4.9.<\\/li>\\n<li>Bug fix:      JIRA WPB-3593   Changes require to help Staging support new Customizer scheduler.<\\/li>\\n<\\/ul>\\n\\n<h4>1.5.1<\\/h4>\\n\\n<ul>\\n<li>Update:                       Updates to library.<\\/li>\\n<\\/ul>\\n\\n<h4>1.5<\\/h4>\\n\\n<ul>\\n<li>Update:                       Bump version.<\\/li>\\n<\\/ul>\\n\\n<h4>1.4.11<\\/h4>\\n\\n<ul>\\n<li>Update:                       Bump version.<\\/li>\\n<\\/ul>\\n\\n<h4>1.4.10<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-3336   All and Default categories do not align.<\\/li>\\n<li>Bug fix:      JIRA WPB-3337   On a fresh install, Pages - New From GridBlocks fails.<\\/li>\\n<li>Bug fix:      JIRA WPB-3333   Image search only searching one provider instead of all.<\\/li>\\n<li>Bug fix:      JIRA WPB-3346   Edit Image button not working for attachment.<\\/li>\\n<li>Bug fix:      JIRA WPB-3387   Loading GridBlocks just spins.<\\/li>\\n<li>Update:       JIRA WPB-3352   Purchase coins through BoldGrid Central.<\\/li>\\n<li>Update:       JIRA WPB-3355   Add data-image-url attribute.<\\/li>\\n<li>Update:       JIRA WPB-3382   More descriptive creative commons icon.<\\/li>\\n<li>Update:       JIRA WPB-3384   Add License details to attachment details.<\\/li>\\n<li>Update:       JIRA WPB-3383   Filter out boldgrid-gridblock-set-preview-page.<\\/li>\\n<\\/ul>\\n\\n<h4>1.4.9<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-3318   When forcing a preferred form plugin install, first check if plugin is installed before trying to activate.<\\/li>\\n<li>Bug fix:      JIRA WPB-3312   Ensure activation of preferred form plugin.  Added filter for preferred slug.<\\/li>\\n<li>Bug fix:      JIRA WPB-3317   New page from GridBlocks not working.<\\/li>\\n<li>Update:       JIRA WPB-3252   Disable \'default\' category and configure \'showcase\'.<\\/li>\\n<li>Bug fix:      JIRA WPB-3332   New from gridblocks button not showing.<\\/li>\\n<\\/ul>\\n\\n<h4>1.4.8<\\/h4>\\n\\n<ul>\\n<li>New feature:  JIRA WPB-3200   Added WPForms support.<\\/li>\\n<li>Update:       JIRA WPB-3292   Updated plugin URI.<\\/li>\\n<li>Update:   JIRA WPB-3296 Add Inspirations as first menu item child.<\\/li>\\n<li>Bug Fix:  JIRA WPB-3274 Plugins > Add New Updates fail in modals.<\\/li>\\n<li>New feature:  JIRA WPB-3293   Resize images during deployment vs imgr server.<\\/li>\\n<\\/ul>\\n\\n<h4>1.4.7<\\/h4>\\n\\n<ul>\\n<li>Update:      JIRA WPB-3243    Change feedback admin notice display frequency.<\\/li>\\n<li>Update:      JIRA WPB-3264 Adding twitch social media option.<\\/li>\\n<li>New Feature: Added BoldGrid Library to plugin.<\\/li>\\n<\\/ul>\\n\\n<h4>1.4.6<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-3179   Gradient style being lost during normal deployment.<\\/li>\\n<li>Bug fix:      JIRA WPB-3180   Open WordPress\\/BoldGrid links in attribution page in new tab.<\\/li>\\n<\\/ul>\\n\\n<h4>1.4.5<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-3161   Fixed auto plugin update.<\\/li>\\n<li>Bug fix:      JIRA WPB-3162   Fixed issue creating .htaccess file in deployment.<\\/li>\\n<li>Bug fix:      JIRA WPB-3171   As an author, when installing a site I do not want background images to be processed.<\\/li>\\n<li>Bug fix:      JIRA WPB-3176   Background gradient \\/ url bug during deplyment.<\\/li>\\n<\\/ul>\\n\\n<h4>1.4.4<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-3151   Added check and load before using get<em>plugin<\\/em>data() for updates.<\\/li>\\n<li>Bug fix:      JIRA WPB-3141   Fixed invalid updates for BoldGrid Prime theme.<\\/li>\\n<li>Bug fix:      JIRA WPB-3158   Deployment\'s gallery updates are not saved.<\\/li>\\n<\\/ul>\\n\\n<h4>1.4.3<\\/h4>\\n\\n<ul>\\n<li>New feature:  JIRA WPB-3106   As an Author, I can set background images for elements.<\\/li>\\n<li>New feature:  JIRA WPB-3095   Update generic builds to display per theme channel.<\\/li>\\n<\\/ul>\\n\\n<h4>1.4.2<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2745   Fixed upgrade notices displaying when activation version was not recorded.<\\/li>\\n<li>Update:       JIRA WPB-3019   Updating attribution link creation.<\\/li>\\n<\\/ul>\\n\\n<h4>1.4.1<\\/h4>\\n\\n<ul>\\n<li>New feature:  JIRA WPB-3044   Automatically get Unsplash attribution.<\\/li>\\n<li>Update:       JIRA WPB-3043   Updating plugin description.<\\/li>\\n<\\/ul>\\n\\n<h4>1.4.0.1<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-3232   Deploy Staging menu item missing.<\\/li>\\n<li>Bug fix:      JIRA WPB-3233   BoldGrid Connect Search missing from new image widget.<\\/li>\\n<\\/ul>\\n\\n<h4>1.4<\\/h4>\\n\\n<ul>\\n<li>Update:       JIRA WPB-2936   Updating YouTube videos for BoldGrid Dashboard\'s new release.<\\/li>\\n<li>Bug fix:      JIRA WPB-2927   Social media menu disappears.<\\/li>\\n<li>Update:       JIRA WPB-2949   Configure blog using categories.<\\/li>\\n<li>Bug fix:      JIRA WPB-2950   Added max height for reseller logos on login page.<\\/li>\\n<li>Bug fix:      JIRA WPB-2925   Sidebar widgets don\'t match between preview and installed site.<\\/li>\\n<li>Bug fix:      JIRA WPB-2951   Images in staging posts not being downloaded.<\\/li>\\n<li>Bug fix:      JIRA WPB-2955   Backwards compatibility - maps taking up 200px empty space.<\\/li>\\n<li>Bug fix:      JIRA WPB-2984   Attribution page 404.<\\/li>\\n<\\/ul>\\n\\n<h4>1.3.9<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2912   Fixed issue when installing plugins from the Tools Import page.<\\/li>\\n<li>Bug fix:      JIRA WPB-2916   Inspirations deploy fatal error if an old forked plugin had the original installed.<\\/li>\\n<li>Bug fix:      JIRA WPB-2905   If installing via Author, do not update pages with survey data.<\\/li>\\n<li>Bug fix:      JIRA WPB-2910   Unterminated entity reference bug.<\\/li>\\n<li>Update:       JIRA WPB-2913   Validate email address in survey.<\\/li>\\n<li>Bug fix:      JIRA WPB-2404   iframe timeout in step 2 of Inspirations.<\\/li>\\n<li>Bug fix:      JIRA WPB-2173   Error deleting image and redownloading.<\\/li>\\n<li>Bug fix:      JIRA WPB-2635   Start over staging affecting active site.<\\/li>\\n<li>Bug fix:      JIRA WPB-2493   Publish private posts during staging deployment.<\\/li>\\n<li>Bug fix:      JIRA WPB-2796   Social media urls end in \\/username, go to 404s.<\\/li>\\n<\\/ul>\\n\\n<h4>1.3.8<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2892   Fixed plugin update checks for some scenarios (WP-CLI, Plesk, etc).<\\/li>\\n<li>Update:       JIRA WPB-2900   Update verbiage of build coin cost.<\\/li>\\n<li>Bug fix:      JIRA WPB-2901   Scroll bars not visible on preview iframe in Chrome.<\\/li>\\n<li>Bug fix:                      Removing CTA hooks.<\\/li>\\n<\\/ul>\\n\\n<h4>1.3.7<\\/h4>\\n\\n<ul>\\n<li>Update:       JIRA WPB-2819   Use switch instead of checkbox for Demo.<\\/li>\\n<li>Bug fix:      JIRA WPB-2780   Theme screenshots opening directly, rather than within gallery.<\\/li>\\n<li>Update:       JIRA WPB-2825   Adjust do not display formatting.<\\/li>\\n<li>Update:       JIRA WPB-2829   Updating hook to resolve BoldGrid SEO plugin conflicts.<\\/li>\\n<li>Update:       JIRA WPB-2837   Remove loading image after selecting theme in Gallery.<\\/li>\\n<li>Update:       JIRA WPB-2839   Minor verbiage change for Add a blog.<\\/li>\\n<li>Update:       JIRA WPB-2785   Entering words with apostrophe in it for Site title displays with a Backslash.<\\/li>\\n<li>Bug fix:      JIRA WPB-2848   Customize link takes users back to Inspirations.<\\/li>\\n<li>Bug fix:      JIRA WPB-2527   \'New from GridBlocks\' preview page appearing in cart.<\\/li>\\n<li>Bug fix:      JIRA WPB-2862   Survey, invalid argument supplied for foreach.<\\/li>\\n<li>Bug fix:      JIRA WPB-2601   Inspirations Internet Explorer\\/ Stuck on loading themes.<\\/li>\\n<li>Bug fix:      JIRA WPB-2854   Downloading Image spinner never stops spinning.<\\/li>\\n<\\/ul>\\n\\n<h4>1.3.6<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2772   PHP warnings on deploy in WordPress 4.3.7.<\\/li>\\n<li>Bug fix:      JIRA WPB-2766   Plesk and WP-CLI were not getting private repo updates.<\\/li>\\n<li>Update:       JIRA WPB-2763   Update email and address on Contact Us page.<\\/li>\\n<li>Update:       JIRA WPB-2764   Remove option to add a map.<\\/li>\\n<li>Update:       JIRA WPB-2765   Allow iframes for preview builds.<\\/li>\\n<li>New feature:  JIRA WPB-2771   Update footer-company-details widget with survey data.<\\/li>\\n<li>New feature:  JIRA WPB-2777   Add an Install sample blog checkbox.<\\/li>\\n<li>New feature:  JIRA WPB-2778   Setup a blog during deployment.<\\/li>\\n<li>Bug fix:      JIRA WPB-2792   Staged posts (private posts) are trashed when starting over active site.<\\/li>\\n<li>Update:       JIRA WPB-2800   Ensure \'Install a blog\' works with Staging.<\\/li>\\n<li>Update:       JIRA WPB-2801   Remove milestones classes.<\\/li>\\n<li>Bug fix:      JIRA WPB-2779   Survey not working with Staging.<\\/li>\\n<li>Update:       JIRA WPB-2805   Preview builds w &amp; w\\/o blogs.<\\/li>\\n<li>New feature:  JIRA WPB-2806   Add filter for Inspirations configs.<\\/li>\\n<li>Bug fix:      JIRA WPB-2808   Do not request generic builds when requesting blog as well.<\\/li>\\n<\\/ul>\\n\\n<h4>1.3.5<\\/h4>\\n\\n<ul>\\n<li>Testing:      JIRA WPB-2744   Tested on WordPress 4.7.<\\/li>\\n<li>Update:       JIRA WPB-2376   Filter the bgtfw contact blocks.<\\/li>\\n<li>Update:       JIRA WPB-2476   Update case of Company name.<\\/li>\\n<li>Update:       JIRA WPB-2747   Update Add a map verbiage.<\\/li>\\n<li>Update:       JIRA WPB-2749   Add a map to my Contact page.<\\/li>\\n<li>Bug fix:      JIRA WPB-2658   Fix spacing issues atop Inspirations.<\\/li>\\n<li>Bug fix:      JIRA WPB-2751   Show all in the smaller view of inspirations doesn\'t work anymore.<\\/li>\\n<li>Bug fix:      JIRA WPB-2757   Apostrophe and other strange characters installed via Inspirations.<\\/li>\\n<li>Bug fix:      JIRA WPB-2759   DOMDocument::loadHTML(): htmlParseEntityRef: expecting \';\'.<\\/li>\\n<\\/ul>\\n\\n<h4>1.3.4<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2696   Remove placeholders from survey.<\\/li>\\n<li>New feature:  JIRA WPB-2697   Update phone numbers in widgets.<\\/li>\\n<li>New feature:  JIRA WPB-2699   Use phone number entered during survey.<\\/li>\\n<li>Update:       JIRA WPB-2704   Adjust format of how social media icons are saved.<\\/li>\\n<li>New feature:  JIRA WPB-2705   Use survey social media items when creating menu.<\\/li>\\n<li>Update:       JIRA WPB-2711   Show optional message in survey.<\\/li>\\n<li>Update:       JIRA WPB-2712   Have plus sign toggle more social icons.<\\/li>\\n<li>Update:       JIRA WPB-2723   Update phone in pages.<\\/li>\\n<\\/ul>\\n\\n<h4>1.3.3<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2627   Back \\/ next buttons should not be clickable.<\\/li>\\n<li>Bug fix:      JIRA WPB-2625   Behavior of last image\'s next button in Inspirations.<\\/li>\\n<\\/ul>\\n\\n<h4>1.3.2<\\/h4>\\n\\n<ul>\\n<li>Update:       JIRA WPB-2582   Always show arrows in Inspirations gallery.<\\/li>\\n<li>Update:       JIRA WPB-2583   Ensure first letter in theme\'s title attribute is capitalized.<\\/li>\\n<li>Update:       JIRA WPB-2599   Add placeholder for 4th step to Inspirations.<\\/li>\\n<li>Update:       JIRA WPB-2551   Duplicate images.<\\/li>\\n<li>New feature:  JIRA WPB-2603   Add initial version of survey.<\\/li>\\n<li>Bug fix:      JIRA WPB-2622   Inspirations - Step 4 - Go back button installs site.<\\/li>\\n<\\/ul>\\n\\n<h4>1.3.1<\\/h4>\\n\\n<ul>\\n<li>Misc:         JIRA WPB-2503   Added plugin requirements to readme.txt file.<\\/li>\\n<li>Bug fix:      JIRA WPB-2539   Fix possible duplicate connection issue notice from ajax.js call.<\\/li>\\n<li>Bug fix:      JIRA WPB-2558   Don\'t display feedback widget if user hasn\'t entered their key.<\\/li>\\n<li>Bug fix:      JIRA WPB-2559   Don\'t allow widgets to drag into welcome box area.<\\/li>\\n<li>Bug fix:      JIRA WPB-2555   Images in search results flicker.<\\/li>\\n<li>Update:       JIRA WPB-2563   Convert Attribution page to use custom post type.<\\/li>\\n<li>Update:       JIRA WPB-2568   Added fancybox and large previews to Inspirations.<\\/li>\\n<li>Update:       JIRA WPB-2570   Milestone blogname change.<\\/li>\\n<li>Update:       JIRA WPB-2574   Milestone Social Media Change.<\\/li>\\n<li>Update:       JIRA WPB-2578   Milestone Contact Info Footer Change.<\\/li>\\n<\\/ul>\\n\\n<h4>1.3<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2544   Disable \'Install\' button after clicking it.<\\/li>\\n<\\/ul>\\n\\n<h4>1.2.13<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2531   Javascript error checking needed for mine count.<\\/li>\\n<\\/ul>\\n\\n<h4>1.2.12<\\/h4>\\n\\n<ul>\\n<li>Update:       JIRA WPB-2472   Added update notice for 1.3.<\\/li>\\n<li>Bug fix:      JIRA WPB-2486   Incorrect page count on All Pages.<\\/li>\\n<li>Bug fix:      JIRA WPB-2467   With staging disabled, Customize goes to \\\"Change Themes\\\".<\\/li>\\n<li>Update:       JIRA WPB-2488   Remove \'Permanently delete pages instead of sending to trash\'.<\\/li>\\n<li>Update:       JIRA WPB-2490   Move default option to \'install as staging\'.<\\/li>\\n<li>Update:       JIRA WPB-2491   Add \'Customize > Active Theme\' navigation to Inspirations.<\\/li>\\n<li>Bug fix:      JIRA WPB-2496   Require comment text in feedback form.<\\/li>\\n<li>Update:       JIRA WPB-2229   Update error reporting when purchasing images.<\\/li>\\n<li>Update:       JIRA WPB-2498   Change \'Company Name\' to theme name.<\\/li>\\n<li>Update:       JIRA WPB-2497   Add new dashboard videos.<\\/li>\\n<li>Bug fix:      JIRA WPB-2376   \'No search results\' method is not cleared in BGCS.<\\/li>\\n<\\/ul>\\n\\n<h4>1.2.11<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2468   Switching between boldgrid admin menu and standard wp menu no longer works.<\\/li>\\n<li>Bug fix:      JIRA WPB-2477   If you have an existing site non BG, no route for staging exists.<\\/li>\\n<\\/ul>\\n\\n<h4>1.2.10<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2446   Fixed missing build id passed on site install.<\\/li>\\n<li>Bug fix:      JIRA WPB-2426   Insert Gridblock button is missing.<\\/li>\\n<li>Bug fix:      JIRA WPB-2443   When starting over, I get a blank page.<\\/li>\\n<li>Bug fix:      JIRA WBP-2445   Inspirations is not fetching cached themes.<\\/li>\\n<li>Update:       JIRA WPB-2458   Update \'Recommended\' verbiage in last step of Inspirations.<\\/li>\\n<\\/ul>\\n\\n<h4>1.2.9<\\/h4>\\n\\n<ul>\\n<li>Misc:         JIRA WPB-2420   Added EOF line breaks.<\\/li>\\n<li>Bug fix:      JIRA WPB-2387   Fixed issue with AJAX theme updates and BG theme slugs duplicated in the WP repo.<\\/li>\\n<li>Bug fix:      JIRA WPB-2324   Attribution should not show in 404 sitemap.<\\/li>\\n<li>Bug fix:      JIRA WPB-2403   No plugins recommended still showing notice.<\\/li>\\n<li>Update:       JIRA WPB-2416   Text changes for confirmation section of Inspirations.<\\/li>\\n<li>Update:       JIRA WPB-2417   Add additional text to deployment success page for staging.<\\/li>\\n<li>Bug fix:      JIRA WPB-2421   Message showing when it shouldn\'t - We\'ve recognized that you haven\'t installed...<\\/li>\\n<li>Bug fix:      JIRA WPB-2112   BoldGrid Connect Search missing for galleries.<\\/li>\\n<li>Bug fix:      JIRA WPB-2422   Fixed CSS Loading graphic animation in chrome to display properly.<\\/li>\\n<li>Bug fix:      JIRA WPB-2401   Gallery not displaying correctly in Chrome &amp;&amp; FF.<\\/li>\\n<li>Bug fix:      JIRA WPB-2423   Trying to get property of non-object in ...stock-photography.php.<\\/li>\\n<\\/ul>\\n\\n<h4>1.2.8<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2398   Error requesting free key.<\\/li>\\n<li>Bug fix:      JIRA WPB-2399   Only show feedback widget to admins.<\\/li>\\n<\\/ul>\\n\\n<h4>1.2.7<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2389   Fixed saving BoldGrid Settings.<\\/li>\\n<li>Bug fix:      JIRA WPB-2388   Removed duplicate boldgrid_activate().<\\/li>\\n<li>Update:       JIRA WPB-2390   Update verbiage for inspirations install success.<\\/li>\\n<li>Bug fix:      JIRA WPB-2391   Hide BoldGrid Welcome Panel if key isn\'t entered yet.<\\/li>\\n<li>Bug fix:      JIRA WPB-2392   If key is less than 32 char don\'t make call to validate.<\\/li>\\n<li>Bug fix:      JIRA WPB-2393   Error messages should be removed when resubmitting keys.<\\/li>\\n<li>Bug fix:      JIRA WPB-2394   Cursor for show\\/hide log should be a pointer.<\\/li>\\n<li>Update:       JIRA WPB-2395   Update login page styling.<\\/li>\\n<li>Bug fix:      JIRA WPB-2396   Remove staging from recommended plugin notices.<\\/li>\\n<li>Bug fix:      JIRA WPB-2327   Check if framework is handling plugin recommendations before recommending.<\\/li>\\n<\\/ul>\\n\\n<h4>1.2.6<\\/h4>\\n\\n<ul>\\n<li>Misc:         JIRA WPB-2344   Updated readme.txt for Tested up to 4.6.1.<\\/li>\\n<li>Bug fix:      JIRA WPB-2336   Load BoldGrid settings from the correct WP option (site\\/blog).<\\/li>\\n<li>Bug fix:      JIRA WPB-2248   Removed \'New From GridBlocks\' button on edit submission page.<\\/li>\\n<li>Bug fix:      JIRA WPB-2332   Reset scroll position on step 2 of Inspirations to top.<\\/li>\\n<li>Bug fix:      JIRA WPB-2339   Remove notices from Inspirations page.<\\/li>\\n<li>Update:       JIRA WPB-2208   Removed tutorials from Inspirations.<\\/li>\\n<li>Update:       JIRA WPB-2359   Order \'Category Filter\' by category display order.<\\/li>\\n<li>Update:       JIRA WPB-2360   Sort themes by category and then order within category.<\\/li>\\n<li>Update:       JIRA WPB-2368   Read version constant from plugin file.<\\/li>\\n<li>Update:       JIRA WPB-2361   Add BoldGrid Connect Search to Editor\'s background image tool.<\\/li>\\n<li>Update:       JIRA WPB-2354   Preview button needs to always be visible in mobile view.<\\/li>\\n<li>Update:       JIRA WPB-2355   Remove extraneous \'Preview\' button.<\\/li>\\n<li>Bug fix:      JIRA WPB-2364   Inspirations not respecting theme release channel.<\\/li>\\n<li>Bug fix:      JIRA WPB-2370   Color in screenshot does not match preview.<\\/li>\\n<li>Bug fix:      JIRA WPB-2373   Duplicate themes in Inspirations.<\\/li>\\n<li>Bug fix:      JIRA WPB-2379   Wrong budget passed when going form step 2 to step 1.<\\/li>\\n<li>Update:       JIRA WPB-2380   Remove references to tutorials in deployment congrats message.<\\/li>\\n<li>Bug fix:      JIRA WPB-2383   Image Search tab appears when clicking \'Add GridBlock\'.<\\/li>\\n<\\/ul>\\n\\n<h4>1.2.5<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2325   Added wrapper to handle mb<em>convert<\\/em>encoding() if mbstring is not loaded.<\\/li>\\n<li>Bug fix:      JIRA WPB-2313   Disabled GridBlocks in network admin pages.<\\/li>\\n<li>New feature:  JIRA WPB-2268   Changed to resized preview screenshots for Inspirations Design First concept.<\\/li>\\n<li>New feature:  JIRA WPB-2287   Adjust device preview buttons in step 2 to behave like those in editor.<\\/li>\\n<li>New feature:  JIRA WPB-2291   Auto install staging in final step if user chooses staging.<\\/li>\\n<li>Update:       JIRA WPB-2290   Changed \'Install\' button to \'Next\'.<\\/li>\\n<li>Bug fix:      JIRA WPB-2289   Continuously clicking category in step 1 shuffles themes.<\\/li>\\n<li>Update:       JIRA WPB-2267   Added message to Inspirations when no generic themes are available.<\\/li>\\n<li>Update:       JIRA WPB-2315   Added error handling for malformed ajax results for call to \\/api\\/build\\/get-generic.<\\/li>\\n<li>Update:       JIRA WPB-2316   Add error handling for failures to fetch categories.<\\/li>\\n<li>Update:       JIRA WPB-2317   Add error handling for failures to fetch pagesets.<\\/li>\\n<li>Update:       JIRA WPB-2319   Check user capabilities before prompting for api key.<\\/li>\\n<li>Update:       JIRA WPB-2320   Ensure user has permission to edit page before allowing download<em>and<\\/em>insert<em>into<\\/em>page.<\\/li>\\n<li>Update:       JIRA WPB-2322   Sanitize user feedback before adding to options table.<\\/li>\\n<li>Update:       JIRA WPB-2323   Allow admin notices to be dismissed per user.<\\/li>\\n<li>Update:       JIRA WPB-2326   Update \'update\' class to utilize Admin Notices class.<\\/li>\\n<li>Update:       JIRA WPB-2327   Check user capabilities before showing admin notices.<\\/li>\\n<li>Update:       JIRA WPB-2331   Update confirmation messages.<\\/li>\\n<\\/ul>\\n\\n<h4>1.2.4<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2269   Typo fix in Boldgrid<em>Inspirations<\\/em>Dependency<em>Plugins::print<\\/em>uninstalled_plugins().<\\/li>\\n<li>Bug fix:      JIRA WPB-2270   New From GridBlocks became unavailable.<\\/li>\\n<\\/ul>\\n\\n<h4>1.2.3<\\/h4>\\n\\n<ul>\\n<li>New feature:  JIRA WPB-2172   For preview generic builds, added an option for identification for purges, etc.<\\/li>\\n<li>Bug fix:      JIRA WPB-2263   For preview sites under multisite, set the admin email address using the network admin email address.<\\/li>\\n<li>Bug fix:      JIRA WPB-2223   Reworked API key validation and connection issue notices, formatting.<\\/li>\\n<li>Misc:         JIRA WPB-2256   Updated readme.txt for Tested up to: 4.6.<\\/li>\\n<li>Rework:       JIRA WPB-2150   Moved API methods to a new class, formatting, and phpcs rework.<\\/li>\\n<li>Bug fix:      JIRA WPB-2224   Hide the email address field when widget is loaded.<\\/li>\\n<li>Bug fix:      JIRA WPB-2225   Fixed jQuery Migrate deprecated warning.<\\/li>\\n<li>Update:       JIRA WPB-2245   Changed feed to pull from dashboard tag on blog.<\\/li>\\n<li>Bug fix:      JIRA WPB-2265   Uncaught TypeError: IMHWPB.BaseAdmin is not a constructor.<\\/li>\\n<li>Bug fix:      JIRA WBP-2236   Errors everywhere when logging in as an Editor.<\\/li>\\n<li>Bug fix:      JIRA WPB-2234   Add current<em>user<\\/em>can checks to Boldgrid<em>Inspirations->set<\\/em>api<em>key<\\/em>callback().<\\/li>\\n<li>Bug fix:      JIRA WPB-2237   Limit ajax requests by user.<\\/li>\\n<li>Bug fix:      JIRA WPB-2240   Limit printing of configs in head.<\\/li>\\n<\\/ul>\\n\\n<h4>1.2.2<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2058   Added wrap class to the tutorials page.<\\/li>\\n<li>Bug fix:      JIRA WPB-2184   In PHP 5.2, deactivate and die properly.<\\/li>\\n<li>New feature:                  Added BoldGrid news widget to dashboard.<\\/li>\\n<li>Bug fix:      JIRA WPB-1994   Fixed issue with WP Theme Editor not being available.<\\/li>\\n<li>New feature:                  Added BoldGrid Feedback widget.<\\/li>\\n<li>Bug fix:      JIRA WPB-2169   Connect Search defaults to smallest image size when no recommended sizes available.<\\/li>\\n<li>Bug fix:    JIRA WPB-2192 Allow bug report to correctly show parent themes if submitted.<\\/li>\\n<\\/ul>\\n\\n<h4>1.2.1<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2160   New From GridBlocks, multiple pages are installed.<\\/li>\\n<li>Update:                       Changed text of getting and entering connect keys.<\\/li>\\n<li>Security:     JIRA WPB-2151   Disabled autocomplete for API key entry fields.<\\/li>\\n<li>Bug fix:      JIRA WPB-2145   Fixing issue with theme screenshots on Chrome Ubuntu.<\\/li>\\n<\\/ul>\\n\\n<h4>1.2<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2119   For asset downloads, when Imagick is loaded, set the thread limit to 1.<\\/li>\\n<li>Bug fix:      JIRA WPB-2125   Fixing issue where theme was overwritten without version change.<\\/li>\\n<li>Bug fix:      JIRA WPB-2104   Go back button hides all themes (Inspirations > Add Theme).<\\/li>\\n<li>Bug fix:      JIRA WPB-2107   BoldGrid Connect Search overlapping footer (Dashboard > Media).<\\/li>\\n<li>Bug fix:      JIRA WPB-2109   Session issues when starting over and importing active site.<\\/li>\\n<li>Bug fix:      JIRA WPB-2116   Changes to the order of images in a gallery are not saving.<\\/li>\\n<li>Bug fix:      JIRA WPB-2134   Staging\'s boldgrid_attribution option and \'Uninitialized string offset\' Notice.<\\/li>\\n<li>Bug fix:      JIRA WPB-2135   Image not replaced in Page &amp; Post Editor after using Connect Search.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1.8<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2058   Added wrap class to Inspirations, so admin notices are displayed at the top.<\\/li>\\n<li>Bug fix:      JIRA WPB-2041   Fixed BoldGrid theme update check in WordPress 4.6.<\\/li>\\n<li>Testing:      JIRA WPB-2046   Tested on WordPress 4.5.3.<\\/li>\\n<li>New feature:  JIRA WPB-599    Added options for plugin and theme auto-updates via WordPress autoupdater.<\\/li>\\n<li>Update:       JIRA WPB-2008   Deploy class updated to allow for is_generic flag.<\\/li>\\n<li>Bug fix:      JIRA WPB-1950   Prevent a portait image from displaying atop \'Crop Image\' and \'Skip Cropping\' buttons.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1.7<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2032   Fixed issue when activating key.  Added nonce to api key form.<\\/li>\\n<li>Rework:       JIRA WPB-2030   Updated the \\\"I don\'t have an API key\\\" section.<\\/li>\\n<li>New feature:  JIRA WPB-2029   Added TOS box to API key submission form.<\\/li>\\n<li>New feature:  JIRA WPB-1905   Added capability for auto-updates of boldgrid-inspirations by API response.<\\/li>\\n<li>Bug fix:      JIRA WPB-2002   Fixed theme update issue where upgrader says is up to date at times.<\\/li>\\n<li>Bug fix:      JIRA WPB-2006   Pdes and Homepage not installing correctly on Inpirations Theme Only installs.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1.6<\\/h4>\\n\\n<ul>\\n<li>New feature:  JIRA WPB-1839   Users can now change their theme release channel.<\\/li>\\n<li>Security fix: JIRA WPB-1977   Validate nonce for feedback form diagnostic data callback and form submit.<\\/li>\\n<li>Bug fix:      JIRA WPB-1955   Fatal error: Class \'Boldgrid<em>Staging<\\/em>Plugin\' not found.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1.5<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1914   Staged image used on Active page not showing in cart.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1.4<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1886   Fixed feedback notice being displayed too often (more than a week after submitting).<\\/li>\\n<li>New feature:  JIRA WPB-1183   Refresh the Library Tab after downloading an image.<\\/li>\\n<li>Update:       JIRA WPB-1865   Update style of \'Transactions\' pages to better incorporate BoldGrid Staging\'s nav menu.<\\/li>\\n<li>Update:       JIRA WPB-1884   Passed WordPress 4.5.1 testing.<\\/li>\\n<li>Bug fix:      JIRA WPB-1855   Do not display feedback notice on update or setting pages.<\\/li>\\n<li>Bug fix:      JIRA WPB-1860   Fixed horizontal line through screenshot in step 2.<\\/li>\\n<li>Bug fix:      JIRA WPB-1863   Cart does not look for watermarked images used within staged pages.<\\/li>\\n<li>Bug fix:      JIRA WPB-1891   View \\/ Download of images within receipts not working for images purchased via Staging.<\\/li>\\n<li>Bug fix:      JIRA WPB-1893   JS errors in console when viewing attachments.<\\/li>\\n<li>Bug fix:      JIRA WPB-1900   Attribution shows in menu when menu generated using wp<em>page<\\/em>menu.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1.3<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1824   Fixed order of plugin deactivation and uninstall in Start Over process.<\\/li>\\n<li>Bug fix:      JIRA WPB-1814   Fixed PHP notice in page and post editor for In Menu when there is a corrupted nav menu array.<\\/li>\\n<li>Bug fix:      JIRA WPB-1823   Fixed display of \\\"Themes\\\" H1 and the additional themes bar when choosing active or staging before installing a theme.<\\/li>\\n<li>Bug fix:      JIRA WPB-1840   Fixing thumbnail presentation in inspirations and add new theme.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1.2.3<\\/h4>\\n\\n<ul>\\n<li>Update:               Sync version. See version 1.1.1.1.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1.2.2<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1833   Fixed checking for previously downloaded assets in deployment when using multisite (wp-preview).<\\/li>\\n<\\/ul>\\n\\n<h4>1.1.2.1<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1817   BoldGrid Connect Search: Was not being added when changing a header image in the Customizer.<\\/li>\\n<li>Rework:       JIRA WPB-1541   Removed feedback form bug report diagnostic report items.<\\/li>\\n<li>Bug fix:      JIRA WPB-1816   Fixed update class interference with the Add Plugins page.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1.2<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1809   Fixed undefined index \\\"action\\\" for some scenarios.  Optimized update class and addressed CodeSniffer items.<\\/li>\\n<li>Rework:       JIRA WPB-1541   Reworked admin feedback notice.<\\/li>\\n<li>Rework:       JIRA WPB-1751   Removed analysis processing and optional logging capabilities.  Added support for XHProf.<\\/li>\\n<li>Bug fix:      JIRA WPB-1805   Now adds theme update info on the Customizer Themes page.<\\/li>\\n<li>Rework:       JIRA WPB-1785   Enabled and reworked image caching for the preview server.<\\/li>\\n<li>Rework:       JIRA WPB-1751   Reworked analysis processing.<\\/li>\\n<li>Update:       JIRA WPB-1658   Storing more reliable install data through inspirations.<\\/li>\\n<li>Bug fix:      JIRA WPB-1787   When not using BoldGrid menu, cart does not dynamically update total page price.<\\/li>\\n<li>Update:       JIRA WPB-1754   Remove attribution page from search results.<\\/li>\\n<li>Bug fix:      JIRA WPB-1788   webkit css missing from \'new from gridblocks\'.<\\/li>\\n<li>New feature:  JIRA WPB-1806   Add \'BoldGrid search\' tab when replacing an image.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1.1.1<\\/h4>\\n\\n<ul>\\n<li>Bug Fix:                      Fixing logo display on login screen.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1.1<\\/h4>\\n\\n<ul>\\n<li>Bug fix:                      Fixed analysis include for preview server.<\\/li>\\n<li>Bug fix:                      New From GridBlocks: Asset download issues.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1<\\/h4>\\n\\n<ul>\\n<li>New feature:  JIRA WPB-1751   Added analysis processing and optional logging capabilities.<\\/li>\\n<li>Bug fix:      JIRA WPB-1781   Removed boldgrid<em>dismissed<\\/em>admin_notices from Start Over cleanup.<\\/li>\\n<li>New feature:  JIRA WPB-1541   Added feedback notice.<\\/li>\\n<li>Bug fix:      JIRA WPB-1747   New From GridBlocks: For non BoldGrid themes, only load grid css.<\\/li>\\n<li>Bug fix:      JIRA WPB-1760   New From GridBlocks: Ensure page title shows on preview page.<\\/li>\\n<li>Update:       JIRA WPB-1779   New From GridBlocks: Update verbiage for \'Downloading GridBlocks\'.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.12.1<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1710   Fixed missing device preview tabs on Add New Theme preview modal.<\\/li>\\n<li>Bug fix:      JIRA WPB-1710   Fixed notice dismissal checking.<\\/li>\\n<li>Bug fix:      JIRA WPB-1749   On start over, staging menus are not deleted.<\\/li>\\n<li>Bug fix:      JIRA WPB-1755   Gallery images not showing in cart.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.12<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1740   Fixed \\\"In Menu\\\" messages in editor when staging plugin is not active, and fixed saving menu selections.<\\/li>\\n<li>New feature:  JIRA WPB-1726   Added optional feedback for GridBlock Add Page.<\\/li>\\n<li>Removed Ft:   JIRA WPB-1710   Removed Inspirations Add Pages; replaced by GridBlocks.<\\/li>\\n<li>Misc:         JIRA WPB-1361   Added license file.<\\/li>\\n<li>New feature:                  Don\'t assign footer contact widget if using base pagesets.<\\/li>\\n<li>Bug Fix:      JIRA WPB-1732   Fixing css issues on login screen (firefox).<\\/li>\\n<li>Bug Fix:      JIRA WPB-1687   Image search: Title, Caption, Alt Text and Description do not display on new pages.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.11<\\/h4>\\n\\n<ul>\\n<li>New feature:  JIRA WPB-1699   Added optional feedback for theme activation.<\\/li>\\n<li>New feature:  JIRA WPB-1690   Adding BoldGrid themes to All themes install menu.<\\/li>\\n<li>Bug fix:      JIRA WPB-1686   Limited items loaded in network admin pages.<\\/li>\\n<li>Improvement:  JIRA WPB-1604   Added a \\\"Cancel\\\" link to the \\\"In Menu\\\" section.<\\/li>\\n<li>Improvement:  JIRA WPB-1603   Display menu locations in the editor \\\"In Menu\\\" section.<\\/li>\\n<li>Bug fix:      JIRA WPB-1602   Corrected capitalization of \\\"None\\\" under \\\"In menu\\\" in the editor.<\\/li>\\n<li>Improvement:  JIRA WPB-1664   Gets api<em>key and site<\\/em>hash from configs instead of get_option.<\\/li>\\n<li>Bug fix:      JIRA WPB-1597   Fixing indefined index error<\\/li>\\n<li>New feature:  JIRA WPB-1649   Added reporting of PHP version and mobile ratio.<\\/li>\\n<li>Bug fix:      JIRA WPB-1598   \'Mine\' count on \'all pages\' is incorrect.<\\/li>\\n<li>Bug fix:      JIRA WPB-1647   JS error with easy-attachment-preview-size.js.<\\/li>\\n<li>Bug fix:      JIRA WPB-1651   When the BG menu is turned off, Appearance link should take you to themes.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.10<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1632   Fixed handling of subcategory<em>id in deploy<\\/em>page_sets.<\\/li>\\n<li>New feature:  JIRA WPB-1510   Moved adhoc functions.php to class-boldgrid-inspirations-utility.php (class Boldgrid<em>Inspirations<\\/em>Utility).<\\/li>\\n<li>Rework:       JIRA WPB-1553   Updated require and include statements for standards.<\\/li>\\n<li>Bug fix:      JIRA WPB-1563   Updated pages in which wp<em>iframe-media<\\/em>upload.css is loaded.<\\/li>\\n<li>Bug fix:      JIRA WPB-1549   Resolve attribution page missing attribution for several images.png.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.9.2<\\/h4>\\n\\n<ul>\\n<li>Bug fix:                      Add GridBlock Sets feature disabled.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.9.1<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1553   Fixed support for PHP 5.2 to deactivate plugin.<\\/li>\\n<li>Bug fix:                      Prevent click of links in add<em>new<\\/em>page_selection previews.<\\/li>\\n<li>Bug fix:      JIRA WPB-1554   Fixed undefined JavaScript variable pagenow for customizer link.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.9<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1554   Fixed theme link in network dashboard nav menu.<\\/li>\\n<li>Bug fix:      JIRA WPB-1590   Fixed JavaScript error for undefined screen info in network dashboard.<\\/li>\\n<li>Bug fix:      JIRA WPB-1535   Fixed theme deployment issues.<\\/li>\\n<li>New feature:  JIRA WPB-1584   Added an opt-out feedback payload delivery system.<\\/li>\\n<li>New feature:  JIRA WPB-1580   Added optional feedback for customizer_start.<\\/li>\\n<li>Bug fix:      JIRA WPB-1571   Removed plugin dependency admin notice when editing an attachment (image).<\\/li>\\n<li>New feature:  JIRA WPB-1579   Added feedback opt-out in BoldGrid Settings, hidden for now.<\\/li>\\n<li>Bug fix:      JIRA WPB-1575   Addressed an issue causing mismatch color palettes on cached previews<\\/li>\\n<li>New feature:  JIRA WPB-1514   Add new pages offers page templates to choose from.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.8.1<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1553   Fixed PHP version check condition (&lt;5.3).<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.8<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1561   Fixed missing get<em>plugin<\\/em>data on update calls.<\\/li>\\n<li>New feature:  JIRA WPB-1511   Added dependency plugin notice on editor pages.<\\/li>\\n<li>Bug fix:      JIRA WPB-1553   Added support for <strong>DIR<\\/strong> in PHP &lt;=5.2.<\\/li>\\n<li>Bug fix:      JIRA WPB-1371   JSON encoded image data for media download requests.<\\/li>\\n<li>New feature:  JIRA WPB-1332   Swapping loading GIF to CSS loading image.<\\/li>\\n<li>New feature:  JIRA WPB-1072   Storing static pages on install<\\/li>\\n<li>New feature:  JIRA WPB-1539   When deleting a page, remove it from any applicable menus as well.<\\/li>\\n<li>New feature   JIRA WPB-1542   Manage menu assignment within editor.<\\/li>\\n<li>New feature   JIRA WPB-1555   Add wp-image-## class to images during deployment.<\\/li>\\n<li>New feature   JIRA WPB-1557   Add wp-image-## class to images when adding gridblocks.<\\/li>\\n<li>Bug fix:      JIRA WPB-1506   Theme naming missing in preview.<\\/li>\\n<li>Bug fix:      JIRA WPB-1443   Extra page listed under \'Mine\'.<\\/li>\\n<li>Bug fix:      JIRA WPB-1560   Install options not available on preview server<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.7<\\/h4>\\n\\n<ul>\\n<li>Rework:       JIRA WPB-1533   Ensured activation data is sent after first login.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.7<\\/h4>\\n\\n<ul>\\n<li>Rework:       JIRA WPB-1533   Ensured activation data is sent after first login.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.6<\\/h4>\\n\\n<ul>\\n<li>Rework:       JIRA WPB-1411   Added more output to the deploy log.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.5<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1462   Fixed position of dependency plugins admin notice.  Also limited to Dashboard and plugins page.<\\/li>\\n<li>Bug fix:      JIRA WPB-1290   Fixing issues with galleries leaving empty spaces<\\/li>\\n<li>Bug fix:      JIRA WPB-1471   Made deployment plugin installation respect release channel.<\\/li>\\n<li>Rework:       JIRA WPB-1452   Remove unneeded call to \'boldgrid<em>activate<\\/em>framework\' during deployment.<\\/li>\\n<li>Bug fix:      JIRA WPB-946    Fixed margin bug on step 2 additional themes.<\\/li>\\n<li>Bug fix:      JIRA WPB-1384   Increase width of select input on image search modal.<\\/li>\\n<li>Bug fix:      JIRA WPB-1508   BoldGrid Image search box size is inconsistent.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.4<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1442   Fixing inspiration border styles for wordpress 4.4<\\/li>\\n<li>Bug fix:      JIRA WPB-1461   Updating login button styles for wordpress 4.4<\\/li>\\n<li>Bug fix:      JIRA WPB-1411   Added initialization and checks for empty image queues in deployment.<\\/li>\\n<li>Bug fix:      JIRA WPB-1406   Attribution page still showing in \'All Pages\'.<\\/li>\\n<li>Bug fix:      JIRA WPB-1451   Active images are showing in Staging attribution page.<\\/li>\\n<li>Bug fix:      JIRA WPB-1466   Tabs on tutorials page too small at 1035px - 1482px.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.3<\\/h4>\\n\\n<ul>\\n<li>New feature:  JIRA WPB-1363   Updated readme.txt for WordPress standards.<\\/li>\\n<li>New feature:  JIRA WPB-1389   When starting over theme mods are saved with a flag to recompile sass<\\/li>\\n<li>Bug fix:      JIRA WPB-1420   Content of Attribution page is overwriting page saves.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.2<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1395   Adjusted theme update data; now gets theme uri from theme style.css, download url from api data.<\\/li>\\n<li>Rework        JIRA WPB-1374   Updated activation timestamp to use GMT\\/UTC.<\\/li>\\n<li>Bug fix:      JIRA WPB-1377   Reseller option is now set on first call to either the front end or wp_login.<\\/li>\\n<li>Bug fix:                      Adjusted handling for image purchases when errors occur.<\\/li>\\n<li>Bug fix:      JIRA WPB-1365   Purchase link on editing a page goes to wrong link.<\\/li>\\n<li>Bug fix:      JIRA WPB-1368   Inspirations step 0 text refers to nonexisting help tabs.<\\/li>\\n<li>Rework:       JIRA WPB-1378   Adjusted formatting of footer in Dashboard.<\\/li>\\n<li>Rework:       JIRA WPB-1369   Update minus signs on \'Transaction History\'.<\\/li>\\n<li>New feature:  JIRA WPB-1379   On the transactions page, show the reseller that processed the credits.<\\/li>\\n<li>Bug fix:                      Count of \'All\' pages inaccurate on \'All pages\'.<\\/li>\\n<li>Bug fix:      JIRA WPB-1367   Updated link for \'Lost your BoldGrid Connect Key?\'.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.1<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1374   Updated activation timestamp to include timezone in UTC.<\\/li>\\n<li>Bug fix:                      Attribution page shows style tags.<\\/li>\\n<li>Bug fix:                      Strict Standards fix for wp<em>kses<\\/em>allowed_html.<\\/li>\\n<li>Bug fix:                      Fixed incorrect link.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0<\\/h4>\\n\\n<ul>\\n<li>Initial public release.<\\/li>\\n<\\/ul>\\n\",\"upgrade_notice\":\"<h4>1.3<\\/h4>\\n\\n<p>Version 1.3 has been released with a redesigned Inspiration phase. For more information on this change and others, please visit our blog at https:\\/\\/www.boldgrid.com\\/boldgrid-1-3-released\\/ .<\\/p>\\n\\n<h4>1.0.2<\\/h4>\\n\\n<p>Users should upgrade to version 1.0.2 to ensure proper BoldGrid theme updates.<\\/p>\\n\"}\";s:7:\"siteurl\";s:25:\"https://www.boldgrid.com/\";s:13:\"compatibility\";s:125072:\"{\"6.6.2\":{\"2.9.3\":[100,95]},\"6.6.1\":{\"2.9.3\":[100,95]},\"6.6\":{\"2.9.3\":[100,95]},\"6.5.5\":{\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"6.5.4\":{\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"6.5.3\":{\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"6.5.2\":{\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"6.5.1\":{\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"6.5\":{\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"6.4.5\":{\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"6.4.4\":{\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"6.4.3\":{\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"6.4.2\":{\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"6.4.1\":{\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"6.4\":{\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"6.3.5\":{\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"6.3.4\":{\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"6.3.3\":{\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"6.3.2\":{\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"6.3.1\":{\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"6.3\":{\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"6.2.6\":{\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"6.2.5\":{\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"6.2.4\":{\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"6.2.3\":{\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"6.2.2\":{\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"6.2.1\":{\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"6.2\":{\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"6.1.7\":{\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"6.1.6\":{\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"6.1.5\":{\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"6.1.4\":{\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"6.1.3\":{\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"6.1.2\":{\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"6.1.1\":{\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"6.1\":{\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"6.0.7\":{\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"6.0.6\":{\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"6.0.5\":{\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"6.0.4\":{\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"6.0.3\":{\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"6.0.2\":{\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"6.0.1\":{\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"6.0\":{\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.9.9\":{\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.9.8\":{\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.9.7\":{\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.9.6\":{\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.9.5\":{\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.9.4\":{\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.9.3\":{\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.9.2\":{\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.9.1\":{\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.9\":{\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.8.8\":{\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.8.7\":{\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.8.6\":{\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.8.5\":{\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.8.4\":{\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.8.3\":{\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.8.2\":{\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.8.1\":{\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.8\":{\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.7.9\":{\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.7.8\":{\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.7.7\":{\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.7.6\":{\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.7.5\":{\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.7.4\":{\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.7.3\":{\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.7.2\":{\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.7.1\":{\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.7\":{\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.6.9\":{\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.6.8\":{\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.6.7\":{\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.6.6\":{\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.6.5\":{\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.6.4\":{\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.6.3\":{\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.6.2\":{\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.6.10\":{\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.6.1\":{\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.6\":{\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.5.9\":{\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.5.8\":{\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.5.7\":{\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.5.6\":{\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.5.5\":{\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.5.4\":{\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.5.3\":{\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.5.2\":{\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.5.1\":{\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.5\":{\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.4.9\":{\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.4.8\":{\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.4.7\":{\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.4.6\":{\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.4.5\":{\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.4.4\":{\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.4.3\":{\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.4.2\":{\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.4.1\":{\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.4\":{\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.3.9\":{\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.3.8\":{\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.3.7\":{\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.3.6\":{\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.3.5\":{\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.3.4\":{\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.3.3\":{\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.3.2\":{\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.3.1\":{\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.3\":{\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.2.9\":{\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.2.8\":{\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.2.7\":{\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.2.6\":{\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.2.5\":{\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.2.4\":{\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.2.3\":{\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.2.2\":{\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.2.1\":{\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.2\":{\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.1.8\":{\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.1.7\":{\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.1.6\":{\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.1.5\":{\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.1.4\":{\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.1.3\":{\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.1.2\":{\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.1.1\":{\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.1\":{\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.0.9\":{\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.0.8\":{\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.0.7\":{\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.0.6\":{\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.0.5\":{\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.0.4\":{\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.0.3\":{\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.0.2\":{\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.0.10\":{\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.0.1\":{\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"5.0\":{\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.9.9\":{\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.9.8\":{\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.9.7\":{\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.9.6\":{\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.9.5\":{\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.9.4\":{\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.9.3\":{\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.9.2\":{\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.9.14\":{\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.9.13\":{\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.9.12\":{\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.9.11\":{\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.9.10\":{\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.9.1\":{\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.9\":{\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.8.9\":{\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.8.8\":{\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.8.7\":{\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.8.6\":{\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.8.5\":{\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.8.4\":{\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.8.3\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.8.2\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.8.10\":{\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.8.1\":{\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.8\":{\"1.4.0.1\":[100,12],\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.7.9\":{\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.7.8\":{\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.7.7\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.7.6\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.7.5\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.7.4\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.7.3\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.7.2\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.7.13\":{\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.7.12\":{\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.7.11\":{\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.7.10\":{\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.7.1\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.7\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.6.9\":{\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.6.8\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.6.7\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.6.6\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.6.5\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.6.4\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.6.3\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.6.2\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.6.12\":{\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.6.11\":{\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.6.10\":{\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.6.1\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.6\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.5.9\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.5.8\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.5.7\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.5.6\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.5.5\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.5.4\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.5.3\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.5.2\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.5.12\":{\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.5.11\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.5.10\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.5.1\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.5\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.4.9\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.4.8\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.4.7\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.4.6\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.4.5\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.4.10\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]},\"4.3.1\":{\"0.29\":[100,12],\"1.0.2\":[100,12],\"1.0.3\":[100,12],\"1.0.4\":[100,12],\"1.0.5\":[100,12],\"1.0.6\":[100,12],\"1.0.7\":[100,12],\"1.0.8.1\":[100,12],\"1.0.9.1\":[100,12],\"1.0.9.2\":[100,12],\"1.0.10\":[100,12],\"1.0.11\":[100,12],\"1.0.12.1\":[100,12],\"1.1.1\":[100,12],\"1.1.2.1\":[100,12],\"1.1.2.3\":[100,12],\"1.1.1.1\":[100,12],\"1.1.3\":[100,12],\"1.1.4\":[100,12],\"1.1.5\":[100,12],\"1.1.6\":[100,12],\"1.1.7\":[100,12],\"1.1.8\":[100,12],\"1.2\":[100,12],\"1.2.1\":[100,12],\"1.2.2\":[100,12],\"1.2.4\":[100,12],\"1.2.5\":[100,12],\"1.2.8\":[100,12],\"1.2.9\":[100,12],\"1.2.11\":[100,12],\"1.2.13\":[100,12],\"1.3\":[100,12],\"1.3.1\":[100,12],\"1.3.2\":[100,12],\"1.3.3\":[100,12],\"1.3.4\":[100,12],\"1.3.5\":[100,12],\"1.3.6\":[100,12],\"1.3.7\":[100,12],\"1.3.8\":[100,12],\"1.3.9\":[100,12],\"1.3.10\":[100,12],\"1.4\":[100,12],\"1.4.1\":[100,12],\"1.4.2\":[100,12],\"1.4.3\":[100,12],\"1.4.4\":[100,12],\"1.4.5\":[100,12],\"1.4.6\":[100,12],\"1.4.0.1\":[100,12],\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95],\"2.7.6\":[100,95],\"2.8.0-alpha1\":[100,95],\"2.8.0-beta.1\":[100,95],\"2.8.0\":[100,95],\"2.8.1\":[100,95],\"2.9.0\":[100,95],\"2.9.1\":[100,95],\"2.9.2\":[100,95],\"2.9.3\":[100,95]}}\";s:6:\"rating\";i:100;s:11:\"num_ratings\";i:100000;s:4:\"tags\";s:113:\"{\"inspiration\":\"Inspiration\",\"customization\":\"Customization\",\"build\":\"Build\",\"create\":\"Create\",\"design\":\"Design\"}\";s:7:\"banners\";s:151:\"{\"low\":\"//repo.boldgrid.com/assets/banner-inspirations-banner-772x250.png\",\"high\":\"//repo.boldgrid.com/assets/banner-inspirations-banner-1544x500.png\"}\";s:6:\"editor\";O:8:\"stdClass\":3:{s:7:\"version\";s:7:\"1.6.0.2\";s:5:\"title\";s:15:\"BoldGrid Editor\";s:8:\"asset_id\";s:6:\"900312\";}s:7:\"staging\";O:8:\"stdClass\":3:{s:7:\"version\";s:5:\"1.5.1\";s:5:\"title\";s:16:\"BoldGrid Staging\";s:8:\"asset_id\";s:6:\"876738\";}s:14:\"theme_versions\";O:8:\"stdClass\":64:{s:2:\"28\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"1.25.9\";s:7:\"updated\";s:10:\"2022-01-24\";s:8:\"asset_id\";i:1237029;s:7:\"package\";s:58:\"https://repo.boldgrid.com/themes/boldgrid-diced-1.25.9.zip\";}s:2:\"29\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"1.25.9\";s:7:\"updated\";s:10:\"2022-01-24\";s:8:\"asset_id\";i:1237028;s:7:\"package\";s:58:\"https://repo.boldgrid.com/themes/boldgrid-evolv-1.25.9.zip\";}s:2:\"30\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"1.20.9\";s:7:\"updated\";s:10:\"2022-01-24\";s:8:\"asset_id\";i:1237027;s:7:\"package\";s:63:\"https://repo.boldgrid.com/themes/boldgrid-florentine-1.20.9.zip\";}s:2:\"31\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"1.25.9\";s:7:\"updated\";s:10:\"2022-01-24\";s:8:\"asset_id\";i:1237026;s:7:\"package\";s:60:\"https://repo.boldgrid.com/themes/boldgrid-hifidel-1.25.9.zip\";}s:2:\"32\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"1.25.9\";s:7:\"updated\";s:10:\"2022-01-24\";s:8:\"asset_id\";i:1237025;s:7:\"package\";s:58:\"https://repo.boldgrid.com/themes/boldgrid-hydra-1.25.9.zip\";}s:2:\"33\";O:8:\"stdClass\":4:{s:7:\"version\";s:7:\"1.25.10\";s:7:\"updated\";s:10:\"2022-01-24\";s:8:\"asset_id\";i:1237024;s:7:\"package\";s:58:\"https://repo.boldgrid.com/themes/boldgrid-linx-1.25.10.zip\";}s:2:\"34\";O:8:\"stdClass\":4:{s:7:\"version\";s:7:\"1.25.10\";s:7:\"updated\";s:10:\"2022-01-24\";s:8:\"asset_id\";i:1236959;s:7:\"package\";s:62:\"https://repo.boldgrid.com/themes/boldgrid-pavilion-1.25.10.zip\";}s:2:\"35\";O:8:\"stdClass\":4:{s:7:\"version\";s:7:\"1.25.10\";s:7:\"updated\";s:10:\"2022-01-24\";s:8:\"asset_id\";i:1237023;s:7:\"package\";s:60:\"https://repo.boldgrid.com/themes/boldgrid-primas-1.25.10.zip\";}s:2:\"36\";O:8:\"stdClass\":4:{s:7:\"version\";s:7:\"1.20.10\";s:7:\"updated\";s:10:\"2022-01-24\";s:8:\"asset_id\";i:1237022;s:7:\"package\";s:61:\"https://repo.boldgrid.com/themes/boldgrid-resolve-1.20.10.zip\";}s:2:\"38\";O:8:\"stdClass\":4:{s:7:\"version\";s:7:\"1.25.10\";s:7:\"updated\";s:10:\"2022-01-24\";s:8:\"asset_id\";i:1237021;s:7:\"package\";s:62:\"https://repo.boldgrid.com/themes/boldgrid-vacation-1.25.10.zip\";}s:2:\"40\";O:8:\"stdClass\":4:{s:7:\"version\";s:7:\"1.25.11\";s:7:\"updated\";s:10:\"2022-10-11\";s:8:\"asset_id\";i:1267688;s:7:\"package\";s:61:\"https://repo.boldgrid.com/themes/boldgrid-gridone-1.25.11.zip\";}s:2:\"42\";O:8:\"stdClass\":4:{s:7:\"version\";s:7:\"1.18.10\";s:7:\"updated\";s:10:\"2022-01-24\";s:8:\"asset_id\";i:1237019;s:7:\"package\";s:62:\"https://repo.boldgrid.com/themes/boldgrid-venetian-1.18.10.zip\";}s:2:\"43\";O:8:\"stdClass\":4:{s:7:\"version\";s:7:\"1.18.10\";s:7:\"updated\";s:10:\"2022-01-24\";s:8:\"asset_id\";i:1237018;s:7:\"package\";s:59:\"https://repo.boldgrid.com/themes/boldgrid-haven-1.18.10.zip\";}s:2:\"44\";O:8:\"stdClass\":4:{s:7:\"version\";s:7:\"1.16.11\";s:7:\"updated\";s:10:\"2022-01-24\";s:8:\"asset_id\";i:1237017;s:7:\"package\";s:59:\"https://repo.boldgrid.com/themes/boldgrid-wedge-1.16.11.zip\";}s:2:\"45\";O:8:\"stdClass\":4:{s:7:\"version\";s:7:\"1.15.10\";s:7:\"updated\";s:10:\"2022-01-24\";s:8:\"asset_id\";i:1237016;s:7:\"package\";s:62:\"https://repo.boldgrid.com/themes/boldgrid-monument-1.15.10.zip\";}s:2:\"48\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"1.3.10\";s:7:\"updated\";s:10:\"2022-01-24\";s:8:\"asset_id\";i:1237015;s:7:\"package\";s:61:\"https://repo.boldgrid.com/themes/boldgrid-callaway-1.3.10.zip\";}s:2:\"49\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"1.3.10\";s:7:\"updated\";s:10:\"2022-01-24\";s:8:\"asset_id\";i:1236956;s:7:\"package\";s:59:\"https://repo.boldgrid.com/themes/boldgrid-swifty-1.3.10.zip\";}s:2:\"50\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"1.3.10\";s:7:\"updated\";s:10:\"2022-01-24\";s:8:\"asset_id\";i:1237014;s:7:\"package\";s:59:\"https://repo.boldgrid.com/themes/boldgrid-cobalt-1.3.10.zip\";}s:2:\"51\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"1.3.10\";s:7:\"updated\";s:10:\"2022-01-24\";s:8:\"asset_id\";i:1237013;s:7:\"package\";s:61:\"https://repo.boldgrid.com/themes/boldgrid-westview-1.3.10.zip\";}s:2:\"52\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"0.4.10\";s:7:\"updated\";s:10:\"2022-01-24\";s:8:\"asset_id\";i:1237012;s:7:\"package\";s:60:\"https://repo.boldgrid.com/themes/boldgrid-lattice-0.4.10.zip\";}s:2:\"54\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2020-05-15\";s:8:\"asset_id\";i:1097350;s:7:\"package\";s:45:\"https://repo.boldgrid.com/themes/Bolt-0.1.zip\";}s:2:\"56\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2020-06-30\";s:8:\"asset_id\";i:1110570;s:7:\"package\";s:49:\"https://repo.boldgrid.com/themes/Coherent-0.1.zip\";}s:2:\"57\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2021-01-29\";s:8:\"asset_id\";i:1166277;s:7:\"package\";s:49:\"https://repo.boldgrid.com/themes/SwiftyV2-0.1.zip\";}s:2:\"58\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2021-01-27\";s:8:\"asset_id\";i:1167731;s:7:\"package\";s:50:\"https://repo.boldgrid.com/themes/GridOneV2-0.1.zip\";}s:2:\"59\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2021-02-02\";s:8:\"asset_id\";i:1170404;s:7:\"package\";s:51:\"https://repo.boldgrid.com/themes/CallawayV2-0.1.zip\";}s:2:\"60\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2021-02-11\";s:8:\"asset_id\";i:1172882;s:7:\"package\";s:50:\"https://repo.boldgrid.com/themes/ResolveV2-0.1.zip\";}s:2:\"61\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2021-02-17\";s:8:\"asset_id\";i:1174594;s:7:\"package\";s:48:\"https://repo.boldgrid.com/themes/WedgeV2-0.1.zip\";}s:2:\"62\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2021-02-17\";s:8:\"asset_id\";i:1175323;s:7:\"package\";s:48:\"https://repo.boldgrid.com/themes/DicedV2-0.1.zip\";}s:2:\"63\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2021-02-25\";s:8:\"asset_id\";i:1177324;s:7:\"package\";s:47:\"https://repo.boldgrid.com/themes/LinxV2-0.1.zip\";}s:2:\"64\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2021-03-02\";s:8:\"asset_id\";i:1177773;s:7:\"package\";s:50:\"https://repo.boldgrid.com/themes/HifidelV2-0.1.zip\";}s:2:\"65\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2021-03-03\";s:8:\"asset_id\";i:1178992;s:7:\"package\";s:50:\"https://repo.boldgrid.com/themes/UptempoV2-0.1.zip\";}s:2:\"66\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2021-03-11\";s:8:\"asset_id\";i:1180564;s:7:\"package\";s:48:\"https://repo.boldgrid.com/themes/EvolvV2-0.1.zip\";}s:2:\"67\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2021-03-18\";s:8:\"asset_id\";i:1182152;s:7:\"package\";s:51:\"https://repo.boldgrid.com/themes/WestviewV2-0.1.zip\";}s:2:\"68\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2021-03-23\";s:8:\"asset_id\";i:1183787;s:7:\"package\";s:53:\"https://repo.boldgrid.com/themes/FlorentineV2-0.1.zip\";}s:2:\"69\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2021-04-01\";s:8:\"asset_id\";i:1184444;s:7:\"package\";s:52:\"https://repo.boldgrid.com/themes/CrioStarter-0.1.zip\";}s:2:\"70\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2021-04-07\";s:8:\"asset_id\";i:1187346;s:7:\"package\";s:51:\"https://repo.boldgrid.com/themes/VacationV2-0.1.zip\";}s:2:\"71\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2021-04-27\";s:8:\"asset_id\";i:1190564;s:7:\"package\";s:51:\"https://repo.boldgrid.com/themes/MonumentV2-0.1.zip\";}s:2:\"72\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2021-05-03\";s:8:\"asset_id\";i:1192977;s:7:\"package\";s:49:\"https://repo.boldgrid.com/themes/Hydra V2-0.1.zip\";}s:2:\"73\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2021-05-13\";s:8:\"asset_id\";i:1193996;s:7:\"package\";s:51:\"https://repo.boldgrid.com/themes/VenetianV2-0.1.zip\";}s:2:\"74\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2021-05-20\";s:8:\"asset_id\";i:1196830;s:7:\"package\";s:49:\"https://repo.boldgrid.com/themes/PrimasV2-0.1.zip\";}s:2:\"75\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2022-08-02\";s:8:\"asset_id\";i:1258057;s:7:\"package\";s:52:\"https://repo.boldgrid.com/themes/DH-Plumbing-0.1.zip\";}s:2:\"79\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2022-09-12\";s:8:\"asset_id\";i:1264309;s:7:\"package\";s:53:\"https://repo.boldgrid.com/themes/DH-Dentistry-0.1.zip\";}s:2:\"82\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2022-11-15\";s:8:\"asset_id\";i:1267084;s:7:\"package\";s:54:\"https://repo.boldgrid.com/themes/DH-Burger-Bar-0.1.zip\";}s:2:\"83\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2023-01-17\";s:8:\"asset_id\";i:1277218;s:7:\"package\";s:55:\"https://repo.boldgrid.com/themes/DH-Electrician-0.1.zip\";}s:2:\"86\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2023-02-07\";s:8:\"asset_id\";i:1279654;s:7:\"package\";s:46:\"https://repo.boldgrid.com/themes/Stark-0.1.zip\";}s:2:\"87\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2023-03-20\";s:8:\"asset_id\";i:1283438;s:7:\"package\";s:53:\"https://repo.boldgrid.com/themes/DH-HairSalon-0.1.zip\";}s:2:\"88\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2023-05-02\";s:8:\"asset_id\";i:1285301;s:7:\"package\";s:47:\"https://repo.boldgrid.com/themes/Resume-0.1.zip\";}s:2:\"89\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2023-05-11\";s:8:\"asset_id\";i:1285683;s:7:\"package\";s:51:\"https://repo.boldgrid.com/themes/DH-DogCare-0.1.zip\";}s:2:\"90\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2023-07-18\";s:8:\"asset_id\";i:1286147;s:7:\"package\";s:51:\"https://repo.boldgrid.com/themes/DH-Wedding-0.1.zip\";}s:2:\"91\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2023-07-27\";s:8:\"asset_id\";i:1288155;s:7:\"package\";s:49:\"https://repo.boldgrid.com/themes/DH-Event-0.1.zip\";}s:2:\"92\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2023-09-18\";s:8:\"asset_id\";i:1289974;s:7:\"package\";s:52:\"https://repo.boldgrid.com/themes/DH_LawnCare-0.1.zip\";}s:2:\"93\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2023-09-18\";s:8:\"asset_id\";i:1290220;s:7:\"package\";s:54:\"https://repo.boldgrid.com/themes/IMH-Dentistry-0.1.zip\";}s:2:\"94\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2023-09-20\";s:8:\"asset_id\";i:1290422;s:7:\"package\";s:56:\"https://repo.boldgrid.com/themes/IMH-Electrician-0.1.zip\";}s:2:\"95\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2023-10-31\";s:8:\"asset_id\";i:1291687;s:7:\"package\";s:51:\"https://repo.boldgrid.com/themes/DH_DayCare-0.1.zip\";}s:2:\"96\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2024-01-08\";s:8:\"asset_id\";i:1293343;s:7:\"package\";s:52:\"https://repo.boldgrid.com/themes/DH_Cleaning-0.1.zip\";}s:2:\"97\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2024-01-11\";s:8:\"asset_id\";i:1293485;s:7:\"package\";s:53:\"https://repo.boldgrid.com/themes/DH-FoodTruck-0.1.zip\";}s:2:\"98\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2024-01-15\";s:8:\"asset_id\";i:1293663;s:7:\"package\";s:52:\"https://repo.boldgrid.com/themes/IMH-Roofing-0.1.zip\";}s:2:\"99\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"1.3.10\";s:7:\"updated\";s:10:\"2022-01-24\";s:8:\"asset_id\";i:1237014;s:7:\"package\";s:59:\"https://repo.boldgrid.com/themes/boldgrid-cobalt-1.3.10.zip\";}s:3:\"100\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2024-03-18\";s:8:\"asset_id\";i:1295641;s:7:\"package\";s:51:\"https://repo.boldgrid.com/themes/IMH-DaySpa-0.1.zip\";}s:3:\"101\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2024-05-07\";s:8:\"asset_id\";i:1296981;s:7:\"package\";s:51:\"https://repo.boldgrid.com/themes/Barbershop-0.1.zip\";}s:3:\"102\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2024-06-11\";s:8:\"asset_id\";i:1297813;s:7:\"package\";s:52:\"https://repo.boldgrid.com/themes/IMH Florist-0.1.zip\";}s:3:\"103\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2024-07-10\";s:8:\"asset_id\";i:1298449;s:7:\"package\";s:50:\"https://repo.boldgrid.com/themes/DH_Travel-0.1.zip\";}s:3:\"104\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2024-08-02\";s:8:\"asset_id\";i:1299152;s:7:\"package\";s:55:\"https://repo.boldgrid.com/themes/IMH-AnimalCare-0.1.zip\";}s:3:\"105\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2024-08-30\";s:8:\"asset_id\";i:1299761;s:7:\"package\";s:52:\"https://repo.boldgrid.com/themes/DH_Car_Wash-0.1.zip\";}}s:9:\"site_hash\";s:32:\"7ec84b1fdd8a61f80617ef26816af641\";s:19:\"reseller_identifier\";s:3:\"IMH\";s:14:\"reseller_title\";s:16:\"InMotion Hosting\";s:17:\"reseller_logo_url\";s:78:\"./wp-content/plugins/boldgrid-inspirations/assets/images/wordpressinmotion.png\";s:20:\"reseller_website_url\";s:32:\"https://www.inmotionhosting.com/\";s:20:\"reseller_support_url\";s:52:\"http://www.inmotionhosting.com/support/edu/boldgrid/\";s:16:\"reseller_amp_url\";s:55:\"https://secure1.inmotionhosting.com/amp/boldgrid/manage\";s:14:\"reseller_email\";s:27:\"support@inmotionhosting.com\";s:14:\"reseller_phone\";s:14:\"1-757-416-6575\";s:16:\"reseller_css_url\";s:71:\"/wp-content/plugins/boldgrid-inspirations/assets/css/boldgrid-login.css\";s:17:\"reseller_coin_url\";s:55:\"https://secure1.inmotionhosting.com/amp/boldgrid/manage\";s:20:\"reseller_brand_login\";b:1;s:13:\"wporg_plugins\";O:8:\"stdClass\":5:{s:6:\"backup\";O:8:\"stdClass\":6:{s:8:\"repo_url\";s:50:\"https://plugins.svn.wordpress.org/boldgrid-backup/\";s:11:\"package_url\";s:65:\"https://downloads.wordpress.org/plugin/boldgrid-backup.1.16.8.zip\";s:4:\"slug\";s:15:\"boldgrid-backup\";s:8:\"old_slug\";s:15:\"boldgrid-backup\";s:5:\"title\";s:12:\"Total Upkeep\";s:7:\"version\";s:6:\"1.16.8\";}s:6:\"editor\";O:8:\"stdClass\":6:{s:8:\"repo_url\";s:56:\"https://plugins.svn.wordpress.org/post-and-page-builder/\";s:11:\"package_url\";s:71:\"https://downloads.wordpress.org/plugin/post-and-page-builder.1.27.6.zip\";s:4:\"slug\";s:21:\"post-and-page-builder\";s:8:\"old_slug\";s:15:\"boldgrid-editor\";s:5:\"title\";s:21:\"Post and Page Builder\";s:7:\"version\";s:6:\"1.27.6\";}s:3:\"seo\";O:8:\"stdClass\":6:{s:8:\"repo_url\";s:52:\"https://plugins.svn.wordpress.org/boldgrid-easy-seo/\";s:11:\"package_url\";s:67:\"https://downloads.wordpress.org/plugin/boldgrid-easy-seo.1.6.16.zip\";s:4:\"slug\";s:17:\"boldgrid-easy-seo\";s:8:\"old_slug\";s:12:\"boldgrid-seo\";s:5:\"title\";s:17:\"BoldGrid Easy SEO\";s:7:\"version\";s:6:\"1.6.16\";}s:4:\"w3tc\";O:8:\"stdClass\":6:{s:8:\"repo_url\";s:49:\"https://plugins.svn.wordpress.org/w3-total-cache/\";s:11:\"package_url\";s:57:\"https://downloads.wordpress.org/plugin/w3-total-cache.zip\";s:4:\"slug\";s:14:\"w3-total-cache\";s:8:\"old_slug\";s:14:\"w3-total-cache\";s:5:\"title\";s:14:\"W3 Total Cache\";s:7:\"version\";N;}s:7:\"weforms\";O:8:\"stdClass\":6:{s:8:\"repo_url\";s:42:\"https://plugins.svn.wordpress.org/weforms/\";s:11:\"package_url\";s:50:\"https://downloads.wordpress.org/plugin/weforms.zip\";s:4:\"slug\";s:7:\"weforms\";s:8:\"old_slug\";s:7:\"weforms\";s:5:\"title\";s:7:\"weForms\";s:7:\"version\";N;}}s:9:\"is_author\";b:0;}}s:14:\"license_status\";b:1;}','off'),(1464684,'_site_transient_timeout_theme_roots','1738003225','off'),(1464685,'_site_transient_theme_roots','a:9:{s:16:\"boldgrid-gridone\";s:7:\"/themes\";s:4:\"crio\";s:7:\"/themes\";s:14:\"twentynineteen\";s:7:\"/themes\";s:12:\"twentytwenty\";s:7:\"/themes\";s:16:\"twentytwentyfive\";s:7:\"/themes\";s:16:\"twentytwentyfour\";s:7:\"/themes\";s:15:\"twentytwentyone\";s:7:\"/themes\";s:17:\"twentytwentythree\";s:7:\"/themes\";s:15:\"twentytwentytwo\";s:7:\"/themes\";}','off'),(1464260,'_transient_timeout_boldgrid_backup_system_zip_test','1738048089','off'),(1464261,'_transient_boldgrid_backup_system_zip_test','0','off'),(1463580,'_site_transient_timeout_browser_f51bb482c660d0eeadd1f058058a2b35','1738495443','off'),(1463581,'_site_transient_browser_f51bb482c660d0eeadd1f058058a2b35','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"131.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;}','off'),(1464412,'_site_transient_timeout_bgcriop_version_data','1738007306','off'),(1464413,'_site_transient_bgcriop_version_data','O:8:\"stdClass\":4:{s:6:\"status\";i:200;s:7:\"message\";s:2:\"OK\";s:6:\"result\";O:8:\"stdClass\":1:{s:4:\"data\";O:8:\"stdClass\":13:{s:5:\"title\";s:12:\"Crio Premium\";s:7:\"version\";s:6:\"1.10.6\";s:8:\"asset_id\";i:1300635;s:12:\"release_date\";s:19:\"2024-11-08 02:20:27\";s:19:\"requires_wp_version\";s:3:\"4.4\";s:17:\"tested_wp_version\";s:3:\"6.7\";s:8:\"sections\";s:8136:\"{\"description\":\"<p>Premium features extension for the BoldGrid Crio Theme.<\\/p>\\n\",\"installation\":\"<h4>Minimum Requirements<\\/h4>\\n\\n<ul>\\n<li>PHP 5.4 or higher<\\/li>\\n<\\/ul>\\n\\n<h4>Manually<\\/h4>\\n\\n<ol>\\n<li>Upload the entire crio-premium folder to the \\/wp-content\\/plugins\\/ directory.<\\/li>\\n<li>Activate the plugin through the Plugins menu in WordPress.<\\/li>\\n<\\/ol>\\n\",\"changelog\":\"<h4>1.10.6<\\/h4>\\n\\n<ul>\\n<li>Bug Fix: WP 6.7 - Function load<em>plugin<\\/em>textdomain was called incorrectly <a href=\\\"https:\\/\\/github.com\\/BoldGrid\\/crio-premium\\/issues\\/157\\\">#157<\\/a><\\/li>\\n<\\/ul>\\n\\n<h4>1.10.5<\\/h4>\\n\\n<ul>\\n<li>Bug Fix: Fix warning generated when Inspirations users choose not to display social menus <a href=\\\"https:\\/\\/github.com\\/BoldGrid\\/boldgrid-inspirations\\/issues\\/181\\\">#181<\\/a><\\/li>\\n<\\/ul>\\n\\n<h4>1.10.4<\\/h4>\\n\\n<ul>\\n<li>Bug Fix: add continue lazy-loading when already at bottom <a href=\\\"https:\\/\\/github.com\\/BoldGrid\\/crio-premium\\/issues\\/153\\\">#153<\\/a><\\/li>\\n<li>Update: Update tested to version to 6.4<\\/li>\\n<\\/ul>\\n\\n<h4>1.10.2<\\/h4>\\n\\n<ul>\\n<li>Update: Update tested to version to 6.3<\\/li>\\n<\\/ul>\\n\\n<h4>1.10.1<\\/h4>\\n\\n<ul>\\n<li>Update: Update php code to be PHP 8.2 Compatible by handling all Deprecated warnings.<\\/li>\\n<li>Bug Fix: Address issue where some customers where receiving fatal error when opening customizer.<\\/li>\\n<li>Update: Update BoldGrid Library to 2.13.11<\\/li>\\n<\\/ul>\\n\\n<h4>1.10.0<\\/h4>\\n\\n<ul>\\n<li>New Feature: Add responsive logo resizing tool <a href=\\\"https:\\/\\/github.com\\/BoldGrid\\/crio-premium\\/issues\\/137\\\">#137<\\/a><\\/li>\\n<li>Bug Fix: Blog post - Post Meta \'New Lines\' does not work <a href=\\\"https:\\/\\/github.com\\/BoldGrid\\/crio-premium\\/issues\\/119\\\">#119<\\/a><\\/li>\\n<li>Bug Fix: Syntax error due to trailing comma within register<em>post<\\/em>type <a href=\\\"https:\\/\\/github.com\\/BoldGrid\\/crio-premium\\/issues\\/142\\\">#142<\\/a><\\/li>\\n<li>Enhancement: Improve P&amp;PB update notice <a href=\\\"https:\\/\\/github.com\\/BoldGrid\\/crio-premium\\/issues\\/38\\\">#38<\\/a><\\/li>\\n<\\/ul>\\n\\n<h4>1.9.1<\\/h4>\\n\\n<ul>\\n<li>Bug Fix: Remove bg-background-color from CPH <a href=\\\"https:\\/\\/github.com\\/BoldGrid\\/crio-premium\\/issues\\/127\\\">#127<\\/a><\\/li>\\n<\\/ul>\\n\\n<h4>1.9.0<\\/h4>\\n\\n<ul>\\n<li>New Feature: Customize the text for the post navigation links <a href=\\\"https:\\/\\/github.com\\/BoldGrid\\/crio-premium\\/issues\\/113\\\">#113<\\/a><\\/li>\\n<li>New Feature: Comment Design Controls <a href=\\\"https:\\/\\/github.com\\/BoldGrid\\/crio-premium\\/issues\\/114\\\">#114<\\/a><\\/li>\\n<li>New Feature: Lazy Load Blog Posts <a href=\\\"https:\\/\\/github.com\\/BoldGrid\\/crio-premium\\/issues\\/115\\\">#115<\\/a><\\/li>\\n<li>New Feature: Add control to choose updated or published date for post post meta <a href=\\\"https:\\/\\/github.com\\/BoldGrid\\/crio-premium\\/issues\\/116\\\">#116<\\/a><\\/li>\\n<\\/ul>\\n\\n<h4>1.8.1<\\/h4>\\n\\n<ul>\\n<li>Bug Fix: Menu Locations disappear when Page Headers saved as draft <a href=\\\"https:\\/\\/github.com\\/BoldGrid\\/crio-premium\\/issues\\/109\\\">#109<\\/a><\\/li>\\n<li>Bug Fix: Cannot use a different featured image and page header background override <a href=\\\"https:\\/\\/github.com\\/BoldGrid\\/crio-premium\\/issues\\/97\\\">#97<\\/a><\\/li>\\n<\\/ul>\\n\\n<h4>1.8.0<\\/h4>\\n\\n<ul>\\n<li>New Feature: Custom MegaMenus<\\/li>\\n<li>Update: Updated Unsplash hotlinks.<\\/li>\\n<\\/ul>\\n\\n<h4>1.7.2<\\/h4>\\n\\n<ul>\\n<li>Bug Fix: Preview on custom headers \\/ footers stopped working it\'s showing me the last saved one <a href=\\\"https:\\/\\/github.com\\/BoldGrid\\/crio-premium\\/issues\\/94\\\">#94<\\/a><\\/li>\\n<\\/ul>\\n\\n<h4>1.7.1<\\/h4>\\n\\n<ul>\\n<li>Bug Fix: Fix featured image overrides not working properly with new opacity changes <a href=\\\"https:\\/\\/github.com\\/BoldGrid\\/crio-premium\\/pull\\/91\\\">#91<\\/a><\\/li>\\n<\\/ul>\\n\\n<h4>1.7.0<\\/h4>\\n\\n<ul>\\n<li>New Feature: Use Featured Image as Custom Page Header background <a href=\\\"https:\\/\\/github.com\\/BoldGrid\\/crio-premium\\/issues\\/48\\\">#48<\\/a><\\/li>\\n<li>Bug Fix: Remove Merge \\/ Include Site Header control <a href=\\\"https:\\/\\/github.com\\/BoldGrid\\/crio-premium\\/issues\\/89\\\">#89<\\/a><\\/li>\\n<\\/ul>\\n\\n<h4>1.6.1<\\/h4>\\n\\n<ul>\\n<li>Bug Fix: Resolved get<em>query<\\/em>var() fatal error resulting from $wp_query not being defined due to 3rd party plugin conflicts.<\\/li>\\n<\\/ul>\\n\\n<h4>1.6.0<\\/h4>\\n\\n<ul>\\n<li>New Feature: Add Preview to Custom Page Headers &amp; Footers before Updating <a href=\\\"https:\\/\\/github.com\\/BoldGrid\\/crio-premium\\/issues\\/57\\\">#57<\\/a><\\/li>\\n<\\/ul>\\n\\n<h4>1.5.4<\\/h4>\\n\\n<ul>\\n<li>Improvement: Minor changes made to accomadate new Crio and PPB features.<\\/li>\\n<\\/ul>\\n\\n<h4>1.5.3<\\/h4>\\n\\n<ul>\\n<li>Bug Fix: Allow CPT\'s to override page header template <a href=\\\"https:\\/\\/github.com\\/BoldGrid\\/crio-premium\\/pull\\/82\\\">#82<\\/a><\\/li>\\n<li>Bug Fix: adds admin check for get<em>current<\\/em>screen <a href=\\\"https:\\/\\/github.com\\/BoldGrid\\/crio-premium\\/pull\\/84\\\">#84<\\/a><\\/li>\\n<li>Bug Fix: hide libxml internal errors<\\/li>\\n<\\/ul>\\n\\n<h4>1.5.2<\\/h4>\\n\\n<ul>\\n<li>Bug Fix: update site-title h* in template samples.<\\/li>\\n<li>Bug Fix: Fix php notices on Inspirations Page.<\\/li>\\n<\\/ul>\\n\\n<h4>1.5.1<\\/h4>\\n\\n<ul>\\n<li>Bug Fix: Custom Header gets applied to footer <a href=\\\"https:\\/\\/github.com\\/BoldGrid\\/crio-premium\\/issues\\/77\\\">#77<\\/a><\\/li>\\n<\\/ul>\\n\\n<h4>1.5.0<\\/h4>\\n\\n<ul>\\n<li>New Feature: Sticky Header Templates using the same builder as the Custom Page Headers<a href=\\\"https:\\/\\/github.com\\/BoldGrid\\/crio-premium\\/issues\\/64\\\">$64<\\/a><\\/li>\\n<li>New Feature: Footer Templates using the same builder as the Custom Page Headers<a href=\\\"https:\\/\\/github.com\\/BoldGrid\\/crio-premium\\/issues\\/65\\\">$65<\\/a><\\/li>\\n<li>New Feature: Sticky Header Template and Footer Template selection in the customizer allows users to choose to hide their footer and sticky headers on specified pages \\/ posts.<\\/li>\\n<li>Bug Fix: Add Revisions to Custom Page Headers <a href=\\\"https:\\/\\/github.com\\/BoldGrid\\/crio-premium\\/issues\\/49\\\">#49<\\/a><\\/li>\\n<li>Bug Fix: Add validation when saving a Custom Page Header <a href=\\\"https:\\/\\/github.com\\/BoldGrid\\/crio-premium\\/issues\\/43\\\">#43<\\/a><\\/li>\\n<li>Bug Fix: Custom Page Headers &amp; dropdown menus <a href=\\\"https:\\/\\/github.com\\/BoldGrid\\/crio-premium\\/issues\\/45\\\">#45<\\/a><\\/li>\\n<\\/ul>\\n\\n<h4>1.4.0<\\/h4>\\n\\n<ul>\\n<li>Bug Fix: Custom Page Headers - Blog Page - Background Image override does not work <a href=\\\"https:\\/\\/github.com\\/BoldGrid\\/crio-premium\\/issues\\/46\\\">#46<\\/a><\\/li>\\n<li>Bug Fix: Sticky Header Logo is squished <a href=\\\"https:\\/\\/github.com\\/BoldGrid\\/crio-premium\\/issues\\/47\\\">#47<\\/a><\\/li>\\n<li>Bug Fix: Custom Page Headers - individual page background image breaks Easy SEO <a href=\\\"https:\\/\\/github.com\\/BoldGrid\\/crio-premium\\/issues\\/44\\\">#44<\\/a><\\/li>\\n<\\/ul>\\n\\n<h4>1.3.0<\\/h4>\\n\\n<ul>\\n<li>New Feature: New Feature: Customizer Edit Buttons v2.<\\/li>\\n<\\/ul>\\n\\n<h4>1.2.0<\\/h4>\\n\\n<ul>\\n<li>New Feature: Sticky Header layout presets.<\\/li>\\n<li>Update: Changed Custom Page Header sample layouts to reflect new starter content.<\\/li>\\n<li>Bug Fix: Sticky header not refreshing properly in customizer.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1.1<\\/h4>\\n\\n<ul>\\n<li>Update: Changed location of top-level \'Crio\' menu to match the newest version ( 2.6.0 ) of Crio.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1.0<\\/h4>\\n\\n<ul>\\n<li>New Feature: Custom Page Headers added.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.4<\\/h4>\\n\\n<ul>\\n<li>Updated dependencies.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.3<\\/h4>\\n\\n<ul>\\n<li>Handle the value selected by user for attribution link on frontend properly.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.2<\\/h4>\\n\\n<ul>\\n<li>Removed broken activation link from notice in certain situations.<\\/li>\\n<li>Fixed PHP errors when other BG themes are used and crio license is purchased but crio isn\'t used.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.1<\\/h4>\\n\\n<ul>\\n<li>Fixing tabs for regular\\/sticky header displaying under controls.<\\/li>\\n<li>Attribution controls should no longer be missing in the customizer.<\\/li>\\n<li>Sticky\\/fixed header should no longer be selected in customizer when activating plugin by default.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.0<\\/h4>\\n\\n<ul>\\n<li>Initial release.<\\/li>\\n<\\/ul>\\n\"}\";s:7:\"siteurl\";s:28:\"http://www.boldgrid.com/crio\";s:13:\"compatibility\";s:51766:\"{\"6.6.2\":{\"1.10.6\":[100,95]},\"6.6.1\":{\"1.10.6\":[100,95]},\"6.6\":{\"1.10.6\":[100,95]},\"6.5.5\":{\"1.10.6\":[100,95]},\"6.5.4\":{\"1.10.6\":[100,95]},\"6.5.3\":{\"1.10.6\":[100,95]},\"6.5.2\":{\"1.10.6\":[100,95]},\"6.5.1\":{\"1.10.6\":[100,95]},\"6.5\":{\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"6.4.5\":{\"1.10.6\":[100,95]},\"6.4.4\":{\"1.10.6\":[100,95]},\"6.4.3\":{\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"6.4.2\":{\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"6.4.1\":{\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"6.4\":{\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"6.3.5\":{\"1.10.6\":[100,95]},\"6.3.4\":{\"1.10.6\":[100,95]},\"6.3.3\":{\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"6.3.2\":{\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"6.3.1\":{\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"6.3\":{\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"6.2.6\":{\"1.10.6\":[100,95]},\"6.2.5\":{\"1.10.6\":[100,95]},\"6.2.4\":{\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"6.2.3\":{\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"6.2.2\":{\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"6.2.1\":{\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"6.2\":{\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"6.1.7\":{\"1.10.6\":[100,95]},\"6.1.6\":{\"1.10.6\":[100,95]},\"6.1.5\":{\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"6.1.4\":{\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"6.1.3\":{\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"6.1.2\":{\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"6.1.1\":{\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"6.1\":{\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"6.0.7\":{\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"6.0.6\":{\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"6.0.5\":{\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"6.0.4\":{\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"6.0.3\":{\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"6.0.2\":{\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"6.0.1\":{\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"6.0\":{\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.9.9\":{\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.9.8\":{\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.9.7\":{\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.9.6\":{\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.9.5\":{\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.9.4\":{\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.9.3\":{\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.9.2\":{\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.9.1\":{\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.9\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.8.8\":{\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.8.7\":{\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.8.6\":{\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.8.5\":{\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.8.4\":{\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.8.3\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.8.2\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.8.1\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.8\":{\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.7.9\":{\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.7.8\":{\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.7.7\":{\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.7.6\":{\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.7.5\":{\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.7.4\":{\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.7.3\":{\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.7.2\":{\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.7.1\":{\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.7\":{\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.6.9\":{\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.6.8\":{\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.6.7\":{\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.6.6\":{\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.6.5\":{\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.6.4\":{\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.6.3\":{\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.6.2\":{\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.6.10\":{\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.6.1\":{\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.6\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.5.9\":{\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.5.8\":{\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.5.7\":{\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.5.6\":{\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.5.5\":{\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.5.4\":{\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.5.3\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.5.2\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.5.1\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.5\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.4.9\":{\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.4.8\":{\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.4.7\":{\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.4.6\":{\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.4.5\":{\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.4.4\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.4.3\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.4.2\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.4.1\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.4\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.3.9\":{\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.3.8\":{\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.3.7\":{\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.3.6\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.3.5\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.3.4\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.3.3\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.3.2\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.3.1\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.3\":{\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.2.9\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.2.8\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.2.7\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.2.6\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.2.5\":{\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.2.4\":{\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.2.3\":{\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.2.2\":{\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.2.1\":{\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.2\":{\"1.0.0\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.1.8\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.1.7\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.1.6\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.1.4\":{\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.1.3\":{\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.1.2\":{\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.1.1\":{\"0.1.0\":[100,12],\"1.0.0\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.1\":{\"1.0.0\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.0.8\":{\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.0.7\":{\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.0.6\":{\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.0.5\":{\"1.0.0\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.0.4\":{\"1.0.0\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.0.3\":{\"1.0.0\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.0.2\":{\"1.0.0\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.0.1\":{\"1.0.0\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"5.0\":{\"1.0.0\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"4.9.9\":{\"1.0.0\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"4.9.8\":{\"1.0.0\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"4.9.7\":{\"1.0.0\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"4.9.6\":{\"1.0.0\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"4.9.5\":{\"1.0.0\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"4.9.4\":{\"1.0.0\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"4.9.3\":{\"1.0.0\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"4.9.2\":{\"1.0.0\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"4.9.13\":{\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"4.9.12\":{\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"4.9.11\":{\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"4.9.10\":{\"1.0.0\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"4.9.1\":{\"1.0.0\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"4.9\":{\"1.0.0\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"4.8.9\":{\"1.0.0\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"4.8.8\":{\"1.0.0\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"4.8.7\":{\"1.0.0\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"4.8.6\":{\"1.0.0\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"4.8.5\":{\"1.0.0\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"4.8.4\":{\"1.0.0\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"4.8.3\":{\"1.0.0\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"4.8.2\":{\"1.0.0\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]},\"4.8.10\":{\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95],\"1.10.2\":[100,95],\"1.10.3\":[100,95],\"1.10.4\":[100,95],\"1.10.5\":[100,95],\"1.10.6\":[100,95]}}\";s:6:\"rating\";i:100;s:11:\"num_ratings\";i:100000;s:4:\"tags\";s:37:\"{\"boldgrid\":\"Boldgrid\",\"crio\":\"Crio\"}\";s:7:\"banners\";s:141:\"{\"low\":\"//repo.boldgrid.com/assets/banner-staging-banner-772x250.png\",\"high\":\"//repo.boldgrid.com/assets/banner-staging-banner-1544x500.png\"}\";}}s:7:\"updated\";i:1737978506;}','off'),(1464745,'boldgrid_reseller','a:11:{s:19:\"reseller_identifier\";s:3:\"IMH\";s:14:\"reseller_title\";s:16:\"InMotion Hosting\";s:17:\"reseller_logo_url\";s:78:\"./wp-content/plugins/boldgrid-inspirations/assets/images/wordpressinmotion.png\";s:20:\"reseller_website_url\";s:32:\"https://www.inmotionhosting.com/\";s:20:\"reseller_support_url\";s:52:\"http://www.inmotionhosting.com/support/edu/boldgrid/\";s:16:\"reseller_amp_url\";s:55:\"https://secure1.inmotionhosting.com/amp/boldgrid/manage\";s:14:\"reseller_email\";s:27:\"support@inmotionhosting.com\";s:14:\"reseller_phone\";s:14:\"1-757-416-6575\";s:16:\"reseller_css_url\";s:71:\"/wp-content/plugins/boldgrid-inspirations/assets/css/boldgrid-login.css\";s:17:\"reseller_coin_url\";s:55:\"https://secure1.inmotionhosting.com/amp/boldgrid/manage\";s:20:\"reseller_brand_login\";b:1;}','off'),(1463404,'_transient_wp_styles_for_blocks','a:2:{s:4:\"hash\";s:32:\"8c7d46a72d7d4591fc1dd9485bedb304\";s:6:\"blocks\";a:5:{s:11:\"core/button\";s:0:\"\";s:14:\"core/site-logo\";s:0:\"\";s:18:\"core/post-template\";s:120:\":where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}\";s:12:\"core/columns\";s:102:\":where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}\";s:14:\"core/pullquote\";s:69:\":root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}\";}}','on'),(1463417,'_site_transient_boldgrid_plugins_filtered','a:7:{s:37:\"boldgrid-connect/boldgrid-connect.php\";a:15:{s:4:\"Name\";s:16:\"BoldGrid Connect\";s:9:\"PluginURI\";s:24:\"https://www.boldgrid.com\";s:7:\"Version\";s:5:\"1.0.2\";s:11:\"Description\";s:43:\"Toolkit for BoldGrid Connect functionality.\";s:6:\"Author\";s:8:\"BoldGrid\";s:9:\"AuthorURI\";s:24:\"https://www.boldgrid.com\";s:10:\"TextDomain\";s:16:\"boldgrid-connect\";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:15:\"RequiresPlugins\";s:0:\"\";s:5:\"Title\";s:16:\"BoldGrid Connect\";s:10:\"AuthorName\";s:8:\"BoldGrid\";}s:39:\"boldgrid-easy-seo/boldgrid-easy-seo.php\";a:15:{s:4:\"Name\";s:17:\"BoldGrid Easy SEO\";s:9:\"PluginURI\";s:38:\"https://www.boldgrid.com/boldgrid-seo/\";s:7:\"Version\";s:6:\"1.6.10\";s:11:\"Description\";s:82:\"Easily manage your website\'s search engine optimization with Easy SEO by BoldGrid!\";s:6:\"Author\";s:31:\"BoldGrid <support@boldgrid.com>\";s:9:\"AuthorURI\";s:25:\"https://www.boldgrid.com/\";s:10:\"TextDomain\";s:5:\"bgseo\";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:15:\"RequiresPlugins\";s:0:\"\";s:5:\"Title\";s:17:\"BoldGrid Easy SEO\";s:10:\"AuthorName\";s:31:\"BoldGrid <support@boldgrid.com>\";}s:47:\"boldgrid-inspirations/boldgrid-inspirations.php\";a:15:{s:4:\"Name\";s:21:\"BoldGrid Inspirations\";s:9:\"PluginURI\";s:47:\"https://www.boldgrid.com/boldgrid-inspirations/\";s:7:\"Version\";s:5:\"2.6.5\";s:11:\"Description\";s:177:\"Find inspiration, customize, and launch! BoldGrid Inspirations includes FREE WordPress themes and is the easiest way to launch a new WordPress site complete with custom content.\";s:6:\"Author\";s:31:\"BoldGrid <support@boldgrid.com>\";s:9:\"AuthorURI\";s:25:\"https://www.boldgrid.com/\";s:10:\"TextDomain\";s:21:\"boldgrid-inspirations\";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:15:\"RequiresPlugins\";s:0:\"\";s:5:\"Title\";s:21:\"BoldGrid Inspirations\";s:10:\"AuthorName\";s:31:\"BoldGrid <support@boldgrid.com>\";}s:47:\"post-and-page-builder/post-and-page-builder.php\";a:15:{s:4:\"Name\";s:21:\"Post and Page Builder\";s:9:\"PluginURI\";s:103:\"https://www.boldgrid.com/boldgrid-editor/?utm_source=ppb-wp-repo&utm_medium=plugin-uri&utm_campaign=ppb\";s:7:\"Version\";s:6:\"1.20.0\";s:11:\"Description\";s:175:\"Customized drag and drop editing for posts and pages. The Post and Page Builder adds functionality to the existing TinyMCE Editor to give you easier control over your content.\";s:6:\"Author\";s:31:\"BoldGrid <support@boldgrid.com>\";s:9:\"AuthorURI\";s:87:\"https://www.boldgrid.com/?utm_source=ppb-wp-repo&utm_medium=author-uri&utm_campaign=ppb\";s:10:\"TextDomain\";s:15:\"boldgrid-editor\";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:15:\"RequiresPlugins\";s:0:\"\";s:5:\"Title\";s:21:\"Post and Page Builder\";s:10:\"AuthorName\";s:31:\"BoldGrid <support@boldgrid.com>\";}s:63:\"post-and-page-builder-premium/post-and-page-builder-premium.php\";a:15:{s:4:\"Name\";s:29:\"Post and Page Builder Premium\";s:9:\"PluginURI\";s:60:\"https://www.boldgrid.com/wordpress-page-builder-by-boldgrid/\";s:7:\"Version\";s:5:\"1.0.5\";s:11:\"Description\";s:48:\"Premium extension for the Post and Page Builder.\";s:6:\"Author\";s:8:\"BoldGrid\";s:9:\"AuthorURI\";s:25:\"https://www.boldgrid.com/\";s:10:\"TextDomain\";s:28:\"post-and-page-buider-premium\";s:10:\"DomainPath\";s:11:\"/languagesD\";s:7:\"Network\";b:0;s:10:\"RequiresWP\";s:0:\"\";s:11:\"RequiresPHP\";s:0:\"\";s:9:\"UpdateURI\";s:0:\"\";s:15:\"RequiresPlugins\";s:0:\"\";s:5:\"Title\";s:29:\"Post and Page Builder Premium\";s:10:\"AuthorName\";s:8:\"BoldGrid\";}s:35:\"boldgrid-backup/boldgrid-backup.php\";a:15:{s:4:\"Name\";s:12:\"Total Upkeep\";s:9:\"PluginURI\";s:41:\"https://www.boldgrid.com/boldgrid-backup/\";s:7:\"Version\";s:7:\"1.14.12\";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:15:\"RequiresPlugins\";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:15:{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.5.9\";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:15:\"RequiresPlugins\";s:0:\"\";s:5:\"Title\";s:20:\"Total Upkeep Premium\";s:10:\"AuthorName\";s:8:\"BoldGrid\";}}','off'),(1462258,'_site_transient_timeout_php_check_990bfacb848fa087bcfc06850f5e4447','1738404363','off'),(1462259,'_site_transient_php_check_990bfacb848fa087bcfc06850f5e4447','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:6:\"7.2.24\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','off'),(1462920,'_site_transient_timeout_browser_40b65ea82f99d9ae2d2769173a01ce1b','1738447659','off'),(1462921,'_site_transient_browser_40b65ea82f99d9ae2d2769173a01ce1b','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"132.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;}','off'),(1463583,'_site_transient_timeout_community-events-9bf50448f691c3edaad2c830f8604a87','1737933846','off'),(1463584,'_site_transient_community-events-9bf50448f691c3edaad2c830f8604a87','a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";s:13:\"173.231.218.0\";}s:6:\"events\";a:1:{i:0;a:10:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:27:\"WordCamp Montclair, NJ, USA\";s:3:\"url\";s:36:\"https://montclair.wordcamp.org/2025/\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2025-06-28 00:00:00\";s:8:\"end_date\";s:19:\"2025-06-28 00:00:00\";s:20:\"start_unix_timestamp\";i:1751083200;s:18:\"end_unix_timestamp\";i:1751083200;s:8:\"location\";a:4:{s:8:\"location\";s:18:\"Montclair, NJ, USA\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:40.31923520000000138452378450892865657806396484375;s:9:\"longitude\";d:-74.652972500000004174580681137740612030029296875;}}}}','off'),(1464692,'_site_transient_timeout_community-events-fe618deb2745eb434632fb310ad6d990','1738044653','off'),(1464693,'_site_transient_community-events-fe618deb2745eb434632fb310ad6d990','a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";s:12:\"73.107.192.0\";}s:6:\"events\";a:0:{}}','off'),(1464694,'_transient_timeout_feed_9bbd59226dc36b9b26cd43f15694c5c3','1738044653','off'),(1464695,'_transient_feed_9bbd59226dc36b9b26cd43f15694c5c3','a:6:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:52:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\n \n	\n		\n		\n		\n		\n		\n		\n		\n		\n		\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:8:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"The latest news about WordPress and the WordPress community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 13 Jan 2025 08:55:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://wordpress.org/?v=6.8-alpha-59697\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"image\";a:1:{i:0;a:6:{s:4:\"data\";s:11:\"\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:3:\"url\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://s.w.org/favicon.ico?2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"width\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"32\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:6:\"height\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"32\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:57:\"\n		\n		\n		\n		\n		\n				\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Joost/Karim Fork\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"https://wordpress.org/news/2025/01/jkpress/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 11 Jan 2025 02:06:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Meta\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=18394\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:319:\"Making great software, great product that stands the test of time and not just survives but thrives through monumental technological shifts is incredibly hard. That challenge is part of the reason I love doing it. There is never a dull day, and the reward of seeing the code you wrote used by the most amazing [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:9904:\"\n<p>Making great software, great product that stands the test of time and not just survives but thrives through monumental technological shifts is <em>incredibly hard</em>. That challenge is part of the reason I love doing it. There is never a dull day, and the reward of seeing the code you wrote used by the most amazing creators in the world is an indescribable pleasure. <strong>When I see what people create with WordPress, some days I feel like I’m grinding pigment for Leonardo da Vinci or slitting a quill for Beethoven.</strong></p>\n\n\n\n<p>In open source, one thing that makes it even harder to ship great software is bringing together disparate groups of contributors who may have entirely different incentives or missions or philosophies about how to make great work. Working together on a team is such a delicate balance, and even one person rowing in the wrong direction can throw everyone else off.</p>\n\n\n\n<p>That’s why periodically I think it is very healthy for open source projects to fork, it allows for people to try out and experiment with different forms of governance, leadership, decision-making, and technical approaches. As I&#8217;ve said, forking is beautiful, and <a href=\"https://wordpress.org/news/2024/10/spoon/\">forks have my full support and we&#8217;ll even link and promote them</a>.</p>\n\n\n\n<p><a href=\"https://joost.blog/\">Joost</a> is a self-proclaimed leader in the SEO space, an industry known for making the web better. He asked for and <a href=\"https://joost.blog/leading-marketing-communication-for-wordpress/\">I gave him WordPress marketing leadership responsibility</a> in January 2019 and <a href=\"https://joost.blog/why-im-stepping-down-from-my-wordpress-marketing-role/\">he stepped down in June of 2019</a>, I think we would both agree in those 5 months he was not effective at leading the marketing team or doing the work himself.</p>\n\n\n\n<p><a href=\"https://marucchi.com/\">Karim</a> leads a small WordPress agency called <a href=\"https://crowdfavorite.com/\">Crowd Favorite</a> which counts clients such as Lexus and ABC and employs ~50 people.</p>\n\n\n\n<p>Both are men I have shared meals with and consider of the highest integrity. I would trust them to watch any of my 15 godchildren for a day. These are good humans. Now go do the work. It probably won&#8217;t happen on day one, but Joost and Karim&#8217;s fork, which I&#8217;ll call JKPress until they come up with a better name, has a number of ideas they want to try out around governance and architecture. While Joost and Karim will be unilaterally in charge in the beginning, it sounds <a href=\"https://joost.blog/wordpress-leadership/\">like they want to set up</a>:</p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>A non-profit foundation, with a broad board to control their new project.</li>\n\n\n\n<li>A website owned by that foundation which hosts community resources like a plugin directory, forums, etc.</li>\n\n\n\n<li>No more centralized and moderated plugin and theme directories with security guidelines or restrictions are what plugins are allowed to do like putting banners in your admin or gathering data, everything done in a federated/distributed manner.</li>\n\n\n\n<li>The trademarks for their new project will either be public domain or held by their foundation.</li>\n\n\n\n<li>&#8220;Modernization&#8221; of the technology stack, perhaps going a Laravel-like approach or changing how WordPress&#8217; architecture works.</li>\n\n\n\n<li>Teams and committees to make decisions for everything, so no single person has too much power or authority.</li>\n</ol>\n\n\n\n<p><a href=\"https://marucchi.com/wordpress-leadership-continued/\">Karim has a similar post</a>. Joost says he has the time and energy to lead:</p>\n\n\n\n<figure class=\"wp-block-embed is-type-rich is-provider-twitter wp-block-embed-twitter\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\" data-width=\"500\" data-dnt=\"true\"><p lang=\"en\" dir=\"ltr\">So <a href=\"https://twitter.com/photomatt?ref_src=twsrc%5Etfw\">@photomatt</a> &#8211; I saw the post by <a href=\"https://twitter.com/automattic?ref_src=twsrc%5Etfw\">@automattic</a>.<br><br>I&#39;m ready to lead the next releases. I am sure plenty of people and companies are willing to help me and we&#39;ve got plenty of ideas on what we should be doing.<a href=\"https://twitter.com/hashtag/WordPress?src=hash&amp;ref_src=twsrc%5Etfw\">#WordPress</a></p>&mdash; Joost de Valk (@jdevalk) <a href=\"https://twitter.com/jdevalk/status/1877731220135538728?ref_src=twsrc%5Etfw\">January 10, 2025</a></blockquote><script async src=\"https://platform.twitter.com/widgets.js\" charset=\"utf-8\"></script>\n</div></figure>\n\n\n\n<p>Now, as core committer Jb Audras (not employed by me or Automattic) points out, within WordPress we have a process in which people earn the right to lead a release:</p>\n\n\n\n<figure class=\"wp-block-embed is-type-rich is-provider-twitter wp-block-embed-twitter\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\" data-width=\"500\" data-dnt=\"true\"><p lang=\"en\" dir=\"ltr\">Before leading any major release of WordPress, please start with leading a minor one <a href=\"https://twitter.com/jdevalk?ref_src=twsrc%5Etfw\">@jdevalk</a>. Then, apply to be Triage Lead or Coordination Lead Deputy for a major release. These are the steps everyone in our community should follow before claiming to run « the next releases ».</p>&mdash; Jb Audras (@AudrasJb) <a href=\"https://twitter.com/AudrasJb/status/1877833087473565785?ref_src=twsrc%5Etfw\">January 10, 2025</a></blockquote><script async src=\"https://platform.twitter.com/widgets.js\" charset=\"utf-8\"></script>\n</div></figure>\n\n\n\n<p>However in Joost and Karim&#8217;s new project, they don&#8217;t need to follow our process or put in the hours to prove their worth within the WordPress.org ecosystem, they can just lead by example by shipping code and product to people that they can use, evaluate, and test out for themselves. If they need financial or hosting support is sounds like WP Engine wants to support their fork:</p>\n\n\n\n<figure class=\"wp-block-embed is-type-rich is-provider-twitter wp-block-embed-twitter\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\" data-width=\"500\" data-dnt=\"true\"><p lang=\"en\" dir=\"ltr\">We appreciate <a href=\"https://twitter.com/jdevalk?ref_src=twsrc%5Etfw\">@jdevalk</a> and <a href=\"https://twitter.com/karimmarucchi?ref_src=twsrc%5Etfw\">@karimmarucchi</a> thoughtful call for constructive conversation, change and evolved leadership within the WordPress community. Moments of disruption challenge all of us to reflect and to act.<br><br>WordPress’s success as the most widely used CMS is not the…</p>&mdash; WP Engine (@wpengine) <a href=\"https://twitter.com/wpengine/status/1870242287218790849?ref_src=twsrc%5Etfw\">December 20, 2024</a></blockquote><script async src=\"https://platform.twitter.com/widgets.js\" charset=\"utf-8\"></script>\n</div></figure>\n\n\n\n<p>Awesome! (Maybe it&#8217;s so successful they rebrand as JK Engine in the future.) WP Engine, with its half a billion in revenue and 1,000+ employees, has more than enough resources to support and maintain a legitimate fork of WordPress. And they are welcome to use all the GPL code myself and others have created to do so, including many parts of WordPress.org that are open source released under the GPL, and Gutenberg which is GPL + MPL. </p>\n\n\n\n<p>Joost also is a major investor (owner?) in <a href=\"https://poststatus.com/\">Post Status</a> (which he tried to sell to me a few months ago, and I declined to buy, perhaps kicking off his consternation with me), so they have a news media site and Slack instance already ready to go. He also is an investor in <a href=\"https://patchstack.com/\">PatchStack</a> and appears to be trying to create a new business around something called <a href=\"https://progressplanner.com/\">Progress Planner</a>, both of which could be incorporated into the new non-profit project to give them some competitive distinctions from WordPress.</p>\n\n\n\n<p>To make this easy and hopefully give this project the push it needs to get off the ground, I&#8217;m deactivating the .org accounts of <a href=\"https://profiles.wordpress.org/joostdevalk/\">Joost</a>, <a href=\"https://profiles.wordpress.org/pirazo/\">Karim</a>, <a href=\"https://profiles.wordpress.org/sereedmedia/\">Se Reed</a>, <a href=\"https://profiles.wordpress.org/idea15/\">Heather Burns</a>, and <a href=\"https://profiles.wordpress.org/mor10/\">Morten Rand-Hendriksen</a>. I strongly encourage anyone who wants to try different leadership models or align with WP Engine to join up with their new effort.</p>\n\n\n\n<p>In the meantime, on top of my <a href=\"https://automattic.com/\">day job running a 1,700+ person company with 25+ products</a>, which I typically work 60-80 hours a week on, I&#8217;ll find time on nights and weekends to work on WordPress 6.8 and beyond. Myself and other &#8220;non-sponsored&#8221; contributors have been doing this a long time and while we may need to reduce scope a bit I think we can put out a solid release in March.</p>\n\n\n\n<p>Joost and Karim have a number of bold and interesting ideas, and I&#8217;m genuinely curious to see how they work out. The beauty of open source is they can take all of the GPL code in WordPress and ship their vision. You don&#8217;t need permission, you can just do things. If they create something that&#8217;s awesome, we may even merge it back into WordPress, that ability for code and ideas to freely flow between projects is part of what makes open source such an engine for innovation. I propose that in a year we do a WordPress + JKPress summit, look at what we&#8217;ve shipped and learned in the process, which I&#8217;d be happy to host and sponsor in NYC next January 2026. The broader community will benefit greatly from this effort, as it&#8217;s giving us a true chance to try something different and see how it goes.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"18394\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:57:\"\n		\n		\n		\n		\n		\n				\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"WordPress Themes Need More Weird: A Call for Creative Digital Homes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:102:\"https://wordpress.org/news/2025/01/wordpress-themes-need-more-weird-a-call-for-creative-digital-homes/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 02 Jan 2025 18:53:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"Design\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=18358\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:409:\"The modern web has gradually shifted from a vibrant tapestry of personal expression to a landscape of identical designs, where millions of websites share not just similar structures, but identical visual language, spacing, and interaction patterns. As we collectively gravitate toward the same “proven” layouts and “conversion-optimized” designs, we’re not just losing visual diversity – [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Nick Hamze\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:7631:\"\n<p>The modern web has gradually shifted from a vibrant tapestry of personal expression to a landscape of identical designs, where millions of websites share not just similar structures, but identical visual language, spacing, and interaction patterns. As we collectively gravitate toward the same “proven” layouts and “conversion-optimized” designs, we’re not just losing visual diversity – we’re ceding control over how we present ourselves to the world. This matters because genuine self-expression online isn’t just about aesthetics – it’s about maintaining spaces where authentic voices can flourish.&nbsp;</p>\n\n\n\n<p>When every blog has the same hero section, when every portfolio follows the same grid, when every restaurant site looks interchangeable, we create an echo chamber of sameness. The cost isn’t just visual monotony – it’s the slow erosion of the web’s ability to surprise, delight, and showcase truly individual perspectives. WordPress, with its emphasis on complete ownership and control, offers an opportunity to break free from this convergence of design, allowing creators to build digital spaces that truly reflect their unique voice and vision.</p>\n\n\n\n<p>Think of WordPress themes like album covers. They should have personality and create an immediate visual impact. The web has become too sanitized, with everyone chasing the same minimal, “professional” look.</p>\n\n\n\n<p>Great themes should:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Have a strong point of view – like how Kubrick (the classic WordPress theme) defined an era with its distinctive header gradient. Don&#8217;t try to be everything to everyone.</li>\n\n\n\n<li>Embrace specific aesthetics boldly – whether that’s brutalist design, pixel art, hand-drawn elements, or distinctive typography. Create themes that excite people rather than just working for everyone.</li>\n\n\n\n<li>Design for specific use cases – like a theme for photographers that’s all about full-bleed images or a theme for writers that treats typography as art or a theme for musicians that feels like an album cover.</li>\n\n\n\n<li>Break some rules thoughtfully – because not every theme needs a hamburger menu. Not every theme needs to be mobile-first. Sometimes constraints create character.</li>\n</ul>\n\n\n\n<p>We need more themes that make people say “Wow!” or “That’s different!” rather than “That’s clean and professional.” The web needs more personality, more risk-taking, more fun.</p>\n\n\n\n<p>After spending countless hours digging through the WordPress theme repository, searching for designs that break the mold and spark excitement, I came up nearly empty-handed. Don’t get me wrong – there are plenty of well-built themes out there. But where’s the daring? The personality? The unexpected?</p>\n\n\n\n<p>If you&#8217;ve got a wild theme idea burning in your mind – that portfolio theme that looks like a vintage trading card collection, that blog theme inspired by zine culture, that restaurant theme that feels like a hand-drawn menu – now&#8217;s the time to build it. WordPress desperately needs your creativity, your weird ideas, your willingness to break the visual rules. The future of the web shouldn&#8217;t be a monochrome landscape of identical layouts. Let&#8217;s make WordPress themes exciting again. Let&#8217;s make the web weird again.</p>\n\n\n\n<figure class=\"wp-block-gallery has-nested-images columns-2 wp-block-gallery-1 is-layout-flex wp-block-gallery-is-layout-flex\">\n<figure class=\"wp-block-image size-large\"><a href=\"https://wordpress.org/themes/psychedeli\" target=\"_blank\" rel=\"noreferrer noopener\"><img data-recalc-dims=\"1\" fetchpriority=\"high\" decoding=\"async\" width=\"1024\" height=\"768\" data-id=\"18360\" src=\"https://i0.wp.com/wordpress.org/news/files/2024/12/psychedeli.webp?resize=1024%2C768&#038;ssl=1\" alt=\"Psychedeli theme\" class=\"wp-image-18360\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2024/12/psychedeli.webp?resize=1024%2C768&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2024/12/psychedeli.webp?resize=300%2C225&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2024/12/psychedeli.webp?resize=768%2C576&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2024/12/psychedeli.webp?w=1200&amp;ssl=1 1200w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></a></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https://wordpress.org/themes/kawaii-chan\" target=\"_blank\" rel=\"noreferrer noopener\"><img data-recalc-dims=\"1\" decoding=\"async\" width=\"1024\" height=\"768\" data-id=\"18362\" src=\"https://i0.wp.com/wordpress.org/news/files/2024/12/kawaii.webp?resize=1024%2C768&#038;ssl=1\" alt=\"Kawaii-Chan theme\" class=\"wp-image-18362\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2024/12/kawaii.webp?resize=1024%2C768&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2024/12/kawaii.webp?resize=300%2C225&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2024/12/kawaii.webp?resize=768%2C576&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2024/12/kawaii.webp?w=1200&amp;ssl=1 1200w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></a></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https://wordpress.org/themes/lowfi\" target=\"_blank\" rel=\"noreferrer noopener\"><img data-recalc-dims=\"1\" decoding=\"async\" width=\"1024\" height=\"768\" data-id=\"18361\" src=\"https://i0.wp.com/wordpress.org/news/files/2024/12/lofi.webp?resize=1024%2C768&#038;ssl=1\" alt=\"LowFi theme\" class=\"wp-image-18361\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2024/12/lofi.webp?resize=1024%2C768&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2024/12/lofi.webp?resize=300%2C225&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2024/12/lofi.webp?resize=768%2C576&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2024/12/lofi.webp?w=1200&amp;ssl=1 1200w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></a></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https://wordpress.org/themes/bedrock\" target=\"_blank\" rel=\"noreferrer noopener\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"768\" data-id=\"18364\" src=\"https://i0.wp.com/wordpress.org/news/files/2024/12/bedrock.webp?resize=1024%2C768&#038;ssl=1\" alt=\"Bedrock theme\" class=\"wp-image-18364\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2024/12/bedrock.webp?resize=1024%2C768&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2024/12/bedrock.webp?resize=300%2C225&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2024/12/bedrock.webp?resize=768%2C576&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2024/12/bedrock.webp?w=1200&amp;ssl=1 1200w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></a></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https://wordpress.org/themes/feelingood\" target=\"_blank\" rel=\"noreferrer noopener\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"768\" data-id=\"18363\" src=\"https://i0.wp.com/wordpress.org/news/files/2024/12/feeling.webp?resize=1024%2C768&#038;ssl=1\" alt=\"Feelin’Good theme\" class=\"wp-image-18363\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2024/12/feeling.webp?resize=1024%2C768&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2024/12/feeling.webp?resize=300%2C225&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2024/12/feeling.webp?resize=768%2C576&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2024/12/feeling.webp?w=1200&amp;ssl=1 1200w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></a></figure>\n</figure>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"18358\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:57:\"\n		\n		\n		\n		\n		\n				\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Holiday Break\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"https://wordpress.org/news/2024/12/holiday-break/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 20 Dec 2024 00:36:59 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=18328\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:362:\"In order to give myself and the many tired volunteers around WordPress.org a break for the holidays, we&#8217;re going to be pausing a few of the free services currently offered: We&#8217;re going to leave things like localization and the forums open because these don&#8217;t require much moderation. As you may have heard, I&#8217;m legally compelled [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2315:\"\n<p>In order to give myself and the many tired volunteers around WordPress.org a break for the holidays, we&#8217;re going to be pausing a few of the free services currently offered:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>New account registrations on WordPress.org (clarifying so press doesn&#8217;t confuse this: people can still make their own WordPress installs and accounts)</li>\n\n\n\n<li>New <a href=\"https://wordpress.org/plugins/\">plugin directory</a> submissions</li>\n\n\n\n<li>New plugin reviews</li>\n\n\n\n<li>New <a href=\"https://wordpress.org/themes/\">theme directory</a> submissions</li>\n\n\n\n<li>New <a href=\"https://wordpress.org/photos/\">photo directory</a> submissions</li>\n</ul>\n\n\n\n<p>We&#8217;re going to leave things like localization and the forums open because these don&#8217;t require much moderation.</p>\n\n\n\n<p>As you may have heard, <a href=\"https://www.theverge.com/2024/12/10/24318350/automattic-restore-wp-engine-access-wordpress\">I&#8217;m legally compelled to provide free labor and services to WP Engine thanks to the success of their expensive lawyers</a>, so in order to avoid bothering the court I will say that none of the above applies to WP Engine, so if they need to bypass any of the above please just have your high-priced attorneys talk to my high-priced attorneys and we&#8217;ll arrange access, or just reach out directly to me on Slack and I&#8217;ll fix things for you.</p>\n\n\n\n<p>I hope to find the time, energy, and money to reopen all of this sometime in the new year. Right now much of the time I would spend making WordPress better is being taken up defending against WP Engine&#8217;s legal attacks. Their attacks are against Automattic, but also me individually as the owner of WordPress.org, which means if they win I can be personally liable for millions of dollars of damages.</p>\n\n\n\n<p>If you would like to fund legal attacks against me, I would encourage you to sign up for WP Engine services, <a href=\"https://wpengine.com/plans/\">they have great plans and pricing starting at $50/mo and scaling all the way up to $2,000/mo</a>. If not, you can use <a href=\"https://wordpress.org/news/2024/10/wp-engine-promotions/\">literally any other web host in the world that isn&#8217;t suing me and is offering promotions and discounts for switching away from WP Engine</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"18328\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"State of the Word 2024: Legacy, Innovation, and Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"https://wordpress.org/news/2024/12/state-of-the-word-2024-legacy-innovation-and-community/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 16 Dec 2024 21:28:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:6:\"Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:17:\"state of the word\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=18205\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:282:\"On a memorable evening in Tokyo, State of the Word 2024 brought together WordPress enthusiasts from around the world—hundreds in person and millions more online. This event marked the first time State of the Word was hosted in Asia, reflecting the platform\'s growing global reach.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Nicholas Garofalo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:88600:\"\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe loading=\"lazy\" title=\"State of the Word 2024\" width=\"500\" height=\"281\" src=\"https://www.youtube.com/embed/KLybH5YvIPQ?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>\n</div></figure>\n\n\n\n<p>On a memorable evening in Tokyo, State of the Word 2024 brought together WordPress enthusiasts from around the world—hundreds in person and millions more online. This event marked the first time State of the Word was hosted in Asia, reflecting the platform&#8217;s growing global reach. The setting couldn’t have been more fitting: a city where tradition and technology coexist in seamless harmony. Tokyo, much like WordPress itself, reflects a powerful blend of legacy and innovation, craftsmanship and technology, and moments of vast scale balanced by serene stillness.</p>\n\n\n\n<div class=\"wp-block-group is-nowrap is-layout-flex wp-container-core-group-is-layout-1 wp-block-group-is-layout-flex\">\n<figure class=\"wp-block-pullquote alignwide has-text-align-center\"><blockquote><p>Tokyo is a city you feel.</p><cite>Matt Mullenweg, WordPress Cofounder</cite></blockquote></figure>\n</div>\n\n\n\n<p>During the event, the concept of <em>kansei</em> engineering emerged as a central theme. This Japanese design philosophy seeks to create experiences that go beyond function and aesthetics, focusing on how something feels. As highlighted during the keynote, this principle has quietly influenced WordPress’s development, shaping its design and user experience in ways that resonate on an instinctive level.</p>\n\n\n\n<p>The evening also celebrated Japan’s deep-rooted connection to WordPress. Nearly 21 years ago, Japan became the first country to localize WordPress, long before a formal translation framework existed. It all started with<a href=\"https://wordpress.org/support/topic/localization-help-needed/\"> a single forum post from a user named Otsukare</a>, launching a translation project that helped WordPress become a truly global platform. Seeing how far the Japanese WordPress community has come—both in market share and cultural influence—was a powerful reminder of what shared purpose can achieve.</p>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6797cbff41bf6&quot;}\" data-wp-interactive=\"core/image\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on-async--click=\"actions.showLightbox\" data-wp-on-async--load=\"callbacks.setButtonStyles\" data-wp-on-async-window--resize=\"callbacks.setButtonStyles\" src=\"https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-182521-8400-_web2k.jpg?resize=1024%2C683&#038;ssl=1\" alt=\"Photo of Matt exhibiting some of the community\'s wapuu creations\" class=\"wp-image-18208\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-182521-8400-_web2k.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-182521-8400-_web2k.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-182521-8400-_web2k.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-182521-8400-_web2k.jpg?resize=1536%2C1025&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-182521-8400-_web2k.jpg?w=2000&amp;ssl=1 2000w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			aria-label=\"Enlarge image: Photo of Matt exhibiting some of the community&#039;s wapuu creations\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on-async--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.imageButtonRight\"\n			data-wp-style--top=\"state.imageButtonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<p>Wapuu, WordPress’s beloved mascot, was also born in Japan. What began as a simple idea for a fun and friendly representation of WordPress evolved into a global phenomenon. Thanks to Kazuko Kaneuchi’s generous open-source contribution, Wapuu has been reimagined by WordPress communities worldwide, each version infused with local character. This uniquely Japanese creation has helped make WordPress more welcoming, approachable, and fun wherever it appears.</p>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress Growth in 2024</h2>\n\n\n\n<p>WordPress cofounder Matt Mullenweg highlighted significant achievements that underscored WordPress’s growth, resilience, and expanding global presence in 2024. He shared that WordPress now powers 43.6% of all websites globally. In Japan, WordPress’s influence is even more pronounced, powering 58.5% of all websites. This remarkable statistic reinforces the platform’s enduring role as a cornerstone of the open web and accentuates Japan’s deep-rooted commitment to the WordPress ecosystem and its developers’ significant contributions.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"260\" src=\"https://i0.wp.com/wordpress.org/news/files/2024/12/marklet-share-world-japan.jpg?resize=1024%2C260&#038;ssl=1\" alt=\"\" class=\"wp-image-18339\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2024/12/marklet-share-world-japan.jpg?resize=1024%2C260&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2024/12/marklet-share-world-japan.jpg?resize=300%2C76&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2024/12/marklet-share-world-japan.jpg?resize=768%2C195&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2024/12/marklet-share-world-japan.jpg?resize=1536%2C390&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2024/12/marklet-share-world-japan.jpg?resize=2048%2C520&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p>WordPress sites using languages other than English are expected to surpass English-language sites by 2025. German recently overtook Japanese as the third-most-used language, though Japanese remained close behind. Meanwhile, emerging languages like Farsi experienced rapid adoption, reflecting the platform’s expanding multilingual ecosystem. In Southeast Asia, languages such as Indonesian, Vietnamese, and Thai saw substantial year-over-year growth, signaling broader adoption across diverse regions.</p>\n\n\n\n<p>Core downloads surged to nearly half a billion annually, with the notable releases of WordPress <a href=\"https://wordpress.org/download/releases/6-5/\">6.5</a>, <a href=\"https://wordpress.org/download/releases/6-6/\">6.6</a>, and <a href=\"https://wordpress.org/download/releases/6-7/\">6.7</a>.</p>\n\n\n\n<p>WordPress’s design and development ecosystem flourished as well. Over 1,700 new themes were uploaded in 2024, bringing more than 1,000 block themes to the official repository and reflecting increased interest in modern, flexible site design.</p>\n\n\n\n<p>The plugin ecosystem also saw record-breaking activity this year. Plugin downloads surged toward 2.35 billion, representing a 20% year-over-year increase. Plugin updates exceeded 3 billion and are on track to surpass 3.5 billion by year’s end. Notably, the Plugin Review Team made transformative improvements, drastically reducing the average review wait time. Their efficiency gains were complemented by the launch of the <a href=\"https://wordpress.org/plugins/plugin-check/\">Plugin Check</a> tool, which reduced submission issues by 41% while enabling the team to approve 138% more plugins each week.</p>\n\n\n\n<p>These accomplishments showcase WordPress’s resilience, adaptability, and ever-expanding influence. As the platform continues to evolve, its global community remains at the heart of its success, driving innovation and ensuring that WordPress thrives as the leading tool for building the open web.</p>\n\n\n\n<div class=\"wp-block-group has-off-white-2-background-color has-background is-layout-flow wp-block-group-is-layout-flow\" style=\"padding-top:var(--wp--preset--spacing--40);padding-right:0;padding-bottom:var(--wp--preset--spacing--40);padding-left:0\">\n<p class=\"has-text-align-center\">Help shape the future of WordPress: Join a contributor team today!</p>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-1 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-width wp-block-button__width-50\"><a class=\"wp-block-button__link wp-element-button\" href=\"https://make.wordpress.org/\" target=\"_blank\" rel=\"noreferrer noopener\">Make WordPress</a></div>\n</div>\n</div>\n\n\n\n<h2 class=\"wp-block-heading\">Advancing the Platform</h2>\n\n\n\n<p>WordPress lead architect, Matías Ventura, highlighted WordPress’s evolution through the lenses of writing, design, building, and development, demoing various pieces of new and forthcoming enhancements.</p>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6797cbff4249e&quot;}\" data-wp-interactive=\"core/image\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"576\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on-async--click=\"actions.showLightbox\" data-wp-on-async--load=\"callbacks.setButtonStyles\" data-wp-on-async-window--resize=\"callbacks.setButtonStyles\" src=\"https://i0.wp.com/wordpress.org/news/files/2024/12/sotw-2024_keynote_vFINALFINAL-english.059.jpeg?resize=1024%2C576&#038;ssl=1\" alt=\"Write, Build, Design, Develop\" class=\"wp-image-18219\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2024/12/sotw-2024_keynote_vFINALFINAL-english.059.jpeg?resize=1024%2C576&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2024/12/sotw-2024_keynote_vFINALFINAL-english.059.jpeg?resize=300%2C169&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2024/12/sotw-2024_keynote_vFINALFINAL-english.059.jpeg?resize=768%2C432&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2024/12/sotw-2024_keynote_vFINALFINAL-english.059.jpeg?resize=1536%2C864&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2024/12/sotw-2024_keynote_vFINALFINAL-english.059.jpeg?w=1920&amp;ssl=1 1920w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			aria-label=\"Enlarge image: Write, Build, Design, Develop\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on-async--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.imageButtonRight\"\n			data-wp-style--top=\"state.imageButtonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Writing</h3>\n\n\n\n<p>The writing experience in WordPress saw notable advancements this year, with an improved distraction-free mode that helps users to focus on content creation without interface distractions. Now you can directly select the image itself to drag and drop it where you want, even enabling on-the-fly gallery creation when you drop images next to each other.</p>\n\n\n\n<p>Additionally, the introduction of block-level comments in the editor, currently an experimental feature, promises to reshape collaborative workflows by enabling teams to leave notes directly on blocks.</p>\n\n\n\n<p>These enhancements all work together to make writing, composing, and editing in WordPress feel more fluid, personal, and pleasant than ever.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Design</h3>\n\n\n\n<p>Along with new default theme Twenty Twenty-Five, more than 1,000 block themes offer tailored starting points for different site types, including portfolios, blogs, and business sites. Designers can also utilize the improved Style Book for a comprehensive view of their site’s appearance, ensuring a smooth design process.</p>\n\n\n\n<p>Design work isn’t just about aesthetics—it’s also about creating the right environment and guardrails. It’s important that users can interact with their site, add content, replace media, and choose sections without needing to know the layout details. We’re implementing better default experiences to help you focus exclusively on the content or on the design, depending on your needs at the moment.&nbsp;</p>\n\n\n\n<p>This all works seamlessly with the zoom-out view, where users can compose content using patterns without having to set up every individual block. Having a bird’s-eye view of your site can really help you gain a different perspective.</p>\n\n\n\n<p>These design capabilities scale with you as your WordPress projects grow. WordPress&#8217;s approach to design is systematic: blocks combine to form patterns, patterns form templates, and templates help separate content from presentation.</p>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6797cbff42a22&quot;}\" data-wp-interactive=\"core/image\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"576\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on-async--click=\"actions.showLightbox\" data-wp-on-async--load=\"callbacks.setButtonStyles\" data-wp-on-async-window--resize=\"callbacks.setButtonStyles\" src=\"https://i0.wp.com/wordpress.org/news/files/2024/12/sotw-2024_keynote_vFINALFINAL-english.037.jpeg?resize=1024%2C576&#038;ssl=1\" alt=\"\" class=\"wp-image-18302\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2024/12/sotw-2024_keynote_vFINALFINAL-english.037.jpeg?resize=1024%2C576&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2024/12/sotw-2024_keynote_vFINALFINAL-english.037.jpeg?resize=300%2C169&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2024/12/sotw-2024_keynote_vFINALFINAL-english.037.jpeg?resize=768%2C432&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2024/12/sotw-2024_keynote_vFINALFINAL-english.037.jpeg?resize=1536%2C864&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2024/12/sotw-2024_keynote_vFINALFINAL-english.037.jpeg?w=1920&amp;ssl=1 1920w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			aria-label=\"Enlarge image\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on-async--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.imageButtonRight\"\n			data-wp-style--top=\"state.imageButtonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Building</h3>\n\n\n\n<p>WordPress’s content management capabilities allow working at scale and across teams. Central to this is the introduction of Block Bindings, which merge the flexibility of blocks with the structured power of meta fields. This feature allows block attributes to be directly linked to data sources like post meta, reducing the need for custom blocks while creating deeper, more dynamic content relationships. The familiar block interface remains intact, making complex data management feel seamless. This connects naturally with our broader work on Data Views for post types and meta fields.&nbsp;</p>\n\n\n\n<p>These updates reinforce WordPress’s role as a powerful content management system by connecting its core primitives—blocks, post types, taxonomies, and meta fields—more intuitively.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\">Development</h3>\n\n\n\n<p>Lastly, Matías showcased a range of groundbreaking tools that empower WordPress developers and streamline their workflows. One of the highlights was the new Templates API, which has simplified the process of registering and managing custom templates. Future updates to the API will allow users to register and activate templates seamlessly, enabling dynamic site customizations such as scheduling different homepage templates for special events or swapping category archives during campaigns. This flexible approach offers developers greater creative control in a standardized way.&nbsp;</p>\n\n\n\n<p>The session also explored the Interactivity API, designed to deliver fast, seamless website experiences by enabling server-rendered interactivity within WordPress. Unlike JavaScript-heavy frameworks, this technology keeps everything within WordPress’s existing ecosystem, bridging the gap between developers and content creators. Attendees saw live demos showcasing instant search, pagination, and commenting—all without page reloads—while maintaining a perfect performance score of 100 on Lighthouse. In addition, it was announced that responsive controls will receive significant attention, with new features being explored, like block visibility by breakpoint and adding min/max controls to the columns block.</p>\n\n\n\n<p>The WordPress Playground also emerged as a game-changer, allowing users to spin up WordPress sites directly in their browsers, experiment with Blueprints, and manage projects offline. With improved GitHub integration and expanded documentation, WordPress developers now have a more accessible and powerful toolkit than ever before.</p>\n\n\n\n<h2 class=\"wp-block-heading\">An AI Future</h2>\n\n\n\n<p>Returning to the stage, Matt noted that Gutenberg’s evolution is paving the way for AI-powered site building while keeping creative control in users’ hands. A recent speed building challenge on WordPress’s YouTube channel showcased this potential, with <a href=\"https://profiles.wordpress.org/ndiego/\">Nick Diego</a> using AI-assisted tools and <a href=\"https://profiles.wordpress.org/welcher/\">Ryan Welcher</a> building manually. While the AI-assisted approach won, the key takeaway was that AI isn’t here to replace developers but to enhance creativity and efficiency.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe loading=\"lazy\" title=\"AI Takes On HUMAN in WordPress Speed Build Showdown &#x1f525;\" width=\"500\" height=\"281\" src=\"https://www.youtube.com/embed/vjw6KWahFlk?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>\n</div></figure>\n\n\n\n<h2 class=\"wp-block-heading\">Community Impact and Global Reach</h2>\n\n\n\n<p>When WordPress Executive Director Mary Hubbard took the stage, she emphasized WordPress’s commitment to its open-source mission and the power of its global community. Mary shared her passion for defending WordPress’s principles, reaffirming that when users choose WordPress, they should receive the authentic, community-driven experience that the platform stands for. This commitment to clarity, trust, and open-source integrity is central to ensuring WordPress’s long-term sustainability and success.</p>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6797cbff42f53&quot;}\" data-wp-interactive=\"core/image\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on-async--click=\"actions.showLightbox\" data-wp-on-async--load=\"callbacks.setButtonStyles\" data-wp-on-async-window--resize=\"callbacks.setButtonStyles\" src=\"https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-193636-0177_web2k.jpg?resize=1024%2C683&#038;ssl=1\" alt=\"Photo of Mary Hubbard, WordPress Executive Director\" class=\"wp-image-18227\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-193636-0177_web2k.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-193636-0177_web2k.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-193636-0177_web2k.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-193636-0177_web2k.jpg?resize=1536%2C1025&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-193636-0177_web2k.jpg?w=2000&amp;ssl=1 2000w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			aria-label=\"Enlarge image: Photo of Mary Hubbard, WordPress Executive Director\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on-async--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.imageButtonRight\"\n			data-wp-style--top=\"state.imageButtonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button><figcaption class=\"wp-element-caption\">Mary Hubbard, WordPress Executive Director</figcaption></figure>\n\n\n\n<p>In 2024, WordPress’s global influence surged through expanded educational programs, developer contributions, and grassroots initiatives. The platform’s social media following grew to 2.3 million, while major events like WordCamps and live-streamed gatherings attracted millions of attendees and viewers, connecting people worldwide.</p>\n\n\n\n<p><a href=\"https://learn.wordpress.org/\">Learn WordPress</a> introduced Structured Learning Pathways, offering tailored tracks for beginners and developers, fostering a growing network of creators eager to learn and contribute. Grassroots programs flourished, with WP Campus Connect bringing WordPress education to Indian colleges and innovation competitions in Uganda empowering young creators. In Latin America, the Community Reactivation Project reignited meetups across nine cities, fostering a network of over 150 active members and setting the stage for three new WordCamps in 2025.</p>\n\n\n\n<p>WordPress’s efforts also advanced through <a href=\"https://openverse.org/\">Openverse</a>, which expanded its free content library to 884 million images and 4.2 million audio files, serving millions of creators worldwide and supporting WordPress’s broader mission of democratizing publishing.</p>\n\n\n\n<p>Whether through educational platforms, developer-driven innovation, or community-led projects, WordPress’s ecosystem continues to nurture shared learning, creativity, and collaboration, ensuring its growth and relevance for future generations.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Japanese Community Highlights</h2>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/nukaga/\">Junko Fukui Nukaga</a>—Community Team rep, program manager, and WordCamp organizer—noted that WordPress&#8217;s prominence in Japan contributes to an economy now estimated to exceed 100 billion yen.</p>\n\n\n\n<p>In October of 2024, the Japanese WordPress community celebrated DigitalCube’s IPO on the Tokyo PRO Market, marking a milestone for the local WordPress ecosystem. Major contributors like Takayuki Miyoshi’s <a href=\"https://wordpress.org/plugins/contact-form-7/\">Contact Form 7</a> plugin surpassed 10 million active users, while companies like Sakura Internet and XServer built specialized WordPress infrastructure.</p>\n\n\n\n<p>Community events in Japan have also flourished, with 189 local meetups held throughout the year, fueled by dedicated volunteers and organizers. Translation Night gatherings have ensured WordPress remains accessible to Japanese users, reflecting a thriving collaborative spirit.</p>\n\n\n\n<p>Matt gave special recognition to Japan’s standout contributor, <a href=\"https://profiles.wordpress.org/wildworks/\">Aki Hamano</a>, a Core Committer whose exceptional efforts elevated WordPress development over the past year. Hamano-san made an impressive 774 contributions to WordPress core, earning 162 props for WordPress 6.5, rising to 274 props for 6.6 as the second-highest contributor, and securing the top spot with 338 props for 6.7.Other notable Japanese contributors included <a href=\"https://profiles.wordpress.org/atachibana/\">Akira Tachibana</a>, an active Docs Team member, and Nukaga, recognized for her exceptional community organizing efforts. Additionally, 13 Japanese contributors supported 5.4% of WordPress 6.6 development, showcasing the country’s growing influence in the WordPress ecosystem.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Data Liberation</h2>\n\n\n\n<p>Reflecting on the progress since the initiative&#8217;s launch last year, the focus remained on ensuring that WordPress not only becomes more powerful but also embodies freedom in its deepest sense—the freedom to move content anywhere, collaborate without limits, and create without constraints. This vision extends beyond individual sites to a broader web where content flows seamlessly across platforms, enabling unrestricted creativity and innovation.</p>\n\n\n\n<p>One compelling example demonstrated how easily ePub files could be imported into a WordPress site, integrating seamlessly with existing designs. This represents the initiative’s broader goal: making content migration and integration effortless. WordPress Playground plays a critical role in this vision by enabling easy site migration through a simple browser extension. With Playground as a staging area, migrating and adapting sites becomes intuitive and accessible.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Q&amp;A</h2>\n\n\n\n<p>The floor was opened to questions in both Japanese and English.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe loading=\"lazy\" title=\"State of the Word 2024 Q&amp;A\" width=\"500\" height=\"281\" src=\"https://www.youtube.com/embed/XPhQFSAvKVw?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>\n</div></figure>\n\n\n\n<p>Questions from the audience, including <a href=\"https://en.wikipedia.org/wiki/Tokyo_Vice\"><em>Tokyo Vice</em></a> author Jake Adelstein, covered the future of blogging, WordPress performance, the impact of AI search, and what democratizing publishing means today. Matt shared his excitement for more open platforms such as Mastodon and Bluesky, as well as his recommendations for optimizing your site for both humans and AI. A common thread throughout was that a personal website is an important part of your digital identity, and WordPress allows you to<a href=\"https://playground.wordpress.net/?plugin=piano-block&amp;blueprint-url=https%3A%2F%2Fwordpress.org%2Fplugins%2Fwp-json%2Fplugins%2Fv1%2Fplugin%2Fpiano-block%2Fblueprint.json%3Frev%3D3166994%26lang%3D\"> express yourself in fun and unique ways</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Panels</h2>\n\n\n\n<p>After attendees enjoyed a special performance by the pianist, Takai-san, industry leaders, creators, and innovators took the stage for panel discussions about the present and future of WordPress, moderated by Mary Hubbard.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe loading=\"lazy\" title=\"State of the Word 2024 Panel Discussions\" width=\"500\" height=\"281\" src=\"https://www.youtube.com/embed/Qt5FOQYX1nE?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>\n</div></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Publishing in the Open</h3>\n\n\n\n<p>Featuring:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Mieko Kawakami, Japanese Author and Poet&nbsp;</li>\n\n\n\n<li>Craig Mod, Author of Things Become Other Things&nbsp;</li>\n\n\n\n<li>Matt Mullenweg, WordPress Cofounder and Automattic CEO</li>\n</ul>\n\n\n\n<p>This first panel explored the transformative power of open-source publishing. Panelists shared insights into how open publishing has influenced their creative journeys, expanded audience engagement, and shaped storytelling across cultural boundaries.</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>Publishing in the open has defined what I’ve done. All the best connections I’ve made in live have been the result of publishing in the open. &#8211; Craig Mod</p>\n</blockquote>\n\n\n\n<p>Publishing in the open, like WordPress, is about building community, mutual connections, and putting power back into the hands of creators.</p>\n\n\n\n<h3 class=\"wp-block-heading\">The Future of WordPress in Japan and Beyond</h3>\n\n\n\n<p>Featuring:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Hajime Ogushi, mgn CEO</li>\n\n\n\n<li>Genki Taniguchi, SAKURA internet Inc. Senior Director</li>\n\n\n\n<li>Matt Mullenweg, WordPress Cofounder and Automattic CEO</li>\n</ul>\n\n\n\n<p>The second discussion highlighted WordPress&#8217;s remarkable growth in Japan and its broader global impact. The discussion covered the drivers behind Japan&#8217;s adoption of WordPress, its thriving ecosystem of WordPress-based businesses, and emerging trends in web development.</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>Compared to other CMSs the WordPress Japanese is much easier to use. &#8211; Hajime Ogushi</p>\n</blockquote>\n\n\n\n<p>The group discussed plugins such as <a href=\"https://wordpress.org/plugins/contact-form-7/\">Contact Form 7</a>, the affordability of hosting WordPress, and local meetups and events</p>\n\n\n\n<h2 class=\"wp-block-heading\">Closing</h2>\n\n\n\n<p>Thank you to all the guests who joined us on stage, those who ventured to Tokyo, and everyone who tuned in from around the world. Today’s event showcased how a free and infinitely flexible platform, an active global community, open innovation, and a commitment to a fully democratized web make us better at being who we are.</p>\n\n\n\n<p>From Tokyo, Arigatou Gozaimashita!</p>\n\n\n\n<figure class=\"wp-block-gallery has-nested-images columns-0 is-cropped is-style-rectangular wp-block-gallery-2 is-layout-flex wp-block-gallery-is-layout-flex\">\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6797cbff43cfd&quot;}\" data-wp-interactive=\"core/image\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on-async--click=\"actions.showLightbox\" data-wp-on-async--load=\"callbacks.setButtonStyles\" data-wp-on-async-window--resize=\"callbacks.setButtonStyles\" data-id=\"18249\" src=\"https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-202835-8841-_web2k.jpg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-18249\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-202835-8841-_web2k.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-202835-8841-_web2k.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-202835-8841-_web2k.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-202835-8841-_web2k.jpg?resize=1536%2C1025&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-202835-8841-_web2k.jpg?w=2000&amp;ssl=1 2000w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			aria-label=\"Enlarge image\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on-async--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.imageButtonRight\"\n			data-wp-style--top=\"state.imageButtonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6797cbff43fd3&quot;}\" data-wp-interactive=\"core/image\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on-async--click=\"actions.showLightbox\" data-wp-on-async--load=\"callbacks.setButtonStyles\" data-wp-on-async-window--resize=\"callbacks.setButtonStyles\" data-id=\"18262\" src=\"https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-164917-7983-_web2k.jpg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-18262\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-164917-7983-_web2k.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-164917-7983-_web2k.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-164917-7983-_web2k.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-164917-7983-_web2k.jpg?resize=1536%2C1025&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-164917-7983-_web2k.jpg?w=2000&amp;ssl=1 2000w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			aria-label=\"Enlarge image\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on-async--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.imageButtonRight\"\n			data-wp-style--top=\"state.imageButtonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6797cbff4428d&quot;}\" data-wp-interactive=\"core/image\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on-async--click=\"actions.showLightbox\" data-wp-on-async--load=\"callbacks.setButtonStyles\" data-wp-on-async-window--resize=\"callbacks.setButtonStyles\" data-id=\"18274\" src=\"https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-163201-7815-_web2k.jpg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-18274\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-163201-7815-_web2k.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-163201-7815-_web2k.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-163201-7815-_web2k.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-163201-7815-_web2k.jpg?resize=1536%2C1025&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-163201-7815-_web2k.jpg?w=2000&amp;ssl=1 2000w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			aria-label=\"Enlarge image\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on-async--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.imageButtonRight\"\n			data-wp-style--top=\"state.imageButtonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6797cbff44561&quot;}\" data-wp-interactive=\"core/image\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on-async--click=\"actions.showLightbox\" data-wp-on-async--load=\"callbacks.setButtonStyles\" data-wp-on-async-window--resize=\"callbacks.setButtonStyles\" data-id=\"18252\" src=\"https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-140851-0095-_web2k.jpg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-18252\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-140851-0095-_web2k.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-140851-0095-_web2k.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-140851-0095-_web2k.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-140851-0095-_web2k.jpg?resize=1536%2C1025&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-140851-0095-_web2k.jpg?w=2000&amp;ssl=1 2000w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			aria-label=\"Enlarge image\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on-async--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.imageButtonRight\"\n			data-wp-style--top=\"state.imageButtonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6797cbff4482f&quot;}\" data-wp-interactive=\"core/image\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on-async--click=\"actions.showLightbox\" data-wp-on-async--load=\"callbacks.setButtonStyles\" data-wp-on-async-window--resize=\"callbacks.setButtonStyles\" data-id=\"18258\" src=\"https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-135950-0093-_web2k.jpg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-18258\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-135950-0093-_web2k.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-135950-0093-_web2k.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-135950-0093-_web2k.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-135950-0093-_web2k.jpg?resize=1536%2C1025&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-135950-0093-_web2k.jpg?w=2000&amp;ssl=1 2000w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			aria-label=\"Enlarge image\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on-async--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.imageButtonRight\"\n			data-wp-style--top=\"state.imageButtonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6797cbff44af9&quot;}\" data-wp-interactive=\"core/image\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on-async--click=\"actions.showLightbox\" data-wp-on-async--load=\"callbacks.setButtonStyles\" data-wp-on-async-window--resize=\"callbacks.setButtonStyles\" data-id=\"18240\" src=\"https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-142237-0135-_web2k.jpg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-18240\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-142237-0135-_web2k.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-142237-0135-_web2k.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-142237-0135-_web2k.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-142237-0135-_web2k.jpg?resize=1536%2C1025&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-142237-0135-_web2k.jpg?w=2000&amp;ssl=1 2000w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			aria-label=\"Enlarge image\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on-async--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.imageButtonRight\"\n			data-wp-style--top=\"state.imageButtonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6797cbff44dd1&quot;}\" data-wp-interactive=\"core/image\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on-async--click=\"actions.showLightbox\" data-wp-on-async--load=\"callbacks.setButtonStyles\" data-wp-on-async-window--resize=\"callbacks.setButtonStyles\" data-id=\"18260\" src=\"https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-181648-7911-_web2k.jpg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-18260\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-181648-7911-_web2k.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-181648-7911-_web2k.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-181648-7911-_web2k.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-181648-7911-_web2k.jpg?resize=1536%2C1025&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-181648-7911-_web2k.jpg?w=2000&amp;ssl=1 2000w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			aria-label=\"Enlarge image\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on-async--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.imageButtonRight\"\n			data-wp-style--top=\"state.imageButtonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6797cbff450ab&quot;}\" data-wp-interactive=\"core/image\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on-async--click=\"actions.showLightbox\" data-wp-on-async--load=\"callbacks.setButtonStyles\" data-wp-on-async-window--resize=\"callbacks.setButtonStyles\" data-id=\"18251\" src=\"https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-203524-8925-_web2k.jpg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-18251\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-203524-8925-_web2k.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-203524-8925-_web2k.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-203524-8925-_web2k.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-203524-8925-_web2k.jpg?resize=1536%2C1025&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-203524-8925-_web2k.jpg?w=2000&amp;ssl=1 2000w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			aria-label=\"Enlarge image\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on-async--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.imageButtonRight\"\n			data-wp-style--top=\"state.imageButtonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6797cbff4534d&quot;}\" data-wp-interactive=\"core/image\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"683\" height=\"1024\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on-async--click=\"actions.showLightbox\" data-wp-on-async--load=\"callbacks.setButtonStyles\" data-wp-on-async-window--resize=\"callbacks.setButtonStyles\" data-id=\"18229\" src=\"https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-190404-0124_web2k.jpg?resize=683%2C1024&#038;ssl=1\" alt=\"\" class=\"wp-image-18229\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-190404-0124_web2k.jpg?resize=683%2C1024&amp;ssl=1 683w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-190404-0124_web2k.jpg?resize=200%2C300&amp;ssl=1 200w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-190404-0124_web2k.jpg?resize=768%2C1151&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-190404-0124_web2k.jpg?resize=1025%2C1536&amp;ssl=1 1025w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-190404-0124_web2k.jpg?w=1334&amp;ssl=1 1334w\" sizes=\"auto, (max-width: 683px) 100vw, 683px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			aria-label=\"Enlarge image\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on-async--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.imageButtonRight\"\n			data-wp-style--top=\"state.imageButtonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6797cbff455eb&quot;}\" data-wp-interactive=\"core/image\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on-async--click=\"actions.showLightbox\" data-wp-on-async--load=\"callbacks.setButtonStyles\" data-wp-on-async-window--resize=\"callbacks.setButtonStyles\" data-id=\"18230\" src=\"https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-193131-0170_web2k.jpg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-18230\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-193131-0170_web2k.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-193131-0170_web2k.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-193131-0170_web2k.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-193131-0170_web2k.jpg?resize=1536%2C1025&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-193131-0170_web2k.jpg?w=2000&amp;ssl=1 2000w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			aria-label=\"Enlarge image\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on-async--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.imageButtonRight\"\n			data-wp-style--top=\"state.imageButtonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6797cbff45894&quot;}\" data-wp-interactive=\"core/image\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on-async--click=\"actions.showLightbox\" data-wp-on-async--load=\"callbacks.setButtonStyles\" data-wp-on-async-window--resize=\"callbacks.setButtonStyles\" data-id=\"18233\" src=\"https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-194151-8562-_web2k.jpg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-18233\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-194151-8562-_web2k.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-194151-8562-_web2k.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-194151-8562-_web2k.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-194151-8562-_web2k.jpg?resize=1536%2C1025&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-194151-8562-_web2k.jpg?w=2000&amp;ssl=1 2000w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			aria-label=\"Enlarge image\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on-async--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.imageButtonRight\"\n			data-wp-style--top=\"state.imageButtonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6797cbff45b51&quot;}\" data-wp-interactive=\"core/image\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on-async--click=\"actions.showLightbox\" data-wp-on-async--load=\"callbacks.setButtonStyles\" data-wp-on-async-window--resize=\"callbacks.setButtonStyles\" data-id=\"18236\" src=\"https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-194444-0195_web2k.jpg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-18236\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-194444-0195_web2k.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-194444-0195_web2k.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-194444-0195_web2k.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-194444-0195_web2k.jpg?resize=1536%2C1025&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-194444-0195_web2k.jpg?w=2000&amp;ssl=1 2000w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			aria-label=\"Enlarge image\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on-async--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.imageButtonRight\"\n			data-wp-style--top=\"state.imageButtonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6797cbff45e87&quot;}\" data-wp-interactive=\"core/image\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"683\" height=\"1024\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on-async--click=\"actions.showLightbox\" data-wp-on-async--load=\"callbacks.setButtonStyles\" data-wp-on-async-window--resize=\"callbacks.setButtonStyles\" data-id=\"18231\" src=\"https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-200909-0238_web2k.jpg?resize=683%2C1024&#038;ssl=1\" alt=\"\" class=\"wp-image-18231\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-200909-0238_web2k.jpg?resize=683%2C1024&amp;ssl=1 683w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-200909-0238_web2k.jpg?resize=200%2C300&amp;ssl=1 200w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-200909-0238_web2k.jpg?resize=768%2C1151&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-200909-0238_web2k.jpg?resize=1025%2C1536&amp;ssl=1 1025w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-200909-0238_web2k.jpg?w=1334&amp;ssl=1 1334w\" sizes=\"auto, (max-width: 683px) 100vw, 683px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			aria-label=\"Enlarge image\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on-async--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.imageButtonRight\"\n			data-wp-style--top=\"state.imageButtonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6797cbff4615f&quot;}\" data-wp-interactive=\"core/image\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on-async--click=\"actions.showLightbox\" data-wp-on-async--load=\"callbacks.setButtonStyles\" data-wp-on-async-window--resize=\"callbacks.setButtonStyles\" data-id=\"18228\" src=\"https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-200404-0226_web2k.jpg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-18228\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-200404-0226_web2k.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-200404-0226_web2k.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-200404-0226_web2k.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-200404-0226_web2k.jpg?resize=1536%2C1025&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-200404-0226_web2k.jpg?w=2000&amp;ssl=1 2000w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			aria-label=\"Enlarge image\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on-async--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.imageButtonRight\"\n			data-wp-style--top=\"state.imageButtonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6797cbff4642c&quot;}\" data-wp-interactive=\"core/image\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on-async--click=\"actions.showLightbox\" data-wp-on-async--load=\"callbacks.setButtonStyles\" data-wp-on-async-window--resize=\"callbacks.setButtonStyles\" data-id=\"18272\" src=\"https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-210737-9358-_web2k.jpg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-18272\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-210737-9358-_web2k.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-210737-9358-_web2k.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-210737-9358-_web2k.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-210737-9358-_web2k.jpg?resize=1536%2C1025&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-210737-9358-_web2k.jpg?w=2000&amp;ssl=1 2000w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			aria-label=\"Enlarge image\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on-async--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.imageButtonRight\"\n			data-wp-style--top=\"state.imageButtonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6797cbff466f8&quot;}\" data-wp-interactive=\"core/image\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on-async--click=\"actions.showLightbox\" data-wp-on-async--load=\"callbacks.setButtonStyles\" data-wp-on-async-window--resize=\"callbacks.setButtonStyles\" data-id=\"18305\" src=\"https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-211905-9455-_web2k.jpg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-18305\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-211905-9455-_web2k.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-211905-9455-_web2k.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-211905-9455-_web2k.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-211905-9455-_web2k.jpg?resize=1536%2C1025&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-211905-9455-_web2k.jpg?w=2000&amp;ssl=1 2000w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			aria-label=\"Enlarge image\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on-async--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.imageButtonRight\"\n			data-wp-style--top=\"state.imageButtonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6797cbff469cf&quot;}\" data-wp-interactive=\"core/image\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on-async--click=\"actions.showLightbox\" data-wp-on-async--load=\"callbacks.setButtonStyles\" data-wp-on-async-window--resize=\"callbacks.setButtonStyles\" data-id=\"18269\" src=\"https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-204404-9012-_web2k.jpg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-18269\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-204404-9012-_web2k.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-204404-9012-_web2k.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-204404-9012-_web2k.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-204404-9012-_web2k.jpg?resize=1536%2C1025&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-204404-9012-_web2k.jpg?w=2000&amp;ssl=1 2000w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			aria-label=\"Enlarge image\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on-async--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.imageButtonRight\"\n			data-wp-style--top=\"state.imageButtonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6797cbff46c9c&quot;}\" data-wp-interactive=\"core/image\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on-async--click=\"actions.showLightbox\" data-wp-on-async--load=\"callbacks.setButtonStyles\" data-wp-on-async-window--resize=\"callbacks.setButtonStyles\" data-id=\"18257\" src=\"https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-204317-8995-_web2k.jpg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-18257\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-204317-8995-_web2k.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-204317-8995-_web2k.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-204317-8995-_web2k.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-204317-8995-_web2k.jpg?resize=1536%2C1025&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-204317-8995-_web2k.jpg?w=2000&amp;ssl=1 2000w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			aria-label=\"Enlarge image\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on-async--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.imageButtonRight\"\n			data-wp-style--top=\"state.imageButtonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6797cbff46f8a&quot;}\" data-wp-interactive=\"core/image\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on-async--click=\"actions.showLightbox\" data-wp-on-async--load=\"callbacks.setButtonStyles\" data-wp-on-async-window--resize=\"callbacks.setButtonStyles\" data-id=\"18271\" src=\"https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-210835-9366-_web2k.jpg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-18271\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-210835-9366-_web2k.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-210835-9366-_web2k.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-210835-9366-_web2k.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-210835-9366-_web2k.jpg?resize=1536%2C1025&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-210835-9366-_web2k.jpg?w=2000&amp;ssl=1 2000w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			aria-label=\"Enlarge image\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on-async--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.imageButtonRight\"\n			data-wp-style--top=\"state.imageButtonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6797cbff4729b&quot;}\" data-wp-interactive=\"core/image\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on-async--click=\"actions.showLightbox\" data-wp-on-async--load=\"callbacks.setButtonStyles\" data-wp-on-async-window--resize=\"callbacks.setButtonStyles\" data-id=\"18279\" src=\"https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-212042-9462-_web2k.jpg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-18279\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-212042-9462-_web2k.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-212042-9462-_web2k.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-212042-9462-_web2k.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-212042-9462-_web2k.jpg?resize=1536%2C1025&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-212042-9462-_web2k.jpg?w=2000&amp;ssl=1 2000w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			aria-label=\"Enlarge image\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on-async--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.imageButtonRight\"\n			data-wp-style--top=\"state.imageButtonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6797cbff475b9&quot;}\" data-wp-interactive=\"core/image\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on-async--click=\"actions.showLightbox\" data-wp-on-async--load=\"callbacks.setButtonStyles\" data-wp-on-async-window--resize=\"callbacks.setButtonStyles\" data-id=\"18275\" src=\"https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-210855-9369-_web2k.jpg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-18275\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-210855-9369-_web2k.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-210855-9369-_web2k.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-210855-9369-_web2k.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-210855-9369-_web2k.jpg?resize=1536%2C1025&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-210855-9369-_web2k.jpg?w=2000&amp;ssl=1 2000w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			aria-label=\"Enlarge image\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on-async--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.imageButtonRight\"\n			data-wp-style--top=\"state.imageButtonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6797cbff478bc&quot;}\" data-wp-interactive=\"core/image\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on-async--click=\"actions.showLightbox\" data-wp-on-async--load=\"callbacks.setButtonStyles\" data-wp-on-async-window--resize=\"callbacks.setButtonStyles\" data-id=\"18265\" src=\"https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-204253-8984-_web2k.jpg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-18265\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-204253-8984-_web2k.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-204253-8984-_web2k.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-204253-8984-_web2k.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-204253-8984-_web2k.jpg?resize=1536%2C1025&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-204253-8984-_web2k.jpg?w=2000&amp;ssl=1 2000w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			aria-label=\"Enlarge image\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on-async--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.imageButtonRight\"\n			data-wp-style--top=\"state.imageButtonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6797cbff47be2&quot;}\" data-wp-interactive=\"core/image\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on-async--click=\"actions.showLightbox\" data-wp-on-async--load=\"callbacks.setButtonStyles\" data-wp-on-async-window--resize=\"callbacks.setButtonStyles\" data-id=\"18282\" src=\"https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-213938-9563-_web2k.jpg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-18282\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-213938-9563-_web2k.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-213938-9563-_web2k.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-213938-9563-_web2k.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-213938-9563-_web2k.jpg?resize=1536%2C1025&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-213938-9563-_web2k.jpg?w=2000&amp;ssl=1 2000w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			aria-label=\"Enlarge image\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on-async--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.imageButtonRight\"\n			data-wp-style--top=\"state.imageButtonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6797cbff47ef6&quot;}\" data-wp-interactive=\"core/image\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on-async--click=\"actions.showLightbox\" data-wp-on-async--load=\"callbacks.setButtonStyles\" data-wp-on-async-window--resize=\"callbacks.setButtonStyles\" data-id=\"18280\" src=\"https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-213231-9494-_web2k.jpg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-18280\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-213231-9494-_web2k.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-213231-9494-_web2k.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-213231-9494-_web2k.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-213231-9494-_web2k.jpg?resize=1536%2C1025&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-213231-9494-_web2k.jpg?w=2000&amp;ssl=1 2000w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			aria-label=\"Enlarge image\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on-async--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.imageButtonRight\"\n			data-wp-style--top=\"state.imageButtonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6797cbff48201&quot;}\" data-wp-interactive=\"core/image\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on-async--click=\"actions.showLightbox\" data-wp-on-async--load=\"callbacks.setButtonStyles\" data-wp-on-async-window--resize=\"callbacks.setButtonStyles\" data-id=\"18268\" src=\"https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-213105-9483-_web2k.jpg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-18268\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-213105-9483-_web2k.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-213105-9483-_web2k.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-213105-9483-_web2k.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-213105-9483-_web2k.jpg?resize=1536%2C1025&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-213105-9483-_web2k.jpg?w=2000&amp;ssl=1 2000w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			aria-label=\"Enlarge image\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on-async--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.imageButtonRight\"\n			data-wp-style--top=\"state.imageButtonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6797cbff4850c&quot;}\" data-wp-interactive=\"core/image\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on-async--click=\"actions.showLightbox\" data-wp-on-async--load=\"callbacks.setButtonStyles\" data-wp-on-async-window--resize=\"callbacks.setButtonStyles\" data-id=\"18266\" src=\"https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-213722-60568-_web2k.jpg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-18266\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-213722-60568-_web2k.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-213722-60568-_web2k.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-213722-60568-_web2k.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-213722-60568-_web2k.jpg?resize=1536%2C1025&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-213722-60568-_web2k.jpg?w=2000&amp;ssl=1 2000w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			aria-label=\"Enlarge image\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on-async--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.imageButtonRight\"\n			data-wp-style--top=\"state.imageButtonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6797cbff4882b&quot;}\" data-wp-interactive=\"core/image\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on-async--click=\"actions.showLightbox\" data-wp-on-async--load=\"callbacks.setButtonStyles\" data-wp-on-async-window--resize=\"callbacks.setButtonStyles\" data-id=\"18281\" src=\"https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-213349-60543-_web2k.jpg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-18281\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-213349-60543-_web2k.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-213349-60543-_web2k.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-213349-60543-_web2k.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-213349-60543-_web2k.jpg?resize=1536%2C1025&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2024/12/20241216-Automattic-213349-60543-_web2k.jpg?w=2000&amp;ssl=1 2000w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			aria-label=\"Enlarge image\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on-async--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.imageButtonRight\"\n			data-wp-style--top=\"state.imageButtonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n</figure>\n\n\n\n<p>For those interested in exploring past State of the Word keynotes, WordPress has curated a comprehensive YouTube playlist featuring keynotes from previous years. Watch them all here:<a href=\"https://www.youtube.com/playlist?list=PL1pJFUVKQ7ES1piZxljCvMTJCYpVBnwYU\" target=\"_blank\" rel=\"noreferrer noopener\"> State of the Word YouTube Playlist</a>. Be sure to mark your calendars for major WordPress events in 2025: <a href=\"https://asia.wordcamp.org/2025/\" target=\"_blank\" rel=\"noreferrer noopener\">WordCamp Asia</a> (Manila, Philippines), <a href=\"https://europe.wordcamp.org/2025/\" target=\"_blank\" rel=\"noreferrer noopener\">WordCamp Europe</a> (Basel, Switzerland), and <a href=\"https://us.wordcamp.org/2025/\" target=\"_blank\" rel=\"noreferrer noopener\">WordCamp US</a> (Portland, Oregon, USA).</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"18205\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:57:\"\n		\n		\n		\n		\n		\n				\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"Write Books With the Block Editor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2024/12/write-books-with-the-block-editor/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 16 Dec 2024 08:36:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=18176\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:327:\"If you need a little push to start writing this winter, in the comfort of your familiar editor, here it is! You can now use the Block Editor to create electronic books and other documents—all completely offline. What a full circle moment for Gutenberg! The Block Editor contains so many features I miss when writing [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Ella\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:6919:\"\n<p>If you need a little push to start writing this winter, in the comfort of your familiar editor, here it is! You can now use the Block Editor to create electronic books and other documents—all completely offline. What a full circle moment for Gutenberg!</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"711\" src=\"https://i0.wp.com/wordpress.org/news/files/2024/12/Screenshot-2024-12-10-at-09.35.01.png?resize=1024%2C711&#038;ssl=1\" alt=\"\" class=\"wp-image-18179\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2024/12/Screenshot-2024-12-10-at-09.35.01.png?resize=1024%2C711&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2024/12/Screenshot-2024-12-10-at-09.35.01.png?resize=300%2C208&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2024/12/Screenshot-2024-12-10-at-09.35.01.png?resize=768%2C533&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2024/12/Screenshot-2024-12-10-at-09.35.01.png?resize=1536%2C1067&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2024/12/Screenshot-2024-12-10-at-09.35.01.png?resize=2048%2C1422&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p>The Block Editor contains so many features I miss when writing in other editors. It produces clean, semantic markup. You can paste in content from anywhere and the editor will clean it up for you, or paste a link onto selected text to auto-link. The List View and Outline panels allow you to easily navigate and inspect the content. And we’re constantly iterating on the Block Editor: more features and improvements are on the way, such as refined drag and drop interactions coming in early 2025.</p>\n\n\n\n<p>All this inspired me to wrap our editor in an app that can read and write local files—just as other document editors do. It turns out that EPUB is the best file format to store the content, because EPUB is an open standard for e-books that is essentially a ZIP file containing HTML and media—HTML like your WordPress posts!</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"560\" src=\"https://i0.wp.com/wordpress.org/news/files/2024/12/Screenshot-2024-12-03-at-23.34.36.png?resize=1024%2C560&#038;ssl=1\" alt=\"\" class=\"wp-image-18180\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2024/12/Screenshot-2024-12-03-at-23.34.36.png?resize=1024%2C560&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2024/12/Screenshot-2024-12-03-at-23.34.36.png?resize=300%2C164&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2024/12/Screenshot-2024-12-03-at-23.34.36.png?resize=768%2C420&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2024/12/Screenshot-2024-12-03-at-23.34.36.png?resize=1536%2C839&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2024/12/Screenshot-2024-12-03-at-23.34.36.png?resize=2048%2C1119&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p>And just like that, the WordPress Block Editor can also be used to write books! The cool thing about EPUB files is that any e-book app, such as Kindle and Apple Books, can open it. So even if someone doesn’t have this editor, they can still easily read the content, which makes the files it produces portable.</p>\n\n\n\n<p>The editor allows you to create a cover, so you can easily distinguish between the books or documents you write. It will also treat each heading as a chapter so you can easily navigate content when opened in an e-book reader.</p>\n\n\n\n<div class=\"wp-block-columns alignfull is-layout-flex wp-container-core-columns-is-layout-1 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:60%\">\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"793\" src=\"https://i0.wp.com/wordpress.org/news/files/2024/12/Screenshot-2024-12-03-at-23.27.56.png?resize=1024%2C793&#038;ssl=1\" alt=\"\" class=\"wp-image-18181\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2024/12/Screenshot-2024-12-03-at-23.27.56.png?resize=1024%2C793&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2024/12/Screenshot-2024-12-03-at-23.27.56.png?resize=300%2C232&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2024/12/Screenshot-2024-12-03-at-23.27.56.png?resize=768%2C595&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2024/12/Screenshot-2024-12-03-at-23.27.56.png?resize=1536%2C1190&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2024/12/Screenshot-2024-12-03-at-23.27.56.png?resize=2048%2C1586&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:40%\">\n<figure class=\"wp-block-image aligncenter size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"768\" height=\"1024\" src=\"https://i0.wp.com/wordpress.org/news/files/2024/12/screenshot_2024_12_11T12_00_190100.png?resize=768%2C1024&#038;ssl=1\" alt=\"\" class=\"wp-image-18178\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2024/12/screenshot_2024_12_11T12_00_190100.png?resize=768%2C1024&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2024/12/screenshot_2024_12_11T12_00_190100.png?resize=225%2C300&amp;ssl=1 225w, https://i0.wp.com/wordpress.org/news/files/2024/12/screenshot_2024_12_11T12_00_190100.png?resize=1152%2C1536&amp;ssl=1 1152w, https://i0.wp.com/wordpress.org/news/files/2024/12/screenshot_2024_12_11T12_00_190100.png?w=1236&amp;ssl=1 1236w\" sizes=\"auto, (max-width: 768px) 100vw, 768px\" /></figure>\n</div>\n</div>\n\n\n\n<p>The term “book” should be taken broadly. While the file that the Block Editor produces is primarily used for e-books, you can create any document with it. It’s possible to export your document to a DOCX file in case you need it, though the more complex blocks are not supported yet.</p>\n\n\n\n<p>It is still very much a nascent project. There’s many features left to be added, such as revisions and the ability to open any externally created EPUB files, or even DOCX files, so keep an eye out for these in the coming weeks and months! If you’re interested in this editor, it’s all <a href=\"https://github.com/block-editors/blockdocs\">open source</a>, and I welcome any kind of help.</p>\n\n\n\n<p>For now, the <a href=\"https://block-editors.github.io/blockdocs/\">demo editor</a> is installable as a Progressive Web App (PWA) in Chrome. While it’s totally usable without installation, it does give you some nice benefits such as allowing you to open the EPUB files directly from your OS. In the future we might wrap it in proper native apps. Your feedback is welcome on <a href=\"https://github.com/block-editors/blockdocs\">GitHub</a>!</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"18176\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:57:\"\n		\n		\n		\n		\n		\n				\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"Openverse.org: A Sight for Sore Eyes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2024/12/openverse-org-a-sight-for-sore-eyes/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 11 Dec 2024 17:45:50 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=18168\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:378:\"Openverse.org, the vibrant platform for openly licensed media, has introduced a sleek and modern Dark Mode feature. This new site theme is designed to enhance users&#8217; comfort and style as they explore the extensive library of creative resources. Whether for late-night browsing or simply a preference for darker aesthetics, Dark Mode makes engaging with Openverse [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Brett McSherry\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:7308:\"\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"576\" src=\"https://i0.wp.com/wordpress.org/news/files/2024/12/Dark-home-with-yellow-background.png?resize=1024%2C576&#038;ssl=1\" alt=\"\" class=\"wp-image-18196\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2024/12/Dark-home-with-yellow-background.png?resize=1024%2C576&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2024/12/Dark-home-with-yellow-background.png?resize=300%2C169&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2024/12/Dark-home-with-yellow-background.png?resize=768%2C432&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2024/12/Dark-home-with-yellow-background.png?resize=1536%2C864&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2024/12/Dark-home-with-yellow-background.png?resize=2048%2C1152&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p><a href=\"https://openverse.org/\">Openverse.org</a>, the vibrant platform for openly licensed media, has introduced a sleek and modern Dark Mode feature. This new site theme is designed to enhance users&#8217; comfort and style as they explore the extensive library of creative resources. Whether for late-night browsing or simply a preference for darker aesthetics, Dark Mode makes engaging with Openverse easier on the eyes and more personalized than ever.</p>\n\n\n\n<p>By reducing screen brightness in low-light settings, Dark Mode offers a more relaxed viewing experience, helping to minimize eye strain. It also caters to users with light sensitivity, creating a more inclusive browsing environment. This thoughtful addition underscores Openverse’s commitment to delivering tools that are as functional as they are visually appealing.</p>\n\n\n\n<div class=\"wp-block-jetpack-slideshow\" data-effect=\"slide\"><div class=\"wp-block-jetpack-slideshow_container swiper-container\"><ul class=\"wp-block-jetpack-slideshow_swiper-wrapper swiper-wrapper\"><li class=\"wp-block-jetpack-slideshow_slide swiper-slide\"><figure><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"573\" alt=\"\" class=\"wp-block-jetpack-slideshow_image wp-image-18188\" data-id=\"18188\" src=\"https://i0.wp.com/wordpress.org/news/files/2024/12/Audio-results-and-player-2.png?resize=1024%2C573&#038;ssl=1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2024/12/Audio-results-and-player-2.png?resize=1024%2C573&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2024/12/Audio-results-and-player-2.png?resize=300%2C168&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2024/12/Audio-results-and-player-2.png?resize=768%2C430&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2024/12/Audio-results-and-player-2.png?resize=1536%2C860&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2024/12/Audio-results-and-player-2.png?resize=2048%2C1147&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure></li><li class=\"wp-block-jetpack-slideshow_slide swiper-slide\"><figure><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"545\" alt=\"\" class=\"wp-block-jetpack-slideshow_image wp-image-18189\" data-id=\"18189\" src=\"https://i0.wp.com/wordpress.org/news/files/2024/12/Search-results-switcher-2.png?resize=1024%2C545&#038;ssl=1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2024/12/Search-results-switcher-2.png?resize=1024%2C545&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2024/12/Search-results-switcher-2.png?resize=300%2C160&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2024/12/Search-results-switcher-2.png?resize=768%2C409&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2024/12/Search-results-switcher-2.png?resize=1536%2C817&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2024/12/Search-results-switcher-2.png?resize=2048%2C1090&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure></li><li class=\"wp-block-jetpack-slideshow_slide swiper-slide\"><figure><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"553\" alt=\"\" class=\"wp-block-jetpack-slideshow_image wp-image-18195\" data-id=\"18195\" src=\"https://i0.wp.com/wordpress.org/news/files/2024/12/Audio-single-page.png?resize=1024%2C553&#038;ssl=1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2024/12/Audio-single-page.png?resize=1024%2C553&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2024/12/Audio-single-page.png?resize=300%2C162&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2024/12/Audio-single-page.png?resize=768%2C415&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2024/12/Audio-single-page.png?resize=1536%2C829&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2024/12/Audio-single-page.png?resize=2048%2C1106&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure></li></ul><a class=\"wp-block-jetpack-slideshow_button-prev swiper-button-prev swiper-button-white\" role=\"button\"></a><a class=\"wp-block-jetpack-slideshow_button-next swiper-button-next swiper-button-white\" role=\"button\"></a><a aria-label=\"Pause Slideshow\" class=\"wp-block-jetpack-slideshow_button-pause\" role=\"button\"></a><div class=\"wp-block-jetpack-slideshow_pagination swiper-pagination swiper-pagination-white\"></div></div></div>\n\n\n\n<p>The release of Dark Mode is part of Openverse’s broader effort to innovate and adapt to the needs of its growing community. From the thoughtful interface design to the careful attention to accessibility, every detail was crafted to reflect Openverse’s mission of empowering creativity. By embracing modern frontend implementations like Dark Mode without compromising usability or accessibility, Openverse continues to grow while honoring the brand’s essence. In addition, this update lays the groundwork for future developments aimed at providing even more customization options and improved user experiences.</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p><em>“Dark Mode marks an exciting step forward for Openverse. We designed and implemented a new user interface that keeps the brand&#8217;s essence while providing the same search experience. We’re thrilled to see how this feature fits within users&#8217; preferences and enhances the creative journey.”&nbsp; – Francisco Vera. Designer</em></p>\n</blockquote>\n\n\n\n<p></p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"576\" src=\"https://i0.wp.com/wordpress.org/news/files/2024/12/Theme-switcher-flow.gif?resize=1024%2C576&#038;ssl=1\" alt=\"\" class=\"wp-image-18174\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2024/12/Theme-switcher-flow.gif?resize=1024%2C576&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2024/12/Theme-switcher-flow.gif?resize=300%2C169&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2024/12/Theme-switcher-flow.gif?resize=768%2C432&amp;ssl=1 768w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p>Ready to explore Openverse in a whole new light? Head to <a href=\"https://openverse.org/\">Openverse.org</a> today and look for the Dark Mode toggle in the site footer.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"18168\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:57:\"\n		\n		\n		\n		\n		\n				\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"WordPress 6.7.1 Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2024/11/wordpress-6-7-1-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 21 Nov 2024 14:56:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=18096\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:349:\"WordPress 6.7.1 is now available! This minor release features 16 bug fixes throughout Core and the Block Editor. WordPress 6.7.1 is a fast-follow release with a strict focus on bugs introduced in WordPress 6.7. The next major release will be version 6.8, planned for April 2025. If you have sites that support automatic background updates, [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Jonathan Desrosiers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:8649:\"\n<h2 class=\"wp-block-heading\">WordPress 6.7.1 is now available!</h2>\n\n\n\n<p>This minor release features 16 bug fixes <a href=\"https://core.trac.wordpress.org/query?resolution=fixed&amp;milestone=6.7.1&amp;group=component&amp;col=id&amp;col=summary&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=status&amp;col=priority&amp;order=priority\">throughout Core</a> and <a href=\"https://github.com/WordPress/wordpress-develop/pull/7851\">the Block Editor</a>.</p>\n\n\n\n<p>WordPress 6.7.1 is a fast-follow release with a strict focus on bugs introduced in WordPress 6.7. The next major release will be <a href=\"https://make.wordpress.org/core/6-8/\">version 6.8</a>, <a href=\"https://make.wordpress.org/core/2024/11/19/proposal-major-releases-for-2025/\">planned for April 2025</a>.</p>\n\n\n\n<p>If you have sites that support automatic background updates, the update process will begin automatically.</p>\n\n\n\n<p>You can <a href=\"https://wordpress.org/wordpress-6.7.1.zip\">download WordPress 6.7.1 from WordPress.org</a>, or visit your WordPress Dashboard, click “Updates”, and then click “Update Now”.</p>\n\n\n\n<p>For more information on this release, please <a href=\"https://wordpress.org/support/wordpress-version/version-6-7-1\">visit the HelpHub site</a>. You can find a summary of the maintenance updates in this release in the <a href=\"https://make.wordpress.org/core/?p=116365\">Release Candidate announcement</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Thank you to these WordPress contributors</h2>\n\n\n\n<p class=\"is-style-default\">This release was led by <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a> and <a href=\"https://profiles.wordpress.org/cbravobernal/\">Carlos Bravo</a>.</p>\n\n\n\n<p class=\"is-style-default\">WordPress 6.7.1 would not have been possible without the contributions of the following people. Their asynchronous coordination to deliver maintenance fixes into a stable release is a testament to the power and capability of the WordPress community.</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/abcsun/\">abcsun</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/ahsankhan316/\">Ahsan Khan</a>, <a href=\"https://profiles.wordpress.org/wildworks/\">Aki Hamano</a>, <a href=\"https://profiles.wordpress.org/albigdd/\">Alexander Bigga</a>, <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/ankitkumarshah/\">Ankit Kumar Shah</a>, <a href=\"https://profiles.wordpress.org/ant1busted/\">Antoine</a>, <a href=\"https://profiles.wordpress.org/bluantinoo/\">bluantinoo</a>, <a href=\"https://profiles.wordpress.org/cbravobernal/\">Carlos Bravo</a>, <a href=\"https://profiles.wordpress.org/poena/\">Carolina Nymark</a>, <a href=\"https://profiles.wordpress.org/charleslf/\">charleslf</a>, <a href=\"https://profiles.wordpress.org/apermo/\">Christoph Daum</a>, <a href=\"https://profiles.wordpress.org/get_dave/\">David Smith</a>, <a href=\"https://profiles.wordpress.org/dhewercorus/\">dhewercorus</a>, <a href=\"https://profiles.wordpress.org/dhruvang21/\">Dhruvang21</a>, <a href=\"https://profiles.wordpress.org/dilipbheda/\">Dilip Bheda</a>, <a href=\"https://profiles.wordpress.org/dooperweb/\">dooperweb</a>, <a href=\"https://profiles.wordpress.org/im3dabasia1/\">Eshaan Dabasiya</a>, <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/finntown/\">finntown</a>, <a href=\"https://profiles.wordpress.org/firoz2456/\">Firoz Sabaliya</a>, <a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a>, <a href=\"https://profiles.wordpress.org/glynnquelch/\">glynnquelch</a>, <a href=\"https://profiles.wordpress.org/gziolo/\">Greg Ziółkowski</a>, <a href=\"https://profiles.wordpress.org/abcd95/\">Himanshu Pathak</a>, <a href=\"https://profiles.wordpress.org/jagirbahesh/\">jagirbahesh</a>, <a href=\"https://profiles.wordpress.org/jsnajdr/\">Jarda Snajdr</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/jeffpaul/\">Jeffrey Paul</a>, <a href=\"https://profiles.wordpress.org/joedolson/\">Joe Dolson</a>, <a href=\"https://profiles.wordpress.org/joemcgill/\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/jonsurrell/\">Jon Surrell</a>, <a href=\"https://profiles.wordpress.org/juliemoynat/\">Julie Moynat</a>, <a href=\"https://profiles.wordpress.org/juliobox/\">Julio Potier</a>, <a href=\"https://profiles.wordpress.org/laurelfulford/\">laurelfulford</a>, <a href=\"https://profiles.wordpress.org/leecollings/\">Lee Collings</a>, <a href=\"https://profiles.wordpress.org/0mirka00/\">Lena Morita</a>, <a href=\"https://profiles.wordpress.org/luisherranz/\">luisherranz</a>, <a href=\"https://profiles.wordpress.org/mmaattiiaass/\">Matias Benedetto</a>, <a href=\"https://profiles.wordpress.org/mayanktripathi32/\">Mayank Tripathi</a>, <a href=\"https://profiles.wordpress.org/czapla/\">Michal Czaplinski</a>, <a href=\"https://profiles.wordpress.org/mcsf/\">Miguel Fonseca</a>, <a href=\"https://profiles.wordpress.org/369work/\">miroku</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/narenin/\">Narendra Sishodiya</a>, <a href=\"https://profiles.wordpress.org/ntsekouras/\">Nik Tsekouras</a>, <a href=\"https://profiles.wordpress.org/domainsupport/\">Oliver Campion</a>, <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/ramonopoly/\">ramonopoly</a>, <a href=\"https://profiles.wordpress.org/ravigadhiyawp/\">Ravi Gadhiya</a>, <a href=\"https://profiles.wordpress.org/rcreators/\">Rishi Mehta</a>, <a href=\"https://profiles.wordpress.org/room34/\">room34</a>, <a href=\"https://profiles.wordpress.org/roytanck/\">Roy Tanck</a>, <a href=\"https://profiles.wordpress.org/looswebstudio/\">Ryo</a>, <a href=\"https://profiles.wordpress.org/sailpete/\">sailpete</a>, <a href=\"https://profiles.wordpress.org/sainathpoojary/\">Sainath Poojary</a>, <a href=\"https://profiles.wordpress.org/sarthaknagoshe2002/\">Sarthak Nagoshe</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/sirlouen/\">SirLouen</a>, <a href=\"https://profiles.wordpress.org/sppramodh/\">S P Pramodh</a>, <a href=\"https://profiles.wordpress.org/sabernhardt/\">Stephen Bernhardt</a>, <a href=\"https://profiles.wordpress.org/stimul/\">stimul</a>, <a href=\"https://profiles.wordpress.org/sukhendu2002/\">Sukhendu Sekhar Guria</a>, <a href=\"https://profiles.wordpress.org/tigriweb/\">TigriWeb</a>, <a href=\"https://profiles.wordpress.org/timwhitlock/\">Tim W</a>, <a href=\"https://profiles.wordpress.org/tobifjellner/\">tobifjellner (Tor-Bjorn &#8220;Tobi&#8221; Fjellner)</a>, <a href=\"https://profiles.wordpress.org/twvania/\">Vania</a>, <a href=\"https://profiles.wordpress.org/yogeshbhutkar/\">Yogesh Bhutkar</a>, <a href=\"https://profiles.wordpress.org/yowangdu/\">YoWangdu</a>, <a href=\"https://profiles.wordpress.org/zargarov/\">Zargarov</a>, and <a href=\"https://profiles.wordpress.org/zeelthakkar/\">zeelthakkar</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">How to contribute</h2>\n\n\n\n<p>To get involved in WordPress core development, head over to Trac, <a href=\"https://core.trac.wordpress.org/report/6\">pick a ticket</a>, and join the conversation in the <a href=\"https://wordpress.slack.com/archives/C02RQBWTW\">#core</a> and <a href=\"https://wordpress.slack.com/archives/C080HLPP2Q6\">#6-8-release-leads</a> channels. Need help? Check out the <a href=\"https://make.wordpress.org/core/handbook/\">Core Contributor Handbook</a>.</p>\n\n\n\n<p class=\"has-text-align-right\"><em>Thanks to <a href=\'https://profiles.wordpress.org/marybaum/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>marybaum</a>, <a href=\'https://profiles.wordpress.org/aaroncampbell/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>aaroncampbell</a>, <a href=\'https://profiles.wordpress.org/jeffpaul/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>jeffpaul</a>, <a href=\'https://profiles.wordpress.org/audrasjb/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>audrasjb</a>, <a href=\'https://profiles.wordpress.org/cbravobernal/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>cbravobernal</a>, <a href=\'https://profiles.wordpress.org/ankit-k-gupta/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>ankit-k-gupta</a> for proofreading.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"18096\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:66:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"WordPress 6.7 “Rollins”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"https://wordpress.org/news/2024/11/rollins/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 12 Nov 2024 21:35:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"6.7\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:8:\"releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=18066\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:422:\"WordPress 6.7, code-named \'Rollins,\' celebrates legendary jazz saxophonist Sonny Rollins and debuts the sleek, versatile Twenty Twenty-Five theme, designed for any blog, any scale. Dive into new font management features and gain a macro perspective on your site with the Zoom Out feature. Embrace the spirit of creativity and bold expression that defines Rollins\' music as you explore WordPress 6.7’s latest innovations.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:71731:\"\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"535\" src=\"https://i0.wp.com/wordpress.org/news/files/2024/11/Release-Edition-Featured-Image.png?resize=1024%2C535&#038;ssl=1\" alt=\"\" class=\"wp-image-18085\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2024/11/Release-Edition-Featured-Image.png?resize=1024%2C535&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2024/11/Release-Edition-Featured-Image.png?resize=300%2C157&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2024/11/Release-Edition-Featured-Image.png?resize=768%2C401&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2024/11/Release-Edition-Featured-Image.png?resize=1536%2C802&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2024/11/Release-Edition-Featured-Image.png?resize=2048%2C1070&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p>Each WordPress release celebrates an artist who has made an indelible mark on the world of music. WordPress 6.7, code-named &#8220;Rollins,&#8221; pays tribute to the legendary jazz saxophonist Sonny Rollins. Known as one of the greatest improvisers and pioneers in jazz, Rollins has influenced generations of musicians with his technical brilliance, innovative spirit, and fearless approach to musical expression.</p>\n\n\n\n<p>Sonny Rollins&#8217; work is characterized by its unmatched energy and emotional depth. His compositions, such as &#8220;St. Thomas,&#8221; &#8220;Oleo,&#8221; and &#8220;Airegin,&#8221; are timeless jazz standards, celebrated for their rhythmic complexity and melodic inventiveness. Rollins&#8217; bold and exploratory style resonates with WordPress&#8217; own commitment to empowering creators to push boundaries and explore new possibilities in digital expression.</p>\n\n\n\n<p>Embrace the spirit of innovation and spontaneity that defines Rollins&#8217; sound as you dive into the new features and enhancements of WordPress 6.7.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Welcome to WordPress 6.7!</h2>\n\n\n\n<p>WordPress 6.7 debuts the modern Twenty Twenty-Five theme, offering ultimate design flexibility for any blog at any scale. Control your site typography like never before with new font management features. The new Zoom Out feature lets you design your site with a macro view, stepping back from the details to bring the big picture to life.</p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\" href=\"https://wordpress.org/wordpress-6.7.zip\" target=\"_blank\" rel=\"noreferrer noopener\">Download WordPress 6.7 “Rollins”</a></div>\n</div>\n\n\n\n<h2 class=\"wp-block-heading\">Introducing Twenty Twenty-Five</h2>\n\n\n\n<h4 class=\"wp-block-heading\">Endless possibility without complexity</h4>\n\n\n\n<p>Twenty Twenty-Five offers a flexible, design-focused theme that lets you build stunning sites with ease. Tailor your aesthetic with an array of style options, block patterns, and color palettes. Pared down to the essentials, this is a theme that can truly grow with you.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" decoding=\"async\" src=\"https://i0.wp.com/s.w.org/images/core/6.7/feature-tt5-2.webp?ssl=1\" alt=\"\" style=\"object-fit:cover\" /></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Get the big picture with Zoom Out</h3>\n\n\n\n<h4 class=\"wp-block-heading\">Explore your content from a new perspective</h4>\n\n\n\n<p>Edit and arrange entire sections of your content like never before. A broader view of your site lets you add, edit, shuffle, or remove patterns to your liking. Embrace your inner architect.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" decoding=\"async\" src=\"https://i0.wp.com/s.w.org/images/core/6.7/feature-zoom-2.webp?ssl=1\" alt=\"\" /></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Connect blocks and custom fields with no hassle (or code)</h3>\n\n\n\n<h4 class=\"wp-block-heading\">A streamlined way to create dynamic content</h4>\n\n\n\n<p>This feature introduces a new UI for connecting blocks to custom fields, putting control of dynamic content directly in the editor. Link blocks with fields in just a few clicks, enhancing flexibility and efficiency when building. Your clients will love you—as if they didn&#8217;t already.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" decoding=\"async\" src=\"https://i0.wp.com/s.w.org/images/core/6.7/feature-block-bindings-2.webp?ssl=1\" alt=\"\" /></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Embrace your inner font nerd</h3>\n\n\n\n<h4 class=\"wp-block-heading\">New style section, new possibilities</h4>\n\n\n\n<p>Create, edit, remove, and apply font size presets with the next addition to the Styles interface. Override theme defaults or create your own custom font size, complete with fluid typography for responsive font scaling. Get into the details!</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" decoding=\"async\" src=\"https://i0.wp.com/s.w.org/images/core/6.7/feature-font-presets-2.png?ssl=1\" alt=\"\" /></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Performance</h3>\n\n\n\n<p>WordPress 6.7 delivers important performance updates, including faster pattern loading, optimized previews in the data views component, improved PHP 8+ support and removal of deprecated code, auto sizes for lazy-loaded images, and more efficient tag processing in the HTML API.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Accessibility</h3>\n\n\n\n<p>65+ accessibility fixes and enhancements focus on foundational aspects of the WordPress experience, from improving user interface components and keyboard navigation in the Editor, to an accessible heading on WordPress login screens and clearer labeling throughout.</p>\n\n\n\n<h3 class=\"wp-block-heading\">And much more</h3>\n\n\n\n<p>For a comprehensive overview of all the new features and enhancements in WordPress 6.7, please visit the feature-showcase website.</p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\" href=\"https://wordpress.org/download/releases/6-7/\">Check out what&#8217;s new</a></div>\n</div>\n\n\n\n<h2 class=\"wp-block-heading\">Learn more about WordPress 6.7</h2>\n\n\n\n<p><a href=\"https://learn.wordpress.org/\">Learn WordPress</a> is a free resource for new and experienced WordPress users. Learn is stocked with how-to videos on using various features in WordPress, <a href=\"https://learn.wordpress.org/social-learning/\">interactive workshops</a> for exploring topics in-depth, and lesson plans for diving deep into specific areas of WordPress.</p>\n\n\n\n<p>Read the <a href=\"https://wordpress.org/documentation/wordpress-version/version-6.7\">WordPress 6.7 Release Notes</a> for information on installation, enhancements, fixed issues, release contributors, learning resources, and the list of file changes.</p>\n\n\n\n<p>Explore the <a href=\"https://make.wordpress.org/core/wordpress-6-7-field-guide/\">WordPress 6.7 Field Guide</a>. Learn about the changes in this release with detailed developer notes to help you build with WordPress.</p>\n\n\n\n<h2 class=\"wp-block-heading\">The 6.7 release squad</h2>\n\n\n\n<p>Every release comes to you from a dedicated team of enthusiastic contributors who help keep things on track and moving smoothly. The team that has led 6.7 is a cross-functional group of contributors who are always ready to champion ideas, remove blockers, and resolve issues.</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Release Lead: <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a></li>\n\n\n\n<li>Release Coordinator: <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a></li>\n\n\n\n<li>Core Tech Leads: <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>,&nbsp;<a href=\"https://profiles.wordpress.org/kirasong/\">Kira Schroder</a></li>\n\n\n\n<li>Editor Tech Leads: <a href=\"https://profiles.wordpress.org/get_dave/\">David Smith</a>,&nbsp;<a href=\"https://profiles.wordpress.org/kevin940726/\">Kai Hao</a>,&nbsp;<a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a></li>\n\n\n\n<li>Core Triage Leads: <a href=\"https://profiles.wordpress.org/stoyangeorgiev/\">Stoyan Georgiev</a>, <a href=\"https://profiles.wordpress.org/chaion07/\">Ahmed Kabir Chaion</a></li>\n\n\n\n<li>Editor Triage Leads: <a href=\"https://profiles.wordpress.org/ndiego/\">Nick Diego</a>,&nbsp;<a href=\"https://wordpress.org/support/users/colorful-tones/\">Damon Cook</a></li>\n\n\n\n<li>Documentation Leads: <a href=\"https://profiles.wordpress.org/fabiankaegy/\">Fabian Kägy</a>,&nbsp;<a href=\"https://profiles.wordpress.org/faguni22/\">Mumtahina Faguni</a></li>\n\n\n\n<li>Test Lead: <a href=\"https://profiles.wordpress.org/ankit-k-gupta/\">Ankit K. Gupta</a></li>\n\n\n\n<li>Design Lead: <a href=\"https://profiles.wordpress.org/joen/\">Joen Asmussen</a></li>\n\n\n\n<li>Performance Lead: <a href=\"https://profiles.wordpress.org/adamsilverstein/\"></a><a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a></li>\n\n\n\n<li>Default Theme Design Lead:&nbsp;<a href=\"https://profiles.wordpress.org/beafialho/\">Beatriz Fialho</a></li>\n\n\n\n<li>Default Theme Development Leads:&nbsp;<a href=\"https://profiles.wordpress.org/poena/\">Carolina Nymark</a>,&nbsp;<a href=\"https://profiles.wordpress.org/juanfra/\">Juan Aldasoro</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Thank you, contributors</h2>\n\n\n\n<p>The mission of WordPress is to <a href=\"https://wordpress.org/about/\">democratize publishing</a> and embody the <a href=\"https://opensource.org/osd-annotated\">freedoms that come with open source</a>. A global and diverse community of people collaborating to strengthen the software supports this effort.</p>\n\n\n\n<p>WordPress 6.7 reflects the tireless efforts and passion of more than 780 contributors in countries all over the world. This release also welcomed over 230 first-time contributors!</p>\n\n\n\n<p>Their collaboration delivered more than 340 enhancements and fixes, ensuring a stable release for all—a testament to the power and capability of the WordPress open source community.</p>\n\n\n\n<p class=\"is-style-wporg-props-long alignfull\"><a href=\"https://profiles.wordpress.org/75thtrombone/\">75thtrombone</a> · <a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a> · <a href=\"https://profiles.wordpress.org/aaronrobertshaw/\">Aaron Robertshaw</a> · <a href=\"https://profiles.wordpress.org/aware/\">Aaron Ware</a> · <a href=\"https://profiles.wordpress.org/aatanasov/\">aatanasov</a> · <a href=\"https://profiles.wordpress.org/abcsun/\">abcsun</a> · <a href=\"https://profiles.wordpress.org/webcommsat/\">Abha Thakor</a> · <a href=\"https://profiles.wordpress.org/abhi3315/\">abhi3315</a> · <a href=\"https://profiles.wordpress.org/fitehal/\">Abhishek Deshpande</a> · <a href=\"https://profiles.wordpress.org/ababir/\">Abir</a> · <a href=\"https://profiles.wordpress.org/acafourek/\">acafourek</a> · <a href=\"https://profiles.wordpress.org/adamkheckler/\">Adam Heckler</a> · <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a> · <a href=\"https://profiles.wordpress.org/adamwood/\">Adam Wood</a> · <a href=\"https://profiles.wordpress.org/zieladam/\">Adam Zieliński</a> · <a href=\"https://profiles.wordpress.org/adarshposimyth/\">Adarsh Akshat</a> · <a href=\"https://profiles.wordpress.org/adrian2k7/\">Adrian</a> · <a href=\"https://profiles.wordpress.org/aduth/\">aduth</a> · <a href=\"https://profiles.wordpress.org/ahmarzaidi/\">Ahmar Zaidi</a> · <a href=\"https://profiles.wordpress.org/chaion07/\">Ahmed Kabir Chaion</a> · <a href=\"https://profiles.wordpress.org/engahmeds3ed/\">Ahmed Saeed</a> · <a href=\"https://profiles.wordpress.org/ahsankhan316/\">Ahsan Khan</a> · <a href=\"https://profiles.wordpress.org/ajitbohra/\">Ajit Bohra</a> · <a href=\"https://profiles.wordpress.org/akashdhawade/\">Akash Dhawade</a> · <a href=\"https://profiles.wordpress.org/wildworks/\">Aki Hamano</a> · <a href=\"https://profiles.wordpress.org/atachibana/\">Akira Tachibana</a> · <a href=\"https://profiles.wordpress.org/akshat2802/\">Akshat Kakkad</a> · <a href=\"https://profiles.wordpress.org/alaminfirdows/\">Al-Amin Firdows</a> · <a href=\"https://profiles.wordpress.org/alanfuller/\">Alan Fuller</a> · <a href=\"https://profiles.wordpress.org/aljullu/\">Albert Juh&#233; Lluveras</a> · <a href=\"https://profiles.wordpress.org/alessandrotesoro/\">Alessandro Tesoro</a> · <a href=\"https://profiles.wordpress.org/ralessio/\">Alessio</a> · <a href=\"https://profiles.wordpress.org/xknown/\">Alex Concha</a> · <a href=\"https://profiles.wordpress.org/alexcu21/\">Alex Cuadra</a> · <a href=\"https://profiles.wordpress.org/ajlende/\">Alex Lende</a> · <a href=\"https://profiles.wordpress.org/alexstine/\">Alex Stine</a> · <a href=\"https://profiles.wordpress.org/alex27/\">alex27</a> · <a href=\"https://profiles.wordpress.org/albigdd/\">Alexander Bigga</a> · <a href=\"https://profiles.wordpress.org/digitalex11/\">Alexander Frank</a> · <a href=\"https://profiles.wordpress.org/alexandrebuffet/\">Alexandre Buffet</a> · <a href=\"https://profiles.wordpress.org/harlet7/\">Alexandru Horeanu</a> · <a href=\"https://profiles.wordpress.org/aliaghdam/\">Ali Aghdam</a> · <a href=\"https://profiles.wordpress.org/ali7ali/\">Ali Ali</a> · <a href=\"https://profiles.wordpress.org/firewatch/\">allilevine</a> · <a href=\"https://profiles.wordpress.org/mrfoxtalbot/\">Alvaro G&#243;mez</a> · <a href=\"https://profiles.wordpress.org/alvitazwar052/\">Alvi Tazwar</a> · <a href=\"https://profiles.wordpress.org/amincharoliya/\">Amin Charoliya</a> · <a href=\"https://profiles.wordpress.org/amirthepiper/\">Amir Abbas</a> · <a href=\"https://profiles.wordpress.org/amitraj2203/\">Amit Raj</a> · <a href=\"https://profiles.wordpress.org/amjadr360/\">Amjad Ali</a> · <a href=\"https://profiles.wordpress.org/anthakkar08/\">Anand Thakkar</a> · <a href=\"https://profiles.wordpress.org/andergmartins/\">andergmartins</a> · <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a> · <a href=\"https://profiles.wordpress.org/awetz583/\">Andrea Roenning</a> · <a href=\"https://profiles.wordpress.org/andraganescu/\">Andrei Draganescu</a> · <a href=\"https://profiles.wordpress.org/euthelup/\">Andrei Lupu</a> · <a href=\"https://profiles.wordpress.org/andreiglingeanu/\">andreiglingeanu</a> · <a href=\"https://profiles.wordpress.org/andrewhayward/\">Andrew Hayward</a> · <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a> · <a href=\"https://profiles.wordpress.org/andrewserong/\">Andrew Serong</a> · <a href=\"https://profiles.wordpress.org/rarst/\">Andrey \"Rarst\" Savchenko</a> · <a href=\"https://profiles.wordpress.org/oandregal/\">André Maneiro</a> · <a href=\"https://profiles.wordpress.org/afragen/\">Andy Fragen</a> · <a href=\"https://profiles.wordpress.org/la-geek/\">Angelika Reisiger</a> · <a href=\"https://profiles.wordpress.org/aniketpatel/\">Aniket Patel</a> · <a href=\"https://profiles.wordpress.org/ankit-k-gupta/\">Ankit K Gupta</a> · <a href=\"https://profiles.wordpress.org/ankit k gupta/\">Ankit K. Gupta</a> · <a href=\"https://profiles.wordpress.org/ankitkumarshah/\">Ankit Kumar Shah</a> · <a href=\"https://profiles.wordpress.org/the-ank/\">Ankur Vishwakarma</a> · <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a> · <a href=\"https://profiles.wordpress.org/antpb/\">Anthony Burchell</a> · <a href=\"https://profiles.wordpress.org/ahortin/\">Anthony Hortin</a> · <a href=\"https://profiles.wordpress.org/ant1busted/\">Antoine</a> · <a href=\"https://profiles.wordpress.org/antonvlasenko/\">Anton</a> · <a href=\"https://profiles.wordpress.org/antoniosejas/\">Antonio Sejas</a> · <a href=\"https://profiles.wordpress.org/anveshika/\">Anveshika Srivastava</a> · <a href=\"https://profiles.wordpress.org/apermo/\">apermo</a> · <a href=\"https://profiles.wordpress.org/apmeyer/\">apmeyer</a> · <a href=\"https://profiles.wordpress.org/aristath/\">Ari Stathopoulos</a> · <a href=\"https://profiles.wordpress.org/perezcarreno/\">Armando J. Perez Carreno</a> · <a href=\"https://profiles.wordpress.org/armandsdz/\">Armands</a> · <a href=\"https://profiles.wordpress.org/arnaudbroes/\">arnaudbroes</a> · <a href=\"https://profiles.wordpress.org/ambrosiawt/\">Art Smith</a> · <a href=\"https://profiles.wordpress.org/artemiosans/\">Artemio Morales</a> · <a href=\"https://profiles.wordpress.org/arthur791004/\">Arthur Chu</a> · <a href=\"https://profiles.wordpress.org/arypneta/\">arypneta</a> · <a href=\"https://profiles.wordpress.org/asafm7/\">asafm7</a> · <a href=\"https://profiles.wordpress.org/aslamdoctor/\">Aslam Doctor</a> · <a href=\"https://profiles.wordpress.org/nmutua/\">Autumn</a> · <a href=\"https://profiles.wordpress.org/ayeshrajans/\">Ayesh Karunaratne</a> · <a href=\"https://profiles.wordpress.org/bjerke-johannessen/\">B&#229;rd Bjerke Johannessen</a> · <a href=\"https://profiles.wordpress.org/beryldlg/\">B&#233;ryl de La Grandi&#232;re</a> · <a href=\"https://profiles.wordpress.org/balub/\">Balu B</a> · <a href=\"https://profiles.wordpress.org/barryceelen/\">Barry Ceelen</a> · <a href=\"https://profiles.wordpress.org/bartkalisz/\">Bart Kalisz</a> · <a href=\"https://profiles.wordpress.org/beafialho/\">Beatriz Fialho</a> · <a href=\"https://profiles.wordpress.org/scruffian/\">Ben Dwyer</a> · <a href=\"https://profiles.wordpress.org/benniledl/\">Benedikt Ledl</a> · <a href=\"https://profiles.wordpress.org/rainbowgeek/\">Benjamin Denis</a> · <a href=\"https://profiles.wordpress.org/benjamin_zekavica/\">Benjamin Zekavica</a> · <a href=\"https://profiles.wordpress.org/benoitchantre/\">Benoit Chantre</a> · <a href=\"https://profiles.wordpress.org/kau-boy/\">Bernhard Kau</a> · <a href=\"https://profiles.wordpress.org/bernhard reiter/\">Bernhard Reiter</a> · <a href=\"https://profiles.wordpress.org/neoxx/\">Bernhard Riedl</a> · <a href=\"https://profiles.wordpress.org/bernhard-reiter/\">bernhard-reiter</a> · <a href=\"https://profiles.wordpress.org/berubenic/\">berubenic</a> · <a href=\"https://profiles.wordpress.org/bhaveshdesai13/\">Bhavesh Desai</a> · <a href=\"https://profiles.wordpress.org/bijit027/\">Bijit Deb</a> · <a href=\"https://profiles.wordpress.org/bph/\">Birgit Pauli-Haack</a> · <a href=\"https://profiles.wordpress.org/blindmikey/\">blindmikey</a> · <a href=\"https://profiles.wordpress.org/bluantinoo/\">bluantinoo</a> · <a href=\"https://profiles.wordpress.org/bobbyleenoblestudios/\">bobbyleenoblestudios</a> · <a href=\"https://profiles.wordpress.org/bogdannikolic/\">Bogdan Nikolic</a> · <a href=\"https://profiles.wordpress.org/veryard/\">Brad</a> · <a href=\"https://profiles.wordpress.org/bradley2083/\">brad hogan</a> · <a href=\"https://profiles.wordpress.org/bjorsch/\">Brad Jorsch</a> · <a href=\"https://profiles.wordpress.org/kraftbj/\">Brandon Kraft</a> · <a href=\"https://profiles.wordpress.org/brentjettgmailcom/\">Brent Jett</a> · <a href=\"https://profiles.wordpress.org/brettshumaker/\">Brett Shumaker</a> · <a href=\"https://profiles.wordpress.org/ironprogrammer/\">Brian Alexander</a> · <a href=\"https://profiles.wordpress.org/bacoords/\">Brian Coords</a> · <a href=\"https://profiles.wordpress.org/bgardner/\">Brian Gardner</a> · <a href=\"https://profiles.wordpress.org/bgosnell/\">Brian Gosnell</a> · <a href=\"https://profiles.wordpress.org/brianhenryie/\">Brian Henry</a> · <a href=\"https://profiles.wordpress.org/bridgetwes/\">bridgetwes</a> · <a href=\"https://profiles.wordpress.org/brobken/\">brobken</a> · <a href=\"https://profiles.wordpress.org/freibergergarcia/\">Bruno Freiberger Garcia</a> · <a href=\"https://profiles.wordpress.org/cambabutonono/\">Cambabutonono</a> · <a href=\"https://profiles.wordpress.org/cbravobernal/\">Carlos Bravo</a> · <a href=\"https://profiles.wordpress.org/carlosgprim/\">Carlos G. P.</a> · <a href=\"https://profiles.wordpress.org/poena/\">Carolina Nymark</a> · <a href=\"https://profiles.wordpress.org/carstenbach/\">Carsten Bach</a> · <a href=\"https://profiles.wordpress.org/cbirdsong/\">cbirdsong</a> · <a href=\"https://profiles.wordpress.org/charleslf/\">charleslf</a> · <a href=\"https://profiles.wordpress.org/mchirag2002/\">Chirag Mathur</a> · <a href=\"https://profiles.wordpress.org/chrico/\">ChriCo</a> · <a href=\"https://profiles.wordpress.org/jazzs3quence/\">Chris Reynolds</a> · <a href=\"https://profiles.wordpress.org/eclare/\">Chris Trynkiewicz (Sukces Strony)</a> · <a href=\"https://profiles.wordpress.org/cfinke/\">Christopher Finke</a> · <a href=\"https://profiles.wordpress.org/ckanitz/\">Christopher Kanitz</a> · <a href=\"https://profiles.wordpress.org/cpal/\">Christos Paloukas</a> · <a href=\"https://profiles.wordpress.org/nyiriland/\">Christy Nyiri</a> · <a href=\"https://profiles.wordpress.org/butterflymedia/\">Ciprian</a> · <a href=\"https://profiles.wordpress.org/codersantosh/\">codersantosh</a> · <a href=\"https://profiles.wordpress.org/costdev/\">Colin Stewart</a> · <a href=\"https://profiles.wordpress.org/coreyw/\">Corey Worrell</a> · <a href=\"https://profiles.wordpress.org/courane01/\">Courtney Robertson</a> · <a href=\"https://profiles.wordpress.org/craynor/\">craynor</a> · <a href=\"https://profiles.wordpress.org/creativethemeshq/\">creativethemeshq</a> · <a href=\"https://profiles.wordpress.org/crixu/\">Crixu</a> · <a href=\"https://profiles.wordpress.org/cwhitmore/\">Cullen Whitmore</a> · <a href=\"https://profiles.wordpress.org/cu121/\">Cupid Chakma</a> · <a href=\"https://profiles.wordpress.org/cweiske/\">cweiske</a> · <a href=\"https://profiles.wordpress.org/coquardcyr/\">Cyrille</a> · <a href=\"https://profiles.wordpress.org/da5f656f/\">da5f656f</a> · <a href=\"https://profiles.wordpress.org/xendo/\">Dademaru</a> · <a href=\"https://profiles.wordpress.org/daleharrison/\">daleharrison</a> · <a href=\"https://profiles.wordpress.org/colorful-tones/\">Damon Cook</a> · <a href=\"https://profiles.wordpress.org/colorful tones/\">Damon Cook</a> · <a href=\"https://profiles.wordpress.org/daniguardiola/\">Dani Guardiola</a> · <a href=\"https://profiles.wordpress.org/talldanwp/\">Daniel Richards</a> · <a href=\"https://profiles.wordpress.org/mte90/\">Daniele Scasciafratte</a> · <a href=\"https://profiles.wordpress.org/itsdanny/\">Danny</a> · <a href=\"https://profiles.wordpress.org/dannyreaktiv/\">dannyreaktiv</a> · <a href=\"https://profiles.wordpress.org/darerodz/\">darerodz</a> · <a href=\"https://profiles.wordpress.org/d-signed/\">Dareth NHANG</a> · <a href=\"https://profiles.wordpress.org/nerrad/\">Darren Ethier (nerrad)</a> · <a href=\"https://profiles.wordpress.org/darshitrajyaguru97/\">Darshit Rajyaguru</a> · <a href=\"https://profiles.wordpress.org/daveagp/\">daveagp</a> · <a href=\"https://profiles.wordpress.org/fac3less/\">David</a> · <a href=\"https://profiles.wordpress.org/dballari/\">David Ballarin Prunera</a> · <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a> · <a href=\"https://profiles.wordpress.org/davidbinda/\">David Biňovec</a> · <a href=\"https://profiles.wordpress.org/davidabowman/\">David Bowman</a> · <a href=\"https://profiles.wordpress.org/davidhbrown/\">David Brown</a> · <a href=\"https://profiles.wordpress.org/dpcalhoun/\">David Calhoun</a> · <a href=\"https://profiles.wordpress.org/davidgodleman10up/\">David Godleman</a> · <a href=\"https://profiles.wordpress.org/dhenriet/\">David Henriet</a> · <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a> · <a href=\"https://profiles.wordpress.org/justlevine/\">David Levine</a> · <a href=\"https://profiles.wordpress.org/daviedr/\">David Rozando</a> · <a href=\"https://profiles.wordpress.org/dshanske/\">David Shanske</a> · <a href=\"https://profiles.wordpress.org/get_dave/\">David Smith</a> · <a href=\"https://profiles.wordpress.org/ddewan/\">ddewan</a> · <a href=\"https://profiles.wordpress.org/dsas/\">Dean Sas</a> · <a href=\"https://profiles.wordpress.org/debarghyabanerjee/\">DEBARGHYA BANERJEE</a> · <a href=\"https://profiles.wordpress.org/deepakrohilla/\">Deepak Rohilla</a> · <a href=\"https://profiles.wordpress.org/deepakvijayan/\">Deepak Vijayan</a> · <a href=\"https://profiles.wordpress.org/dekadinious/\">Dekadinious</a> · <a href=\"https://profiles.wordpress.org/dmsnell/\">Dennis Snell</a> · <a href=\"https://profiles.wordpress.org/dsmart/\">Derek Smart</a> · <a href=\"https://profiles.wordpress.org/deryck/\">Deryck</a> · <a href=\"https://profiles.wordpress.org/designsimply/\">designsimply</a> · <a href=\"https://profiles.wordpress.org/devansh2002/\">Devansh Chaudhary</a> · <a href=\"https://profiles.wordpress.org/devspace/\">devspace</a> · <a href=\"https://profiles.wordpress.org/dhananjaykuber/\">Dhananjay Kuber</a> · <a href=\"https://profiles.wordpress.org/dharm1025/\">Dharmesh Patel</a> · <a href=\"https://profiles.wordpress.org/dhewercorus/\">dhewercorus</a> · <a href=\"https://profiles.wordpress.org/dhrumilk/\">Dhrumil Kumbhani</a> · <a href=\"https://profiles.wordpress.org/dhruval04/\">Dhruval Shah</a> · <a href=\"https://profiles.wordpress.org/dhruvang21/\">Dhruvang21</a> · <a href=\"https://profiles.wordpress.org/dilipbheda/\">Dilip Bheda</a> · <a href=\"https://profiles.wordpress.org/dilip2615/\">Dilip Modhavadiya</a> · <a href=\"https://profiles.wordpress.org/dimplemodi/\">dimplemodi</a> · <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a> · <a href=\"https://profiles.wordpress.org/divibanks/\">Divi Banks</a> · <a href=\"https://profiles.wordpress.org/djcowan/\">dj.cowan</a> · <a href=\"https://profiles.wordpress.org/djennez/\">djennez</a> · <a href=\"https://profiles.wordpress.org/cyberorca/\">Doni Kuntoro</a> · <a href=\"https://profiles.wordpress.org/dooperweb/\">dooperweb</a> · <a href=\"https://profiles.wordpress.org/dorzki/\">Dor Zuberi</a> · <a href=\"https://profiles.wordpress.org/drewapicture/\">Drew Jaynes</a> · <a href=\"https://profiles.wordpress.org/drivingralle/\">Drivingralle</a> · <a href=\"https://profiles.wordpress.org/drzraf/\">drzraf</a> · <a href=\"https://profiles.wordpress.org/elrae/\">Earle Davies</a> · <a href=\"https://profiles.wordpress.org/eballeste/\">eballeste</a> · <a href=\"https://profiles.wordpress.org/eclev91/\">eclev91</a> · <a href=\"https://profiles.wordpress.org/beckej/\">Ed Beck</a> · <a href=\"https://profiles.wordpress.org/edithlb/\">Edith Milagros Loayza Barazorda</a> · <a href=\"https://profiles.wordpress.org/ejnwebmaster/\">ejnwebmaster</a> · <a href=\"https://profiles.wordpress.org/elfu98/\">elfu98</a> · <a href=\"https://profiles.wordpress.org/eliorivero/\">Elio Rivero</a> · <a href=\"https://profiles.wordpress.org/ellatrix/\">Ella van Durpe</a> · <a href=\"https://profiles.wordpress.org/erichmond/\">Elliott Richmond</a> · <a href=\"https://profiles.wordpress.org/eatse/\">Emmanuel Ats&#233;</a> · <a href=\"https://profiles.wordpress.org/manooweb/\">Emmanuel Hesry</a> · <a href=\"https://profiles.wordpress.org/emmanuel78/\">emmanuel78</a> · <a href=\"https://profiles.wordpress.org/lopo/\">Enrico Battocchi</a> · <a href=\"https://profiles.wordpress.org/nrqsnchz/\">Enrique S&#225;nchez</a> · <a href=\"https://profiles.wordpress.org/ericdye/\">Eric Dye</a> · <a href=\"https://profiles.wordpress.org/kebbet/\">Erik</a> · <a href=\"https://profiles.wordpress.org/erikiva/\">erikiva</a> · <a href=\"https://profiles.wordpress.org/erikyo/\">erikyo</a> · <a href=\"https://profiles.wordpress.org/eroan/\">Eroan Boyer</a> · <a href=\"https://profiles.wordpress.org/im3dabasia1/\">Eshaan Dabasiya</a> · <a href=\"https://profiles.wordpress.org/eherman24/\">Evan Herman</a> · <a href=\"https://profiles.wordpress.org/circlecube/\">Evan Mullins</a> · <a href=\"https://profiles.wordpress.org/fabiankaegy/\">Fabian Kägy</a> · <a href=\"https://profiles.wordpress.org/fabiorubioglio/\">Fabio Rubioglio</a> · <a href=\"https://profiles.wordpress.org/fahimmurshed/\">FahimMurshed</a> · <a href=\"https://profiles.wordpress.org/faisalahammad/\">Faisal Ahammad</a> · <a href=\"https://profiles.wordpress.org/faisal03/\">Faisal Alvi</a> · <a href=\"https://profiles.wordpress.org/fazyshah/\">Faizan Nabi</a> · <a href=\"https://profiles.wordpress.org/iamfarhan09/\">Farhan Ahmed</a> · <a href=\"https://profiles.wordpress.org/fayyazfayzi/\">Fayyaz</a> · <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a> · <a href=\"https://profiles.wordpress.org/ffffelix/\">Felix Renicks</a> · <a href=\"https://profiles.wordpress.org/fjorgemota/\">Fernando Jorge Mota (a11n)</a> · <a href=\"https://profiles.wordpress.org/finntown/\">finntown</a> · <a href=\"https://profiles.wordpress.org/firoz2456/\">Firoz Sabaliya</a> · <a href=\"https://profiles.wordpress.org/fcoveram/\">Francisco</a> · <a href=\"https://profiles.wordpress.org/franz00/\">Fransisca H</a> · <a href=\"https://profiles.wordpress.org/fullworks/\">fullworks</a> · <a href=\"https://profiles.wordpress.org/gwallace87/\">Gale Wallace</a> · <a href=\"https://profiles.wordpress.org/gansbrest/\">gansbrest</a> · <a href=\"https://profiles.wordpress.org/garethelwell/\">Gareth Elwell</a> · <a href=\"https://profiles.wordpress.org/garrett-eclipse/\">Garrett Hyder</a> · <a href=\"https://profiles.wordpress.org/pento/\">Gary Pendergast</a> · <a href=\"https://profiles.wordpress.org/gauravtiwari/\">Gaurav Tiwari</a> · <a href=\"https://profiles.wordpress.org/gauravsingh7/\">gauravsingh7</a> · <a href=\"https://profiles.wordpress.org/georgwordpress/\">Georg</a> · <a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a> · <a href=\"https://profiles.wordpress.org/geriux/\">Gerardo Pacheco</a> · <a href=\"https://profiles.wordpress.org/germanfrelo/\">Germ&#225;n Freixin&#243;s</a> · <a href=\"https://profiles.wordpress.org/glynnquelch/\">Glynn Quelch</a> · <a href=\"https://profiles.wordpress.org/gmariani405/\">gmariani405</a> · <a href=\"https://profiles.wordpress.org/graemef/\">GraemeF</a> · <a href=\"https://profiles.wordpress.org/grantmkin/\">Grant M. Kinney</a> · <a href=\"https://profiles.wordpress.org/greentreefrog/\">greentreefrog</a> · <a href=\"https://profiles.wordpress.org/greenworld/\">GreenWorld</a> · <a href=\"https://profiles.wordpress.org/gziolo/\">Greg Ziółkowski</a> · <a href=\"https://profiles.wordpress.org/wido/\">Guido Scialfa</a> · <a href=\"https://profiles.wordpress.org/gyurmey/\">Gyurmey</a> · <a href=\"https://profiles.wordpress.org/priethor/\">H&#233;ctor Prieto</a> · <a href=\"https://profiles.wordpress.org/halilesen/\">Halil ESEN</a> · <a href=\"https://profiles.wordpress.org/hanneslsm/\">Hannes Leismann</a> · <a href=\"https://profiles.wordpress.org/hjklemenz/\">Hans J&#246;rg Klemenz</a> · <a href=\"https://profiles.wordpress.org/hage/\">Hans-Gerd Gerhards</a> · <a href=\"https://profiles.wordpress.org/hardipparmar/\">Hardip Parmar</a> · <a href=\"https://profiles.wordpress.org/hareesh-pillai/\">Hareesh S</a> · <a href=\"https://profiles.wordpress.org/plaidharper/\">Harper Holsinger</a> · <a href=\"https://profiles.wordpress.org/harshgajipara/\">Harsh Gajipara</a> · <a href=\"https://profiles.wordpress.org/harshalkadu/\">Harshal Kadu</a> · <a href=\"https://profiles.wordpress.org/harshvaishnav/\">harshvaishnav</a> · <a href=\"https://profiles.wordpress.org/hazdiego/\">Haz</a> · <a href=\"https://profiles.wordpress.org/hectorjarquin/\">hectorjarquin</a> · <a href=\"https://profiles.wordpress.org/hedgefield/\">hedgefield</a> · <a href=\"https://profiles.wordpress.org/helen/\">Helen Hou-Sandi</a> · <a href=\"https://profiles.wordpress.org/iamarinoh/\">Henrique Iamarino</a> · <a href=\"https://profiles.wordpress.org/abcd95/\">Himanshu Pathak</a> · <a href=\"https://profiles.wordpress.org/hirschferkel/\">hirschferkel</a> · <a href=\"https://profiles.wordpress.org/hbhalodia/\">Hit Bhalodia</a> · <a href=\"https://profiles.wordpress.org/h71/\">Hossein</a> · <a href=\"https://profiles.wordpress.org/htmgarcia/\">htmgarcia</a> · <a href=\"https://profiles.wordpress.org/huubl/\">huubl</a> · <a href=\"https://profiles.wordpress.org/huzaifaalmesbah/\">Huzaifa Al Mesbah</a> · <a href=\"https://profiles.wordpress.org/kardi420/\">Ibrahim</a> · <a href=\"https://profiles.wordpress.org/ibrahimriaz/\">Ibrahim Riaz</a> · <a href=\"https://profiles.wordpress.org/imranh920/\">Imran Hossain (a11n)</a> · <a href=\"https://profiles.wordpress.org/indirabiswas27/\">Indira Biswas</a> · <a href=\"https://profiles.wordpress.org/isabel_brison/\">Isabel Brison</a> · <a href=\"https://profiles.wordpress.org/itpathsolutions/\">IT Path Solutions</a> · <a href=\"https://profiles.wordpress.org/itapress/\">itapress</a> · <a href=\"https://profiles.wordpress.org/ivanottinger/\">Ivan Ottinger</a> · <a href=\"https://profiles.wordpress.org/jpstevens/\">Jack Stevens</a> · <a href=\"https://profiles.wordpress.org/jacobcassidy/\">Jacob Cassidy</a> · <a href=\"https://profiles.wordpress.org/smithjw1/\">Jacob Smith</a> · <a href=\"https://profiles.wordpress.org/jagirbahesh/\">Jagir Bahesh</a> · <a href=\"https://profiles.wordpress.org/jainil07/\">Jainil Shah</a> · <a href=\"https://profiles.wordpress.org/jtgreyd/\">Jakob Trost</a> · <a href=\"https://profiles.wordpress.org/jameskoster/\">James Koster</a> · <a href=\"https://profiles.wordpress.org/jamesosborne/\">James Osborne</a> · <a href=\"https://profiles.wordpress.org/jamesros161/\">James Rosado</a> · <a href=\"https://profiles.wordpress.org/jwgoedert/\">James Wesley Goedert</a> · <a href=\"https://profiles.wordpress.org/janpfeil/\">Jan Pfeil</a> · <a href=\"https://profiles.wordpress.org/janak007/\">janak Kaneriya</a> · <a href=\"https://profiles.wordpress.org/jsnajdr/\">Jarda Snajdr</a> · <a href=\"https://profiles.wordpress.org/jarekmorawski/\">jarekmorawski</a> · <a href=\"https://profiles.wordpress.org/ipajen/\">Jarko Piironen</a> · <a href=\"https://profiles.wordpress.org/jasonbahl/\">Jason Bahl</a> · <a href=\"https://profiles.wordpress.org/madtownlems/\">Jason LeMahieu (MadtownLems)</a> · <a href=\"https://profiles.wordpress.org/javad2000/\">javad2000</a> · <a href=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a> · <a href=\"https://profiles.wordpress.org/jawadwp/\">Jawad Malik</a> · <a href=\"https://profiles.wordpress.org/topdownjimmy/\">Jay</a> · <a href=\"https://profiles.wordpress.org/jayadevankbh/\">Jayadevan k</a> · <a href=\"https://profiles.wordpress.org/drjosh07/\">jbrya029</a> · <a href=\"https://profiles.wordpress.org/jdahir0789/\">JD Ahir</a> · <a href=\"https://profiles.wordpress.org/audrasjb/\">Jean-Baptiste Audras</a> · <a href=\"https://profiles.wordpress.org/krokodok/\">Jeff Chi</a> · <a href=\"https://profiles.wordpress.org/jffng/\">Jeff Ong</a> · <a href=\"https://profiles.wordpress.org/cheffheid/\">Jeffrey de Wit</a> · <a href=\"https://profiles.wordpress.org/jeffpaul/\">Jeffrey Paul</a> · <a href=\"https://profiles.wordpress.org/jenilk/\">Jenil Kanani</a> · <a href=\"https://profiles.wordpress.org/jennifarhat/\">Jennifer Farhat</a> · <a href=\"https://profiles.wordpress.org/jdy68/\">Jenny Dupuy</a> · <a href=\"https://profiles.wordpress.org/jeremyfelt/\">Jeremy Felt</a> · <a href=\"https://profiles.wordpress.org/jeherve/\">Jeremy Herve</a> · <a href=\"https://profiles.wordpress.org/jeryj/\">Jerry Jones</a> · <a href=\"https://profiles.wordpress.org/skobe/\">Jesko Bendmann</a> · <a href=\"https://profiles.wordpress.org/luminuu/\">Jessica Lyschik</a> · <a href=\"https://profiles.wordpress.org/jetaldobariya1/\">Jetal dobariya</a> · <a href=\"https://profiles.wordpress.org/jigar9998/\">Jigar Panchal</a> · <a href=\"https://profiles.wordpress.org/jimmyh61/\">jimmyh61</a> · <a href=\"https://profiles.wordpress.org/joemoto/\">Joe Cartonia</a> · <a href=\"https://profiles.wordpress.org/joedolson/\">Joe Dolson</a> · <a href=\"https://profiles.wordpress.org/joehoyle/\">Joe Hoyle</a> · <a href=\"https://profiles.wordpress.org/joemcgill/\">Joe McGill</a> · <a href=\"https://profiles.wordpress.org/joen/\">Joen Asmussen</a> · <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a> · <a href=\"https://profiles.wordpress.org/johnillo/\">John Espiritu</a> · <a href=\"https://profiles.wordpress.org/johnny5/\">John Godley</a> · <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\">John James Jacoby</a> · <a href=\"https://profiles.wordpress.org/johnregan3/\">John Regan</a> · <a href=\"https://profiles.wordpress.org/lwangaman/\">JohnRDOrazio</a> · <a href=\"https://profiles.wordpress.org/jonsurrell/\">Jon Surrell</a> · <a href=\"https://profiles.wordpress.org/elbsegler/\">Jonas</a> · <a href=\"https://profiles.wordpress.org/psykro/\">Jonathan Bossenger</a> · <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a> · <a href=\"https://profiles.wordpress.org/spacedmonkey/\">Jonny Harris</a> · <a href=\"https://profiles.wordpress.org/jonnywatersbb/\">Jonny Waters</a> · <a href=\"https://profiles.wordpress.org/jordesign/\">jordesign</a> · <a href=\"https://profiles.wordpress.org/jorgefilipecosta/\">Jorge Costa</a> · <a href=\"https://profiles.wordpress.org/josklever/\">Jos Klever</a> · <a href=\"https://profiles.wordpress.org/josevarghese/\">Jose Varghese</a> · <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha</a> · <a href=\"https://profiles.wordpress.org/verygoode/\">Joshua Goode</a> · <a href=\"https://profiles.wordpress.org/jossnaz/\">Jossnaz</a> · <a href=\"https://profiles.wordpress.org/juanfra/\">Juan Aldasoro</a> · <a href=\"https://profiles.wordpress.org/juanmaguitar/\">JuanMa Garrido</a> · <a href=\"https://profiles.wordpress.org/julianoe/\">julianoe</a> · <a href=\"https://profiles.wordpress.org/juliemoynat/\">Julie Moynat</a> · <a href=\"https://profiles.wordpress.org/jrf/\">Juliette Reinders Folmer</a> · <a href=\"https://profiles.wordpress.org/juliobox/\">Julio Potier</a> · <a href=\"https://profiles.wordpress.org/junedsabaliya/\">Juned Sabaliya</a> · <a href=\"https://profiles.wordpress.org/greenshady/\">Justin Tadlock</a> · <a href=\"https://profiles.wordpress.org/jzern/\">jzern</a> · <a href=\"https://profiles.wordpress.org/kadamwhite/\">K. Adam White</a> · <a href=\"https://profiles.wordpress.org/kaavyaiyer/\">Kaavya Iyer (woo-hc)</a> · <a href=\"https://profiles.wordpress.org/arkenon/\">Kadim G&#252;ltekin</a> · <a href=\"https://profiles.wordpress.org/kafleg/\">KafleG</a> · <a href=\"https://profiles.wordpress.org/kevin940726/\">Kai Hao</a> · <a href=\"https://profiles.wordpress.org/kajalgohel/\">Kajal Gohel</a> · <a href=\"https://profiles.wordpress.org/ikamal/\">Kamal Hosen</a> · <a href=\"https://profiles.wordpress.org/kamran8176/\">Kamran Hussen</a> · <a href=\"https://profiles.wordpress.org/karan4word/\">Karan Gupta</a> · <a href=\"https://profiles.wordpress.org/karolmanijak/\">Karol Manijak</a> · <a href=\"https://profiles.wordpress.org/thekt12/\">Karthik Thayyil</a> · <a href=\"https://profiles.wordpress.org/kartikmehta/\">Kartik Mehta</a> · <a href=\"https://profiles.wordpress.org/kartik-suthar/\">Kartik Suthar</a> · <a href=\"https://profiles.wordpress.org/kbrownkd/\">kbrownkd (a11n)</a> · <a href=\"https://profiles.wordpress.org/keffr3n/\">Keffr3n</a> · <a href=\"https://profiles.wordpress.org/kel-dc/\">Kel Santiago-Pilarski</a> · <a href=\"https://profiles.wordpress.org/kellenmace/\">Kellen Mace</a> · <a href=\"https://profiles.wordpress.org/ryelle/\">Kelly Choyce-Dwan</a> · <a href=\"https://profiles.wordpress.org/keoshi/\">keoshi</a> · <a href=\"https://profiles.wordpress.org/kevinb/\">Kevin Behrens</a> · <a href=\"https://profiles.wordpress.org/ktaron/\">Kevin Taron</a> · <a href=\"https://profiles.wordpress.org/kevinswalsh/\">kevinswalsh</a> · <a href=\"https://profiles.wordpress.org/khokansardar/\">Khokan Sardar</a> · <a href=\"https://profiles.wordpress.org/kimclow/\">Kim Clow</a> · <a href=\"https://profiles.wordpress.org/kirasong/\">Kira Schroder</a> · <a href=\"https://profiles.wordpress.org/kishanjasani/\">Kishan Jasani</a> · <a href=\"https://profiles.wordpress.org/kisquian/\">kisquian</a> · <a href=\"https://profiles.wordpress.org/kjellr/\">Kjell Reigstad</a> · <a href=\"https://profiles.wordpress.org/kkmuffme/\">kkmuffme</a> · <a href=\"https://profiles.wordpress.org/knutsp/\">Knut Sparhell</a> · <a href=\"https://profiles.wordpress.org/kowsar89/\">Kowsar Hossain</a> · <a href=\"https://profiles.wordpress.org/kracked888/\">kracked888</a> · <a href=\"https://profiles.wordpress.org/krishneup/\">Krishna Neupane</a> · <a href=\"https://profiles.wordpress.org/kristastevens/\">kristastevens</a> · <a href=\"https://profiles.wordpress.org/kristincodeswp/\">KristinCodesWP</a> · <a href=\"https://profiles.wordpress.org/krupajnanda/\">Krupa Nanda</a> · <a href=\"https://profiles.wordpress.org/krupalpanchal/\">Krupal Panchal</a> · <a href=\"https://profiles.wordpress.org/kmadhak/\">Kunal Madhak</a> · <a href=\"https://profiles.wordpress.org/gohelkunjan/\">Kunjan Gohel</a> · <a href=\"https://profiles.wordpress.org/kurtpayne/\">Kurt Payne</a> · <a href=\"https://profiles.wordpress.org/kushang78/\">Kushang Tailor</a> · <a href=\"https://profiles.wordpress.org/mlaetitia/\">Lae</a> · <a href=\"https://profiles.wordpress.org/notlaura/\">Lara Schenck</a> · <a href=\"https://profiles.wordpress.org/lastsplash/\">lastsplash (a11n)</a> · <a href=\"https://profiles.wordpress.org/newyorkerlaura/\">Laura Byrne</a> · <a href=\"https://profiles.wordpress.org/laurelfulford/\">laurelfulford</a> · <a href=\"https://profiles.wordpress.org/oncecoupled/\">Lauren</a> · <a href=\"https://profiles.wordpress.org/laranz/\">Lawrence Joe</a> · <a href=\"https://profiles.wordpress.org/leecollings/\">Lee Collings</a> · <a href=\"https://profiles.wordpress.org/leemon/\">leemon</a> · <a href=\"https://profiles.wordpress.org/0mirka00/\">Lena Morita</a> · <a href=\"https://profiles.wordpress.org/lgladdy/\">Liam Gladdy</a> · <a href=\"https://profiles.wordpress.org/lifelightweb/\">lifelightweb</a> · <a href=\"https://profiles.wordpress.org/rudlinkon/\">Linkon Miyan</a> · <a href=\"https://profiles.wordpress.org/linsoftware/\">Linnea Huxford</a> · <a href=\"https://profiles.wordpress.org/liviopv/\">liviopv</a> · <a href=\"https://profiles.wordpress.org/louiswol94/\">Louis Wolmarans</a> · <a href=\"https://profiles.wordpress.org/louwie17/\">Lourens</a> · <a href=\"https://profiles.wordpress.org/lovesoni1999/\">Love Soni</a> · <a href=\"https://profiles.wordpress.org/gigitux/\">Luigi Teschio</a> · <a href=\"https://profiles.wordpress.org/zaguiini/\">Luis Felipe Zaguini</a> · <a href=\"https://profiles.wordpress.org/luisherranz/\">luisherranz</a> · <a href=\"https://profiles.wordpress.org/lukasbesch/\">lukasbesch</a> · <a href=\"https://profiles.wordpress.org/lukecarbis/\">Luke Carbis</a> · <a href=\"https://profiles.wordpress.org/madhudollu/\">Madhu Dollu</a> · <a href=\"https://profiles.wordpress.org/madpeter/\">madpeter</a> · <a href=\"https://profiles.wordpress.org/onemaggie/\">Maggie Cabrera</a> · <a href=\"https://profiles.wordpress.org/nadimcse/\">Mahmudul Haque Nadim</a> · <a href=\"https://profiles.wordpress.org/mai21/\">Mai</a> · <a href=\"https://profiles.wordpress.org/mkrndmane/\">Makarand G. Mane</a> · <a href=\"https://profiles.wordpress.org/manbo/\">manbo</a> · <a href=\"https://profiles.wordpress.org/maneshtimilsina/\">Manesh Timilsina</a> · <a href=\"https://profiles.wordpress.org/targz-1/\">Manuel Schmalstieg</a> · <a href=\"https://profiles.wordpress.org/manzoorwanijk/\">Manzoor Wani (a11n)</a> · <a href=\"https://profiles.wordpress.org/marianguas/\">Mar&#237;a Anguas</a> · <a href=\"https://profiles.wordpress.org/mdxfr/\">Marc</a> · <a href=\"https://profiles.wordpress.org/marc4/\">Marc Armengou</a> · <a href=\"https://profiles.wordpress.org/mardroid/\">Marcel Tannich</a> · <a href=\"https://profiles.wordpress.org/fullofcaffeine/\">Marcelo de Moraes Serpa</a> · <a href=\"https://profiles.wordpress.org/iworks/\">Marcin Pietrzak</a> · <a href=\"https://profiles.wordpress.org/mciampini/\">Marco Ciampini</a> · <a href=\"https://profiles.wordpress.org/pereirinha/\">Marco Pereirinha</a> · <a href=\"https://profiles.wordpress.org/marcwieland95/\">marcwieland95</a> · <a href=\"https://profiles.wordpress.org/igreenie/\">Marek Železn&#253;</a> · <a href=\"https://profiles.wordpress.org/margolisj/\">margolisj</a> · <a href=\"https://profiles.wordpress.org/mariayohana/\">Maria Yohana</a> · <a href=\"https://profiles.wordpress.org/plari/\">Marie</a> · <a href=\"https://profiles.wordpress.org/tyxla/\">Marin Atanasov</a> · <a href=\"https://profiles.wordpress.org/santosguillamot/\">Mario Santos</a> · <a href=\"https://profiles.wordpress.org/clorith/\">Marius L. J.</a> · <a href=\"https://profiles.wordpress.org/marius84/\">mariushosting</a> · <a href=\"https://profiles.wordpress.org/markhowellsmead/\">Mark Howells-Mead</a> · <a href=\"https://profiles.wordpress.org/markparnell/\">Mark Parnell</a> · <a href=\"https://profiles.wordpress.org/mark-k/\">Mark-k</a> · <a href=\"https://profiles.wordpress.org/markoserb/\">Marko Ivanovic</a> · <a href=\"https://profiles.wordpress.org/mhkuu/\">Martijn van der Klis</a> · <a href=\"https://profiles.wordpress.org/martinkrcho/\">martin.krcho</a> · <a href=\"https://profiles.wordpress.org/marybaum/\">marybaum</a> · <a href=\"https://profiles.wordpress.org/mat_/\">mat_</a> · <a href=\"https://profiles.wordpress.org/mmaattiiaass/\">Matias Benedetto</a> · <a href=\"https://profiles.wordpress.org/matveb/\">Matias Ventura</a> · <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a> · <a href=\"https://profiles.wordpress.org/mattyrob/\">Matt Robinson</a> · <a href=\"https://profiles.wordpress.org/mattormeeple/\">Matt Sherman</a> · <a href=\"https://profiles.wordpress.org/matteoenna/\">Matteo Enna</a> · <a href=\"https://profiles.wordpress.org/mboynes/\">Matthew Boynes</a> · <a href=\"https://profiles.wordpress.org/lonelyvegan/\">Matthew Riley MacPherson</a> · <a href=\"https://profiles.wordpress.org/kittmedia/\">Matthias Kittsteiner</a> · <a href=\"https://profiles.wordpress.org/mattraines/\">mattraines</a> · <a href=\"https://profiles.wordpress.org/maurodf/\">maurodf</a> · <a href=\"https://profiles.wordpress.org/mayanktripathi32/\">Mayank Tripathi</a> · <a href=\"https://profiles.wordpress.org/mayur8991/\">Mayur Prajapati</a> · <a href=\"https://profiles.wordpress.org/mcrisp1972/\">mcrisp1972</a> · <a href=\"https://profiles.wordpress.org/hmbashar/\">Md Abul Bashar</a> · <a href=\"https://profiles.wordpress.org/mhshohel/\">Md Hossain Shohel</a> · <a href=\"https://profiles.wordpress.org/istiaqhossain/\">Md. Istiaq Hossain</a> · <a href=\"https://profiles.wordpress.org/mdviralsampat/\">mdviralsampat</a> · <a href=\"https://profiles.wordpress.org/megane9988/\">megane9988</a> · <a href=\"https://profiles.wordpress.org/iammehedi1/\">Mehedi Hassan</a> · <a href=\"https://profiles.wordpress.org/mehulkaklotar/\">Mehul Kaklotar</a> · <a href=\"https://profiles.wordpress.org/melchoyce/\">Mel Choyce-Dwan</a> · <a href=\"https://profiles.wordpress.org/meteorlxy/\">meteorlxy</a> · <a href=\"https://profiles.wordpress.org/mfgmicha/\">Micha Krapp</a> · <a href=\"https://profiles.wordpress.org/michaelwp85/\">Michael</a> · <a href=\"https://profiles.wordpress.org/tw2113/\">Michael Beckwith</a> · <a href=\"https://profiles.wordpress.org/michaelbourne/\">Michael Bourne</a> · <a href=\"https://profiles.wordpress.org/hrkhal/\">Michael James Ilett</a> · <a href=\"https://profiles.wordpress.org/michaelpick/\">michaelpick</a> · <a href=\"https://profiles.wordpress.org/czapla/\">Michal Czaplinski</a> · <a href=\"https://profiles.wordpress.org/mielbu/\">Michelle Bulloch</a> · <a href=\"https://profiles.wordpress.org/miguelaxcar/\">Miguel Axcar</a> · <a href=\"https://profiles.wordpress.org/mcsf/\">Miguel Fonseca</a> · <a href=\"https://profiles.wordpress.org/migueluy/\">Miguel Lezama</a> · <a href=\"https://profiles.wordpress.org/simison/\">Mikael Korpela</a> · <a href=\"https://profiles.wordpress.org/mmcalister/\">Mike McAlister</a> · <a href=\"https://profiles.wordpress.org/ppolo99/\">Mike Poland</a> · <a href=\"https://profiles.wordpress.org/ritterml/\">Mike Ritter</a> · <a href=\"https://profiles.wordpress.org/mikeb8s/\">mikeb8s</a> · <a href=\"https://profiles.wordpress.org/mikeybinns/\">Mikey Binns</a> · <a href=\"https://profiles.wordpress.org/milamj/\">milamj</a> · <a href=\"https://profiles.wordpress.org/milana_cap/\">Milana Cap</a> · <a href=\"https://profiles.wordpress.org/369work/\">miroku</a> · <a href=\"https://profiles.wordpress.org/presstoke/\">Mitchell Austin</a> · <a href=\"https://profiles.wordpress.org/mklusak/\">mklusak</a> · <a href=\"https://profiles.wordpress.org/mleathem/\">mleathem</a> · <a href=\"https://profiles.wordpress.org/mlf20/\">mlf20</a> · <a href=\"https://profiles.wordpress.org/mobarak/\">Mobarak Ali</a> · <a href=\"https://profiles.wordpress.org/mohitdadhich10/\">Mohit Dadhich</a> · <a href=\"https://profiles.wordpress.org/morganestes/\">Morgan Estes</a> · <a href=\"https://profiles.wordpress.org/mosescursor/\">Moses Cursor Ssebunya</a> · <a href=\"https://profiles.wordpress.org/mosne/\">Mosne / Paolo Tesei</a> · <a href=\"https://profiles.wordpress.org/mossy2100/\">mossy2100</a> · <a href=\"https://profiles.wordpress.org/mreishus/\">mreishus</a> · <a href=\"https://profiles.wordpress.org/devmuhib/\">Muhibul Haque</a> · <a href=\"https://profiles.wordpress.org/mujuonly/\">mujuonly</a> · <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a> · <a href=\"https://profiles.wordpress.org/faguni22/\">Mumtahina Faguni</a> · <a href=\"https://profiles.wordpress.org/n8finch/\">n8finch</a> · <a href=\"https://profiles.wordpress.org/assassinateur/\">Nadir Seghir a11n</a> · <a href=\"https://profiles.wordpress.org/naeemhaque/\">Naeem Haque</a> · <a href=\"https://profiles.wordpress.org/nagpai/\">Nagesh Pai</a> · <a href=\"https://profiles.wordpress.org/narenin/\">Narendra Sishodiya</a> · <a href=\"https://profiles.wordpress.org/nareshbheda/\">Naresh Bheda</a> · <a href=\"https://profiles.wordpress.org/nateinaction/\">Nate Gay</a> · <a href=\"https://profiles.wordpress.org/nhrrob/\">Nazmul Hasan Robin</a> · <a href=\"https://profiles.wordpress.org/nebojsajurcic/\">Neboj&#353;a Jurčić</a> · <a href=\"https://profiles.wordpress.org/nek285/\">nek285</a> · <a href=\"https://profiles.wordpress.org/nendeb55/\">nendeb</a> · <a href=\"https://profiles.wordpress.org/neo2k23/\">neo2k23</a> · <a href=\"https://profiles.wordpress.org/neotrope/\">neotrope</a> · <a href=\"https://profiles.wordpress.org/eidolonnight/\">Nicholas Garofalo</a> · <a href=\"https://profiles.wordpress.org/nickbohle/\">Nick Bohle</a> · <a href=\"https://profiles.wordpress.org/ndiego/\">Nick Diego</a> · <a href=\"https://profiles.wordpress.org/celloexpressions/\">Nick Halsey</a> · <a href=\"https://profiles.wordpress.org/nick_thegeek/\">Nick the Geek</a> · <a href=\"https://profiles.wordpress.org/nicolefurlan/\">Nicole Furlan</a> · <a href=\"https://profiles.wordpress.org/nidhidhandhukiya/\">nidhidhandhukiya</a> · <a href=\"https://profiles.wordpress.org/nihar007/\">Nihar Ranjan Das</a> · <a href=\"https://profiles.wordpress.org/ntsekouras/\">Nik Tsekouras</a> · <a href=\"https://profiles.wordpress.org/nikitasolanki1812/\">Nikita Solanki</a> · <a href=\"https://profiles.wordpress.org/nirajgirixd/\">Niraj Giri</a> · <a href=\"https://profiles.wordpress.org/niravsherasiya7707/\">Nirav Sherasiya</a> · <a href=\"https://profiles.wordpress.org/nithi22/\">Nithin John</a> · <a href=\"https://profiles.wordpress.org/nithins53/\">Nithin SreeRaj</a> · <a href=\"https://profiles.wordpress.org/noahtallen/\">Noah Allen</a> · <a href=\"https://profiles.wordpress.org/noruzzaman/\">Noruzzaman</a> · <a href=\"https://profiles.wordpress.org/nurielmeni/\">nurielmeni</a> · <a href=\"https://profiles.wordpress.org/obliviousharmony/\">obliviousharmony</a> · <a href=\"https://profiles.wordpress.org/finalwebsites/\">Olaf Lederer</a> · <a href=\"https://profiles.wordpress.org/oglekler/\">Olga Gleckler</a> · <a href=\"https://profiles.wordpress.org/domainsupport/\">Oliver Campion</a> · <a href=\"https://profiles.wordpress.org/olivierlafleur/\">Olivier Lafleur</a> · <a href=\"https://profiles.wordpress.org/alshakero/\">Omar Alshaker</a> · <a href=\"https://profiles.wordpress.org/oscarhugopaz/\">Oscar Hugo Paz</a> · <a href=\"https://profiles.wordpress.org/prestonwordsworth/\">p15h</a> · <a href=\"https://profiles.wordpress.org/paaljoachim/\">Paal Joachim Romdahl</a> · <a href=\"https://profiles.wordpress.org/otakupahp/\">Pablo Hern&#225;ndez</a> · <a href=\"https://profiles.wordpress.org/pablohoneyhoney/\">Pablo Honey</a> · <a href=\"https://profiles.wordpress.org/pamprn/\">Pamela Ribeiro</a> · <a href=\"https://profiles.wordpress.org/pander/\">pander</a> · <a href=\"https://profiles.wordpress.org/pls78/\">Paolo L. Scala</a> · <a href=\"https://profiles.wordpress.org/paragoninitiativeenterprises/\">Paragon Initiative Enterprises</a> · <a href=\"https://profiles.wordpress.org/parinpanjari/\">Parin Panjari</a> · <a href=\"https://profiles.wordpress.org/parthvataliya/\">Parth vataliya</a> · <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a> · <a href=\"https://profiles.wordpress.org/obrienlabs/\">Pat O\'Brien</a> · <a href=\"https://profiles.wordpress.org/patricia70/\">Patricia BT</a> · <a href=\"https://profiles.wordpress.org/lumiblog/\">Patrick Lumumba</a> · <a href=\"https://profiles.wordpress.org/pbearne/\">Paul Bearne</a> · <a href=\"https://profiles.wordpress.org/pbiron/\">Paul Biron</a> · <a href=\"https://profiles.wordpress.org/paulkevan/\">Paul Kevan</a> · <a href=\"https://profiles.wordpress.org/paulschreiber/\">Paul Schreiber</a> · <a href=\"https://profiles.wordpress.org/paulwilde/\">Paul Wilde</a> · <a href=\"https://profiles.wordpress.org/paulcline/\">paulcline</a> · <a href=\"https://profiles.wordpress.org/paulopmt1/\">Paulo Trentin</a> · <a href=\"https://profiles.wordpress.org/pavanpatil1/\">Pavan Patil</a> · <a href=\"https://profiles.wordpress.org/pcarvalho/\">pcarvalho</a> · <a href=\"https://profiles.wordpress.org/pedromendonca/\">Pedro Mendon&#231;a</a> · <a href=\"https://profiles.wordpress.org/perryrylance/\">perryrylance</a> · <a href=\"https://profiles.wordpress.org/provenself/\">Peter Rubin</a> · <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a> · <a href=\"https://profiles.wordpress.org/petitphp/\">petitphp</a> · <a href=\"https://profiles.wordpress.org/pevogam/\">pevogam</a> · <a href=\"https://profiles.wordpress.org/mr2p/\">Phi Phan</a> · <a href=\"https://profiles.wordpress.org/johnstonphilip/\">Phil Johnston</a> · <a href=\"https://profiles.wordpress.org/tyrannous/\">Philipp Bammes</a> · <a href=\"https://profiles.wordpress.org/philwebs/\">philwebs</a> · <a href=\"https://profiles.wordpress.org/nekojonez/\">Pieterjan Deneys</a> · <a href=\"https://profiles.wordpress.org/boniu91/\">Piotrek Boniu</a> · <a href=\"https://profiles.wordpress.org/pitamdey/\">Pitam Dey</a> · <a href=\"https://profiles.wordpress.org/pgeorgiev/\">Plamen Georgiev</a> · <a href=\"https://profiles.wordpress.org/pooja1210/\">Pooja N Muchandikar</a> · <a href=\"https://profiles.wordpress.org/pooja9712/\">pooja9712</a> · <a href=\"https://profiles.wordpress.org/porg/\">porg</a> · <a href=\"https://profiles.wordpress.org/praful2111/\">Praful Patel</a> · <a href=\"https://profiles.wordpress.org/pranitdugad/\">Pranit Dugad</a> · <a href=\"https://profiles.wordpress.org/pratikkry/\">Pratik Kumar</a> · <a href=\"https://profiles.wordpress.org/pratiklondhe/\">Pratik Londhe</a> · <a href=\"https://profiles.wordpress.org/presskopp/\">Presskopp</a> · <a href=\"https://profiles.wordpress.org/prettyboymp/\">prettyboymp</a> · <a href=\"https://profiles.wordpress.org/prionkor/\">prionkor</a> · <a href=\"https://profiles.wordpress.org/pwtyler/\">pwtyler</a> · <a href=\"https://profiles.wordpress.org/rachelbaker/\">Rachel Baker</a> · <a href=\"https://profiles.wordpress.org/spanglishwebs/\">Rachel Winspear</a> · <a href=\"https://profiles.wordpress.org/rfischmann/\">Rafael Fischmann</a> · <a href=\"https://profiles.wordpress.org/rafaelgalani/\">Rafael Gallani</a> · <a href=\"https://profiles.wordpress.org/rafiq91/\">Rafiqul Islam</a> · <a href=\"https://profiles.wordpress.org/rahmatgumilar/\">Rahmat Gumilar</a> · <a href=\"https://profiles.wordpress.org/rahulharpal/\">rahulharpal</a> · <a href=\"https://profiles.wordpress.org/imrraaj/\">Raj Patel</a> · <a href=\"https://profiles.wordpress.org/rajinsharwar/\">Rajin Sharwar</a> · <a href=\"https://profiles.wordpress.org/shashwatahalder01/\">Rajkumar Shashwata Halder</a> · <a href=\"https://profiles.wordpress.org/rahmohn/\">Ramon Ahnert</a> · <a href=\"https://profiles.wordpress.org/rcorrales/\">Ramon Corrales</a> · <a href=\"https://profiles.wordpress.org/ramon-fincken/\">ramon fincken</a> · <a href=\"https://profiles.wordpress.org/ramonopoly/\">Ramon James</a> · <a href=\"https://profiles.wordpress.org/ramswarup/\">Ramswarup Rathod</a> · <a href=\"https://profiles.wordpress.org/xyulex/\">Raul Martinez</a> · <a href=\"https://profiles.wordpress.org/ravigadhiyawp/\">Ravi Gadhiya</a> · <a href=\"https://profiles.wordpress.org/rcneil/\">rcneil</a> · <a href=\"https://profiles.wordpress.org/realthemes/\">realthemes</a> · <a href=\"https://profiles.wordpress.org/rejaulalomkhan/\">Rejaul Alom Khan</a> · <a href=\"https://profiles.wordpress.org/renathoc/\">Renatho (a11n)</a> · <a href=\"https://profiles.wordpress.org/reputeinfosystems/\">reputeinfosystems</a> · <a href=\"https://profiles.wordpress.org/retrofox/\">retrofox</a> · <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a> · <a href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a> · <a href=\"https://profiles.wordpress.org/rhellewellgmailcom/\">Rick Hellewell</a> · <a href=\"https://profiles.wordpress.org/riddhipatel/\">Riddhi Patel</a> · <a href=\"https://profiles.wordpress.org/rcreators/\">Rishi Mehta</a> · <a href=\"https://profiles.wordpress.org/rishishah/\">Rishi Shah</a> · <a href=\"https://profiles.wordpress.org/rishit30g/\">Rishit Gupta</a> · <a href=\"https://profiles.wordpress.org/rithik56/\">rithik56</a> · <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a> · <a href=\"https://profiles.wordpress.org/robert-biswas/\">Robert Biswas</a> · <a href=\"https://profiles.wordpress.org/robertghetau/\">Robert Ghetau</a> · <a href=\"https://profiles.wordpress.org/rocketworks/\">rocket.works - Dominik Friedrich</a> · <a href=\"https://profiles.wordpress.org/rodelgc/\">Rodel Calasagsag a11n</a> · <a href=\"https://profiles.wordpress.org/rghedin/\">Rodrigo</a> · <a href=\"https://profiles.wordpress.org/rodrigosprimo/\">Rodrigo Primo</a> · <a href=\"https://profiles.wordpress.org/geekofshire/\">Rohan Jha</a> · <a href=\"https://profiles.wordpress.org/rohitmathur7/\">rohitmathur7</a> · <a href=\"https://profiles.wordpress.org/room34/\">room34</a> · <a href=\"https://profiles.wordpress.org/costasovo/\">Rostislav Woln&#253;</a> · <a href=\"https://profiles.wordpress.org/roytanck/\">Roy Tanck</a> · <a href=\"https://profiles.wordpress.org/roygbyte/\">roygbyte</a> · <a href=\"https://profiles.wordpress.org/royho/\">royho</a> · <a href=\"https://profiles.wordpress.org/rpf5573/\">rpf5573</a> · <a href=\"https://profiles.wordpress.org/rslee/\">rslee</a> · <a href=\"https://profiles.wordpress.org/ruchirj/\">Ruchir Goswami</a> · <a href=\"https://profiles.wordpress.org/rayhatron/\">Rufaro Madamombe</a> · <a href=\"https://profiles.wordpress.org/ryan/\">Ryan Boren</a> · <a href=\"https://profiles.wordpress.org/rleeson/\">Ryan Leeson</a> · <a href=\"https://profiles.wordpress.org/ryancurban/\">Ryan Urban</a> · <a href=\"https://profiles.wordpress.org/welcher/\">Ryan Welcher</a> · <a href=\"https://profiles.wordpress.org/looswebstudio/\">Ryo</a> · <a href=\"https://profiles.wordpress.org/sppramodh/\">S P Pramodh</a> · <a href=\"https://profiles.wordpress.org/sebastienserre/\">S&#233;bastien SERRE</a> · <a href=\"https://profiles.wordpress.org/sergiomdgomes/\">S&#233;rgio Gomes</a> · <a href=\"https://profiles.wordpress.org/soean/\">S&#246;ren W&#252;nsch</a> · <a href=\"https://profiles.wordpress.org/sadmansh/\">sadmansh</a> · <a href=\"https://profiles.wordpress.org/isaeedam/\">Saeed Piri</a> · <a href=\"https://profiles.wordpress.org/mi5t4n/\">Sagar Tamang</a> · <a href=\"https://profiles.wordpress.org/sahiladit/\">sahiladit</a> · <a href=\"https://profiles.wordpress.org/sailpete/\">sailpete</a> · <a href=\"https://profiles.wordpress.org/sainathpoojary/\">Sainath Poojary</a> · <a href=\"https://profiles.wordpress.org/sakibmd/\">Sakib Mohammed</a> · <a href=\"https://profiles.wordpress.org/samtoohey93/\">Sam Toohey</a> · <a href=\"https://profiles.wordpress.org/samiamnot/\">samiamnot</a> · <a href=\"https://profiles.wordpress.org/viralsampat/\">Sampat Viral</a> · <a href=\"https://profiles.wordpress.org/samuelsidler/\">Samuel Sidler</a> · <a href=\"https://profiles.wordpress.org/samuelsilvapt/\">Samuel Silva</a> · <a href=\"https://profiles.wordpress.org/sannevndrmeulen/\">Sanne van der Meulen</a> · <a href=\"https://profiles.wordpress.org/mikachan/\">Sarah Norris</a> · <a href=\"https://profiles.wordpress.org/sarahricker/\">sarahricker</a> · <a href=\"https://profiles.wordpress.org/sarthaknagoshe2002/\">Sarthak Nagoshe</a> · <a href=\"https://profiles.wordpress.org/sathyapulse/\">Sathiya Venkatesan</a> · <a href=\"https://profiles.wordpress.org/satishprajapati/\">Satish Prajapati</a> · <a href=\"https://profiles.wordpress.org/sfougnier/\">Saul Fougnier</a> · <a href=\"https://profiles.wordpress.org/sauliusv/\">Saulius Vikerta</a> · <a href=\"https://profiles.wordpress.org/saxonafletcher/\">Saxon Fletcher</a> · <a href=\"https://profiles.wordpress.org/sayedulsayem/\">Sayedul Sayem</a> · <a href=\"https://profiles.wordpress.org/scholdstrom/\">scholdstrom</a> · <a href=\"https://profiles.wordpress.org/swb1192/\">Scott Buscemi</a> · <a href=\"https://profiles.wordpress.org/sc0ttkclark/\">Scott Kingsley Clark</a> · <a href=\"https://profiles.wordpress.org/coffee2code/\">Scott Reilly</a> · <a href=\"https://profiles.wordpress.org/wonderboymusic/\">Scott Taylor</a> · <a href=\"https://profiles.wordpress.org/scottculverhouse/\">scottculverhouse</a> · <a href=\"https://profiles.wordpress.org/seanavers/\">seanavers</a> · <a href=\"https://profiles.wordpress.org/seifradwane/\">Seif Radwane</a> · <a href=\"https://profiles.wordpress.org/kuuuzya/\">Sergey</a> · <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a> · <a href=\"https://profiles.wordpress.org/zahardoc/\">Serhiy Zakharchenko</a> · <a href=\"https://profiles.wordpress.org/smrubenstein/\">Seth Rubenstein</a> · <a href=\"https://profiles.wordpress.org/severinepozzo/\">Severine Pozzo</a> · <a href=\"https://profiles.wordpress.org/shailu25/\">Shail Mehta</a> · <a href=\"https://profiles.wordpress.org/sh4lin/\">Shalin Shah</a> · <a href=\"https://profiles.wordpress.org/shanemuir/\">Shane Muirhead</a> · <a href=\"https://profiles.wordpress.org/sharonaustin/\">Sharon Austin</a> · <a href=\"https://profiles.wordpress.org/sheulyshila/\">SheulyShila</a> · <a href=\"https://profiles.wordpress.org/spdft/\">Shoe</a> · <a href=\"https://profiles.wordpress.org/showravhasan/\">Showrav Hasan</a> · <a href=\"https://profiles.wordpress.org/shreya0204/\">Shreya Agarwal</a> · <a href=\"https://profiles.wordpress.org/nomnom99/\">Siddharth Thevaril</a> · <a href=\"https://profiles.wordpress.org/silaskoehler/\">Silas K&#246;hler</a> · <a href=\"https://profiles.wordpress.org/siliconforks/\">siliconforks</a> · <a href=\"https://profiles.wordpress.org/simo_m/\">Simone Maranzana</a> · <a href=\"https://profiles.wordpress.org/siobhyb/\">Siobhan</a> · <a href=\"https://profiles.wordpress.org/sirlouen/\">SirLouen</a> · <a href=\"https://profiles.wordpress.org/smerriman/\">smerriman</a> · <a href=\"https://profiles.wordpress.org/snehapatil02/\">Sneha Patil</a> · <a href=\"https://profiles.wordpress.org/sophiegy/\">Sophie - a11n</a> · <a href=\"https://profiles.wordpress.org/souptik/\">Souptik Datta</a> · <a href=\"https://profiles.wordpress.org/sourabhjain/\">Sourabh Jain</a> · <a href=\"https://profiles.wordpress.org/sourav08/\">Sourav Pahwa</a> · <a href=\"https://profiles.wordpress.org/staurand/\">staurand</a> · <a href=\"https://profiles.wordpress.org/ryokuhi/\">Stefano Minoia</a> · <a href=\"https://profiles.wordpress.org/stein2nd/\">stein2nd</a> · <a href=\"https://profiles.wordpress.org/sabernhardt/\">Stephen Bernhardt</a> · <a href=\"https://profiles.wordpress.org/stevenlinx/\">Steven Lin</a> · <a href=\"https://profiles.wordpress.org/thompsonsj/\">Steven Thompson</a> · <a href=\"https://profiles.wordpress.org/stimul/\">stimul</a> · <a href=\"https://profiles.wordpress.org/stoyangeorgiev/\">Stoyan Georgiev</a> · <a href=\"https://profiles.wordpress.org/styleshit/\">styleshit</a> · <a href=\"https://profiles.wordpress.org/sudipatel007/\">Sudip Dadhaniya</a> · <a href=\"https://profiles.wordpress.org/sukhendu2002/\">Sukhendu Sekhar Guria</a> · <a href=\"https://profiles.wordpress.org/sumitbagthariya16/\">Sumit Bagthariya</a> · <a href=\"https://profiles.wordpress.org/sumitsingh/\">Sumit Singh</a> · <a href=\"https://profiles.wordpress.org/sunil25393/\">Sunil Prajapati</a> · <a href=\"https://profiles.wordpress.org/quadthemes/\">Sunny</a> · <a href=\"https://profiles.wordpress.org/superchlorine/\">superchlorine</a> · <a href=\"https://profiles.wordpress.org/cybr/\">Sybre Waaijer</a> · <a href=\"https://profiles.wordpress.org/jannathsyeda/\">Syeda Fahima Jannath</a> · <a href=\"https://profiles.wordpress.org/tacoverdo/\">Taco Verdonschot</a> · <a href=\"https://profiles.wordpress.org/takahashi_fumiki/\">Takahashi Fumiki</a> · <a href=\"https://profiles.wordpress.org/iamtakashi/\">Takashi Irie</a> · <a href=\"https://profiles.wordpress.org/karmatosed/\">Tammie Lister</a> · <a href=\"https://profiles.wordpress.org/devtanbir/\">Tanbir Ahmod</a> · <a href=\"https://profiles.wordpress.org/tanvirul/\">Tanvirul Haque</a> · <a href=\"https://profiles.wordpress.org/voboghure/\">Tapan Kumer Das</a> · <a href=\"https://profiles.wordpress.org/taylorgorman/\">Taylor Gorman</a> · <a href=\"https://profiles.wordpress.org/tdrayson/\">tdrayson</a> · <a href=\"https://profiles.wordpress.org/iamjaydip/\">thejaydip</a> · <a href=\"https://profiles.wordpress.org/thelmachido/\">thelmachido a11n</a> · <a href=\"https://profiles.wordpress.org/themes-1/\">them.es</a> · <a href=\"https://profiles.wordpress.org/kraftner/\">Thomas Kr&#228;ftner</a> · <a href=\"https://profiles.wordpress.org/thrijith/\">Thrijith Thankachan</a> · <a href=\"https://profiles.wordpress.org/tigriweb/\">TigriWeb</a> · <a href=\"https://profiles.wordpress.org/timwhitlock/\">Tim W</a> · <a href=\"https://profiles.wordpress.org/sippis/\">Timi Wahalahti</a> · <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a> · <a href=\"https://profiles.wordpress.org/tirth03/\">Tirth Doshi</a> · <a href=\"https://profiles.wordpress.org/tmanoilov/\">tmanoilov</a> · <a href=\"https://profiles.wordpress.org/toastercookie/\">toastercookie</a> · <a href=\"https://profiles.wordpress.org/tobiasbg/\">TobiasBg</a> · <a href=\"https://profiles.wordpress.org/tobifjellner/\">tobifjellner (Tor-Bjorn &#8220;Tobi&#8221; Fjellner)</a> · <a href=\"https://profiles.wordpress.org/tomjcafferkey/\">Tom Cafferkey</a> · <a href=\"https://profiles.wordpress.org/thomasdevisser/\">Tom de Visser</a> · <a href=\"https://profiles.wordpress.org/tjnowell/\">Tom J Nowell</a> · <a href=\"https://profiles.wordpress.org/tomllobet/\">Tomas Llobet-Arany</a> · <a href=\"https://profiles.wordpress.org/tomhine/\">tomhine</a> · <a href=\"https://profiles.wordpress.org/hellofromtonya/\">Tonya Mork</a> · <a href=\"https://profiles.wordpress.org/toro_unit/\">Toro_Unit (Hiroshi Urabe)</a> · <a href=\"https://profiles.wordpress.org/zodiac1978/\">Torsten Landsiedel</a> · <a href=\"https://profiles.wordpress.org/tropicalista/\">tropicalista</a> · <a href=\"https://profiles.wordpress.org/areziaal/\">Troy Chaplin</a> · <a href=\"https://profiles.wordpress.org/truptikanzariya/\">Trupti Kanzariya</a> · <a href=\"https://profiles.wordpress.org/tunetheweb/\">tunetheweb</a> · <a href=\"https://profiles.wordpress.org/twstokes/\">twstokes</a> · <a href=\"https://profiles.wordpress.org/ugyensupport/\">Ugyen Dorji</a> · <a href=\"https://profiles.wordpress.org/umesh84/\">Umesh Gupta</a> · <a href=\"https://profiles.wordpress.org/umeshsinghin/\">Umesh Singh</a> · <a href=\"https://profiles.wordpress.org/up1512001/\">up1512001</a> · <a href=\"https://profiles.wordpress.org/ukdrahul/\">Uttam Kumar Dash</a> · <a href=\"https://profiles.wordpress.org/valer1e/\">Val&#233;rie Galassi</a> · <a href=\"https://profiles.wordpress.org/twvania/\">Vania</a> · <a href=\"https://profiles.wordpress.org/vertisoft/\">Vertisoft</a> · <a href=\"https://profiles.wordpress.org/vcanales/\">Vicente Canales</a> · <a href=\"https://profiles.wordpress.org/vijaysinh9094/\">Vijaysinh Zala</a> · <a href=\"https://profiles.wordpress.org/szepeviktor/\">Viktor Sz&#233;pe</a> · <a href=\"https://profiles.wordpress.org/vineet2003/\">Vinit</a> · <a href=\"https://profiles.wordpress.org/ghorivipul97/\">Vipul Ghori</a> · <a href=\"https://profiles.wordpress.org/vipulgupta003/\">Vipul Gupta</a> · <a href=\"https://profiles.wordpress.org/vipulpatil/\">Vipul Patil</a> · <a href=\"https://profiles.wordpress.org/vrajadas/\">Vraja Das</a> · <a href=\"https://profiles.wordpress.org/vrishabhsk/\">Vrishabh Jasani</a> · <a href=\"https://profiles.wordpress.org/wbdv/\">wbdv</a> · <a href=\"https://profiles.wordpress.org/webmandesign/\">WebMan Design &#124; Oliver Juhas</a> · <a href=\"https://profiles.wordpress.org/webwurm/\">webwurm</a> · <a href=\"https://profiles.wordpress.org/wesrapyd/\">Wes Tatters</a> · <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a> · <a href=\"https://profiles.wordpress.org/skorasaurus/\">Will Skora</a> · <a href=\"https://profiles.wordpress.org/williamalexander/\">William Alexander</a> · <a href=\"https://profiles.wordpress.org/williampatton/\">williampatton</a> · <a href=\"https://profiles.wordpress.org/wongjn/\">wongjn</a> · <a href=\"https://profiles.wordpress.org/wpeople/\">WPeople</a> · <a href=\"https://profiles.wordpress.org/wpnoman0/\">wpnoman0</a> · <a href=\"https://profiles.wordpress.org/wpsoul/\">wpsoul</a> · <a href=\"https://profiles.wordpress.org/wzieba/\">wzieba</a> · <a href=\"https://profiles.wordpress.org/xipasduarte/\">xipasduarte</a> · <a href=\"https://profiles.wordpress.org/yaniiliev/\">Yani</a> · <a href=\"https://profiles.wordpress.org/collet/\">Yann</a> · <a href=\"https://profiles.wordpress.org/yguyon/\">Yannis Guyon</a> · <a href=\"https://profiles.wordpress.org/yogeshbhutkar/\">Yogesh Bhutkar</a> · <a href=\"https://profiles.wordpress.org/yowangdu/\">YoWangdu</a> · <a href=\"https://profiles.wordpress.org/ytfeldrawkcab/\">ytfeLdrawkcaB</a> · <a href=\"https://profiles.wordpress.org/fierevere/\">Yui</a> · <a href=\"https://profiles.wordpress.org/yukinobu/\">Yukinobu Asakawa</a> · <a href=\"https://profiles.wordpress.org/yuvrajsinh2211/\">Yuvrajsinh Sisodiya</a> · <a href=\"https://profiles.wordpress.org/zackkrida/\">Zack Krida</a> · <a href=\"https://profiles.wordpress.org/zargarov/\">Zargarov</a> · <a href=\"https://profiles.wordpress.org/zeelthakkar/\">zeelthakkar</a> · <a href=\"https://profiles.wordpress.org/zitaruksergij/\">zitaruksergij</a> · <a href=\"https://profiles.wordpress.org/zunaid321/\">Zunaid Amin</a></p>\n\n\n\n<p>More than <a href=\"https://translate.wordpress.org/stats/\">40 locales have fully translated</a> WordPress 6.7 into their language making this one of the most translated releases ever on day one. Community translators are working hard to ensure more translations are on their way. Thank you to everyone who helps make WordPress available in 200 languages.</p>\n\n\n\n<p>Last but not least, thanks to the volunteers who contribute to the <a href=\"https://wordpress.org/support/\">support forums</a> by answering questions from WordPress users worldwide.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Get involved</h2>\n\n\n\n<p>Participation in WordPress goes far beyond coding, and learning more and getting involved is easy. Discover the teams that come together to <a href=\"https://make.wordpress.org/\">Make WordPress</a> and use <a href=\"https://make.wordpress.org/contribute/\">this interactive tool</a> to help you decide which is right for you.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"18066\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:69:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress 6.7 Release Candidate 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2024/11/wordpress-6-7-release-candidate-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 05 Nov 2024 17:02:15 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"6.7\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:11:\"development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:8:\"releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=18056\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:360:\"The third release candidate (RC3) for WordPress 6.7 is ready for download and testing! This version of the WordPress software is under development. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, it’s recommended that you evaluate RC3 on a test server and site. Reaching this phase [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"David Baumwald\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:11405:\"\n<p>The third release candidate (RC3) for WordPress 6.7 is ready for download and testing!</p>\n\n\n\n<p><strong>This version of the WordPress software is under development</strong>.<strong> Please do not install, run, or test this version of WordPress on production or mission-critical websites.</strong> Instead, it’s recommended that you evaluate RC3 on a test server and site.</p>\n\n\n\n<p>Reaching this phase of the release cycle is an important milestone. While release candidates are considered ready for release, testing remains crucial to ensure that everything in WordPress 6.7 is the best it can be.</p>\n\n\n\n<p>You can test WordPress 6.7 RC3 in four ways:</p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><th>Plugin</th><td>Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin on a WordPress install. (Select the “Bleeding edge” channel and “Beta/RC Only” stream).</td></tr><tr><th>Direct Download</th><td>Download the <a href=\"https://wordpress.org/wordpress-6.7-RC3.zip\">RC3 version (zip)</a> and install it on a WordPress website.</td></tr><tr><th>Command Line</th><td>Use the following <a href=\"https://make.wordpress.org/cli/\">WP-CLI</a> command:<br><code>wp core update --version=6.7-RC3</code></td></tr><tr><th>WordPress Playground</th><td>Use the <a href=\"https://playground.wordpress.net/#%7B%20%22preferredVersions%22:%20%7B%20%22php%22:%20%228.0%22,%20%22wp%22:%20%22beta%22%20%7D,%20%22features%22:%20%7B%20%22networking%22:%20true%20%7D,%20%22steps%22:%20%5B%20%7B%20%22step%22:%20%22login%22,%20%22username%22:%20%22admin%22,%20%22password%22:%20%22password%22%20%7D,%20%7B%20%22step%22:%20%22importFile%22,%20%22file%22:%20%7B%20%22resource%22:%20%22url%22,%20%22url%22:%20%22https://raw.githubusercontent.com/wpaccessibility/a11y-theme-unit-test/master/a11y-theme-unit-test-data.xml%22%20%7D%20%7D,%20%7B%20%22step%22:%20%22importFile%22,%20%22file%22:%20%7B%20%22resource%22:%20%22url%22,%20%22url%22:%20%22https://raw.githubusercontent.com/WordPress/theme-test-data/master/themeunittestdata.wordpress.xml%22%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22query-monitor%22%20%7D,%20%22options%22:%20%7B%20%22activate%22:%20false%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22create-block-theme%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22debug-bar%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22health-check%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22test-reports%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22user-switching%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D%20%5D%20%7D\" data-type=\"link\" data-id=\"https://playground.wordpress.net/#%7B%20%22preferredVersions%22:%20%7B%20%22php%22:%20%228.0%22,%20%22wp%22:%20%22https://playground.wordpress.net/plugin-proxy.php?build-ref=218cf8089bb18bbb3f4f118d3f79a8a57e26f7a6%22%20%7D,%20%22features%22:%20%7B%20%22networking%22:%20true%20%7D,%20%22steps%22:%20%5B%20%7B%20%22step%22:%20%22login%22,%20%22username%22:%20%22admin%22,%20%22password%22:%20%22password%22%20%7D,%20%7B%20%22step%22:%20%22importFile%22,%20%22file%22:%20%7B%20%22resource%22:%20%22url%22,%20%22url%22:%20%22https://raw.githubusercontent.com/wpaccessibility/a11y-theme-unit-test/master/a11y-theme-unit-test-data.xml%22%20%7D%20%7D,%20%7B%20%22step%22:%20%22importFile%22,%20%22file%22:%20%7B%20%22resource%22:%20%22url%22,%20%22url%22:%20%22https://raw.githubusercontent.com/WordPress/theme-test-data/master/themeunittestdata.wordpress.xml%22%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22query-monitor%22%20%7D,%20%22options%22:%20%7B%20%22activate%22:%20false%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22create-block-theme%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22debug-bar%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22health-check%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22test-reports%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22user-switching%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D%20%5D%20%7D\">6.7 RC3 WordPress Playground instance</a> (available within 35 minutes after the release is ready) to test the software directly in your browser without the need for a separate site or setup.</td></tr></tbody></table><figcaption class=\"wp-element-caption\">You can test the RC3 version in four ways.</figcaption></figure>\n\n\n\n<p>The current target for the WordPress 6.7 release is <strong>November 12, 2024</strong>. Get an overview of the <a href=\"https://make.wordpress.org/core/6-7/\">6.7 release cycle</a>, and check the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/6-7/\">6.7-related posts</a> in the coming weeks for further details.</p>\n\n\n\n<h2 class=\"wp-block-heading\">What&#8217;s in WordPress 6.7 RC3?</h2>\n\n\n\n<p>Get a recap of WordPress 6.7’s highlighted features in the <a href=\"https://wordpress.org/news/2024/10/wordpress-6-7-beta-1/\">Beta 1 announcement</a>. For more technical information related to issues addressed since RC2, you can browse the following links:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.7?since=2024-10-29&amp;until=2024-11-05\">GitHub commits for 6.7</a> since October 29</li>\n\n\n\n<li><a href=\"https://core.trac.wordpress.org/query?status=closed&amp;changetime=10%2F29%2F2024..11%2F05%2F2024&amp;milestone=6.7&amp;col=id&amp;col=summary&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=priority&amp;order=id\">Closed Trac tickets</a> since October 29</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">How you can contribute</h2>\n\n\n\n<p>WordPress is open source software made possible by a passionate community of people collaborating on and contributing to its development. The resources below outline various ways you can help the world’s most popular open source web platform, regardless of your technical expertise.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Get involved in testing</h3>\n\n\n\n<p>Testing for issues is critical to ensuring WordPress is performant and stable. It’s also a meaningful way for anyone to contribute. <a href=\"https://make.wordpress.org/test/2024/10/01/help-test-wordpress-6-7/\">This detailed guide</a> will walk you through testing features in WordPress 6.7. For those new to testing, follow <a href=\"https://make.wordpress.org/test/2024/02/15/help-test-wordpress-6-5-beta-1\">this general testing guide</a> for more details on getting set up.</p>\n\n\n\n<p>If you encounter an issue, please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> of the support forums or directly to <a href=\"https://core.trac.wordpress.org/newticket\">WordPress Trac</a> if you are comfortable writing a reproducible bug report. You can also check your issue against a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</p>\n\n\n\n<p>Curious about testing releases in general? Follow along with the <a href=\"https://make.wordpress.org/test/\">testing initiatives in Make Core</a> and join the <a href=\"https://wordpress.slack.com/messages/core-test/\">#core-test channel</a> on <a href=\"https://wordpress.slack.com/\">Making WordPress Slack</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Search for vulnerabilities</h3>\n\n\n\n<p>From now until the final release of WordPress 6.7 (scheduled for November 12, 2024), the <a href=\"https://make.wordpress.org/security/2024/02/12/welcoming-2024-with-wordpress-6-5-beta-1/\">monetary reward for reporting new, unreleased security vulnerabilities</a> is doubled. Please follow responsible disclosure practices as detailed in the project’s security practices and policies outlined on the <a href=\"https://hackerone.com/wordpress\">HackerOne page</a> and in the <a href=\"https://wordpress.org/about/security/\">security white paper</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Update your theme or plugin</h3>\n\n\n\n<p>For plugin and theme authors, your products play an integral role in extending the functionality and value of WordPress for all users.&nbsp;</p>\n\n\n\n<p>Thanks for continuing to test your themes and plugins with the WordPress 6.7 beta releases. With RC3, you’ll want to conclude your testing and update the <em>“Tested up to”</em> version in your <a href=\"https://developer.wordpress.org/plugins/wordpress-org/how-your-readme-txt-works/\">plugin’s readme file</a> to 6.7.</p>\n\n\n\n<p>If you find compatibility issues, please post detailed information to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forum</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Help translate WordPress</h3>\n\n\n\n<p>Do you speak a language other than English? <span lang=\"es\">¿Español?</span> <span lang=\"fr\">Français?</span> <span lang=\"ru\">Русский?</span> <span lang=\"ja\">日本?</span> <span lang=\"hi\">हिन्दी?</span> <span lang=\"bn\">বাংলা?</span> You can <a href=\"https://translate.wordpress.org/projects/wp/dev/\">help translate WordPress into more than 100 languages</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Release the haiku</h2>\n\n\n\n<p><em>RC3 arrives,<br>Final polish, last bugs fall,<br>Six point seven calls.</em></p>\n\n\n\n<p><em>Thank you to the following contributors for collaborating on this post:</em> <em><a href=\'https://profiles.wordpress.org/peterwilsoncc/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>peterwilsoncc</a>, <a href=\'https://profiles.wordpress.org/joedolson/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>joedolson</a></em>, <a href=\'https://profiles.wordpress.org/sabernhardt/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>sabernhardt</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"18056\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:69:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress 6.7 Release Candidate 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2024/10/wordpress-6-7-release-candidate-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 29 Oct 2024 17:08:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"6.7\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:11:\"development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:8:\"releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=18043\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:361:\"The second release candidate (RC2) for WordPress 6.7 is ready for download and testing! This version of the WordPress software is under development. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, it’s recommended that you evaluate RC2 on a test server and site. Reaching this phase [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"David Baumwald\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:11116:\"\n<p>The second release candidate (RC2) for WordPress 6.7 is ready for download and testing!</p>\n\n\n\n<p><strong>This version of the WordPress software is under development</strong>.<strong> Please do not install, run, or test this version of WordPress on production or mission-critical websites.</strong> Instead, it’s recommended that you evaluate RC2 on a test server and site.</p>\n\n\n\n<p>Reaching this phase of the release cycle is an important milestone. While release candidates are considered ready for release, testing remains crucial to ensure that everything in WordPress 6.7 is the best it can be.</p>\n\n\n\n<p>You can test WordPress 6.7 RC2 in four ways:</p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><th>Plugin</th><td>Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin on a WordPress install. (Select the “Bleeding edge” channel and “Beta/RC Only” stream).</td></tr><tr><th>Direct Download</th><td>Download the <a href=\"https://wordpress.org/wordpress-6.7-RC2.zip\">RC2 version (zip)</a> and install it on a WordPress website.</td></tr><tr><th>Command Line</th><td>Use the following <a href=\"https://make.wordpress.org/cli/\">WP-CLI</a> command:<br><code>wp core update --version=6.7-RC2</code></td></tr><tr><th>WordPress Playground</th><td>Use the <a href=\"https://playground.wordpress.net/#%7B%20%22preferredVersions%22:%20%7B%20%22php%22:%20%228.0%22,%20%22wp%22:%20%22https://playground.wordpress.net/plugin-proxy.php?build-ref=218cf8089bb18bbb3f4f118d3f79a8a57e26f7a6%22%20%7D,%20%22features%22:%20%7B%20%22networking%22:%20true%20%7D,%20%22steps%22:%20%5B%20%7B%20%22step%22:%20%22login%22,%20%22username%22:%20%22admin%22,%20%22password%22:%20%22password%22%20%7D,%20%7B%20%22step%22:%20%22importFile%22,%20%22file%22:%20%7B%20%22resource%22:%20%22url%22,%20%22url%22:%20%22https://raw.githubusercontent.com/wpaccessibility/a11y-theme-unit-test/master/a11y-theme-unit-test-data.xml%22%20%7D%20%7D,%20%7B%20%22step%22:%20%22importFile%22,%20%22file%22:%20%7B%20%22resource%22:%20%22url%22,%20%22url%22:%20%22https://raw.githubusercontent.com/WordPress/theme-test-data/master/themeunittestdata.wordpress.xml%22%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22query-monitor%22%20%7D,%20%22options%22:%20%7B%20%22activate%22:%20false%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22create-block-theme%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22debug-bar%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22health-check%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22test-reports%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22user-switching%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D%20%5D%20%7D\" data-type=\"link\" data-id=\"https://playground.wordpress.net/#%7B%20%22preferredVersions%22:%20%7B%20%22php%22:%20%228.0%22,%20%22wp%22:%20%22https://playground.wordpress.net/plugin-proxy.php?build-ref=218cf8089bb18bbb3f4f118d3f79a8a57e26f7a6%22%20%7D,%20%22features%22:%20%7B%20%22networking%22:%20true%20%7D,%20%22steps%22:%20%5B%20%7B%20%22step%22:%20%22login%22,%20%22username%22:%20%22admin%22,%20%22password%22:%20%22password%22%20%7D,%20%7B%20%22step%22:%20%22importFile%22,%20%22file%22:%20%7B%20%22resource%22:%20%22url%22,%20%22url%22:%20%22https://raw.githubusercontent.com/wpaccessibility/a11y-theme-unit-test/master/a11y-theme-unit-test-data.xml%22%20%7D%20%7D,%20%7B%20%22step%22:%20%22importFile%22,%20%22file%22:%20%7B%20%22resource%22:%20%22url%22,%20%22url%22:%20%22https://raw.githubusercontent.com/WordPress/theme-test-data/master/themeunittestdata.wordpress.xml%22%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22query-monitor%22%20%7D,%20%22options%22:%20%7B%20%22activate%22:%20false%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22create-block-theme%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22debug-bar%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22health-check%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22test-reports%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22user-switching%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D%20%5D%20%7D\">6.7 RC2 WordPress Playground instance</a> (available within 35 minutes after the release is ready) to test the software directly in your browser without the need for a separate site or setup.</td></tr></tbody></table><figcaption class=\"wp-element-caption\">You can test the RC2 version in four ways.</figcaption></figure>\n\n\n\n<p>The current target for the WordPress 6.7 release is <strong>November 12, 2024</strong>. Get an overview of the <a href=\"https://make.wordpress.org/core/6-7/\">6.7 release cycle</a>, and check the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/6-7/\">6.7-related posts</a> in the coming weeks for further details.</p>\n\n\n\n<h2 class=\"wp-block-heading\">What&#8217;s in WordPress 6.7 RC2?</h2>\n\n\n\n<p>Get a recap of WordPress 6.7’s highlighted features in the <a href=\"https://wordpress.org/news/2024/10/wordpress-6-7-beta-1/\">Beta 1 announcement</a>. For more technical information related to issues addressed since RC1, you can browse the following links:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.7?since=2024-10-22&amp;until=2024-10-29\">GitHub commits for 6.7</a> since October 22</li>\n\n\n\n<li><a href=\"https://core.trac.wordpress.org/query?status=closed&amp;changetime=10%2F22%2F2024..10%2F29%2F2024&amp;milestone=6.7&amp;col=id&amp;col=summary&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=priority&amp;order=id\">Closed Trac tickets</a> since October 22</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">How you can contribute</h2>\n\n\n\n<p>WordPress is open source software made possible by a passionate community of people collaborating on and contributing to its development. The resources below outline various ways you can help the world’s most popular open source web platform, regardless of your technical expertise.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Get involved in testing</h3>\n\n\n\n<p>Testing for issues is critical to ensuring WordPress is performant and stable. It’s also a meaningful way for anyone to contribute. <a href=\"https://make.wordpress.org/test/2024/10/01/help-test-wordpress-6-7/\">This detailed guide</a> will walk you through testing features in WordPress 6.7. For those new to testing, follow <a href=\"https://make.wordpress.org/test/2024/02/15/help-test-wordpress-6-5-beta-1\">this general testing guide</a> for more details on getting set up.</p>\n\n\n\n<p>If you encounter an issue, please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> of the support forums or directly to <a href=\"https://core.trac.wordpress.org/newticket\">WordPress Trac</a> if you are comfortable writing a reproducible bug report. You can also check your issue against a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</p>\n\n\n\n<p>Curious about testing releases in general? Follow along with the <a href=\"https://make.wordpress.org/test/\">testing initiatives in Make Core</a> and join the <a href=\"https://wordpress.slack.com/messages/core-test/\">#core-test channel</a> on <a href=\"https://wordpress.slack.com/\">Making WordPress Slack</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Search for vulnerabilities</h3>\n\n\n\n<p>From now until the final release of WordPress 6.7 (scheduled for November 12, 2024), the <a href=\"https://make.wordpress.org/security/2024/02/12/welcoming-2024-with-wordpress-6-5-beta-1/\">monetary reward for reporting new, unreleased security vulnerabilities</a> is doubled. Please follow responsible disclosure practices as detailed in the project’s security practices and policies outlined on the <a href=\"https://hackerone.com/wordpress\">HackerOne page</a> and in the <a href=\"https://wordpress.org/about/security/\">security white paper</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Update your theme or plugin</h3>\n\n\n\n<p>For plugin and theme authors, your products play an integral role in extending the functionality and value of WordPress for all users.&nbsp;</p>\n\n\n\n<p>Thanks for continuing to test your themes and plugins with the WordPress 6.7 beta releases. With RC2, you’ll want to conclude your testing and update the <em>“Tested up to”</em> version in your <a href=\"https://developer.wordpress.org/plugins/wordpress-org/how-your-readme-txt-works/\">plugin’s readme file</a> to 6.7.</p>\n\n\n\n<p>If you find compatibility issues, please post detailed information to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forum</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Help translate WordPress</h3>\n\n\n\n<p>Do you speak a language other than English? ¿Español? Français? Русский? 日本? हिन्दी? বাংলা? You can <a href=\"https://translate.wordpress.org/projects/wp/dev/\">help translate WordPress into more than 100 languages</a>. </p>\n\n\n\n<h2 class=\"wp-block-heading\">Release the haiku</h2>\n\n\n\n<p><em>Six point seven’s dawn,<br>RC2 sweeps bugs away,<br>Sites stand firm and strong.</em></p>\n\n\n\n<p><em>Thank you to the following contributors for collaborating on this post:</em> <em><a href=\'https://profiles.wordpress.org/jorbin/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>jorbin</a></em>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"18043\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:32:\"https://wordpress.org/news/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"\n	hourly	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"\n	1	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:4:\"site\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"14607090\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:48:\"WpOrg\\Requests\\Utility\\CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:12:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Mon, 27 Jan 2025 18:10:53 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:4:\"vary\";s:37:\"Accept-Encoding, accept, content-type\";s:25:\"strict-transport-security\";s:12:\"max-age=3600\";s:6:\"x-olaf\";s:3:\"⛄\";s:13:\"last-modified\";s:29:\"Mon, 13 Jan 2025 08:55:30 GMT\";s:4:\"link\";s:63:\"<https://wordpress.org/news/wp-json/>; rel=\"https://api.w.org/\"\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:16:\"content-encoding\";s:2:\"br\";s:7:\"alt-svc\";s:19:\"h3=\":443\"; ma=86400\";s:4:\"x-nc\";s:9:\"HIT ord 1\";}}s:5:\"build\";i:1737873327;s:21:\"cache_expiration_time\";i:1738044653;s:23:\"__cache_expiration_time\";i:1738044653;}','off'),(1462927,'_transient_timeout_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1738044653','off'),(1462928,'_transient_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1738001453','off'),(1464696,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1738044654','off'),(1464697,'_transient_feed_d117b5738fbd35bd8c0391cda1f2b5d9','a:6:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:61:\"\n	\n	\n	\n	\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"WordPress Planet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"en\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"WordPress Planet - http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:50:{i:0;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"Do The Woo Community: Reflections on the WooCommerce Releases from 2024 with Marcel and Mike\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=89403\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:104:\"https://dothewoo.io/exploring-woocommerce-2024-new-features-and-developer-insights-with-marcel-and-mike/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:137:\"In this episode of Woo DevChat, Marcel and Mike discuss significant WooCommerce updates from 2024, AI\'s impact, and their personal goals.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 27 Jan 2025 11:20:17 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"Gravatar: Create Unique Avatars With Backgrounds and Stickers!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"http://blog.gravatar.com/?p=2772\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://blog.gravatar.com/2025/01/22/new-background-and-sticker-features/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2777:\"<p>Has it been a while since you gave your Gravatar a fresh look? We just rolled out some fun new editing tools that let you remove backgrounds, add new ones, and decorate with stickers. Your avatar travels with you across the web — now it can show even more of your personality.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Background Magic</h2>\n\n\n\n<div class=\"wp-block-group has-contrast-background-color has-background has-global-padding is-layout-constrained wp-container-core-group-is-layout-1 wp-block-group-is-layout-constrained\">\n<img width=\"1200\" height=\"849\" src=\"https://blog.gravatar.com/wp-content/uploads/2025/01/cleanshot-2025-01-22-at-11.08.30.gif\" alt=\"\" class=\"wp-image-2779\" />\n</div>\n\n\n\n<p>Take any photo and instantly remove its background. Drop yourself onto a beach, in front of a cityscape, or keep it clean with a solid color. </p>\n\n\n\n<p>That quick selfie can now look like a professional headshot.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Sticker Time</h2>\n\n\n\n<div class=\"wp-block-group has-contrast-background-color has-background has-global-padding is-layout-constrained wp-container-core-group-is-layout-2 wp-block-group-is-layout-constrained\">\n<img width=\"1200\" height=\"850\" src=\"https://blog.gravatar.com/wp-content/uploads/2025/01/cleanshot-2025-01-22-at-11.13.25.gif\" alt=\"\" class=\"wp-image-2780\" />\n</div>\n\n\n\n<p>Add some flair with our collection of stickers. From sunglasses to speech bubbles, you can layer on elements that match your style. Use the search feature to find the perfect additions.</p>\n\n\n\n<h2 class=\"wp-block-heading\">How to Use the New Features</h2>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Head to <a href=\"https://gravatar.com/profile\">gravatar.com/profile</a></li>\n\n\n\n<li>Click on <strong>Avatars</strong></li>\n\n\n\n<li>Upload a new photo or click the three dots to edit an existing one</li>\n\n\n\n<li>Look for the <strong>Background</strong> and <strong>Stickers</strong> menus</li>\n\n\n\n<li>Start creating!</li>\n</ol>\n\n\n\n<p><strong>Pro tip:</strong> Try the search button in both the background and sticker menus – you might find something unexpected and perfect. </p>\n\n\n\n<p>Backgrounds come from <a href=\"https://www.pexels.com/\">Pexels</a> and stickers from <a href=\"https://giphy.com/stickers\">Giphy</a>. Or you can upload your own.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Why Update Your Avatar?</h2>\n\n\n\n<p>Remember, your Gravatar shows up automatically on millions of sites like WordPress, Slack, and Zapier. It&#8217;s the face you show the world across the web. With these new tools, you can make sure that face is exactly how you want it.</p>\n\n\n\n<p>Share your new look with us <a href=\"https://x.com/gravatar\">on X</a> or <a href=\"https://bsky.app/profile/gravatar.bsky.social\">Bluesky</a> — we can&#8217;t wait to see what you create!</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 26 Jan 2025 16:30:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Ronnie Burt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"Gravatar: Enhance Your WordPress Blog: Create a Custom Author Page\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"http://blog.gravatar.com/?p=1863\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://blog.gravatar.com/2025/01/26/wordpress-author-page/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:16651:\"<p>Author pages contain information about a person who has written, edited, or contributed to an article. This usually includes things like their name, picture, short bio, social media links, and then a list of all their published posts on the same domain.&nbsp;</p>\n\n\n\n<p>If you have a blog, it’s generally always a good idea to have dedicated authors and pages to accompany them. This is important for many reasons, but one of the main ones is that it instantly improves the credibility of the content. It’s one thing to read a technical piece written by a credible software engineer than an anonymous user with no name!</p>\n\n\n\n<p>Author pages not only encourage users to read and interact with your content (because they know a real person is behind it), but they are also great for improving your search engine rankings, along with E-E-A-T (Expertise, Experience, Authoritativeness, Trustworthiness).&nbsp;</p>\n\n\n\n<p>Now that you’re convinced how important author pages are, you’re probably wondering: “Is there a way to customize them, make them look better and more engaging?”</p>\n\n\n\n<p>Absolutely!&nbsp;</p>\n\n\n\n<p>To help you do just that, we’ve created this useful guide that will explore the different ways of customizing the author template in <a href=\"https://wordpress.org/\" rel=\"nofollow\">WordPress</a>, show you how you can create a custom page, use template tags, and take advantage of tools like <a href=\"https://gravatar.com/\">Gravatar</a> to take your author pages to the next level.&nbsp;</p>\n\n\n\n<a href=\"https://docs.gravatar.com/getting-started/\"><img width=\"3242\" height=\"729\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/12/gravatar_integration_cta.png\" alt=\"\" class=\"wp-image-2632\" /></a>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Customizing the default author template vs. creating a custom page</strong></h2>\n\n\n\n<p>There are two main approaches when it comes to improving your author pages: Customizing the default author page template and creating a custom author page from scratch.&nbsp;</p>\n\n\n\n<p>Let’s take a look at both methods.</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Customizing the default author template</strong></h3>\n\n\n\n<p>Before we dive into this, it’s important to mention that there is a difference between the author of an article and the ‘Author’ user role that exists in WordPress. Technically, the author of a blog post can also be the administrator, an editor, a contributor, as well as an author. So take into account that when we mention author, we mean any person who has written the specific piece of content.&nbsp;</p>\n\n\n\n<p>Now, with that out of the way, let’s get into the default author pages. The information they include is the data of the specific user profile, which looks like this:&nbsp;</p>\n\n\n\n<img width=\"1289\" height=\"1170\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/07/author-page-backend.png\" alt=\"User information settings in WordPress\" class=\"wp-image-1864\" />\n\n\n\n<p>You can add information like names, websites, and bio, along with the profile picture linked to their specific Gravatar profile. If they don’t have a Gravatar profile, their profile picture displays as a mystery person.&nbsp;</p>\n\n\n\n<p>On the front end, the author page will look different depending on the theme of your choice. For example, this is how it would look with the <a href=\"https://wordpress.org/themes/bloghash/\" rel=\"nofollow\">Bloghash WordPress theme</a>:&nbsp;</p>\n\n\n\n<img width=\"1493\" height=\"949\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/07/bloghash-theme-author-page.png\" alt=\"Example of the default author page in WordPress with the theme Bloghash\" class=\"wp-image-1865\" />\n\n\n\n<p>Customizing the default author template is suitable for minor changes and maintaining a consistent design across your WordPress site. By utilizing template tags, you can modify the default template regardless of the theme you&#8217;re using, without the need for additional plugins or custom code.</p>\n\n\n\n<p>The benefits of customizing the default template include:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Ease of implementation:</strong> Making changes to the existing template is relatively straightforward and doesn&#8217;t require extensive technical knowledge.</li>\n\n\n\n<li><strong>Maintaining a unified look:</strong> By working with the default template, you ensure that your author pages blend seamlessly with the rest of your site&#8217;s design.</li>\n</ul>\n\n\n\n<p>However, there are some limitations to this approach:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Less flexibility:</strong> Customizing the default template may not provide as much flexibility as creating a custom author page from scratch. You&#8217;re limited to the structure and elements already present in the template.</li>\n\n\n\n<li><strong>Potential conflicts with theme updates:</strong> If your theme receives an update that modifies the author template, your customizations may be overwritten, requiring you to reapply them.</li>\n</ul>\n\n\n\n<p>Despite these limitations, customizing the default author template can be a quick and effective solution for those who want to make minor improvements to their author pages while maintaining a consistent design across their WordPress site.</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Creating a custom author page</strong></h3>\n\n\n\n<p>A custom author page gives you full control over the design, the amount of information, and how it’s displayed, and it also comes with extra opportunities for user engagement. It’s a separate page that is then linked to this specific user and shows up when you click on their name.&nbsp;</p>\n\n\n\n<p>Unlike the default author page, you’re not restricted to the information fields on the back end and can add virtually anything. For example, you can include customized links to guest post contributions, client testimonials, extra information about services, a donation block, share buttons, and much more.&nbsp;</p>\n\n\n\n<p>The only possible downfall of these pages is that they require more effort to set up and maintain, and depending on your goals, you might need technical knowledge or external tools and plugins for the job. The payoff, however, is worth it.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>How to use template tags to customize the author template</strong></h2>\n\n\n\n<p>The design of your WordPress blog is defined by the theme you are using, and themes are made of different templates. Template tags PHP functions built into WordPress to fetch and display dynamic content allowing you to customize your blog and make the pages look exactly how you want them to.&nbsp;</p>\n\n\n\n<p>In this next section, we’ll guide you through the process of using template tags for author page customization, including code snippets.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Creating the author.php file</strong></h3>\n\n\n\n<p>The first step is to check whether there is an author.php file in your theme directory and create one if that’s not the case. This is the file you’ll be using to customize the layout and the content of the author pages.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Basic template tags for author information</strong></h3>\n\n\n\n<p>There are a couple of tags you can use to access author information, including:&nbsp;</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code><strong>the_author_meta</strong>()</code>: Use this to simply display author information.</li>\n\n\n\n<li><code><strong>get_the_author_meta</strong>()</code>: Use this if you want to return a value and save it to a variable. Values you can request include <code>admin_color, first_name, last_name, user_url, </code>and<code> nickname.</code></li>\n\n\n\n<li><code><strong>get_the_author_posts</strong>()</code>: Use this to retrieve the current author’s total number of posts.</li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Combining template tags with HTML and CSS</strong></h3>\n\n\n\n<p>You can display this data on the frontend of your website using the echo command, like in the example below:</p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;div class=\"author-info\"&gt;\n	&lt;h2&gt;About the Author&lt;/h2&gt;\n	&lt;p&gt;&lt;strong&gt;Name:&lt;/strong&gt; &lt;?php echo get_the_author_meta (\'display_name\'); ?&gt;&lt;/p&gt;\n	&lt;p&gt;&lt;strong&gt;Email:&lt;/strong&gt; &lt;?php echo get_the_author_meta (\'user_email\'); ?&gt;&lt;/p&gt;\n	&lt;p&gt;&lt;strong&gt;Bio:&lt;/strong&gt; &lt;?php echo get_the_author_meta (\'description\'); ?&gt;&lt;/p&gt;\n&lt;/div&gt;</code></pre>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Using conditional statements</strong></h3>\n\n\n\n<p>The <strong>is</strong>_author function introduces conditional logic, where you can check whether a page has an author, and display their information if it does. Use the following format:</p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;?php if ( is_author() ) : ?&gt;\n// Your code here if it returns true\n&lt;?php endif; ?&gt;</code></pre>\n\n\n\n<p>This is ideal for sites with a very simple URL structure where, say, a landing page and a blog post would have the same structure.</p>\n\n\n\n<p>Pair this with the <code>get_the_author_meta()</code> command to retrieve the author’s ID and display their information on the frontend, as shown above.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Building a custom author page on WordPress through Gravatar integration</strong></h2>\n\n\n\n<img width=\"1473\" height=\"918\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/07/gravatar-profiles-as-a-service-1.png\" alt=\"Gravatar homepage\" class=\"wp-image-1871\" />\n\n\n\n<p><a href=\"https://gravatar.com/\">Gravatar</a>, a service built by <a href=\"https://automattic.com/\">Automattic</a>, offers a powerful solution for creating feature-rich and dynamic author pages on your website with minimal effort. While WordPress already uses Gravatar profile pictures for users logged in with the same email, you can take this integration a step further by leveraging Gravatar&#8217;s Profiles-As-A-Service REST API to import entire user profiles and create fully customized author pages.</p>\n\n\n\n<p>For example, all the blog posts written by yours truly (me, Ronnie) have a link to my <a href=\"https://gravatar.com/burtrw\">Gravatar page</a>:&nbsp;</p>\n\n\n\n<img width=\"821\" height=\"353\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/07/link-to-gravatar-profile.png\" alt=\"Example of author link in a Gravatar blog post\" class=\"wp-image-1872\" />\n\n\n\n<p>This is so that when people click on my name, they are redirected to my Gravatar profile where I’ve put all important information about myself.</p>\n\n\n\n<img width=\"1032\" height=\"776\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/07/ronnie-gravatar-profile.png\" alt=\"Ronnie Burt Gravatar\'s profile\" class=\"wp-image-1873\" />\n\n\n\n<p>However, the benefits of Gravatar integration go beyond simply linking to an author&#8217;s Gravatar page. By utilizing the <a href=\"https://blog.gravatar.com/2024/06/03/profiles-as-a-service/\">Profiles-As-A-Service</a> REST API, you can create custom author pages on your website that display information imported directly from Gravatar. This offers several advantages:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Automatically synced author data: </strong>When a new author or contributor signs up to your site with their Gravatar profile, all their data is automatically imported. This includes name, location, job title, pronouns, bio, important links to their other work, verified social media accounts, and contact information. This streamlines the process for everyone, especially the author, as they don&#8217;t need to input their entire information from scratch.</li>\n\n\n\n<li><strong>Simplified author page creation:</strong> With Gravatar&#8217;s API, you have access to pre-populated data, allowing you to build custom author pages quickly without the need to collect information manually. Everything falls into place seamlessly.</li>\n\n\n\n<li><strong>Data consistency:</strong> Since the custom author page is connected to the Gravatar profile, any changes made to the author&#8217;s information on Gravatar are automatically reflected on your website. This eliminates the need for admins and IT support to constantly update author information manually.</li>\n\n\n\n<li><strong>Pre-verified author information:</strong> Gravatar validates and vets certain user data, such as linked social media accounts and payment links. This ensures that authors are who they claim to be, making it easier for readers to connect with them and enhancing the credibility and accuracy of your articles.</li>\n</ul>\n\n\n\n<p>So, if you want to leverage Gravatar to build a custom author page, check out our <a href=\"https://docs.gravatar.com/api/profiles/\">documentation for developers</a>.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Customizing the WordPress author box with Jetpack and Gravatar</strong></h2>\n\n\n\n<p>One of the most important parts of the author&#8217;s profile is their bio – it’s what gives the article credibility and entices readers to check out more posts or even connect with the author. Besides ensuring it’s written well, you can enhance the bio’s design even further with the <a href=\"https://jetpack.com/\" rel=\"nofollow\">Jetpack</a> plugin and its <a href=\"https://jetpack.com/support/gravatar-hovercards/\">Gravatar hovercard integration</a>.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Customizing author info with Jetpack</strong></h3>\n\n\n\n<img width=\"1317\" height=\"724\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/07/jetpack-homepage.png\" alt=\"Jetpack homepage\" class=\"wp-image-1875\" />\n\n\n\n<p>Jetpack comes with many additional features, that allow you to customize and add new functionalities to the author pages.&nbsp;</p>\n\n\n\n<p>First, it fully integrates with Gravatar to pull author information and update it automatically. Besides that, it lets you enable the display of the author’s name and bio or their Gravatar profile on single post pages with all the information directly pulled from their WordPress profile.&nbsp;</p>\n\n\n\n<p>In this example, we’ve added a Gravatar profile widget to the sidebar next to the blog post.&nbsp;</p>\n\n\n\n<img width=\"1992\" height=\"1017\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/07/gravatar-widget-jetpack.png\" alt=\"The Gravatar widget in Jetpack\" class=\"wp-image-1876\" />\n\n\n\n<p>With <a href=\"https://docs.gravatar.com/sdk/web-components/hovercards/\">Gravatar Hovercards</a> enabled, when people hover over the profile with their mouse, they’ll see a mini version of the profile as a hovercard.&nbsp;</p>\n\n\n\n<p>This is how it would look in our example:&nbsp;</p>\n\n\n\n<img width=\"1283\" height=\"848\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/07/example-hovercards-sarah.png\" alt=\"Example of a Gravatar hovercard\" class=\"wp-image-1878\" />\n\n\n\n<p>You can easily enable that by going to <em>Jetpack &gt; Settings &gt; Discussion </em>and then enabling the option named “<em>Enable pop-up business cards over commenters’ Gravatars</em>”</p>\n\n\n\n<img width=\"660\" height=\"404\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/07/enable-hovercards-in-jetpack.png?w=660\" alt=\"Enabling Hovercards in the Jetpack settings\" class=\"wp-image-1879\" />\n\n\n\n<p>There are many other customization options, especially with <a href=\"https://jetpack.com/support/extra-sidebar-widgets/\" rel=\"nofollow\">Jetpack widgets</a>. Still, we recommend keeping it simple and not cluttering the page with too many elements, as this may overwhelm readers. As always, balance is key.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Transform your WordPress site with a stunning custom author page</strong></h2>\n\n\n\n<p>Custom author pages are essential for showcasing your authors&#8217; expertise, fostering reader connections, and enhancing user experience. While there are various approaches to creating custom author pages on WordPress, integrating with Gravatar&#8217;s Profiles-As-A-Service REST API is the most efficient and effective solution.</p>\n\n\n\n<p>By leveraging Gravatar&#8217;s API, you can save time and effort, ensure data accuracy and consistency, provide a seamless user experience, and boost your blog&#8217;s SEO and E-E-A-T.&nbsp;<a href=\"https://docs.gravatar.com/api/profiles/\">Learn more about how you can integrate Gravatar</a> with your WordPress website and begin your journey toward a more connected and personalized user experience.</p>\n\n\n\n<a href=\"https://docs.gravatar.com/getting-started/\"><img width=\"3242\" height=\"729\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/12/gravatar_integration_cta.png\" alt=\"\" class=\"wp-image-2632\" /></a>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 26 Jan 2025 16:24:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Ronnie Burt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:11:\"\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"HeroPress: ‘Support Inclusion in Tech’ Grant Program Expansion\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://heropress.com/?p=7742\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:165:\"https://heropress.com/support-inclusion-in-tech-grant-program-expansion/#utm_source=rss&utm_medium=rss&utm_campaign=support-inclusion-in-tech-grant-program-expansion\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2501:\"<img width=\"1024\" height=\"501\" src=\"https://heropress.com/wp-content/uploads/3025/01/includsion_in_tech_banner2-1024x501.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Support Inclusion In Tech Grant Program Banner\" /><p><a href=\"https://supportinclusionintech.com/\">SiNC (Support Inclusion In Tech)</a> in 2024 launched a grant program, supporting those who have contributed to the WordPress project.</p>\n\n\n\n<p>From the Open Collective:</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>The grant program remains open to all WordPress contributors who have demonstrated significant contributions to the community through their involvement in local meetups, WordCamps, or code contributions. WordPress contributors can opt into a named directory starting in January 2025, and selections will be made in March 2025. Names will be entered into a random name picker for selection.</p>\n\n\n\n<p><a href=\"https://opencollective.com/support-inclusion-in-tech/updates/sinc-expands-grant-program-to-empower-wordpress-contributors-across-north-and-south-america\">https://opencollective.com/support-inclusion-in-tech/updates/sinc-expands-grant-program-to-empower-wordpress-contributors-across-north-and-south-america</a></p>\n</blockquote>\n\n\n\n<p>At the time of its announcement the grants were only available in Europe, Asia, and Africa.</p>\n\n\n\n<p><a href=\"https://supportinclusionintech.com/\">SiNC</a> is now pleased to announce that this grant program is also available in North and South America!  If you&#8217;d like to apply for a grant, <a href=\"https://www.jotform.com/243518481147055\">fill out this form</a>.</p>\n\n\n\n<h2 class=\"kt-adv-heading7742_b006f6-13 wp-block-kadence-advancedheading\">More Information</h2>\n\n\n\n<p><a href=\"https://supportinclusionintech.com/sinc-expands-grant-program-to-empower-wordpress-contributors-across-north-and-south-america/\">Official Press Release</a></p>\n\n\n\n<p><a href=\"https://opencollective.com/support-inclusion-in-tech/updates/sinc-expands-grant-program-to-empower-wordpress-contributors-across-north-and-south-america\">Open Collective Announcement</a></p>\n\n\n\n<p><a href=\"https://wptavern.com/support-inclusion-in-tech-expands-grant-program-to-north-and-south-america\">WPTavern Article</a></p>\n<p>The post <a href=\"https://heropress.com/support-inclusion-in-tech-grant-program-expansion/\">‘Support Inclusion in Tech’ Grant Program Expansion</a> appeared first on <a href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 25 Jan 2025 21:32:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:102:\"Gutenberg Times: Cursor AI, Block Themes, Fediverse, WordCamp Asia and more —   Weekend Edition #317\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=37397\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:103:\"https://gutenbergtimes.com/cursor-ai-block-themes-fediverse-wordcamp-asia-and-more-weekend-edition-317/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:19590:\"<p>Hi there, </p>\n\n\n\n<p>Did you start well into the new year? The first month is almost over. Working from home, I am really looking forward to seeing my WordPress friends at <a href=\"https://asia.wordcamp.org/2025/\">WordCamp Asia</a> in Manila. The team facilitates meeting contributors in one-on-one sessions and to ask questions: It&#8217;s called the <a href=\"https://asia.wordcamp.org/2025/human-library-books/\">Human Library and contributors are call Books</a>. My shift is from 10:30 to noon on Contributor Day. You can also meet Ryan Welcher, Nick Diego, Milana Cap, Hari Shanker to mention just a few.</p>\n\n\n\n<p>If FOMO (fear of missing out) is real for you, rest assured you can always ping me for a chat, email pauli@gutenbergtimes.com, or message me on Slack or <a href=\"https://bsky.app/messages\">Bluesky</a>. I would be delighted! </p>\n\n\n\n<p>In this week&#8217;s edition, you&#8217;ll find quite a few tutorials,  plugins, and podcast episodes and nowadays also AI. I hope you&#8217;ll enjoy ready and listening to it all as I did. </p>\n\n\n\n<p>Have a fantastic weekend! </p>\n\n\n\n<p>Yours, 💕<br /><em>Birgit</em></p>\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background\"><div class=\"wp-block-group__inner-container is-layout-flow wp-block-group-is-layout-flow\">\n<p><strong>Table of Contents</strong></p>\n\n\n\n<ol><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/cursor-ai-block-themes-fediverse-wordcamp-asia-and-more-weekend-edition-317/#0-word-press-release-information\">Developing Gutenberg and WordPress</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/cursor-ai-block-themes-fediverse-wordcamp-asia-and-more-weekend-edition-317/#0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/cursor-ai-block-themes-fediverse-wordcamp-asia-and-more-weekend-edition-317/#2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/cursor-ai-block-themes-fediverse-wordcamp-asia-and-more-weekend-edition-317/#3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </a></li></ol>\n</div></div>\n\n\n<div width=\"100%\" class=\"wp-block-newsletterglue-showhide ng-block\">\n<div class=\"wp-block-group\"><div class=\"wp-block-group__inner-container is-layout-constrained wp-block-group-is-layout-constrained\">\n<p>Hey friends! 🌴✨ Get ready for an epic adventure at&nbsp;<strong>WordCamp Asia 2025</strong>&nbsp;in vibrant Manila! </p>\n\n\n\n<p>I&#8217;ll be diving deep into the WordPress universe &#8211; hanging out at Contributor Day (February 20th) and rocking both conference days (February 21-22nd).Want to connect? I&#8217;m totally open to grabbing&nbsp;<strong>coffee, lunch, or catching up</strong>&nbsp;between sessions at the Philippine International Convention Center. </p>\n\n\n\n<p><a href=\"https://bit.ly/bph-wcasia\">Check out my public calendar</a> and snag a slot &#8211; let&#8217;s turn this tech gathering into an unforgettable networking experience! Can&#8217;t wait to swap stories, share insights, and soak up the incredible WordPress community energy in the Philippines. Who&#8217;s in? 🚀🇵🇭 #WordCampAsia2025</p>\n\n\n\n<img width=\"652\" height=\"433\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/01/proud-banner-speaker-2-smaller.png?resize=652%2C433&ssl=1\" alt=\"\" class=\"wp-image-37428\" />\n</div></div>\n</div>\n\n\n<p>As mentioned last week, <em>DoTheWoo</em> and <em>Gutenberg Times</em> were founded around the same time. <strong>Bob Dunn aka BobWP</strong> and I chatted about our starts in our 7th anniversary episode: <a href=\"https://dothewoo.io/reflections-on-gutenberg-times-and-do-the-woo-with-birgit-and-bobwp/\">The Evolution of WordPress Content: Insights on Gutenberg, Podcasting, and Community Growth</a>. Bob is the astounding supporter of the WordPress community and raises diverse voices with his network of 12 podcast and hosts. You will always find something or someone interesting to listen to or about.</p>\n\n\n\n<a href=\"https://dothewoo.io/reflections-on-gutenberg-times-and-do-the-woo-with-birgit-and-bobwp/\"><img width=\"652\" height=\"367\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/01/Do-the-Woo-Podcast-On-WPCommunity-Epiosde-600-edited.jpg?resize=652%2C367&ssl=1\" alt=\"\" class=\"wp-image-37480\" /></a>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-word-press-release-information\">Developing Gutenberg and WordPress</h2>\n\n\n\n<p><strong>Aaron Jorbin</strong> announced <a href=\"https://make.wordpress.org/core/2025/01/22/wordpress-6-7-2-release-planning/\">WordPress 6.7.2 Release Planning</a> with RC 1 on February 4 and final release on February 11, 2025. </p>\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background\"><div class=\"wp-block-group__inner-container is-layout-constrained wp-block-group-is-layout-constrained\">\n<p>🎙️ Latest episode: <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-113-wordpress-6-8-gutenberg-19-9-20-0-and-20-1-plugin-releases/\">Gutenberg Changelog 113 – WordPress 6.8, Gutenberg 19.9, 20.0 and 20.1 Plugin Releases</a> with special guest Tammie Lister 💕</p>\n\n\n\n<img width=\"652\" height=\"183\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/01/Screenshot-2025-01-17-at-18.13.07.png?resize=652%2C183&ssl=1\" alt=\"Tammie Lister and Birgit Pauli-Haack recording Gutenberg Changelog episode 113\" class=\"wp-image-37366\" />\n</div></div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</h2>\n\n\n\n<p><a href=\"https://x.com/Copons\"><strong>Jacopo &#8220;Copons&#8221; Tomasone</strong></a> wanted you to know about <a href=\"https://wordpress.com/blog/2025/01/22/interface-update/\"><strong>an Update to WordPress.com’s Interface</strong></a>: &#8220;The updated interface is the latest release in a larger project to bring the experience on WordPress.com much closer to a “core” WordPress experience.” Tomasone wrote and continued &#8220;This is just the beginning of a gradual process that will continue over the next few months as we continue to create a more unified and familiar experience across our products.&#8221;</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Brian Coords</strong> published a new episode of the <em>Webmasters</em> podcast.  He chatted with <strong><a href=\"https://x.com/iansvo\">Ian Svoboda</a> </strong>of Generate Blocks, how the plugin<a href=\"https://webmasters.fm/how-generateblocks-adds-modern-design-tools-to-gutenberg/\"><strong> adds modern design tools to Gutenberg</strong></a>. They also discussed all about building on top of the block editor and crafting tools that supercharge your site-building workflow. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In <a href=\"https://wordpress.com/blog/2025/01/16/fediverse-reactions-block/\"><strong>Improving Fediverse Engagement With the Reactions&nbsp;Block</strong></a>, <a href=\"https://x.com/mattwiebe\"><strong>Matt Wiebe</strong></a>  introduced&nbsp;Likes,&nbsp;Reposts, and the&nbsp;Fediverse Reactions block, and expanding the ActivityPub plugin. With the Reactions Block, likes and reposts from Mastodon and other Fediverse platforms are automatically added to the end of your posts (if you’re using the Site Editor).</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Jeremy Holcombe</strong> discussed <a href=\"https://kinsta.com/blog/wordpress-dark-mode/\"><strong>WordPress dark mode: key benefits and how to set it up</strong></a> on the Kinsta blog. You’ll discover the advantages of dark mode, such as better accessibility, a healthier visitor experience, lower energy use, and meeting user preferences. He also shows you different ways to add dark mode to WordPress with plugins or custom code. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><a href=\"https://x.com/aliaghdam\"><strong>Ali Aghdam</strong></a> from Istanbul, Turkey, and his team soft-launched <strong><a href=\"https://wordpress.org/plugins/blockera/\">Blockera</a></strong> &#8211; a plugin to add supposedly missing features to the Block editor for designers. The current version feels like a beta of the Pro-version. You&#8217;ll find a lot of &#8220;coming soon&#8221; or &#8220;upgrade now&#8221; prompts around the interface. It gives you a good indication where the various features will be placed. </p>\n\n\n\n<p>I test the additional text features, and they seem to be solid, adding enhanced text shadow and orientation capabilities. An already <a href=\"https://community.blockera.ai/\">active community</a> and the process of building public, allows for a fairly fast update cycle. It&#8217;ll be interesting to see how this compares to other tools, once the free and pro versions are more progressed. With 195 blocks, it&#8217;s definitely not for the faint of heart. You can join the waitlists for the pro version as well as for the Blockera One block theme on <a href=\"https://blockera.ai/\">blockera.ai.</a> The <a href=\"https://wordpress.org/plugins/blockera/\">plugin is available</a> in the WordPress repository. </p>\n\n\n\n<a href=\"https://wordpress.org/plugins/blockera/\"><img width=\"652\" height=\"318\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/01/Screenshot-2025-01-24-at-11.36.23.png?resize=652%2C318&ssl=1\" alt=\"\" class=\"wp-image-37462\" /></a>\n\n\n\n<p>WooCommerce 9.6 was released and <strong>Stephanie Pi</strong> highlight in the release announcement <a href=\"https://developer.woocommerce.com/2025/01/20/woocommerce-9-6-fresh-new-tools-and-modernizing-classics/\"><strong>WooCommerce 9.6: Fresh new tools and modernizing classics</strong></a>, she highlights: </p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://developer.woocommerce.com/2025/01/20/woocommerce-9-6-fresh-new-tools-and-modernizing-classics/#h-brands-has-landed\">Brands has landed</a></li>\n\n\n\n<li><a href=\"https://developer.woocommerce.com/2025/01/20/woocommerce-9-6-fresh-new-tools-and-modernizing-classics/#h-smarter-defaults-for-measuring-unit\">Smarter defaults for measuring unit</a></li>\n\n\n\n<li><a href=\"https://developer.woocommerce.com/2025/01/20/woocommerce-9-6-fresh-new-tools-and-modernizing-classics/#h-product-summary-block-enhanced\">Product Summary block, enhanced</a></li>\n\n\n\n<li><a href=\"https://developer.woocommerce.com/2025/01/20/woocommerce-9-6-fresh-new-tools-and-modernizing-classics/#h-more-new-features-and-updates\">More new features and updates</a></li>\n</ul>\n\n\n\n<a href=\"https://developer.woocommerce.com/2025/01/20/woocommerce-9-6-fresh-new-tools-and-modernizing-classics/\"><img width=\"652\" height=\"501\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/01/Screenshot-2025-01-24-at-14.16.03.png?resize=652%2C501&ssl=1\" alt=\"\" class=\"wp-image-37478\" /></a>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</h2>\n\n\n\n<p>In episode #153, <strong>Nathan Wrigley</strong> chatted with <a href=\"https://wptavern.com/podcast/153-tammie-lister-on-modern-theme-development-and-artistic-exploration\"><strong>Tammie Lister on Modern Theme Development and Artistic Exploration</strong></a>. &#8220;The fact that Tammie is both a designer and a technical expert has allowed her to offer a well-rounded perspective on the evolution and future of WordPress themes. We explore the shift from classic themes to the new era of Full Site Editing and theme.json, and discuss whether the slower-than-anticipated adoption of these new tools signifies a deeper trend, or just a transitional phase.&#8221; wrote Wrigley in the summary. </p>\n\n\n\n<p><strong>&nbsp;<a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" target=\"_blank\" rel=\"noreferrer noopener\">&#8220;Keeping up with Gutenberg &#8211; Index 2024&#8221;</a>&nbsp;</strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test, and Meta team from Jan. 2024 on. Updated by yours truly. The previous years are also available: <strong><strong><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/\">2020</a>&nbsp;|&nbsp;<a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2021/\">2021</a></strong>&nbsp;|&nbsp;<strong><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2022/\">2022</a></strong></strong>&nbsp;|&nbsp;<strong><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/gutenberg-index-2023\">2023</a></strong></p>\n\n\n\n<p><a href=\"https://maxiblocks.com/author/kp_oxctwsred/\"></a><strong><a href=\"https://x.com/kyralPieterse\">Kyra Pieterse</a></strong> of <em>Maxiblocks </em>shared <a href=\"https://maxiblocks.com/6-important-reasons-for-switching-to-wordpress-full-site-editing/\"><strong>six important reasons for switching to WordPress FSE</strong></a>. Working in the Site editor &#8220;simplifies customization, reduces the need for coding, and improves site performance by optimizing speed and functionality. With features like global styling, reusable templates, and responsive design tools, FSE provides a streamlined way to create professional WordPress websites that meet the needs of both website designers and businesses.&#8221; she wrote.  She dives deeper into each of the arguments in her article. </p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </h2>\n\n\n\n<p>Ever since <a href=\"https://wordpress.com/blog/2024/04/24/studio/\">Studio was released</a>, I wondered if I can make it the only local development app. Ever since my agency days, I have been using LocalWP. The latest Studio update: <a href=\"https://wordpress.com/blog/2025/01/06/studio-sync/\"><em>Build Locally, Deploy Globally: Meet Studio Sync for WordPress.com</em></a> had me wondered if all I need now is Studio. I have probably about two dozen sites in my LocalWP instance for various testing and building scenarios, so I was curious how fast can I migrate a site to Studio? Turns out it only takes a couple of minutes per site to export from Local and import into Studio. You can see a short video and some details on my blog post. <a href=\"https://icodeforapurpose.com/migrate-my-local-sites-to-studio/\"><strong>How do I migrate my LocalWP sites to Studio by WordPress.com?</strong></a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In his post on the WordPress developer blog, <a href=\"https://developer.wordpress.org/news/2025/01/one-hook-to-rule-them-all-the-many-faces-of-block-categories/\"><strong>One hook to rule them all: The many faces of block categories</strong></a>, <strong><a href=\"https://x.com/troychaplin\">Troy Chaplin</a></strong> takes a deep dive into the ins and outs of Block categories for the Inserter of the Editor. &#8220;The hook is a versatile tool that allows developers to customize the way block categories are organized. Throughout this article, you will learn how to use this hook and build functions to add, reorder and rename single or multiple block categories.&#8221; Chaplin wrote. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong><a href=\"https://x.com/carlodaniele\">Carlo Daniele</a></strong> set out to teach developers <a href=\"https://kinsta.com/blog/gutenberg-plugin/\"><strong>how to build a Gutenberg plugin to add functionality to the block editor</strong></a>. You&#8217;ll lean how to create a plugin without creating a custom block, add a sidebar to manage post metadata, and use block pattern overrides to automate your workflow. <br /> </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In his latest video, <strong>Nick Diego</strong>, developer relations advocate for WordPress,  set out to show you how you can <a href=\"https://www.youtube.com/watch?v=3_TiyKdPNq4\"><strong>revolutionize your WordPress development with Cursor AI</strong></a>.  He demonstrated how to set up Cursor for seamless WordPress plugin creation by configuring it specifically for WordPress coding standards, and creating structure instructions. As an example,  Diego built  &#8211; AI assisted &#8211; a Copy Code block plugin. </p>\n\n\n<div width=\"100%\" class=\"wp-block-newsletterglue-showhide ng-block\">\n<div class=\"wp-block-embed__wrapper\">\n<div class=\"toolbelt-video-wrapper\"></div>\n</div>\n</div>\n\n\n<p><strong><a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Need a plugin .zip from Gutenberg&#8217;s master branch?</a></strong><br />Gutenberg Times provides daily build for testing and review. </p>\n\n\n\n<p>Now also available via <a href=\"https://playground.wordpress.net/?blueprint-url=https://gutenbergtimes.com/wp-content/uploads/2020/11/playnightly.json\">WordPress Playground</a>. There is no need for a test site locally or on a server. Have you been using it? <a href=\"mailto:pauli@gutenbergtimes.com\">Email me </a>with your experience</p>\n\n\n\n<p><img alt=\"GitHub all releases\" src=\"https://img.shields.io/github/downloads/bph/gutenberg/total?style=for-the-badge\" /></p>\n\n\n\n<p class=\"has-text-align-center has-small-font-size\"><em>Questions? Suggestions? Ideas? </em><br /><em>Don&#8217;t hesitate to send <a href=\"mailto:pauli@gutenbergtimes.com\">them via email</a> or</em><br /><em> send me a message on WordPress Slack or Twitter @bph</em>.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p class=\"has-text-align-center has-small-font-size\">For questions to be answered on the <a href=\"http://gutenbergtimes.com/podcast\">Gutenberg Changelog</a>, <br />send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p></p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n\n\n\n<p class=\"has-text-align-left\"><strong>Don&#8217;t want to miss the next Weekend Edition? </strong></p>\n\n\n<form class=\"wp-block-newsletterglue-form ngl-form ngl-portrait\" action=\"https://gutenbergtimes.com/feed/\" method=\"post\"><div class=\"ngl-form-container\"><div class=\"ngl-form-field\"><label class=\"ngl-form-label\" for=\"ngl_email\"><br />Type in your Email address to subscribe.</label><div class=\"ngl-form-input\"><input type=\"email\" class=\"ngl-form-input-text\" name=\"ngl_email\" id=\"ngl_email\" /></div></div><button type=\"submit\" class=\"ngl-form-button\">Subscribe</button><p class=\"ngl-form-text\">We hate spam, too, and won&#8217;t give your email address to anyone <br />except Mailchimp to send out our Weekend Edition</p></div><div class=\"ngl-message-overlay\"><div class=\"ngl-message-svg-wrap\"></div><div class=\"ngl-message-overlay-text\">Thanks for subscribing.</div></div><input type=\"hidden\" name=\"ngl_list_id\" id=\"ngl_list_id\" value=\"26f81bd8ae\" /><input type=\"hidden\" name=\"ngl_double_optin\" id=\"ngl_double_optin\" value=\"yes\" /></form>\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 24 Jan 2025 23:14:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"Do The Woo Community: Reflections on Gutenberg Times and Do the Woo with Birgit and BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=89288\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"https://dothewoo.io/reflections-on-gutenberg-times-and-do-the-woo-with-birgit-and-bobwp/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:212:\"In episode, Bob and Birgit discuss their journeys in the WordPress community, focusing on the evolution of Gutenberg, podcasting challenges, and the importance of diverse voices, while planning for future events.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 23 Jan 2025 15:44:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"WPTavern: #153 – Tammie Lister on Modern Theme Development and Artistic Exploration\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=185775\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"https://wptavern.com/podcast/153-tammie-lister-on-modern-theme-development-and-artistic-exploration\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:47816:\"Transcript<div>\n<p>[00:00:00] <strong>Nathan Wrigley:</strong> Welcome to the Jukebox podcast, from WP Tavern. My name is Nathan Wrigley.</p>\n\n\n\n<p>Jukebox is a podcast which is dedicated to all things WordPress. The people, the events, the plugins, the blocks, the themes, and in this case the underpinnings of modern theme development and artistic exploration within WordPress.</p>\n\n\n\n<p>If you&#8217;d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast player of choice, or by going to wptavern.com/feed/podcast, and you can copy that URL into most podcasts players.</p>\n\n\n\n<p>If you have a topic that you&#8217;d like us to feature on the podcast, I&#8217;m keen to hear from you and hopefully get you, or your idea. Featured on the show. Head to wptavern.com/contact/jukebox and use the form there.</p>\n\n\n\n<p>So on the podcast today, we have Tammie Lister. Tammie is a product creator focusing on WordPress. She has a hybrid background as a full stack product creator. She contributes to WordPress, and is passionate about open source and the WordPress community.</p>\n\n\n\n<p>Tammie has a rich history with WordPress, having worked with themes and the platform for many years. Her journey melds her artistic flair with technical expertise, something which is, I think, quite rare. Her experience spans theme building, design, development, and more recently guiding product developers through Guildenberg, an initiative which she co-founded.</p>\n\n\n\n<p>The fact that Tammie is both a designer and a technical expert has allowed her to offer a well-rounded perspective on the evolution and future of WordPress themes.</p>\n\n\n\n<p>We explore the shift from Classic Themes to the era of Full Site Editing and theme.json, and discuss whether the lower than anticipated adoption of these new tools signifies a deeper trend or just a transitional phase.</p>\n\n\n\n<p>Additionally, Tammie shares her insights on the necessity of beauty versus utility on the internet, the importance of experimentation in design, and how our definition of art and themes needs continual rethinking.</p>\n\n\n\n<p>We also get into her personal artistic endeavors, where she balances her tech workspace with an art studio, highlighting her lifelong passion for photography.</p>\n\n\n\n<p>If you&#8217;re curious about the current state of WordPress theming, the impact of emerging technologies on the platform, or how to infuse more creativity into your web projects, this episode is for you.</p>\n\n\n\n<p>If you&#8217;re interested in finding out more, you can find all of the links in the show notes by heading to wptavern.com/podcast, where you&#8217;ll find all the other episodes as well.</p>\n\n\n\n<p>And so, without further delay, I bring you Tammie Lister</p>\n\n\n\n<p>I am joined on the podcast by Tammie Lister. Hello, Tammie.</p>\n\n\n\n<p>[00:03:14] <strong>Tammie Lister:</strong> Hello, how are you?</p>\n\n\n\n<p>[00:03:15] <strong>Nathan Wrigley:</strong> Very good. I love the way that on these podcasts, we talk as if we&#8217;ve just started the call, whereas Tammie and I have already managed to chat for about an hour at least about all sorts of things.</p>\n\n\n\n<p>But the endeavor today is to talk about themes. We&#8217;re going to come at it from a whole bunch of different angles, I hope.</p>\n\n\n\n<p>But before we do that, I think it&#8217;s probably good that Tammie gets an opportunity to paint a picture of where her experience lies with WordPress and themes. So really I&#8217;m just asking you for your potted bio, Tammie, if that&#8217;s all right.</p>\n\n\n\n<p>[00:03:43] <strong>Tammie Lister:</strong> Themes is really a thread that&#8217;s run throughout. I kind of started doing that within WordPress, and it&#8217;s actually the reason why I started doing WordPress. The best way I describe it is I was torturing my own CMS. And then I found, like everybody was doing that, right? Everyone had their own PHP insecure thing.</p>\n\n\n\n<p>And then I found WordPress because I was blogging about design and development and then I just found themes and just fell in love Kubrick And then just really got into, through BuddyPress themes, through theming, and that&#8217;s kind of been my thread.</p>\n\n\n\n<p>I would say I kind of work more on the product side now, and I also describe myself as a hybrid because I just like to do all the things. I like to do product, I like to do design and development. And I&#8217;m currently working both in creating things and supporting product developers through co-founding of Guildenberg, where we work with product makers, and I also work on so many different things, but I also work with themes as well.</p>\n\n\n\n<p>[00:04:36] <strong>Nathan Wrigley:</strong> Are you one of those lucky people who is a hybrid of designer and technical?</p>\n\n\n\n<p>[00:04:42] <strong>Tammie Lister:</strong> I mean, we could go that I&#8217;m not very good at either of them, but let&#8217;s go with I&#8217;m lucky in that I do both of them, yes.</p>\n\n\n\n<p>[00:04:48] <strong>Nathan Wrigley:</strong> And have you always, dare I ask, have you always had a sort of an artistic flare? You know, when you were at school, were you always drawn to sort of putting paint on canvas and those kind of things?</p>\n\n\n\n<p>[00:04:58] <strong>Tammie Lister:</strong> Yeah, so one of the things is because of my age, the web did not exist. I was creative, so therefore it was considered that because I was creative I had to go and do art. That was quite a narrow vision quite a few decades ago.</p>\n\n\n\n<p>And I always had this love of computers, Acorn Electrons, all those kind of early computers. I still loved all of that kind of stuff. I&#8217;m lucky enough to have been, I&#8217;m 50 coming up this year, so I was lucky enough to have been from the start of computers, going all the way through. And I think if you have that, you are hybrid by nature, because you got to see the technology as it happened, even if you are kind of more on the artistic side.</p>\n\n\n\n<p>So I did the art first of all. I actually did psychology, then I did art, and then I got to kind of retrain in software engineering. Most of my life I&#8217;ve done one, and then I&#8217;ve done the other, then I&#8217;ve done one, then I&#8217;ve done the other, and then this thing called product appeared in the universe, which we found a label to put on everybody. And I&#8217;ve adopted that because it actually fits.</p>\n\n\n\n<p>[00:05:56] <strong>Nathan Wrigley:</strong> Coming from somebody who is profoundly unskilled in the artistic side of life, I&#8217;m quite jealous that you have that in your background.</p>\n\n\n\n<p>[00:06:03] <strong>Tammie Lister:</strong> Thank you for saying I&#8217;m skilled. I&#8217;ll go with that.</p>\n\n\n\n<p>[00:06:06] <strong>Nathan Wrigley:</strong> Sorry, I know this is going off piste little bit, do you keep your hand in with the artistic side of things? I mean, I know that the listeners can&#8217;t see what I can see, but it looks like you&#8217;re in an environment where art materials may be a part of your daily life. Do you still do that?</p>\n\n\n\n<p>[00:06:20] <strong>Tammie Lister:</strong> Yeah. I&#8217;m really lucky. So my office is half working for tech, like my desk, and then the other half is my art studio. And the half of my art studio has over the years, got bigger and started invading. So my art forms are primarily, either digital art, painting, and it&#8217;s an easel the other side, or photography.</p>\n\n\n\n<p>So even like one of my art forms is very very technical. So when you actually study art, you have to pick mediums and those were the mediums. So photography is one of the mediums that&#8217;s run throughout, and that&#8217;s probably like one of the most technical art forms that you can do as well.</p>\n\n\n\n<p>[00:06:52] <strong>Nathan Wrigley:</strong> I am going to ask you a really unfair question, but if the universe conspired so that you could only keep one form of art, be that photography, painting or the online stuff or, I don&#8217;t know, Photoshop. What would be the one which speaks to you the most? The one that you would jettison as a last resort?</p>\n\n\n\n<p>[00:07:11] <strong>Tammie Lister:</strong> Photography, because it&#8217;s been something that I&#8217;ve just in different mediums. We were talking before, one of my, projects is weird cameras. I am currently playing with a camera that does thermo printing onto receipts. But, I love the idea that you can take pictures into different things, even if you do like pinhole cameras. So yeah, the idea that you can capture pictures that way, or that you can capture pictures and then even like through AI, manipulate them. That&#8217;s something that super interests me.</p>\n\n\n\n<p>[00:07:37] <strong>Nathan Wrigley:</strong> I always think there&#8217;s something really magical about holding that piece of equipment in your hand as well. I don&#8217;t know what it is, the internet, you can&#8217;t get your hands on it in the same way can you, as you can with a piece of art or a camera or what have you? And I think there&#8217;s just something very human there.</p>\n\n\n\n<p>[00:07:48] <strong>Tammie Lister:</strong> You get so nerdy about your cameras. If you find the cameras, I&#8217;m a Fuji person, and you find your kind of kits and your, yeah. That&#8217;s a different podcast. But like I could get equally as nerdy about themes as I could about my camera set up. So yeah.</p>\n\n\n\n<p>[00:08:03] <strong>Nathan Wrigley:</strong> So pivoting more towards the internet then, and again, we&#8217;re not getting into the subject at hand, but I&#8217;m enjoying this conversation, so lets keep it going for a few minutes. Do you think the internet requires beauty? Or is that kind of like an added benefit? So a typical website, does it need to be beautiful or is the internet a more utilitarian thing, or is it more of a website by website, case by case basis?</p>\n\n\n\n<p>[00:08:26] <strong>Tammie Lister:</strong> So I think it&#8217;s a little bit of case by case. It depends. I will always love experimentation, but I studied art in the days of installation rooms, and the really weird nineties art. So that&#8217;s kind of like my grounding is like the weird stuff. The modern art that a lot of people look at and go, huh I quite like a lot of that. But also, through experimentation, we also find out what can be maybe applied to more usable content.</p>\n\n\n\n<p>And I think that that&#8217;s something to be said like, will a real pushed experiment be used by everybody? Nope, not probably. But can it push the medium? Yes. And that is also something that&#8217;s been done time and time again in art.</p>\n\n\n\n<p>But I think it&#8217;s really careful to, the word art is used a little bit too broadly. Art means something very different from design, and those need to be defined separately a little bit when we&#8217;re saying it. The whole first year of studying art is trying to define the word art, when you study it. Trying to define the word art as a whole thing. And we just, particularly in the digital world, we&#8217;re like, yeah, it&#8217;s art. I don&#8217;t think the people that studied art, and art history, would be saying that as well. Sometimes we apply words in our industry that we are maybe applying that we shouldn&#8217;t as well.</p>\n\n\n\n<p>So where I like to see it is experimentation, and I think we need more experimentation in our medium to get it forward a little bit. But then for use case, yeah, that deviated quite a lot in saying it.</p>\n\n\n\n<p>[00:09:52] <strong>Nathan Wrigley:</strong> No, no, but that&#8217;s interesting because I guess with things like the advent of CMSs and the growing popularity of CMSs, it is possible to go into a very cookie cutter kind of approach to websites. You know, it&#8217;s got a header, it&#8217;s got a footer, it&#8217;s got a hero and what have you.</p>\n\n\n\n<p>And the internet for many people has become a bit of a stale place, and there&#8217;s not much innovation. You know, if you go to a bookshop and you look at the magazines, especially if you&#8217;re probably not looking at car mechanics, but if you&#8217;re heading towards the more artistic side of things, the innovation there is really profound. And I know you can find examples of that on the internet.</p>\n\n\n\n<p>[00:10:24] <strong>Tammie Lister:</strong> But that happens also in art. Homogenisation of art also happens. So you&#8217;ll find that, you&#8217;ll go through periods where great art, artistic periods and just liveliness and periods where boundaries are pushed in art, and it&#8217;s amazing and it&#8217;s great. And then this homogenised periods of just like beige art comes out, and doesn&#8217;t feel that anyone&#8217;s pushing any boundaries or anyone&#8217;s doing it, and it just all feels the same.</p>\n\n\n\n<p>We are maybe going through one of those. I would argue that what we are going through is maybe some of the technology is the bit that&#8217;s changing, and experimental. So maybe the things that we are not seeing on the top are the things that are changing, and the top needed to distill anyway. And I think that that&#8217;s probably the biggest change we are going to be experiencing or we should be experiencing is the top doesn&#8217;t matter. And I think that&#8217;s going to be quite ground breaking to a lot of us.</p>\n\n\n\n<p>Back not too long ago, we used to be very precious about the design. You&#8217;d get this design and you&#8217;d be pixel perfect making it, and you&#8217;d be measuring it, and you&#8217;d be getting out your, how many widget screen rulers, right? And you&#8217;d be measuring it and doing break widths, and points and all these kind of things. And I don&#8217;t know what that word is, the break points and doing all these kind of measures and being very precise about it.</p>\n\n\n\n<p>And now that time is changing. Now you are looking at fluid typography. Now you are looking at, how does this respond? And it&#8217;s not that it responds in breakpoints, you don&#8217;t know what device someone&#8217;s going to be viewing on. They could be viewing it through goggles. All these kind of different experiences, and you may not have ever used the device that they&#8217;re experiencing on. Try browser testing every single browser in the world, good luck.</p>\n\n\n\n<p>But that&#8217;s the reality that you&#8217;re working in now. And when you&#8217;re working in that, the interface has to be secondary, and personalisation is quite key for the user. And that&#8217;s quite hard for us to understand, that the interface could be heavily changed and should be heavily changed depending on the user need, rather than it being this perfect vision.</p>\n\n\n\n<p>But then again, some things are just going to be an experience. So you are going to wander in, and it&#8217;s going to be a beautifully kept shop front because it feels like that. It&#8217;s use case, right?</p>\n\n\n\n<p>[00:12:31] <strong>Nathan Wrigley:</strong> The changes that have happened in the WordPress space, let&#8217;s say over the last five or six years. So we went from what we might call Classic Themes. I guess that&#8217;s the term that most people would be familiar with, where you are interacting with template files. And now we&#8217;re in an era of Full site editing or Site Editing. The interface in WordPress, if you don&#8217;t install a Classic Theme, allows you to do all of that in a, kind of more or less what you see what you get. You can interact with the templates, for want of a better word, inside of a GUI, and you can use the mouse instead of using a text editor and what have you.</p>\n\n\n\n<p>Now, that project, on the face of it, five or six years ago, obviously it was hoped that that would receive wide adoption, and I think maybe the upper echelons of the WordPress project were maybe assuming that people would jump on board with this. But it seems like that really hasn&#8217;t happened.</p>\n\n\n\n<p>I have a memory, I don&#8217;t really know if the numbers I&#8217;m about to say are correct, but I have a memory that it was hoped that within a year of Full Site Editing coming around, that there&#8217;d be 5,000 themes inside the .org repo.</p>\n\n\n\n<p>I think we&#8217;ve really only just now, so five years later, gone past 1000. I wonder if you&#8217;ve got any intuitions as to why it hasn&#8217;t been adopted, not just by end users, but also developers, and agencies, and all these different people? Has it stagnated? Is it a project which has got no legs? Are people going to use classic themes forever? What&#8217;s your thoughts?</p>\n\n\n\n<p>[00:13:52] <strong>Tammie Lister:</strong> So I think there&#8217;s a lot of points there, but I think there&#8217;s a couple points. Splitting out the infrastructure from the interface is kind of important. So are people using the underpinning technologies? Or are they only using the interface? And I think that&#8217;s something to consider.</p>\n\n\n\n<p>So the, page builder, the site editor is different from, using theme json maybe. So that&#8217;s also something to consider. So some agencies maybe aren&#8217;t turning on Site Editor, but they&#8217;re using theme json. That&#8217;s like a really basic example of that.</p>\n\n\n\n<p>I think that, is actually probably quite a strong case. Using the org theme repo as the measure. I&#8217;m not sure that necessarily holds up to adoption, all the time. Whilst I would love there to be so many things available for people and all that kind of thing, I don&#8217;t know whether people or times are different, I don&#8217;t know the answer to that. I think that, what I try and look at are agencies using it? Are people using it? Are people separating their plugin from their theme? Because that&#8217;s one impact. Are people looking at ways to improve their classic base to onboard off? Are they looking at ways to do it slowly and all those kind of things. And that has been happening more and more. So I think that.</p>\n\n\n\n<p>But honestly, it takes a change. Theme development has been the same for a very very long time. Yeah, I was lucky enough to be around when the changes happened. So it&#8217;s easy to change if you are around when the changes happen. It&#8217;s easy, right? Like I can understand that. I also, for me being a hybrid, it&#8217;s a little bit easier to adopt different things, because I can just be a bit more flexible, I think about different things.</p>\n\n\n\n<p>But if you are using a big stack, agencies as well go to, if you&#8217;re an enterprise agency and you&#8217;ve got a big stack, and you are pre-compiling SaaS, and you&#8217;re doing all these kind of things, to then suddenly change to theme json, that&#8217;s a big mind flip to suddenly do that.</p>\n\n\n\n<p>And that requires you to either pause, do lots of retraining, or to look at your foundation theme that you&#8217;re using, or to do some refactoring of infrastructure. So maybe to do some training. There&#8217;s all manner of different things that you&#8217;ve got to do, so I don&#8217;t think you&#8217;re going to do it in that kind of turnaround time.</p>\n\n\n\n<p>And also the time it happened was quite a boom time for agencies to be actually creating sites, which is kind of awesome. Lots of agencies were creating lots of sites at the same time. So for them to pause and say, hang on, not going to go and work on all these projects.</p>\n\n\n\n<p>What I actually saw was people thinking how they could sprinkle bits of it in, that has been really good. I think now most agencies that have found their path ,or found their groove with it,` or found the way that they are doing it. That&#8217;s kind of most pieces. But we haven&#8217;t necessarily seen that reflecting in the theme repo in the amount. So that would probably be a reflection of whether that number is going to be that measure or not.</p>\n\n\n\n<p>[00:16:43] <strong>Nathan Wrigley:</strong> So let me just try and sort of parse everything that you&#8217;ve just said, and see if what you&#8217;ve just said makes sense to me. So, what you are saying is that the adoption might not necessarily be reflected solely in the repo numbers. So whether it&#8217;s 2000, 1000, what have you. It&#8217;s the, and I think you called it underpinning technology, so the move to, for example, theme json and what have you. And you can dip your toes into bits of that.</p>\n\n\n\n<p>[00:17:07] <strong>Tammie Lister:</strong> Yeah, there was actually a really good post by Anne McCarthy right back in the day where she was like, here are the little pieces you can use, right back at the start And that was really powerful because I think before people were like, I have to do everything. No you don&#8217;t, is the answer. And once that message started to get out, there was a bit of a shift to people starting to be able to be, okay, I can do some sprinkles.</p>\n\n\n\n<p>[00:17:28] <strong>Nathan Wrigley:</strong> I think also the reality is, WordPress has been incredibly good at being backwards compatible, and really not changing a great deal for huge swathes of time. And then this fairly magnificently large change came along, and in other projects when they go through point releases, so Drupal is one that I&#8217;m familiar with, they sort of throw the baby out with the bath water a little bit. And as a result, I think over time they do lose people because of that, in their communities I mean, because of that backwards compatability thing has gone.</p>\n\n\n\n<p>And I&#8217;m just wondering if, like you said, if you&#8217;re an agency, and you&#8217;ve got a bulletproof process that you&#8217;ve worked out for the last decade or more, it would be unrealistic for you to suddenly change to the new paradigm, and to do everything with, for example, blocks or theme json. Rather than to just pick, well, either we&#8217;re going to do nothing, we&#8217;re going to stick with the way we&#8217;ve always done it, or we&#8217;re just going to take little bits here and there, because we can&#8217;t afford to just do everything. We&#8217;d have to retrain all of our staff, we&#8217;d have to retrain all of our clients and so on.</p>\n\n\n\n<p>So it sounds like you are buoyant. You don&#8217;t see the number in the repo as a negative thing, it&#8217;s just, this is the journey we&#8217;re on, but there&#8217;s way more, if you peel back the curtain, there&#8217;s more bits of in intel which need to be brought to bear. So that&#8217;s interesting, you are fairly sanguine about it.</p>\n\n\n\n<p>[00:18:40] <strong>Tammie Lister:</strong> Not everyone&#8217;s always going to have the interface on, or they may even use a different page builder. I think that&#8217;s something to kind of be aware. Maybe they are using the technology underneath, the infrastructure underneath, but they&#8217;re using a different page builder.</p>\n\n\n\n<p>Maybe they are using everything up to a point, but because their client doesn&#8217;t want it for the end user, they aren&#8217;t turning on the Site Editor interface for users. That is really common in enterprise, because they do not want color palettes and, all those kind of things, for end users. So those kind of like sliding scale.</p>\n\n\n\n<p>But also I think, from a release perspective and themes, I think we now need to be, and this is kind of a really curious conversation, is do we measure it by themes, or do we measure by patterns, or do we measure by templates? And if you look at the pattern directory, there have been quite a lot of, patterns, and there have been a lot of, the Museum of Block Art and the amount of patterns that have happened. Or if you look at Twenty Twenty Five, the amount of patterns in there. Now, that&#8217;s quite a lot. So if you think about that, that to me is almost like how we would consider themes to have been done.</p>\n\n\n\n<p>And we are getting to a point where, what is a theme? And that&#8217;s like a whole different discussion, which I love. Because for me, I&#8217;ve gone backwards and forwards in this every few years, of I think initially I was like, themes have to be a thing. And now I&#8217;m not in that position anymore. I wish I could time travel back and flick myself on the nose, but you know that&#8217;s age. Because I definitely feel that as</p>\n\n\n\n<p>long as we have a lot of the infrastructure, and we have a lot of the firm things in place, it&#8217;s a design system, and that&#8217;s what a theme should be. So what you are doing is you&#8217;re setting the tone and style as you load it. So this is the weird analogy I use, which is when you change clothes, you don&#8217;t take your arm off. Bear with me. The whole idea is that you should be able to take a theme on and off site without having any implications to it. That&#8217;s the whole point. It shouldn&#8217;t impact it. You should be able to use it like clothing. And it shouldn&#8217;t style it. So that gets to, is a theme just styles? And that&#8217;s the whole conversation of don&#8217;t put blocks in themes.</p>\n\n\n\n<p>Don&#8217;t just have it for super light. All those kind of like, that take the functionality out, don&#8217;t have plugins in it. All those kind of things that we go back to where we were a few years ago, which is don&#8217;t put plugins in themes as well. So yeah, there&#8217;s a lot there.</p>\n\n\n\n<p>[00:21:06] <strong>Nathan Wrigley:</strong> I remember probably three or four years ago, Rich Tabor, who at the time wasn&#8217;t working with Automattic but now is, raising the question of whether we should just have a theme, singular theme for WordPress. And everything else falls into the domain of patterns. And that was a really curious thought at the time. But the more that I&#8217;ve played with it, the more that I am fascinated by patterns, and not so much the theme. The theme is more of a sort of set it and forget it enterprise, you just do it this one time, set some basics in there.</p>\n\n\n\n<p>[00:21:36] <strong>Tammie Lister:</strong> See I guess now I&#8217;d be like, okay, what is the theme if it is the theme, and do we even need the theme? And is the package just, like I think we&#8217;ve come so far because WordPress has a design system. We&#8217;ve come so far that probably, like over the holidays because everyone does a project, right? Yet again, I did a theme and I literally used Site Editor&#8217;s Dreamweaver. That&#8217;s the best way I can describe how I create. I loaded it up and I haven&#8217;t used any custom CSS. I literally within a few hours had a theme. Hardly any customisation. No templates, anything, and that&#8217;s relying on mostly native stuff. I&#8217;m not relying on anything, and I move that across four different sites.</p>\n\n\n\n<p>It works. Am I going to release it and package it? No. I&#8217;m not going to give that to anyone else, because it&#8217;s not ready or worth it or like anything yet. And that may also be part of this. Maybe, going back to our initial conversation, maybe what we&#8217;re doing is encouraging more experimentation. That could be a problem if we&#8217;re not sharing our experiments. And that&#8217;s a whole different conversation about, we should share our experiments more, and we shouldn&#8217;t just leave them as experiments.</p>\n\n\n\n<p>But, to me what all of this has done is encouraged me to have that early. You know remember Kubrick? Being able to just experiment freely. And it probably was actually quite a hurdle we had to experiment. It was harder than, now looking back at it we&#8217;re like, that probably was really difficult. But I remember the first time, twice a year you would do the whole thing. Style switches were a big thing. I&#8217;ve now got a switcher on my site, just because I&#8217;m back there. What&#8217;s old is new again and all those kind of things.</p>\n\n\n\n<p>We could never settle on one style because we always wanted to do more than one. It was so easy to do. We were always obsessed with changing our themes because it was so cool to do. We were making them so many times. Maybe that&#8217;s part of, we&#8217;re in a period where everyone&#8217;s just experimenting and learning so much that we are not quite releasing yet. And that&#8217;s okay because we&#8217;re learning and we&#8217;re in our sketchbook, learning those boundaries.</p>\n\n\n\n<p>[00:23:36] <strong>Nathan Wrigley:</strong> Do you remember CSS Zen Garden?</p>\n\n\n\n<p>[00:23:38] <strong>Tammie Lister:</strong> Oh, I love that. Yeah, we should have that for block themes really.</p>\n\n\n\n<p>[00:23:42] <strong>Nathan Wrigley:</strong> It was fascinating, wasn&#8217;t it? How the content layer, and that was in the day when CSS was a brand new thing, and the idea that you could separate the markup from the styling was really revolutionary. And I remember being bowled over by that.</p>\n\n\n\n<p>[00:23:54] <strong>Tammie Lister:</strong> I mean the thing was with themes, that was why WordPress struck me originally was, I can just change, I don&#8217;t have to manage my content. I don&#8217;t have to worry about being insecure or being hacked. I don&#8217;t have to worry about that. I can just do the fun stuff. And then CSS got really cool, and then it got really complicated with SaaS. And then I started using JavaScript, I got really overly complicated. And then Modernizr, and all those kind of things. And life just got way too complicated.</p>\n\n\n\n<p>And one thing I like now is life is really, really easy when I want to make a theme. I&#8217;ll do a sketch, I don&#8217;t even do it in Figma anymore. I just do a little bit of a sketch, work out my colors, and then I just use it as Dreamweaver. But that&#8217;s not release ready that way. It would be taking it. You know I use Create Block Theme plugin and then I parse it, I clean it, and all those kind of things.</p>\n\n\n\n<p>[00:24:44] <strong>Nathan Wrigley:</strong> Just moving outside of the WordPress space for a moment, it seems like CSS is really interesting again. A lot of the JavaScript things that we&#8217;re familiar with only being possible with JavaScript, it feels like so much interesting stuff going on with just web standards and CSS in particular, and there&#8217;s a lot of fascinating stuff happening.</p>\n\n\n\n<p>[00:25:05] <strong>Tammie Lister:</strong> HSL is my current love. I&#8217;m completely nerdy. I&#8217;ve been, playing with that and just, I remember just the sheer pain of even doing parallax years ago, and all those kind of things that we don&#8217;t have those issues with.</p>\n\n\n\n<p>The fact now that we have such good libraries that we can have confidence in as well, that are open and universal as well for animations and different things that you can do.</p>\n\n\n\n<p>I think sometimes it does raise the expectation, if I put my front end developer hat on, it does raise the expectation, makes front end developers life really difficult, because we were always told don&#8217;t use libraries in one part, right, from performance perspective. And now it&#8217;s about knowing the right ones to use, in the right combination. Because you can achieve some of this stuff without using some of those libraries, and some of them are React as well. So it is like the, kind of where you use or what, you don&#8217;t use.</p>\n\n\n\n<p>[00:25:59] <strong>Nathan Wrigley:</strong> Just getting back to the conversation about the adoption, or lack thereof, of Full Site Editing and what have you, and theme json and all of that. We&#8217;ll obviously mention the fact that what you said 10 minutes ago is true. You know, the underpinning technology may well be being used by people.</p>\n\n\n\n<p>I do wonder though if the Block Editor or the Site Editor interface, do you think there&#8217;s something to be said about that whole interface and the fact that it&#8217;s constantly in flux? And it is quite difficult to realise where things are happening. And the fact that you&#8217;ve got menus that you have to return to. You know, you might not be able to find your way there quickly because the sort of whole menu structure disappears, and you have to click buttons to get back to it, and then remember where they all are, and they get upended all the time.</p>\n\n\n\n<p>I&#8217;m just wondering if the UI, where we are at the moment, January 2025, I do wonder if that puts people off because it&#8217;s in such a state of flux and it&#8217;s confusing and it&#8217;s not quite finessed yet.</p>\n\n\n\n<p>[00:26:55] <strong>Tammie Lister:</strong> So I have my kind of predictions I guess, of like where I would like see over the next kind of few years. I think we&#8217;re going to see that interface is going to do what it&#8217;s going to do. It&#8217;s core and it&#8217;s going to be iterated, but I think you&#8217;re going to see a lot of solutions building on top of that, or adapting to it. And I see more variations. You know I&#8217;d love to be able to say, hey, now I&#8217;m in sketch mode. Just let me do my sketching, right. And be able to see it. In fact, I&#8217;ve been playing around with that, with my rubber ducky cursor and all those kind of things, and trying to work out that, and I don&#8217;t think I&#8217;m alone with that. Like trying to figure out how do you get the editor interface to be exactly what you want. But that&#8217;s exactly what I want. That doesn&#8217;t mean that I&#8217;m necessarily going to have that as a final product.</p>\n\n\n\n<p>But I think that there&#8217;s an argument for types of users, and there&#8217;s definitely an argument for page builders for types. There&#8217;s definitely an argument for, niche, niches, could be a really big one. Or page builders that build on top of it. And we&#8217;ve seen quite a lot of that, like filling in the gaps. Core is always going to do the middle. Core is always going to be trying to, it&#8217;s always going to be the first attempt.</p>\n\n\n\n<p>So a good example is fluid typography, that&#8217;s just come out. So that&#8217;s the first version of it, right? Like the first version of where the things are going to be. The things I worked on in phase one, if they still look like the way they did in phase one in the Block Editor, we would have a problem. They do not look like that now. Because time has moved on. And the Site Editor, a lot of the bigger interface things came last. Because if you bear in mind when you build a house, you build the foundations first. So a lot of the interface stuff came last. So a lot of that stuff still needs to be iterated on.</p>\n\n\n\n<p>So, yes, it does need to be iterated on, point 1. But that doesn&#8217;t make it easy for what you were saying about documentation, for people learning and people doing things. So I do think there&#8217;s an argument for people having page builders. Page builders responding with a native layer. I don&#8217;t think there&#8217;s ever been an argument that people shouldn&#8217;t have page builders, or at least I personally haven&#8217;t said that. If you&#8217;re going to build a page builder on top of native, great. Find where the gaps are in the area you are pitching for, and make it work, and then keep a connection to it, and that&#8217;s going to work great. You know rise up. As Core rises up, rise up with your product. That&#8217;s kind of the open source way, right?</p>\n\n\n\n<p>So I&#8217;m kind of curious to see what happens. I would love to see the ability to customise a little bit more if I had, ifs and buts and wishes. But I just think that that&#8217;s maybe an expectation of interfaces that we have now. We got it with light and dark mode, and we seem to really have that now with like everything should be draggable. There&#8217;s a difference, right? AI has happened in a year, but also draggable interface have happened in six months. Suddenly most interfaces have draggy handles everywhere, and you can reposition things and pin them. Like we&#8217;ve only got one pinnable sidebar. So I think that would be nice. Because at the moment it kind of just says, I&#8217;m here, and you have to live with it being here. So things like that.</p>\n\n\n\n<p>My biggest thing has been able to just the latest situations of get out mode is the best way I can describe it is widescreen, right? I call it get out mode, because it just gets out of here. But that, things like that are polished. It&#8217;s done upon those extra bits. And they&#8217;re not bits that were there initially, and we often judge bits and we think the good bits we think have been there all along, well they haven&#8217;t been.</p>\n\n\n\n<p>[00:30:11] <strong>Nathan Wrigley:</strong> That UI is so great if you&#8217;ve got a long piece of content, and you can&#8217;t really encapsulate in your mind what the top to bottom of it looks like.</p>\n\n\n\n<p>[00:30:19] <strong>Tammie Lister:</strong> Remember like when, you used to have patterns out, then you&#8217;d lose sight of where the pattern was going to go, or like how it was going to look. Just the fact that it just goes a little bit small. It&#8217;s like yeah, yeah, yeah. There&#8217;s some perspective to what I&#8217;m creating, and it feels like okay, we&#8217;re not in like the inception world where I&#8217;m touchy feeling things and moving them around or whatever. We&#8217;re not in that. But we are kind of feeling like I&#8217;m building.</p>\n\n\n\n<p>And for me personally, the editor has a couple of different functions, and maybe one of the answers is it should, back when I was working on it, there was this kind of concept of modes, and it kind of didn&#8217;t have distinct modes, it flowed. I go backwards and forwards on whether it should have distinct or flow. I think by its nature it is having distinct modes. And one of the modes I find myself in a lot is build mode. If I&#8217;m in site editor, I&#8217;m a Bob the Builder. That&#8217;s what I&#8217;m doing. I&#8217;m getting in there. I&#8217;m Dreamweavering it. I&#8217;m digging in, and I want a very different experience to that than I want to,. Like Figma is my, or Penpot is where I&#8217;m building. And when I&#8217;m composing, I&#8217;m in a very different experience to that. I wouldn&#8217;t write in Figma.</p>\n\n\n\n<p>[00:31:24] <strong>Nathan Wrigley:</strong> I do like the idea, and I think you alluded to it earlier, I do like the idea of different, for want of a better word, editor modes. Where the UI is really different for a different user. And obviously we have the capability to kind of, historically WordPress, I don&#8217;t know, at the very least, remove a menu item for example, or a button doesn&#8217;t exist if you&#8217;re particular person. But the idea of amending the entire UI so that it binds itself more to the work that you are doing, that&#8217;s really interesting.</p>\n\n\n\n<p>[00:31:53] <strong>Tammie Lister:</strong> With AI we&#8217;ve got a bit more possibility of looking at what task you&#8217;re doing and then adapt. So one of the things that really excites me about AI isn&#8217;t necessarily the content generation, but is the realizing what you&#8217;re doing. At the moment, we have the set options and get things out of your way. But what I like is when applications are learning my behaviors, or learning what I like. Maybe I&#8217;m just selfish. I like that, and I like the fact that they&#8217;re learning, rather than me having to, when it loads up, me having to put the sidebar out the way, every single time. It&#8217;ll be like, oh no, you actually really like this to be out the way, and this is where you go. So when I load it up, it just does that each time.</p>\n\n\n\n<p>It&#8217;s such a small thing, but I mean it&#8217;s a persistent save mode of the screen and all those kind of things. But it feels magic when it works properly. Or recommending, it&#8217;s like hey, you like this? Have you tried this? Because you are obviously a builder. We&#8217;ve heard that other builders like this.</p>\n\n\n\n<p>[00:32:47] <strong>Nathan Wrigley:</strong> I imagine all of these things could come to pass. I know that there&#8217;s a lot of work to be done before those things. Just before we round it off, something that you said you wanted to mention, which we haven&#8217;t done, is something called hybrid themes.</p>\n\n\n\n<p>Now, I&#8217;ve not really touched on this with anybody thus far in any of the podcast episodes I&#8217;ve done. And it occurs to me that I would imagine most of the audience won&#8217;t be familiar with that term.</p>\n\n\n\n<p>[00:33:07] <strong>Tammie Lister:</strong> So I don&#8217;t actually like the term, that&#8217;s why we were talking about it. So it&#8217;s a term that currently is used for a theme that sits between Classic and Block Themes. And for me personally, and you can get into why it does, I don&#8217;t think we should use the term, that&#8217;s kind of why I wouldn&#8217;t get into them too much. And I know that there&#8217;s some really good documentation explaining them, and I don&#8217;t want to belittle or anything with that documentation. I think they have a place. But my kind of general point is I think they really confuse users.</p>\n\n\n\n<p>If I am working with a client and I am saying to them, hey, we&#8217;re working on a theme. It&#8217;s hard enough to get them to work with a Block Theme, or I don&#8217;t even actually use the term Classic, although I actually have a site that says Classic, but generally they&#8217;re not thinking Classic. They&#8217;re thinking that it is their theme. And it&#8217;s a classic, what it&#8217;s old?</p>\n\n\n\n<p>But generally to then say hybrid as well. I mean in cars it&#8217;s not so good at either. I made that joke of like, I&#8217;m a hybrid. I&#8217;m not good at either, kind of thing. It&#8217;s like the theme isn&#8217;t good at either. And really to me a Block Theme can just be, I go back to that post by Anne, you can just do a little bit, you could just have a little bit and it&#8217;s a Block Theme. But I think sometimes it&#8217;s used to distinguish when, and more templating all of those kind of things with hybrid. But there&#8217;s a lot more to it than terms like that. So I don&#8217;t want to dismiss it. But for me it&#8217;s a lot simpler if we think of it in those kind of opposites.</p>\n\n\n\n<p>I&#8217;m weird about Classic. So themes and block themes maybe? That&#8217;s maybe a kind of, I mean honestly it&#8217;s themes, and it just depends on how you are doing the theme really. And that&#8217;s what it comes down to. And I think if we saw it that way, then probably people would be like, okay, I&#8217;m going to make a theme that suits this purpose. And then they&#8217;d be popping on it. Because there was a time when people were taking offense to it being called Classic Themes, and that&#8217;s not maybe what we should be doing if we wanting people to use it.</p>\n\n\n\n<p>[00:35:05] <strong>Nathan Wrigley:</strong> I think it sounds from everything that you&#8217;ve said that you&#8217;re fairly bullish about the future with WordPress themes, and the theming engine that we&#8217;ve got, and the opportunities in the future.</p>\n\n\n\n<p>[00:35:14] <strong>Tammie Lister:</strong> Not just themes. I think that WordPress is always going to need a front visual, right? And you are going to be packaging, one of the core principles we have is you can package that style up, and I can give you that style, and you can go and take that and put it on any site. What that package, that theme is going to be in the future, I don&#8217;t know. That might be just a json file. That might be a file of an emoji smile. I don&#8217;t know. That might just be literally a json file. That could be all it is, is one file going forward. And that might be amazing, and it will pull in all these patterns, and it&#8217;ll pull in everything.</p>\n\n\n\n<p>But that still will be a theme, and that still will have had someone creative come along and determine that all these patterns and these colour combinations go. And they will work with an AI to come up with colour combination suggestion, all those kind of things. So you&#8217;re still going to have that. But it&#8217;s the idea that you can still take it from one site to the other, and still have that styling. I think that&#8217;s still there. I just think we&#8217;ve got to maybe be a bit more adaptive about what that term means, and maybe just all call it themes.</p>\n\n\n\n<p>[00:36:22] <strong>Nathan Wrigley:</strong> I imagine there&#8217;s going to be a bunch of people listening to this who are going to stick to what we&#8217;re going to call Classic Themes until they simply are no longer an option. There&#8217;ll be other people who are somewhere along the journey, and they&#8217;re dipping into, well, for want of a better word, hybrid. Or there&#8217;s people who are doing the whole thing with the Site Editor.</p>\n\n\n\n<p>Regardless of that, if people wanted to find you and talk to you about your journey and any help that you may be able to give them, making that migration, where&#8217;s the best place to get in touch with you, Tammie?</p>\n\n\n\n<p>[00:36:53] <strong>Tammie Lister:</strong> Yeah, So you can find me at my site, tammielister.com. And you can also find me on all the socials at Karmatosed. I also have a theme site called &#8216;Classic To Block&#8217;.</p>\n\n\n\n<p>[00:37:05] <strong>Nathan Wrigley:</strong> I will put all of those into the show notes so everybody can find all of the different places where you are available. But, Tammie Lister, thank you so much for chatting to me today. I really appreciate it.</p>\n\n\n\n<p>[00:37:15] <strong>Tammie Lister:</strong> Thank you.</p>\n</div>\n\n\n\n<p>On the podcast today we have <a href=\"https://tammielister.com/\">Tammie Lister</a>.</p>\n\n\n\n<p>Tammie is a product creator focusing on WordPress. She has a hybrid background as a full stack product creator. She contributes to WordPress and is passionate about Open Source and the WordPress community.</p>\n\n\n\n<p>Tammie has a rich history with WordPress, having worked with themes and the platform for many years.&nbsp; Her journey melds her artistic flair with technical expertise, something which is, I think, quite rare. Her experience spans theme building, design, development, and more recently, guiding product developers through Guildenberg, an initiative which she co-founded.</p>\n\n\n\n<p>The fact that Tammie is both a designer and a technical expert has allowed her to offer a well-rounded perspective on the evolution and future of WordPress themes. We explore the shift from classic themes to the new era of Full Site Editing and theme.json, and discuss whether the slower-than-anticipated adoption of these new tools signifies a deeper trend, or just a transitional phase.</p>\n\n\n\n<p>Additionally, Tammie shares her insights on the necessity of beauty versus utility on the internet, the importance of experimentation in design, and how our definition of art and themes needs continual rethinking.</p>\n\n\n\n<p>We also get into her personal artistic endeavors, where she balances her tech workspace with an art studio, highlighting her lifelong passion for photography.</p>\n\n\n\n<p>If you&#8217;re curious about the current state of WordPress theming, the impact of emerging technologies on the platform, or how to infuse more creativity into your web projects, this episode is for you.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links</h2>\n\n\n\n<p><a href=\"https://tammielister.com/\">Tammie&#8217;s website</a></p>\n\n\n\n<p><a href=\"https://guildenberg.com/\">Guildenberg</a></p>\n\n\n\n<p><a href=\"https://wordpress.org/patterns/\">Pattern Directory</a></p>\n\n\n\n<p><a href=\"https://block-museum.com/\">Museum of Block Art</a></p>\n\n\n\n<p><a href=\"https://wordpress.org/plugins/create-block-theme/\">Create Block Theme plugin</a></p>\n\n\n\n<p><a href=\"https://www.figma.com/\">Figma</a></p>\n\n\n\n<p><a href=\"https://penpot.app/\">Penpot</a></p>\n\n\n\n<p><a href=\"https://classictoblock.com/\">Classic to Block website</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 22 Jan 2025 15:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nathan Wrigley\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:102:\"Do The Woo Community: Building WooCommerce in Public: A Conversation with James Kemp and Darren Ethier\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=89275\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://dothewoo.io/building-woocommerce-in-public/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:242:\"In this Inside Woo, James Kemp and Darren Ethier from WooCommerce highlight the importance of community engagement, evolving development practices, and the initiative \"More in Core\" to enhance core functionalities while balancing flexibility.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 22 Jan 2025 14:15:46 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"Akismet: How to Collect Emails from Website Visitors (for Email Marketing)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://akismet.com/?p=284285\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"https://akismet.com/blog/how-to-collect-emails/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:26547:\"<p>When it comes to digital marketing, social media platforms seem to get all the love. But while it might not be as flashy, email marketing remains one of the most powerful tools for your business when it needs to communicate directly with its&nbsp;audience.</p>\n\n\n<p>Before you can use this powerful marketing medium, however, you need an audience. This is where a list of email subscribers comes in. These lists are made up of people who’ve given you permission to message them. It’s a vote of confidence in your brand and an invaluable opportunity for you to develop a new customer relationship.&nbsp;</p>\n\n\n<p>So how do you convince someone to give you their (correct) email address? There are a number of viable&nbsp;strategies.</p>\n\n<p>Let’s look at everything you need to know about how to collect emails for email&nbsp;marketing.</p>\n\n\n<span id=\"more-284285\"></span>\n\n\n\n<img width=\"1600\" height=\"1066\" src=\"https://akismet.com/wp-content/uploads/2025/01/image.jpeg\" alt=\"phone with an email newsletter signup form\" class=\"wp-image-284287\" />\n\n\n<h2 id=\"why-collect emails\" class=\"wp-block-heading\">Why collect&nbsp;emails?</h2>\n\n\n<p>Before we get into how to capture email addresses from website visitors, it&#8217;s important to consider why you want to gain new subscribers in the first place.&nbsp;</p>\n\n\n<h3 id=\"to-establish-a-direct-line-of-communication-with-potential customers\" class=\"wp-block-heading\">To establish a direct line of communication with potential&nbsp;customers</h3>\n\n<p>Email marketing creates a direct link between you and your audience. When someone subscribes, you can ensure your message reaches them without interference from algorithms or third&#8209;party&nbsp;platforms.</p>\n\n<p>Whether you want to announce a new product, share some testimonials of others who’ve enjoyed your product or service, or promote a flash sale, emails are a personal and effective way to communicate with potential&nbsp;customers.</p>\n\n<h3 id=\"to-keep-your-audience-informed-and engaged\" class=\"wp-block-heading\">To keep your audience informed and&nbsp;engaged</h3>\n\n<p>Marketing to a strong email list helps you keep your audience in the loop about your latest updates, promotions, and news. Regular newsletters and targeted emails keep your brand top&#8209;of&#8209;mind, ensuring your subscribers remain engaged and interested in what you have to&nbsp;offer.</p>\n\n<p>Staying connected to potential subscribers by periodically offering valuable insights is a great way to keep your funnel filled with quality&nbsp;leads.</p>\n\n<h3 id=\"to-send-personalized offers\" class=\"wp-block-heading\">To send personalized&nbsp;offers</h3>\n\n\n<p>Marketing is most effective when the message relates, very specifically, to the recipient. This is known as personalization and email marketing is perfect for it. The most simple version of personalization is using a recipient’s first name in the subject line or email. A bit of a more advanced tactic is segmenting email messages to different lists based on broad criteria like age or gender.&nbsp;</p>\n\n\n\n<p>Even better, though, is sending emails addressed to a subscriber’s first name that contains an offer for a specific product or category that the subscriber expressed interest in. Most WooCommerce <a href=\"https://woocommerce.com/product-category/woocommerce-extensions/marketing-extensions/email-marketing-extensions/?categoryIds=1763&collections=product&page=1\">email marketing extensions</a> have this or a similar capability.&nbsp;</p>\n\n\n\n<img width=\"1600\" height=\"857\" src=\"https://akismet.com/wp-content/uploads/2025/01/image.png\" alt=\"WooCommerce extension library with a grid of email extensions\" class=\"wp-image-284288\" />\n\n\n<h3 id=\"to-yield-a-high-return-on investment\" class=\"wp-block-heading\">To yield a high return on&nbsp;investment</h3>\n\n\n<p>Because it costs relatively little to produce, and it reaches interested subscribers directly, the ROI of email marketing tends to be quite high. Some report it as high as <a href=\"https://www.litmus.com/blog/infographic-the-roi-of-email-marketing\">36:1</a>.&nbsp;</p>\n\n\n\n<p>This might not take into account the expense of attracting first-time subscribers or the time it will take a small business owner to learn the technical processes if they need to do it themselves.&nbsp;</p>\n\n\n\n<p>However, it’s still clear that reaching interested consumers through email is well worth the effort and one of the most essential parts of the digital marketing mix for any size business. You just need to get subscribers and start your first campaign.&nbsp;</p>\n\n\n<h2 id=\"what-to-know-from-a-legal-and-ethical standpoint\" class=\"wp-block-heading\">What to know from a legal and ethical&nbsp;standpoint</h2>\n\n<p>When learning how to collect email addresses, you need to consider a few ethical and legal&nbsp;conundrums.</p>\n\n<h3 id=\"the-importance-of-user-consent-and transparency\" class=\"wp-block-heading\">The importance of user consent and&nbsp;transparency</h3>\n\n\n<p>You have to be honest with your target audience when collecting email addresses. Tell your target audience what you are doing and present them with opt-in forms so they can provide informed consent.&nbsp;</p>\n\n\n\n<p>Avoid deceptive practices, such as pre-checking boxes or using vague language on email sign-up forms. These tactics can harm your credibility and even cause inbox providers to send your messages to spam —&nbsp;even for legitimate subscribers. Potential customers should be able to easily subscribe (and unsubscribe) from your email campaigns.</p>\n\n\n\n<p>In general, just because you <em>have </em>an email address does not mean you should send it promotional messages. A person should give explicit consent and <em>subscribe </em>to your list.&nbsp;</p>\n\n\n<h3 class=\"wp-block-heading\">Compliance with GDPR and the CAN&#8209;SPAM&nbsp;Act</h3>\n\n\n<p>The <a href=\"https://gdpr-info.eu/\">General Data Protection Regulation</a> is a sweeping consumer privacy law in the European Union. It protects the data privacy rights of all EU citizens and can directly impact the way you gather email addresses.&nbsp;</p>\n\n\n<p>If your company does business in the EU or targets EU consumers, familiarize yourself with the GDPR and adhere to its&nbsp;provisions.</p>\n\n<p>If you do business in the U.S., you’ll need to be aware of the <a href=\"https://www.fcc.gov/general/can-spam#:~:text=Congress%20passed%20the%20CAN%2DSPAM,phones%E2%80%94not%20email%20in%20general.\">CAN&#8209;SPAM Act</a>. Passed in 2003, the law protects consumers and businesses from unwanted electronic email messages. Failing to adhere to either law can lead to fines and other severe&nbsp;penalties.</p>\n\n<h3 id=\"privacy-policy-and-terms-of service\" class=\"wp-block-heading\">Privacy policy and terms of&nbsp;service</h3>\n\n<p>Ensure your website includes a clear privacy policy and terms of service that outline how you collect, use, and protect personal information. Add details about how you collect email addresses and what you use them&nbsp;for.</p>\n\n<p>Collecting email addresses is perfectly legal and ethically acceptable, provided you’re transparent about it and do your best to protect consumer information. In most cases, you can send transactional messages (order confirmations, password reset emails, etc.) without express permission, but promotional messages should only be sent with&nbsp;consent.</p>\n\n<h2 id=\"what-is-needed-to-collect-emails-from-website visitors\" class=\"wp-block-heading\">What is needed to collect emails from website&nbsp;visitors?</h2>\n\n<p>You&#8217;ll need the following to collect email&nbsp;addresses:</p>\n\n<h3 id=\"1-a-website-or-landing page\" class=\"wp-block-heading\">1. A website or landing&nbsp;page</h3>\n\n\n<p>Landing pages are web pages you create for a specific campaign or purpose. Users typically end up on a landing page after they click on an ad or other online CTA.&nbsp;</p>\n\n\n<p>You should build a landing page for every specific campaign designed to collect email addresses. This allows you to hyper&#8209;focus the language, visuals, and CTA most impactful to your target audience. As a result, you can expect a much greater rate of success in attracting new&nbsp;subscribers.</p>\n\n\n<p>This doesn’t mean you can&#8217;t also include a lead capture button or sign-up form on other areas of your website. You can, and should, put these in places people expect — in the footer, halfway through a blog post, in the sidebar, etc.&nbsp;</p>\n\n\n\n<img width=\"1600\" height=\"818\" src=\"https://akismet.com/wp-content/uploads/2025/01/image-1.png\" alt=\"Email signup form in the footer of the Magna-Tiles site\" class=\"wp-image-284289\" /><em>Email signup form in the footer of <a href=\"https://www.magnatiles.com/\" rel=\"nofollow\">https://www.magnatiles.com/</a></em>\n\n\n<h3 id=\"2-a-compelling-offer-or-lead magnet\" class=\"wp-block-heading\">2. A compelling offer or lead&nbsp;magnet</h3>\n\n<p>Most people won&#8217;t give up their contact info just because you asked them to. It doesn&#8217;t matter how great your landing pages are, they probably aren&#8217;t going to opt&#8209;in unless you give them something of value in exchange for their&nbsp;email.</p>\n\n\n<p>A lead magnet is a great way to incentivize visitors to sign up for your email list. Showcase your lead magnet on your landing page and let people know that they can access the resource for free in exchange for their email subscription. Common lead magnets include eBooks, webinars, and discount codes.&nbsp;</p>\n\n\n\n<p>Though often not as strong, for the right entities, a lead magnet could be the promise of something in the future —&nbsp;early access to a Black Friday sale or exclusive content released on a regular basis.&nbsp;</p>\n\n\n<p>And no matter what you offer, once a customer completes the sign&#8209;up form, send the lead magnet or some sort of follow up to their email address right&nbsp;away.</p>\n\n<h3 id=\"3-a-form-to-capture emails\" class=\"wp-block-heading\">3. A form to capture&nbsp;emails</h3>\n\n<p>Your website or landing page should include a simple sign&#8209;up form where folks can input their email address. Make sure the form is easy to fill out without too much hassle. Don&#8217;t play <em>twenty questions</em>. Ask the basics so you can avoid annoying your&nbsp;visitors.</p>\n\n<p>We suggest limiting your sign&#8209;up form to three or four fields, which can include the person&#8217;s first and last name, email address, and an opt&#8209;in checkbox. Don&#8217;t push your luck by asking for the person&#8217;s birthday, phone number, or other information unless absolutely&nbsp;necessary.</p>\n\n\n<img width=\"1600\" height=\"708\" src=\"https://akismet.com/wp-content/uploads/2025/01/image-2.png\" alt=\"Jetpack CRM page with information about the features\" class=\"wp-image-284290\" />\n\n\n<h3 id=\"4-an-email-marketing-tool-or crm\" class=\"wp-block-heading\">4. An email marketing tool or&nbsp;CRM</h3>\n\n<p>You&#8217;ll need a <a href=\"https://jetpackcrm.com/\" target=\"_blank\" rel=\"noreferrer noopener\">customer relationship management (CRM)</a> system or email marketing tool to put all of those email addresses to use. Explore several options and find the platform that best supports your email marketing&nbsp;efforts.</p>\n\n<h3 id=\"5-a-source-of-targeted traffic\" class=\"wp-block-heading\">5. A source of targeted&nbsp;traffic</h3>\n\n\n<p>Most importantly, you need a source of traffic. If you already have a strong flow of site visitors, then sure, you can add a sign-up form to a conspicuous location on your site.&nbsp;</p>\n\n\n\n<p>But it’s not likely to generate a ton of new subscribers unless you have a good lead magnet to accompany it or a particularly eager audience.&nbsp;</p>\n\n\n<h2 id=\"effective-strategies-to-collect emails\" class=\"wp-block-heading\">Effective strategies to collect&nbsp;emails</h2>\n\n<p>After you&#8217;ve put the right infrastructure in place, you’re ready to start collecting new email subscribers. Here are some strategies to jumpstart your&nbsp;efforts:</p>\n\n<h3 id=\"leverage-gamification-such-as-quizzes-and surveys\" class=\"wp-block-heading\">Leverage gamification such as quizzes and&nbsp;surveys</h3>\n\n<p>Great marketing should never be boring. The best marketing campaigns and email capture strategies are fun and&nbsp;engaging.</p>\n\n<p>Consider using interactive quizzes or surveys to gamify email collection. People may be more likely to share their contact information if you have quiz results or a prize dangling on the other&nbsp;side.</p>\n\n\n<p>For instance, you could ask someone to complete a quick 3-5 question survey and offer an exclusive discount code after they submit their results. When they’re finished, thank them for participating and ask for their email address so you can send them their code. At that point, offer the opportunity to also subscribe to your email list —&nbsp;many will!&nbsp;</p>\n\n\n<h3 class=\"wp-block-heading\">Implement a timed slide&#8209;in or&nbsp;pop&#8209;up</h3>\n\n\n<p>A timed pop-up triggers when a site visitor has spent a certain amount of time on your page. They’re a can’t-miss — so use the opportunity to promote your best lead magnet.&nbsp;</p>\n\n\n\n<img width=\"1600\" height=\"810\" src=\"https://akismet.com/wp-content/uploads/2025/01/image-3.png\" alt=\"email pop-up on the Dan-O\'s website\" class=\"wp-image-284291\" /><em>Example of an email pop-up on </em><a href=\"https://danosseasoning.com/\"><em>https://danosseasoning.com/</em></a><em>&nbsp;</em>\n\n\n<p>Slide&#8209;ins are another option. They perform the same task, but slide onto the visitor’s screen instead of popping up out of nowhere. They tend to take up less space and are often more mobile responsive than&nbsp;pop&#8209;ups.</p>\n\n<p>You may also want to consider a pop&#8209;up that triggers when someone exhibits exit intent. When a visitor seems like they’re about to leave by clicking the &#8220;Back&#8221; button in their browser or closing the tab altogether, they’re met with a timely&nbsp;message.</p>\n\n<h3 id=\"run-contests-or-giveaways-that-require-email entry\" class=\"wp-block-heading\">Run contests or giveaways that require email&nbsp;entry</h3>\n\n\n<p>People love the chance to win a free prize. Create a truly valuable offer (bonus points if you can tie the prize back to your business in some way) and sensational graphics that demand attention.&nbsp;</p>\n\n\n\n<p>This is what you might advertise in your pop-up or slide-in, but you can also promote the giveaway on social media and <a href=\"https://woocommerce.com/posts/influencer-marketing-how-to-build-trust-with-new-audiences/\">partner with influencers</a> to get the contest in front of a highly-targeted audience.&nbsp;</p>\n\n\n<p>Social media platforms are some of the best mediums for these kinds of promotions. Just be sure to send traffic to your site and collect entries through a simple form. When registering for the giveaway, ask people to subscribe to receive special updates and deals through&nbsp;email.</p>\n\n<h3 id=\"collect-email-addresses-through-webinars-and-event registrations\" class=\"wp-block-heading\">Collect email addresses through webinars and event&nbsp;registrations</h3>\n\n<p>Networking events are a great opportunity to gather email addresses. You can host digital meetings or webinars and require users to provide their email during the registration process. This approach is great if you operate in the business&#8209;to&#8209;business space or have an audience of&nbsp;professionals.</p>\n\n<p>Make sure to record the webinar. You can recycle this lead magnet again and again to keep capturing emails with little extra&nbsp;work.</p>\n\n<h3 id=\"capture-emails-through-live-chat sessions\" class=\"wp-block-heading\">Capture emails through live chat&nbsp;sessions</h3>\n\n\n<p>If you have live chat on your site, encourage visitors to provide their email address for customer service follow-up and ask if they’re interested in receiving special offers after the chat ends. Make sure your chatbot is programmed to ask this automatically.&nbsp;</p>\n\n\n<h2 id=\"tips-to-make-the-most-of-your-email-collection efforts\" class=\"wp-block-heading\">Tips to make the most of your email collection&nbsp;efforts</h2>\n\n\n<p>Once you know <em>how </em>you want to collect the emails — through a contest, hosting a webinar, or something else —&nbsp;you can work to optimize your efforts for the best results.</p>\n\n\n<h3 id=\"1-build-a-clear-value proposition\" class=\"wp-block-heading\">1. Build a clear value&nbsp;proposition</h3>\n\n<p>Ask yourself, &#8220;Would I give out my email address after visiting this landing page?&#8221; If you can&#8217;t confidently answer that question with a yes, it&#8217;s time to rethink your value&nbsp;proposition.</p>\n\n\n<p>What are the pain points most common for your audience? Why do they typically buy from you? While you don’t want to offer your solution or product completely for free, you can offer something adjacent. Or help them take the first steps for free.&nbsp;</p>\n\n\n<p>If you run an ecommerce business, a product giveaway or style guide might be more&nbsp;appropriate.</p>\n\n<h3 id=\"2-create-a-sense-of-scarcity-or urgency\" class=\"wp-block-heading\">2. Create a sense of scarcity or&nbsp;urgency</h3>\n\n<p>Nothing gets people to act fast like the fear of missing out. If you want people to sign up for your mailing list when they visit your site, create a sense of urgency with a strong call to&nbsp;action.</p>\n\n<p>Use phrases like &#8220;Join Now&#8221; or put a ticking clock next to your sign&#8209;up button that lets them know they’ll get a coupon if they complete the form in the next 15 minutes. Convey that your free gift is only “while supplies last,” or that the deadline to enter your contest is&nbsp;near.</p>\n\n<h3 id=\"3-display-social-proof-and-trust badges\" class=\"wp-block-heading\">3. Display social proof and trust&nbsp;badges</h3>\n\n<p>Build trust by showing that others have already signed up. Include testimonials, subscriber counts, or trust badges from reputable companies to reassure potential&nbsp;subscribers.</p>\n\n<p>Make sure they know you’ll never sell their information to a third party or send them an overwhelming number of messages. You could even promise a specific volume — “Only two emails a&nbsp;month!”</p>\n\n<h3 id=\"4-avoid-using captcha\" class=\"wp-block-heading\">4. Avoid using&nbsp;CAPTCHA</h3>\n\n<p>You should avoid including a CAPTCHA on your lead capture form at almost all costs. CAPTCHAs drive visitors wild. Only 71% of users even <a href=\"https://web.stanford.edu/~jurafsky/burszstein_2010_captcha.pdf\" target=\"_blank\" rel=\"noreferrer noopener\">try to solve a CAPTCHA</a>. The rest just bounce as soon as they see that annoying&nbsp;box.</p>\n\n<p>Yes, spam <em>is </em>a real problem. It can lead to security issues and definitely clog up your email and submission lists with useless entries. The good news is that there are better options for blocking spam, such as&nbsp;Akismet.</p>\n\n\n<img width=\"1600\" height=\"774\" src=\"https://akismet.com/wp-content/uploads/2025/01/image-4.png\" alt=\"Akismet homepage with the text \" />\n\n\n\n<p><a href=\"https://akismet.com/\">Akismet</a> is an anti-spam solution that works completely in the background. And it’s just as effective —&nbsp;if not more so — than CAPTCHA. In fact, it works with 99.99% accuracy! To date, the tool has removed over 500 billion pieces of spam. That&#8217;s not a typo — it&#8217;s billions with a &#8220;b.&#8221;&nbsp;</p>\n\n\n\n<p>Without yet another annoyance standing in their way, people will be much more likely to complete the form. So you get better conversion rates without the spam. That’s a big win.&nbsp;</p>\n\n\n<h3 id=\"5-use-a-heatmap-to-optimize-form placement\" class=\"wp-block-heading\">5. Use a heatmap to optimize form&nbsp;placement</h3>\n\n<p>A heatmap analyzes how visitors interact with your website. It visualizes the hottest spots on your site so you know where to place sign&#8209;up buttons and calls to action. Use these insights to place your email capture form in a high&#8209;visibility area where visitors are most likely to&nbsp;engage.</p>\n\n<h3 id=\"6-enhance-your-email-capture-campaign-with-video content\" class=\"wp-block-heading\">6. Enhance your email capture campaign with video&nbsp;content</h3>\n\n<p>Video can stop a visitor&#8217;s scrolling in its tracks. Consider embedding a short video on your webpage next to your sign&#8209;up form to draw attention and give visitors a chance to scan that section of your&nbsp;site.</p>\n\n\n<p>Videos can also work well on landing pages —&nbsp;feature your lead magnet to really convey the value in a way only video can. You can also include video testimonials or anything else related to the email capture campaign. The point is:&nbsp;an investment in video content for any part of the campaign is probably worth it. Just be sure to A/B test to see what kind of impact, positive or negative, it actually has. Speaking of A/B testing…&nbsp;</p>\n\n\n<h3 id=\"7-ab-test-on-a-regular basis\" class=\"wp-block-heading\">7. A/B test on a regular&nbsp;basis</h3>\n\n<p>A/B testing involves comparing two different landing pages to see which one resonates with your target audience. During each test, publish two nearly identical landing pages. Change only one detail, such as the form placement, CTA, or&nbsp;headline.</p>\n\n<p>See which option visitors respond better to, and then move on to the next round of testing. You can do this as much as your resources allow and your performance should get better after each&nbsp;time.</p>\n\n<h3 id=\"8-create-a-compelling-thank-you page\" class=\"wp-block-heading\">8. Create a compelling thank you&nbsp;page</h3>\n\n<p>After a user subscribes, redirect them to a thank you page that reinforces their decision and provides additional value. Tell them what to expect or what to do&nbsp;next.</p>\n\n<h2 id=\"frequently-asked questions\" class=\"wp-block-heading\">Frequently asked&nbsp;questions</h2>\n\n<h3 id=\"what-is-email marketing\" class=\"wp-block-heading\">What is email&nbsp;marketing?</h3>\n\n<p><a href=\"https://woocommerce.com/posts/ecommerce-email-marketing/\">Email marketing</a> involves connecting with prospective customers via email. You can promote your products, share exciting news, or re&#8209;engage subscribers who haven’t purchased anything from you in a&nbsp;while.</p>\n\n<p>It’s a great way to build a case for your products or services, stay top of mind, and inspire leads on the fence to go ahead and make a buying&nbsp;decision.</p>\n\n<p>Email marketing allows you to target individual audience segments. You can focus on subscribers who signed up through a particular offer, have shown specific behavior (like buying products from a specific category), or nearly anything else you can think of (as long as you have the&nbsp;data).</p>\n\n<h3 id=\"is-email-marketing-suitable-for-small businesses\" class=\"wp-block-heading\">Is email marketing suitable for small&nbsp;businesses?</h3>\n\n\n<p>Absolutely! Email marketing is a great strategy for small businesses because it&#8217;s affordable and can offer a strong ROI.&nbsp;</p>\n\n\n<p>Many email marketing software solutions offer tiered pricing. If you’re a small business, you might even be able to start for&nbsp;free!</p>\n\n<p>As you see success with your efforts, you can upgrade to a higher plan and unlock even more great features to power your&nbsp;campaigns.</p>\n\n<h3 id=\"what-are-some-best-practices-for-designing-a-landing-page-for-email collection\" class=\"wp-block-heading\">What are some best practices for designing a landing page for email&nbsp;collection?</h3>\n\n<p>Start by identifying your value proposition. Determine why someone would want to give up their email address and ensure you’re providing them with something useful in exchange. Minimize distractions on your landing page like a CAPTCHA. Keep it short and&nbsp;focused.</p>\n\n\n<p>Include a strong CTA and trust signals. Finally, constantly test and adapt!&nbsp;</p>\n\n\n<h3 id=\"what-are-lead-magnets-and-how-can-i-create-one-that-appeals-to-my audience\" class=\"wp-block-heading\">What are lead magnets, and how can I create one that appeals to my&nbsp;audience?</h3>\n\n\n<p>A lead magnet is a valuable offer that you provide in exchange for a user&#8217;s email address. Think of it as a bartering tool. Customers get something for free in exchange for subscribing to your email list.&nbsp;</p>\n\n\n\n<p>Consider your business model and the preferences of your target audience. Ecommerce businesses might send customers a discount code. A B2B company might offer a guide or access to a related tool.&nbsp;</p>\n\n\n\n<p>You aren&#8217;t trying to make a sale. An email subscription is your invitation to establish a relationship with a new contact and convey your value proposition over a period of time.&nbsp;</p>\n\n\n<h3 id=\"should-i-use-captcha-to-protect-my-forms-from spam\" class=\"wp-block-heading\">Should I use CAPTCHA to protect my forms from&nbsp;spam?</h3>\n\n\n<p>No, not if you want to run the most successful campaign possible.&nbsp;</p>\n\n\n\n<p>To get the most subscribers, you need a frictionless sign-up experience. So, while you don’t want your CRM flooded with fake bot emails, you need a better solution: <a href=\"https://akismet.com/\">Akismet</a>. This AI-powered tool stops 99.99% of spam without annoying users.&nbsp;</p>\n\n\n<h3 id=\"what-is-akismet-and-how-can-it-improve-my-email-collection strategy\" class=\"wp-block-heading\">What is Akismet, and how can it improve my email collection&nbsp;strategy?</h3>\n\n<p>Akismet is an advanced spam filtration tool that uses the power of artificial intelligence. It blocks 99.99% of comment, form, and user registration spam. To date, the platform has blocked over 554 billion pieces of spam and is trusted by more than 100 million&nbsp;websites.</p>\n\n<h3 id=\"what-types-of-companies-use akismet\" class=\"wp-block-heading\">What types of companies use&nbsp;Akismet?</h3>\n\n<p>All types of companies trust Akismet to stop spam in its tracks. Roughly 100 million websites use Akismet, including enterprise brands such as Microsoft, ConvertKit, Bluehost, and more. If some of the world&#8217;s biggest brands trust Akismet to beat spam without annoying pop&#8209;up CAPTCHAs, you can,&nbsp;too.</p>\n\n<h3 class=\"wp-block-heading\">Where can I learn more about Akismet&#8217;s&nbsp;solutions?</h3>\n\n\n<p>Explore the Akismet website and blog to learn about its features and real-world use cases like<a href=\"https://akismet.com/blog/convertkit-customerstory/\"> ConvertKit</a>. Find out why millions of companies trust Akismet to put an end to spam.&nbsp;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 22 Jan 2025 14:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Jen Swisher\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"Do The Woo Community: WooCommerce Security Tips: Lessons from Melapress’s annual security survey\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"https://dothewoo.io/?post_type=blog&p=88459\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"https://dothewoo.io/blog/woocommerce-security-tips-lessons-from-melapresss-annual-security-survey/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:213:\"The Melapress WordPress security survey highlights critical gaps in WooCommerce security, emphasizing the need for password policies, team training, and 2FA adoption to enhance website protection against breaches.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 22 Jan 2025 11:04:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Joel Barbara\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"Do The Woo Community: Why Sponsor WordCamp Asia 2025?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"https://dothewoo.io/?post_type=blog&p=88864\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://dothewoo.io/blog/why-sponsor-wordcamp-asia-2025/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:102:\"WordCamp Asia 2025 is just around the corner. Hear why Do the Woo and others are sponsoring this year.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 21 Jan 2025 08:30:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"Matt: What’s in My Bag, 2025\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=134660\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://ma.tt/2025/01/2025-bag/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:15502:\"<p>It&#8217;s another year, I have ordered all the things and tested all the cables, there&#8217;s a little bit about tech and a little bit about life. Here&#8217;s what made the cut, now I&#8217;m going to be factoring in weight of everything as well.</p>\n\n\n\n<p>The flat-lay this year was taken at my sister <a href=\"https://charleen.mullenweg.com/\">Charleen&#8217;s</a> house, where she hosted Christmas for our family for the very first time. Charleen and I have worked on the home in Austin for several years and it was awesome to see it all spruced up for the holidays and also for my Mom to visit it for the first time in 13 years. Part of the idea of my sister being in Austin is that if there&#8217;s a hurricane or anything in Houston my Mom can just drive up a few hours and be totally comfortable, so we put in an elevator, solar panels, Powerwalls, fiber, and Starlink. Her house is also my Austin headquarters when I&#8217;m in town, she set up a nice desk for me to work. Christmas was the beta-test, with Mom + nurse + four dogs all up in Austin; the whole circus was cozy and comfy for the holidays.</p>\n\n\n\n<p>I was telling my friend <a href=\"https://after-on.com/about-rob\">Rob Reid</a> the stories of my Mom and sister&#8217;s homes said I had to listen to the song <a href=\"https://open.spotify.com/track/0vb5XuWzpyzuW3Tw8wLVRW?si=81e796c8f1b84cab\">Get Mama a House by Teddybears and B.o.B</a>, it&#8217;s a good earworm and I will say that getting them both in beautiful homes they love has been one of the most rewarding things I&#8217;ve spent money on. So as advice for other entrepreneurs, get your momma a house! <img src=\"https://s.w.org/images/core/emoji/15.0.3/72x72/1f642.png\" alt=\"🙂\" class=\"wp-smiley\" /></p>\n\n\n\n<p>TL;DR on the gadgets: The most significant change to my bag has been the introduction of the <a href=\"https://daylightcomputer.com/\">Daylight Computer</a>, which I think everyone should have and is a genuinely new platform, and that we&#8217;ve finally reached reliability and excellence on retractable USB-C cords, <a href=\"https://www.amazon.com/gp/product/B0C855QRDN/?tag=photomatt08-20\">these Baseus cords available in a variety of colors and 3.3ft and 6.6ft lengths</a>. I give them out like candy, everybody loves them. I&#8217;ve also started wearing <a href=\"https://havnwear.com/\">Havn hats/underwear/shirts/etc</a> to block unnecessary EMF. (They used to be called Lambs.) And I&#8217;ve found great nootropic benefits with <a href=\"https://drywater.com/products/45-pack-variety-bundle\">DryWater</a> and <a href=\"https://a.co/d/2yiywIO?tag=photomatt08-20\">Celsius</a>. Without further ado, here&#8217;s the list:</p>\n\n\n\n<img width=\"604\" height=\"453\" src=\"https://i0.wp.com/ma.tt/files/2025/01/FEEFC5A6-82C0-4208-95ED-0C0267274F02_1_102_o-1024x768.jpeg?resize=604%2C453&ssl=1\" alt=\"\" class=\"wp-image-134662\" />\n\n\n\n<p>THE BACKPACK</p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><a href=\"https://aersf.com/collections/backpacks/products/fit-pack-3?country=US\">Aer Fit Pack 3 backpack</a>. This is still my go-to, and it&#8217;s embroidered with Automattic and WordPress logos. This is part of our standard swag at <a href=\"https://automattic.com/\">Automattic</a>, and I&#8217;d like to get a WP-embroidered one on our .org swag store when that&#8217;s back up.</li>\n</ol>\n\n\n\n<p>DEVICES</p>\n\n\n\n<ol start=\"2\" class=\"wp-block-list\">\n<li><a href=\"https://www.amazon.com/dp/B0DLHMYX53?tag=photomatt08-20\">16&#8243; Macbook Pro</a>, right now the M4 Max with 128 GB RAM, amazing what you can run locally on this this thing. I&#8217;m very excited about inference at the edge in the coming years. </li>\n\n\n\n<li><a href=\"https://www.amazon.com/dp/B0D3J98VKZ/?tag=photomatt08-20\">iPad Pro</a>, which I use as a second display when I&#8217;m on the road using Apple&#8217;s screen mirroring giving me another 10 inches of screen.</li>\n\n\n\n<li><a href=\"https://daylightcomputer.com/product\">Daylight Computer DC-1</a> represents the first truly new platform I spend time on. It&#8217;s a healthier way of computing and I would like to increase my % screentime on it in the coming years. Also amazing for kids.</li>\n\n\n\n<li><a href=\"https://www.amazon.com/gp/product/B08B495319/?tag=photomatt08-20\">Kindle Paperwhite</a>, this might lose to the Daylight in the future but I do like its form factor.</li>\n\n\n\n<li><a href=\"https://www.apple.com/shop/buy-iphone/iphone-16-pro\">iPhone 16 Pro</a>, you use your phone so much just always have the latest model. This is my primary phone.</li>\n\n\n\n<li><a href=\"https://store.google.com/config/pixel_9_pro?hl=en-US&selections=eyJwcm9kdWN0RmFtaWx5IjoiY0dsNFpXeGZPVjl3Y204PSIsInZhcmlhbnRzIjpbWyI3IiwiTVRFPSJdLFsiMiIsIk5URT0iXV19\">Google Pixel 9 Pro</a> finally is iPhone-parity for me, I use this mostly for tethering with <a href=\"https://fi.google.com/\">Google Fi</a> and testing our apps on Android. I got the pink one, it&#8217;s really a beautiful device and I could imagine a world where it was my daily driver but there&#8217;s just so much convenience in the continuity features of an all-Apple life. It&#8217;s the little things, like copy and paste, that really hook you.</li>\n</ol>\n\n\n\n<p>One nice thing is that the iPad and two phones all have connectivity plans, which I try to spread across different providers so I always have something that works or I can tether to.</p>\n\n\n\n<p>POWER/ADAPTER</p>\n\n\n\n<p>You should ABC, Always Be Charging!</p>\n\n\n\n<ol start=\"8\" class=\"wp-block-list\">\n<li><a href=\"https://a.co/d/2mfeqw4?tag=photomatt08-20\">Baseus 8-in-1 USB-C hub</a>, 99% of the time this is used as an ethernet or HDMI connector, it&#8217;s pretty reliable and not too heavy. (86 grams)</li>\n\n\n\n<li><a href=\"https://a.co/d/bQb5n19?tag=photomatt08-20\">Anker 150W Charger Block</a>, this is just a little extra, I could probably drop it.</li>\n\n\n\n<li><a href=\"https://a.co/d/fzb7i3Y?tag=photomatt08-20\">Anker 47W Nano Charger</a>, nice for setting up a charging station by the bed.</li>\n\n\n\n<li><a href=\"https://www.amazon.com/dp/B0D3Q9JW2G?tag=photomatt08-20\">Baseus 100W</a> power cable, with detachable charging block. This is the core of the entire system, and most of the time I just use this. It&#8217;s chunky at 236 grams but anchors everything else.</li>\n\n\n\n<li><a href=\"https://a.co/d/9FfU7Wp?tag=photomatt08-20\">Belkin 37W Dual USB Car Charger</a>, which I find myself using mostly in Europe when in transfers.</li>\n\n\n\n<li><a href=\"https://a.co/d/cMb9YYc?tag=photomatt08-20\">USB-C adapters</a>, just in case.</li>\n\n\n\n<li><a href=\"https://a.co/d/dA4UKRv?tag=photomatt08-20\">Whoop 4.0 Charger/Battery Pack</a>, I really enjoy the stress and sleep tracking features of the Whoop, and this keeps it charged. <a href=\"https://ma.tt/2023/06/whoop-podcast/\">I did a podcast with their founder Will Ahmed</a>.</li>\n</ol>\n\n\n\n<p>CABLES</p>\n\n\n\n<ol start=\"15\" class=\"wp-block-list\">\n<li><a href=\"https://www.bestbuy.com/site/insignia-4-micro-usb-3-0-charge-and-sync-cable-black/6380169.p?skuId=6380169&intl=nosplash\">Insignia Micro USB 3.0 Charger</a>, this is by far the most cursed cable I carry around, which is for taking photos off my Nikon SLR.</li>\n\n\n\n<li><a href=\"https://a.co/d/9B9FaYI?tag=photomatt08-20\">Cable Matters 4K HDMI Cable</a>, I like the ultra-thin and this can be clutch when connecting to a conference room or hotel TV.</li>\n\n\n\n<li>Baseus 100W/5A retractable cables, now in two sizes <a href=\"https://a.co/d/6Q8UFj6?tag=photomatt08-20\">3.3ft </a>and <a href=\"https://a.co/d/dSqfFjF?tag=photomatt08-20\">6.6ft </a>(about 100cm/200cm). These are my favorite new things! Love love love.</li>\n\n\n\n<li><a href=\"https://www.apple.com/shop/product/MT0H3AM/A/apple-watch-magnetic-fast-charger-to-usb-c-cable-1-m\">Apple Watch Magnetic Fast Charger</a>, I also usually wear an Apple Watch Ultra. I don&#8217;t do too many notifications, but it&#8217;s amazing for finding my phone.</li>\n</ol>\n\n\n\n<p>AUDIO</p>\n\n\n\n<ol start=\"19\" class=\"wp-block-list\">\n<li><a href=\"https://a.co/d/5mkyrML?tag=photomatt08-20\">AirPods Pro Gen 2</a> for pairing with the iPhone, these are so good and if I forget them it&#8217;s the first thing I pick up at the airport electronics store.</li>\n\n\n\n<li><a href=\"https://a.co/d/fSvMQHK?tag=photomatt08-20\">Pixel Buds Pro</a>, for pairing with the Pixel 9 Pro, also amazing I just don&#8217;t use as much.</li>\n\n\n\n<li><a href=\"https://soundgear.com/collections/custom-earplugs\">Custom ear plugs</a>, for protecting hearing when the sound or music is too loud.</li>\n\n\n\n<li><a href=\"https://pro.ultimateears.com/pages/ue-premier\">UE Premier custom headphones</a>, this is still the best audiophile experience I have, great on planes.</li>\n\n\n\n<li><a href=\"https://www.apple.com/shop/product/MW2Q3AM/A/usb-c-to-35-mm-headphone-jack-adapter?fnode=5ecb8873ff26cd324e22e1f34b2f927d64f27701993c1c25726ce6e7419c4f3f4c5a72cfb3887a8d74ba087a48c83b222ea9716d9237d80fded92fe23a58f41e2eb8cac0c255a4ad06d249fff0439d2ee2f05abb10bc7abf8f257c671cf9bb7d\">USB-C Headphone Jack Adapter</a></li>\n\n\n\n<li><a href=\"https://a.co/d/9A9r8Uw?tag=photomatt08-20\">Belkin RockStar 5-Jack Audio Splitter</a></li>\n\n\n\n<li><a href=\"https://a.co/d/8AhUQDT?tag=photomatt08-20\">Belkin RockStar 3.5mm Audio w/USB-C Charge Adapter</a></li>\n</ol>\n\n\n\n<p>MISCELLANEOUS ELECTRONICS&nbsp;</p>\n\n\n\n<ol start=\"26\" class=\"wp-block-list\">\n<li><a href=\"https://www.amazon.com/dp/B07YY7BH2W/?tag=photomatt08-20\">Aranet4 CO2 monitor</a>, this can change your life, if the area you&#8217;re in isn&#8217;t well ventilated then you run cognitively lower without even noticing it.</li>\n\n\n\n<li><a href=\"https://a.co/d/3c2R6iQ?tag=photomatt08-20\">Logitech mouse</a>, with quiet clicks, I find a mouse is just ergonomically an easy productivity upgrade from the built-in trackpad.</li>\n\n\n\n<li><a href=\"https://flipperzero.one/\">Flipper Zero</a>, the funnest little cloning gadget I&#8217;ve tried.</li>\n\n\n\n<li><a href=\"https://a.co/d/0ptXcgm?tag=photomatt08-20\">Pixel G1s RGB Video Light</a>, can be used in party mode to set lights.</li>\n\n\n\n<li><a href=\"https://a.co/d/3mWpYCR?tag=photomatt08-20\">USB-C chargeable Candle Lighter</a></li>\n\n\n\n<li><a href=\"https://a.co/d/0ovjqEv?tag=photomatt08-20\">Petzl E_LITE Headlamp</a></li>\n\n\n\n<li><a href=\"https://www.amazon.com/gp/product/B09P8CNRK1/?tag=photomatt08-20\">Universal Airplane Phone Holder</a></li>\n</ol>\n\n\n\n<p>PERSONAL ITEMS</p>\n\n\n\n<ol start=\"33\" class=\"wp-block-list\">\n<li>Passport</li>\n\n\n\n<li><a href=\"https://www.hermes.com/us/en/product/calvi-card-holder-H064954CK0L/\">Hermes business card holder</a>, which I&#8217;ve been using more since spending more time in Asia with the increased community activity there.</li>\n\n\n\n<li><a href=\"https://a.co/d/1e49QG0?tag=photomatt08-20\">Thread Wallet elastic card holder/wallet</a>&nbsp;</li>\n\n\n\n<li><a href=\"https://hayshop.com.au/products/portemonnaie-denim\">Hay catch-all Pouch</a></li>\n\n\n\n<li><a href=\"https://www.sea2see.org/products/treviso-sun?variant=20495073771618\">Sea2See Sunglasses</a></li>\n\n\n\n<li><a href=\"https://www.marunao.com/cms_en/products/308/\">Marunao mint case</a></li>\n\n\n\n<li><a href=\"https://lockpicktools.com/folding-pocket-set/\">Lockpick set</a>, you can learn to unlock most locks in a few hours of training. Like the Flipper this is kinda a hacker tool.</li>\n\n\n\n<li>Blue Rock, a little worry stone you can hold in your hand and rub.</li>\n\n\n\n<li>WordPress ring, because I&#8217;m married to the game.</li>\n\n\n\n<li>WordPress pin, spruces up any outfit with a little open source rizz.</li>\n\n\n\n<li>Plastic holder with stickers&nbsp;for our various brands and products, I love seeing WordPress or Tumblr stickers in random places, and sometimes place them myself.</li>\n\n\n\n<li><a href=\"https://ugmonk.com/pages/analog\">Notecards from Ugmonk Analog</a>, you can rabbit hole their entire site to upgrade your desk game. Lovely stuff.</li>\n\n\n\n<li><a href=\"https://www.amazon.com/dp/B00T9CHYOU/?tag=photomatt08-20&th=1\">Maruman N196A Nemosine Notebook</a>.</li>\n\n\n\n<li><a href=\"https://a.co/d/j9aIm7e?tag=photomatt08-20\">OHTO Needle-point Pen 0.7mm</a>, picked up in Japan and I like for when I want to draft something more thin-lined.</li>\n\n\n\n<li><a href=\"https://www.montblanc.com/en-us/ballpoint-pens_cod1647597318123131.html\">Montblanc Heritage Egyptomania Doue ballpoint pen</a>, which I like for signing important things and also crossing out todos on the Ugmonk cards.</li>\n</ol>\n\n\n\n<p>TRAVEL ESSENTIALS</p>\n\n\n\n<ol start=\"48\" class=\"wp-block-list\">\n<li><a href=\"https://www.icewear.is/us/hvitanes-neckband-merino-wool?gad_source=1&gclid=Cj0KCQiAj9m7BhD1ARIsANsIIvAXoVrkR68S3b-R-AM4uZUOiy8SUMSmcGuLjL06XZ33ixkMkepkM5waAvJ_EALw_wcB\">Icewear Merino wool gaiter</a></li>\n\n\n\n<li><a href=\"https://havnwear.com/product/wavestopper-beanie?Style=Grey+Ribbed\">Lambs EMF WaveStopper beanie</a>, literally a tin-foil hat.</li>\n\n\n\n<li><a href=\"https://a.co/d/16Y5C4t?tag=photomatt08-20\">RAINS insulated gloves</a></li>\n\n\n\n<li><a href=\"https://www.gorewear.com/us/en-us/m-windstopper-thermo-beanie-100391\">Gore Thermo Beanie</a></li>\n\n\n\n<li><a href=\"https://olospace.myshopify.com/products/invision-eye-mask\">Olo InVision Eye Mask</a>&nbsp;</li>\n\n\n\n<li><a href=\"https://www.theherbbar.com/product/thieves-ready-to-roll-1-3-oz-/936?cp=true&sa=false&sbp=false&q=false&category_id=30\">Herb Bar essential oil blend</a>, always nice to have something good-smelling around. Not endorsing this specifically, but I always have some essential oil around.</li>\n\n\n\n<li><a href=\"https://www.amazon.com/dp/B0062ALC9U/?tag=photomatt08-20\">Immunity Throat Spray</a>, suggested to me by the mushroom GOAT himself, Paul Stamets, I saw him use this at an event we were both at. When I travel or am around a bunch of people I&#8217;ll do three sprays in morning and night, and I&#8217;ve often been the one in my group to not get the &#8220;conference cold&#8221; that goes around.</li>\n\n\n\n<li><a href=\"https://a.co/d/cu0IIMj\">Z-Biotics</a>, introduced to me by my friend Sid, it&#8217;s kind of a game-changer anytime you drink, lessens the negative effects of alcohol. It works so well there&#8217;s a possibility of <a href=\"https://en.wikipedia.org/wiki/Moral_hazard\">moral hazard</a>. They have some new stuff around fiber, it&#8217;s an interesting company to follow.</li>\n\n\n\n<li><a href=\"https://a.co/d/2yiywIO?tag=photomatt08-20\">Celsius energy powder packet</a>, this is nice to turn any drink into a Celsius, when you need an extra boost. Be careful with these as they have 200mg of caffeine! I try to avoid after 2pm, and not in first hour I wake up.</li>\n\n\n\n<li><a href=\"https://drywater.com/products/45-pack-variety-bundle\">DryWater electrolytes powder packet</a>, I&#8217;ve switched to this over LMNT because I like the ingredients and sourcing better. Electrolytes when you first wake up is better than coffee, I&#8217;ll often mix this with tea.</li>\n</ol>\n\n\n\n<p>If you want to get super-nerdy, <a href=\"https://docs.google.com/spreadsheets/d/1_YM7K7OUMc2_8qqsCRHAAe2T2bgrciC4TRtDlO_aZfU/edit?usp=sharing\">here&#8217;s a spreadsheet with the weights</a>. Basically I&#8217;m 10.7 pounds of computing devices (Macbook, iPad, Daylight, Flipper, iPhone, Pixel), and ten pounds of other stuff. Add in a bottle of water or other random things I put in the bag ends up being ~22-28 pounds most of the time, which I&#8217;d like to get down.</p>\n\n\n\n<p>But with my backpack I can tackle a really wide variety of situations. It&#8217;s fun! If you have any tips or suggestions please leave them in the comments! I&#8217;m always trying out new gear.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 21 Jan 2025 06:13:47 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"Do The Woo Community: Celebrating Seven Years of the Do the Woo Podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=89092\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"https://dothewoo.io/celebrating-seven-years-of-do-the-woo-podcast/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:183:\"BobWP celebrates the seven-year anniversary of Do the Woo, with hosts discussing its evolution, hosts’ experiences, digital accessibility, and exciting future plans for the podcast.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 20 Jan 2025 09:58:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"Gutenberg Times: Gutenberg Changelog 113 – WordPress 6.8, Gutenberg 19.9, 20.0 and 20.1 Plugin Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://gutenbergtimes.com/?post_type=podcast&p=37388\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:118:\"https://gutenbergtimes.com/podcast/gutenberg-changelog-113-wordpress-6-8-gutenberg-19-9-20-0-and-20-1-plugin-releases/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:58717:\"<p>Birgit Pauli-Haack and Tammie Lister talked about WordPress 6.8, Gutenberg 19.9, 20.0 and 20.1 plugin releases. </p>\n\n\n\n<p>Add a summary/excerpt here</p>\n\n\n\n<p><a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-69-gutenberg-releases-wordpress-6-0-1-the-create-block-theme/#shownotes\">Show Notes</a> / <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-69-gutenberg-releases-wordpress-6-0-1-the-create-block-theme/#transcript\">Transcript</a></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Editor:&nbsp;<a href=\"https://www.linkedin.com/in/sandy-reed/\">Sandy Reed</a></li>\n\n\n\n<li>Logo:&nbsp;<a href=\"https://markuraine.com/\">Mark Uraine</a></li>\n\n\n\n<li>Production:&nbsp;<a href=\"https://icodeforapurpose.com\">Birgit Pauli-Haack</a></li>\n</ul>\n\n\n\n<p class=\"has-larger-font-size\" id=\"shownotes\"><strong>Show Notes</strong></p>\n\n\n\n<h2 class=\"wp-block-heading\">Tammie Lister</h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://profiles.wordpress.org/karmatosed/\">WordPress</a> | <a href=\"https://x.com/karmatosed\">X (former Twitter)</a> | <a href=\"https://bsky.app/profile/karmatosed.art\">BlueSky</a></li>\n\n\n\n<li>making @ <a href=\"https://compositionproducts.com/\" target=\"_blank\" rel=\"noreferrer noopener\">compositionproducts.com</a> </li>\n\n\n\n<li>delivering @ <a href=\"https://logicalbinary.com/\" target=\"_blank\" rel=\"noreferrer noopener\">logicalbinary.com</a> </li>\n\n\n\n<li>thinking @ <a href=\"https://binatethoughts.com/\" target=\"_blank\" rel=\"noreferrer noopener\">binatethoughts.com</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Cursor AI </h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://www.youtube.com/watch?v=zhmRSFhbiGs\">Cursor AI vs Human Developer in Speed Build Special&#8230;shocking result!</a></li>\n\n\n\n<li><a href=\"https://www.youtube.com/watch?v=3_TiyKdPNq4\">Revolutionize Your WordPress Development with Cursor AI</a>&nbsp;</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress 6.8</h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://make.wordpress.org/core/2025/01/11/wordpress-6-8-release-squad-timeline-and-focus/\">WordPress 6.8: Release Squad, Timeline, and Focus</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/design/2025/01/15/design-plans-for-wordpress-6-8/\">Design plans for WordPress 6.8</a> </li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Gutenberg plugin</h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://make.wordpress.org/core/2024/12/18/whats-new-in-gutenberg-19-9-19-december/\">What’s new in Gutenberg 19.9? (19 December</a>)</li>\n\n\n\n<li><a href=\"https://wptavern.com/gutenberg-19-9-introduces-style-book-to-classic-themes\">Gutenberg 19.9 Introduces Style Book to Classic Themes</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2025/01/11/whats-new-in-gutenberg-20-0-10-january/\">What’s new in&nbsp;Gutenberg&nbsp;20.0? (10 January)</a></li>\n\n\n\n<li><a href=\"https://wp-content.co/gutenberg-20/\">Gutenberg Plugin Reaches 200th Release Milestone with Version 20.0</a></li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/releases/tag/v20.1.0-rc.1\">Gutenberg 20.1 RC1</a> (final release Jan 22, 2025)</li>\n</ul>\n\n\n\n<p>Storybook</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://wordpress.github.io/gutenberg/?path=/docs/docs-introduction--page\">WordPress Storybook </a></li>\n\n\n\n<li><a href=\"https://storybook.js.org/\">StorybookJS</a></li>\n</ul>\n\n\n\n<p class=\"has-large-font-size\">Stay in Touch</p>\n\n\n\n<div class=\"wp-block-group\"><div class=\"wp-block-group__inner-container is-layout-flow wp-block-group-is-layout-flow\">\n<ul class=\"wp-block-list\">\n<li>Did you like this episode? <a href=\"https://lovethepodcast.com/gutenbergchangelog\"><strong>Please write us a review </strong></a></li>\n\n\n\n<li>Ping us on X (formerly known as Twitter) or send DMs with questions. <a href=\"https://twitter.com/gutenbergtimes\">@gutenbergtimes </a>and <a href=\"https://twitter.com/bph\">@bph</a>.</li>\n\n\n\n<li><em>If you have questions or suggestions, or news you want us to include, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a>. </em></li>\n\n\n\n<li><em>Please write us a review on iTunes! <a href=\"https://gutenbergtimes.com/itunes/\">(Click here to learn how)</a></em></li>\n</ul>\n</div></div>\n\n\n\n<p class=\"has-large-font-size\" id=\"transcript\"><strong>Transcript</strong></p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Hello, and welcome to our 113th episode of the Gutenberg Changelog.</p>\n\n\n\n<p>Dear listeners, I wish you all a happy New Year, lots of fun and laughter, good health, and most of all, prosperity and peace. Yes, we took a holiday break and there are still three plugin releases that happened in the meantime. And in today&#8217;s episode, we&#8217;ll talk about WordPress 6.8, Gutenberg 19.9, 20.0, and 20.1.</p>\n\n\n\n<p>I&#8217;m your host, Birgit Pauli-Haack, curator at the Gutenberg Times and developer advocate at Automattic. Today&#8217;s co-host is Tammie Lister, OG Gutenberg developer and designer, product consultant, and long-time core contributor to WordPress and BuddyPress, I recently noticed again.</p>\n\n\n\n<p>Thank you for joining me, Tammie. How are you today?</p>\n\n\n\n<p><em>Tammie Lister:</em> I am great. Thank you. How are you?</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> I&#8217;m good, I&#8217;m good. I&#8217;m done with winter, but I think I can control that. So if you&#8217;re done with winter too, let&#8217;s help and change the weather if we can do it.</p>\n\n\n\n<p><em>Tammie Lister:</em> Yeah, I am very done with winter, although it&#8217;s kind of nice as long as you just don&#8217;t go outside. But also, as long as you wrap up warm, I think that&#8217;s the thing, just&#8230;</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. There are several days that I stay inside, which normally doesn&#8217;t happen, but yeah.</p>\n\n\n\n<p><em>Tammie Lister:</em> I have a wood burner, which makes winter a little bit more tolerable.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Well, we have central heating, which is very good. So, well, Tammie, you&#8217;re always on the forefront of web and WordPress development. What are you working on right now and what are your plans or outlook for 2025?</p>\n\n\n\n<p><em>Tammie Lister:</em> Yeah. So I guess over the holidays, I did what a lot of people did, which is I did some tinkering. So a lot of people take time off and the holidays appear to be the time when they sit down and do a project. And it appeared to be that everybody over the holiday has explored with AI development tools.</p>\n\n\n\n<p>The one that I chose, well, I chose, I did a bit of Bolt, but I also did Cursor specifically. And I was using it as a rubber duck that&#8217;s basically for development. So I was doing a lot of that in my work. I&#8217;ve been doing a combination of working on themes, but also working on some product consultancy, and that&#8217;s been really interesting to balance those. But also looking at contribution perspective, stepping back into releases. So really for me, it&#8217;s with a lot of these tools is how can I get the ideas that are in my head out faster into prototypes rather than maybe them just sitting in my head. But I don&#8217;t think I&#8217;m alone based on what I was seeing on the socials and seeing in Slack. A lot of people were just brewing ideas and just getting them out, so&#8230;</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. No, no, I agree. And for those listeners who are not English natives, the rubber ducking is a process.</p>\n\n\n\n<p><em>Tammie Lister:</em> Ah, yes.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> &#8230; by developers who talk to actually inanimate object and get it out, but they have it ahead.</p>\n\n\n\n<p><em>Tammie Lister:</em> Sometimes a rubber duck.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> That&#8217;s a rubber duck. And then by way of explaining it to somebody, most of the time a solution comes or at least, okay, another avenue to troubleshoot something opens up. So it&#8217;s a known process and it&#8217;s called rubber ducking.</p>\n\n\n\n<p><em>Tammie Lister:</em> Yeah. And a lot of these tools are really helpful for that, particularly with things like WordPress and Gutenberg, there&#8217;s always something you don&#8217;t know about or maybe there&#8217;s a feature you haven&#8217;t got to learn about. So one of the things I was able to do was be like it could teach me about that area whilst I was learning to code.</p>\n\n\n\n<p>I also did some things which are completely unrelated to that, but on the newer features. I was able to say, &#8220;How would you implement it and teach me as you are doing it each stage,&#8221; which is really helpful. It&#8217;s having that training guide as well.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. I really love it. And it prompts you. So speaking of Cursor AI, it actually prompts you. &#8220;Shall I explain this a little bit to you?&#8221; kind of thing.</p>\n\n\n\n<p><em>Tammie Lister:</em> Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> And you say, &#8220;Yes, please do like I&#8217;m a 5-year-old,&#8221; or something.</p>\n\n\n\n<p><em>Tammie Lister:</em> &#8220;Explain it to me like I&#8217;m the rubber duck.&#8221;</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. And then one of the AIs, when I say, &#8220;Please make it readable for a non-technical person,&#8221; and every time they come with a legal analogy. Yeah, legal. Can they do these trademarks? Well, anyway.</p>\n\n\n\n<p><em>Tammie Lister</em>: I like whenever you&#8217;re saying with that, if you don&#8217;t set any boundaries with things like that, they try and go above and beyond. They&#8217;re very over-performing so you&#8217;ll find it&#8217;ll be like, I watched this when I watched Nick Diego when he did his block challenge and it was just, I think he just said, &#8220;Make it Christmas-y,&#8221; and it was just like, &#8220;Have sparkles, have this, have that, have the other.&#8221; And I also discovered that if I didn&#8217;t set some boundaries, it was suddenly like, &#8220;Have this, have the other.&#8221; So just set some boundaries to it. &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; So a good example from a Gutenberg perspective would be, say, use create block scaffolding, would be use the components. And knowing things like that means that it really tailwind otherwise. It&#8217;ll be like, &#8220;Put tailwind in it, put tailwind in this.&#8221; And it&#8217;s like, &#8220;Yeah, there&#8217;s some components we can use. It&#8217;s okay.&#8221;</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. But you really need to be knowing something about development to actually guide it also to something that you then also have production-</p>\n\n\n\n<p><em>Tammie Lister:</em> Yes.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Not production ready, but you can use.</p>\n\n\n\n<p><em>Tammie Lister</em>: And I found that when I was doing things which were not my wheelhouse, which was in thinking not WordPress, and I was just doing some different language stuff. And when I completely didn&#8217;t know the stack I was working with and it was just like, &#8220;Sure, I don&#8217;t know if you&#8217;ve just done or just taken me completely down the wrong path.&#8221; But then you go through the, &#8220;Explain why you did this,&#8221; and then it will pick through. And then oftenly, it will self-correct itself. Then you can be like, &#8220;Can you do this a simpler way?&#8221; and it&#8217;ll be like, &#8220;Yes, I can. You are correct.&#8221; And I don&#8217;t know if you find that you&#8217;d say please and thank you to it a lot because I say an awful lot of…</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Sometimes, yeah.</p>\n\n\n\n<p><em>Tammie Lister:</em> &#8230; please and thank you to my AI overlords.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. And I like that when Nick said, somebody mentioned that, I think Jamie mentioned that when Nick was going through, I said, &#8220;You are always very polite.&#8221;</p>\n\n\n\n<p><em>Tammie Lister:</em> I am so polite just in case.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Just in case.</p>\n\n\n\n<p><em>Tammie Lister:</em> Just in case Terminator is correct. You&#8217;ve got to be polite.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. Well, but this show, your listener is not in an AI show. We could probably talk another two hours about it, but we have other things to do today.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\">Announcements &#8211; WordPress 6.8 Release</h3>\n\n\n\n<p>So there&#8217;s the announcement that WordPress 6.8, the release squad is done, the timeline is announced, and the focus is announced. And the schedule is beta one is March 4th. That&#8217;s pretty much around the corner. Then release candidate is the 25th of March, the first release candidate. And then the final release will be April 15th.</p>\n\n\n\n<p>And Jonathan Desrosiers put up that post and I want to quote from his post, and he said, &#8220;The squad is also a bit smaller than usual because of the release being a polish and bug fix release. Also of note, the core tech lead and editor tech lead roles have been combined into a single tech lead role as part of the continued initiative to support more closely coordinated efforts across Gutenberg and Core.&#8221; And that&#8217;s the quote end. The tech leads are Joe McGill, Jonathan Desrosiers, and George Mamadashvili. So that&#8217;s a great team to put this all together. All 10 release squad members are actually long time contributors and have been on many, many releases before. So it&#8217;s Jeff Paul, Michelle Frechette, JB Audras, Felix Arntz, and Krupa Nanda. And Tammie Lister has raised a hand as a design lead for the release.</p>\n\n\n\n<p>Yeah, so what does a design lead do on the release?</p>\n\n\n\n<p><em>Tammie Lister:</em> Yeah. So there&#8217;s, as of all these roles, there&#8217;s some keeping things on the track, things you do from the design perspective, the about page, getting any materials that are needed for the release. But really the best, the fundamentals are if anything has a niche design or design feedback ticket during the release, it&#8217;s unblocking. That&#8217;s the best way that I can put it from that. And because this release specifically is a polish and a fix, maybe go into what that really means. It means most of, if not all, of the big features are ready, or we are not really going to be doing so many of those. And I think that that&#8217;s something that last year actually was requested by the community specifically to focus on. I don&#8217;t know if we&#8217;re going to have one, two a whole year. I have no idea. We&#8217;re just entering this year.</p>\n\n\n\n<p>But, I actually, from a design perspective, it&#8217;s quite good because we have quite a lot of tickets that need design feedback, both in Core and in Core Editor. So I&#8217;ve been able to look at those right going all the way back and triage them. Maybe a good thing too, because that&#8217;s often a word, but to explain the way that triage or at least the way that I approach triage is that triage shouldn&#8217;t leave a ticket in the state that you find it. So that could be your audition labels, but you are also moving it on. So we have a lot of tickets that they need feedback, but then they need to go to their next state. So just leaving something with a test or a feedback, that&#8217;s awesome, but it just leaves it with test or feedback. It doesn&#8217;t move it on. It doesn&#8217;t.</p>\n\n\n\n<p>Also, some of these tickets, so if something maybe in five years ago was thought to have a design, and I actually discovered this over the holidays, well, just before the holidays when I was going through my old tickets in the Gutenberg repo. And I discovered that a lot of them have already had different interfaces done. So they&#8217;re completely invalid tickets now. But because people have been really not&#8230; So many people have been doing work and there&#8217;s so many tickets, been able to go back over some of those and saying, &#8220;Okay, well, the interface has changed. Do we still think that this is a valid application or do we wish it well? And do we want to close it because we&#8217;ve already taken a different approach as a project?&#8221;</p>\n\n\n\n<p>So that&#8217;s one thing that can be done. Those aren&#8217;t all that common. But also just looking at because something has an easy fix, I call them paper cuts, there&#8217;s often little things that can be done as well. And I suspect there&#8217;s going to be quite a few of those from a design perspective, some little paper cuts we can get in. Design also doesn&#8217;t just mean visual design. I always like to include some CSS and styling in there because of my hybrid nature as well, so yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Cool, yeah. Well, thank you very much for stepping up to the plate and thank you for everybody stepping up to the plate and being on the radio.</p>\n\n\n\n<p><em>Tammie Lister:</em> And there will be of us joining, I think that&#8217;s always the important thing, is there&#8217;s a post on mixed design about how anyone can just step up and join in if you have an hour, half an hour a week that you can just sit there and do some triage that&#8217;s been involved and just raise your name and then you can get included in the release.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Excellent. Yes. Yeah, so that&#8217;s on WordPress 6.8. I think we will, on this podcast, talk about what&#8217;s going to be in there a little later in the year, maybe after WordCamp Asia, probably have another Gutenberg Changelog episode. We will have one before WordCamp Asia and one after Asia.</p>\n\n\n\n<p>But we say the Gutenberg plans keep rolling in, two big ones and one not so big one. One was 19.9 that was in December. Then the first one in January was 20.0. And then just last week, oh, this week, we were recording this on January 17th, so this week, George Momotos really just did the 20.1 release candidate. So the Changelog we&#8217;re going to talk about is going to be from the release candidate, but the other two have been released and I share with you the release post.</p>\n\n\n\n<p>Gutenberg 19.9<strong> </strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\n\n\n\n<p>So let&#8217;s get started with Gutenberg 19.9.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\">Enhancements</h3>\n\n\n\n<p>So what was a big change is something that&#8217;s probably not in any release, but it&#8217;s in the plugin release, is that the experiments page of the Gutenberg plugin has Anne McCarthy went through it and give it better titles, a description, and a little bit of an order on the experiment space because there are now 13 experiments listed on that page. So that is definitely a good thing, especially when you want to check them out and enable them and play around with the things. What&#8217;s in the experiments page is a few data views, then all the collaborative editing things and experiments then some new blocks. The grid layout, the interactive grid layout, is in the experiments. So those are there.</p>\n\n\n\n<p><em>Tammie Lister:</em> I think often people forget about that page, so it&#8217;s really nice to see it called out because I think it should remind people that it&#8217;s there as well.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah.</p>\n\n\n\n<p><em>Tammie Lister:</em> So number one I&#8217;m seeing here is add PHP admin support for environment enhancement and document layout in Storybook. A lot of this is improvements to components and Storybook in general. This reminds me, I&#8217;m also seeing Storybook, Storybook, Storybook, Storybook, Storybook, and it reminds me of the importance of the design system. I&#8217;m going back to that. One of the things we are really looking at in this release is: how can we bring that awesome work that&#8217;s happened in the editor into those other areas of WordPress, and seeing this really good work from the Storybook reminds me of that.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> So Storybook, just in case you heard this for the first time, don&#8217;t confuse them with Stylebook. That&#8217;s a total different thing. But the Storybook is a way of documentation, certain components with their attributes and their different options so you can see them in isolation. And it&#8217;s actually available on the WordPress GitHub pages, and I will share the link in the show notes. So if you haven&#8217;t looked at it yet and you are developing for WordPress, it&#8217;s definitely a place to go and see what&#8217;s actually in the design system, as Tammie said, and also how you can use it for your own plugins. Well, not so much themes, but for the plugins, or any other admin contributions that you want to do.</p>\n\n\n\n<p>The next pieces are more like individual blocks that got some enhancements. First up is the cover block that the image size option for the featured image is now available. You could assign the featured image to be part of the cover block, but you couldn&#8217;t specify the size for that. So now you can, and which is good for a lot of things. And talking about the featured image, no, it&#8217;s a new feature. It&#8217;s not featured image, sorry. It&#8217;s about the post template block that you can deeply nest it into the query block. It&#8217;s like query block inception over down, down, down, down.</p>\n\n\n\n<p><em>Tammie Lister:</em> And I would say there&#8217;s another one here with patterns model to drop down on query block any, and another one, add query total block for displaying total query results. The query block is a block that pretty much most agency workers always had to extend or have a variation of rather than be able to use out of the box for quite a while. And it&#8217;s not an amazing block. It&#8217;s just not quite got there because it&#8217;s so complex and it&#8217;s so many different variations. So anytime you add a feature, it&#8217;s just a lot to add a feature. So I think being able to see these improvements are really powerful.</p>\n\n\n\n<p>And if you remember where the query blocks started, I think it&#8217;s great to see how it&#8217;s come along. I remember the first mock-ups to try and get a mind around the query block. And wherever it is now, I&#8217;m just really excited to see. And also from the sensibility perspective where it is now and the fact that I think a lot more cases, probably at least 30, 40% don&#8217;t need to extend it now. And I think that we&#8217;re probably only ever going to get to 50/50 because it&#8217;s such a complex situation, but being able to get to that from where most couldn&#8217;t use it is really powerful for the query block.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah, and it&#8217;s so much the jump from the classic theme to a block theme is that a user can actually get in contact with a query block and really adapt it to what it needs to do.</p>\n\n\n\n<p><em>Tammie Lister:</em> And within, yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: How often have I had the request to remove a date or remove the author or remove the category pick? That was all developer-oriented kind of thing.</p>\n\n\n\n<p><em>Tammie Lister:</em> And a theme of understanding it, just a theme of being able to understand query blocks. So one of the big things that just learning as a themer is a real block, a block, a block. A blocker for you as a themer is trying to understand, and it often puts off a lot of people in theming because they may be more on the design side and they&#8217;re just like, &#8220;Oh, now I&#8217;ve got to learn the loop, got to learn how to do coding, and I&#8217;ve got to learn how to do that.&#8221; Well, with the query block, you don&#8217;t have to. It doesn&#8217;t mean if you know it, you can still use it. And I think that was really important to say when we&#8217;re talking about query block, that you can use it, but you can also use other methods or you could extend it and have your own really powerful option. And that&#8217;s something that I don&#8217;t think people will often hear is you have an option. And I find that a lot of times it does it for me now, but that little bit that it doesn&#8217;t, extending it is really powerful as well.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah, yeah, absolutely. Yeah. And you mentioned the query total block. That&#8217;s a new block and it helps you display the query results ranges, so to speak. You get the total results, but it also gives you so, &#8220;12 results found,&#8221; or in the pagination it says, &#8220;Displaying 1 through 10 of 12,&#8221; or something like that. And it gives you a little bit more flexibility in display query related theme designs here.</p>\n\n\n\n<p><em>Tammie Lister:</em> And that&#8217;s a good note. The query block isn&#8217;t just a block. It&#8217;s a block with the blocks. And a lot of our mega blocks, I don&#8217;t know, nested blocks, a lot of those one are that. And we&#8217;re often, I don&#8217;t think we need more terminology, we really don&#8217;t, but we don&#8217;t see the complexity of them. And the query block is one of those really complex blocks. Navigation block is similar because of that nesting and because of the complexity inside it. If you look at even title image, the way that you have the content loops and the way that that can be, you don&#8217;t even need to have the finite control now. You can just have the content now and all those different options.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah, it takes a little bit getting used to and also getting experience in what works and what doesn&#8217;t work for you. Different thing, yeah.</p>\n\n\n\n<p><em>Tammie Lister:</em> Yeah, it&#8217;s blocks.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. Well, I remember the time when I would try to get the pagination block on my page and it didn&#8217;t go. It didn&#8217;t show because…</p>\n\n\n\n<p><em>Tammie Lister:</em> Oh, that.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> &#8230; it was not inside the query button exactly.</p>\n\n\n\n<p><em>Tammie Lister:</em> Yeah, you&#8217;re reminding me. There used to be a thing where it used to, I think there was a while where it could easily just go outside and it would just hang around just outside. And it would never error so you would never know why it was erroring. It would just be like that. It&#8217;s pagination that you could click the pagination and go up and down it, but it wouldn&#8217;t do anything. But that also shows how far we&#8217;ve come because if you have that now, it would give an error. And now a lot of the system is interactive enough to self-correct itself, and it&#8217;d be like, &#8220;No query found,&#8221; or there&#8217;s a lot of error catching and correction in the system, or it&#8217;d be like, &#8220;No, that block has to be within the container.&#8221;</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Or it doesn&#8217;t show up if it&#8217;s not inside the container.</p>\n\n\n\n<p><em>Tammie Lister:</em> Yes, which is the refinements and the polish, which brings us lovely back to 6.8. I don&#8217;t know.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Right, right, right. Yeah.</p>\n\n\n\n<p><em>Tammie Lister:</em> But that&#8217;s part of it, right? With all these complexities.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. And I think the next one is a separator block that can now also divs instead of horizontal lines. So it can be styled, better styled. And it also is not announced because it&#8217;s a decorative thing. It&#8217;s not announced through the page reader, the screen reader.</p>\n\n\n\n<p><em>Tammie Lister:</em> Which was always interesting to listen to initially, the screen reader doing the spacer block and then when you hadn&#8217;t done it correctly and then doing the separator block and he was like, &#8220;Rah, rah.&#8221; It&#8217;s shouting at people.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. Well, we laugh about it, but I think for someone who reads a screen reader, it&#8217;s not funny.</p>\n\n\n\n<p><em>Tammie Lister:</em> No, but that&#8217;s the thing. It&#8217;s like you&#8217;re laughing at the refinement.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Right.</p>\n\n\n\n<p><em>Tammie Lister:</em> But it&#8217;s good. And only because of the really awesome feedback that we&#8217;ve had from the accessibility team and the learnings that we&#8217;ve done have we been able to get on that. And I think again, that shows that the learnings and the refinement and the collaborative work that has gone on behind the scenes between the team, we&#8217;re laughing with the gentleness of history, I think, right? That&#8217;s what we are able to do.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. And until you hear actually a screen reader shouting at you, you have no idea how that actually works. So it&#8217;s always been an epiphany for me to not talk with people who know how to use a screen reader or teach me how to do it and do it myself. And then you say, &#8220;Oh no, that&#8217;s wrong.&#8221;</p>\n\n\n\n<p>So the next part is about Stylebook. We talked about Storybook. That&#8217;s a developer stuff. Storybook, it&#8217;s a designer stuff, but that&#8217;s in the editor. And the Stylebook actually lets you go through all the blocks on your site with the style attached to it. So if you use one of the style variation and you open up the Stylebook, you see how each of the blocks, image block, paragraph block quotes look with that particular style and you can actually edit it. And as I said, there was something like that it&#8217;s a side editor thing, but now Stylebook screen comes also to the classic theme. And that I think is a really good move to have that there because there have been for eight years having blocks displayed in classic themes and not something like a Stylebook was available. Now, it is.</p>\n\n\n\n<p><em>Tammie Lister:</em> The only option before was to get the block theme tested data and then put it in. And then generally people, when you release the site, you had a page and then on that page you listed every book. I&#8217;m laughing at the work I&#8217;ve done.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah, I hear you.</p>\n\n\n\n<p><em>Tammie Lister:</em> I love Stylebook. Often I surprise clients by showing them it. They&#8217;re like, &#8220;Huh? Where did that come from?&#8221; And the reason I like it is I use the editor like Dreamweaver, and one of the things that I find is when I lay my foundations in a theme, I will then go straight to Stylebook. So I&#8217;ll do the foundations, the color, the typography, and then don&#8217;t make that noise, but yeah, and then I go to Stylebook and I&#8217;m like, &#8220;Okay, particularly color.&#8221; So one good thing I&#8217;ll be able to do calendar always, I can be like, &#8220;Oh yeah, no, the colors won&#8217;t necessarily going to reflect so well.&#8221; So I make sure that I get in my naming and my colors and all those things going so that I can have that dynamic base that pulls in on different blocks depending on what the block is and all those ways that I can have borders and shading and different things.</p>\n\n\n\n<p>So that&#8217;s one of the things that I try to do when I&#8217;m pulling something through. And that can be whether I&#8217;m doing a base theme or whether I&#8217;m using Ollie or any number of different themes as a foundation, doesn&#8217;t matter. That&#8217;s exactly the same as a child theme. Doesn&#8217;t matter. It&#8217;s exactly the same approach every single time. And so Stylebook, whenever I show someone, they&#8217;re like, &#8220;Oh, I want to use this.&#8221; Still waiting for the day where I can have it detached and front end show someone because I still think that that would be chef&#8217;s kiss because the amount of projects I&#8217;ve had to do zero or something like that, or those other tools that you have to use on top of it. But yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah, no, I really like the Stylebook. I remember the time where I had a GitHub test with all my test blocks and variations of the block and how that&#8217;s going to work, yeah. And the next one is also a Stylebook one that is a render overview colors in four columns. So one of the new features is that the color variations, I think, is the right terminology are now shown on top of the Stylebook. So you can see when you change the style variations, how the colors actually change. It&#8217;s cool.</p>\n\n\n\n<p><em>Tammie Lister:</em> So the post editor, I guess we&#8217;re moving to, so we have inline commenting, added new sidebar as extension of the canvas. And with inline commenting, we order the comments and the sidebar and UX enhanced comments. So this is all really adding the commenting and getting us on the path to that awesome work as well.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah, it&#8217;s a collaborative effort. And inline commenting is asynchronous, not synchronized collaborative. You can only see it when you enable the experiments for it, but it&#8217;s really cool where you can add the comments per block and then you can reply to it. And there are some quirks with it in terms of the list of posts where you see the number of comments, but it never matches what the comments are. So there&#8217;s some kind of a bug in there. But as long as the feature isn&#8217;t settled yet, I don&#8217;t think there&#8217;s a sense in fixing that one because that&#8217;s the last thing to fix.</p>\n\n\n\n<p><em>Tammie Lister:</em> If you use Google Doc comments, you can use this. I think that&#8217;s the best way to describe it to someone. It&#8217;s very like how you would expect commenting to work.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. Yeah, try it out then if it doesn&#8217;t, post some feedback on GitHub.</p>\n\n\n\n<p><em>Tammie Lister:</em> Yeah, try it out. And if you find a bug, report it. You see it, report it.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. So that&#8217;s about the enhancements of 19.9. It&#8217;s a pretty solid release and has a lot of bug fixes as well.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\">But Fixes</h3>\n\n\n\n<p>There is one thing from the bug fixes that I wanted to point out. I think that was for the sync patterns. The content-only block was editing mode was removed because it&#8217;s not really, if you want to sync pattern, do you want to edit the content? So the editing mode was reversed to do that just in case you ran across it and you couldn&#8217;t edit your patterns.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\">Documentation</h3>\n\n\n\n<p>And then documentation improvements or a lot of Storybook updates were there, as well as the documentation of the fields package, which is a part of the data views package for the developers that if you use the data views outside of the site editor for your own plugins, you definitely want to look at the fields package.</p>\n\n\n\n<p><em>Tammie Lister:</em> And there is a deprecation on icons, which is important to think about if you are looking at using the design system. So warning has been renamed caution field. And the only reason I raised that is if you&#8217;re already using it in your design system, being aware that icons have changed, but again, in the Storybook you&#8217;d be able to find that information.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Awesome. Thank you. Thank you. I think was, I think that&#8217;s all I wanted.</p>\n\n\n\n<p><em>Tammie Lister:</em> Did we do one of the releases? I&#8217;m very excited with all.</p>\n\n\n\n<p>Birgit Pauli-Haack: Well, we are done with 19.9.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\">Gutenberg 20.0</h3>\n\n\n\n<p>Now, we come to Gutenberg 20.0, and 20.0 means that&#8217;s the 200th release of Gutenberg. Who would&#8217;ve thunk in June 2017 that we will have…</p>\n\n\n\n<p><em>Tammie Lister:</em> I know.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> &#8230; the 200th release? Who was ever thinking that far? Yeah, there are 274 merge PRs by 71 contributors, 13 of them were first time contributors. I think that&#8217;s one of the largest numbers of first time contributors for a Gutenberg plugin. And the project came with 83 enhancements and 82 fixed bugs. We are not going to read through all 83 of them. Sorry, people.</p>\n\n\n\n<p><em>Tammie Lister:</em> My brain&#8217;s still stuck on the 200th as some&#8230; Because at the first, I&#8217;m like-</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> You were part of the original team?</p>\n\n\n\n<p><em>Tammie Lister:</em> Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> For many, many years. Three or four years, I think.</p>\n\n\n\n<p><em>Tammie Lister:</em> Which I think is the first few are always unexciting because you&#8217;re just like pushing pancakes. But I think if you, from the first 10.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Where did that expression come from? Sorry, sorry, sorry. I need to go back to what are you doing? Pushing pancakes?</p>\n\n\n\n<p><em>Tammie Lister:</em> So your first pancake is always not such a good one. It&#8217;s like the first pancake you put out, right? That&#8217;s the first few releases or something that you put out. They&#8217;re just like, &#8220;Eh, it&#8217;s just good.&#8221; But you&#8217;re not counting those because you&#8217;re just like releasing. You&#8217;re just getting it out. But by 200, and the thing that I&#8217;d like to reflect is the cadence. And I think that that&#8217;s the important thing.</p>\n\n\n\n<p>So with WordPress, we&#8217;re very used to having regular releases throughout the year, but they generally have a gap now. You&#8217;re having three or so throughout a year. That&#8217;s our cadence. But with Gutenberg, because of its plugin format, you&#8217;re having that real frequency of release. So we&#8217;ve got into that habit of a proper sprint release is what people have got into. And the sheer amount of things that go into it, it&#8217;s overwhelming. Every time I come and do this, I&#8217;m like&#8230;</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah, it&#8217;s a lot. &#8220;Who reviewed all that?&#8221; HPR has some review and a lot of people have-</p>\n\n\n\n<p><em>Tammie Lister:</em> And testing. HPR has someone that creates it, the original issue, someone that works on it, someone that then tests it, someone that then documents it, someone then pushes it. Well, it has at least two people that will review it. And then there&#8217;s so much work. So at least probably five to seven people have touched it per PR potentially.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. And it&#8217;s so important to have a few different views in there to really fix all the bugs before it gets released. But you&#8217;re never successful in that. But I also like, I sometimes go back to some of the issues as well as the PRs. And sometimes they&#8217;re a year old or they started with a brilliant idea but the software wasn&#8217;t there yet. But then people keep looking at it and say, &#8220;Is it there yet? Is it there yet? Oh, could we do this?&#8221;</p>\n\n\n\n<p><em>Tammie Lister:</em> Back then, we couldn&#8217;t have achieved most of what we do now, which is why everything should be re-looked at. I often say if anything really is left at the interface when I first worked on it, we maybe have a problem because it should be iterated and changed on. Because even down to animations and interactions, we know more how people work on. People have changed and adapted. There&#8217;s a whole pandemic happened. People interact devices have changed. The Playground, look at what can be done with devices.</p>\n\n\n\n<p>And I guess that leads us on to even looking at these lists. You look at the blocks, the thing that we have listed here is the block library, I guess. You have the details block. That strikes me in this release, the details block was something that when they originally came out, it was the paragraph block, right? The first block, and then it&#8217;s added up. So now we have a details block, we have a page list, social lines block, things block, and all these different blocks that are also maintained on top of everything as well.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah, we also have old widget blocks. The latest post thing is really outdated. It should be deprecated because you have the query block now for that. It&#8217;s evolving.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Enhancements<strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</strong></h3>\n\n\n\n<p>So what&#8217;s in 20.0? So there is an enhancement on the create block scaffolding tool or two of them. So now you can use external templates and customize more fields. And then the other part is that you have a default template that helps you with the multiple block plugin case. Up until now, it was only you could create a plugin with a block and then you had to get the additional blocks in with a certain flag. And now it&#8217;s a little bit easier, I think, to do that.</p>\n\n\n\n<p>I like this tool. A create block is such a neat way to start out with a block and then just focus on the editor and the front end. And you don&#8217;t have to all come in.</p>\n\n\n\n<p><em>Tammie Lister:</em> Yeah, I love it. And to me it means that it stands with other, going back to when we were talking about Cursor, it uses it. It picks it up. And I think by if I looked at any other language that I&#8217;ve started playing around with, they all have their own versions to do scaffolding. So it makes it over par with that and just easier.Can you do it by hand? Yes, of course you can do your own thing, but it also helps from a learning perspective. And then you can just do it right from the start. Same as I love the create block theme plugin, all these tools. Can I hand code a theme? Yes. Can I hand code a block? Yes. Can I do other things while those tools are doing it for me? Yes. So it&#8217;s about the tools doing it. And also with what you are saying, it&#8217;s going to mean that I&#8217;m doing it. I&#8217;m having that foundation to then build up on top of.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah, and you do it the same time over and over. So maintainability is also pretty big with using that. There&#8217;s also a wp-env environment, the development environment that comes with Gutenberg, and now has multi-site support. It&#8217;s definitely increasing the footprint of the developers who you&#8217;re going to use it. So the block library has some consistent work done where the blocks sidebar has changed the component and brave contributors go block by block and make it consistent going through that. So it is a different panel and it uses a tools panel item and the tools panel instead of the settings panel. It&#8217;s definitely they changed the components out of it and used the tools panel drop down for that.</p>\n\n\n\n<p><em>Tammie Lister:</em> So in this release, we&#8217;ve also got some focus on Stylebook. So we&#8217;ve got to give Stylebook its own route, so it can be linked to directly and add the appearance design menu through admin action. So again, this is iterating on Stylebook and improving it more, which is really, really exciting. I&#8217;m curious to test out the linking to it directly as well to see if what that happens with permissions. So we&#8217;ve achieved what I wanted it to do.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Good idea, but I think you need to have some edge.</p>\n\n\n\n<p><em>Tammie Lister:</em> I do. I don&#8217;t think it&#8217;s quite the front-facing thing that I&#8217;m wanting.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> No, it&#8217;s not.</p>\n\n\n\n<p><em>Tammie Lister:</em> But it&#8217;s getting there.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> In there, yeah. Its own route is really powerful when you…</p>\n\n\n\n<p><em>Tammie Lister:</em> Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah, you want to link to it. And then the block hooks got two additional enhancements. One is to apply the block hooks to post content on the front end and the editor so people can see it, and the other one is in sync pattern to actually also apply the block hooks. So before then, the block hooks wouldn&#8217;t work in patterns. Now, they do. Block hooks is a method to add a block at the end or at the beginning of another block for display. And now with this release, you can also see it in the editor and edit there. So the user has a little bit more control over there, the blocks that are automatically added.</p>\n\n\n\n<p><em>Tammie Lister:</em> Speaking of tools, there&#8217;s adder in the plugin, there&#8217;s adder Playground blueprint JSON to the assets blueprints folder of plugin repo. So anytime I see anything about Playground, I get super excited. For those that haven&#8217;t explored it, the way that I describe it is a collection of awesome recipes to be able to either pre-run or from testing to your plugin or to be able to just run. So you can even run a testing PR with them. There&#8217;s just so much that you can do with them in the browser. You can either have single installs or you can have a bit more perpetual sites as well with Playground. And it&#8217;s just really, really powerful in getting more powerful.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. And if you want to learn more about blueprints, the Playground, new interface for the last month actually, has the blueprint gallery coming into the Playground interface. So you can actually read through them and test them out right away. And they are really cool as examples to, okay, if it can do that, then maybe it can also do that and you have a blueprint on how to do that. So I love that. And well, I built some of the blueprints, so I&#8217;m really excited about getting those done.</p>\n\n\n\n<p>And my next thing is to enable all the experiments or more than one experiment in the good mug repo and have a Playground for that. And the next one, and that&#8217;s just merged into the blueprint gallery. But I also am thinking about the distraction-free writing experience that if you have a Playground to just do writing, so you need to have the distraction-free enabled and some other things that need to be enabled, but so you can really have a writer try it out without having all the distraction things.</p>\n\n\n\n<p><em>Tammie Lister:</em> I love that idea that you could use Playground to test modes like what you are suggesting. And that&#8217;s also really important to say with Playground you can also and gone into a sidetrack off Playground, but with Playground you can also install plugins. And that&#8217;s something that often is not thought of. So the recipe can also be add Woo, add this, add that. So it can be the whole configuration setup. As you are saying, it&#8217;s not just open the editor at a certain point. It&#8217;s not like if this, then that workflow, it&#8217;s also installing things and configuring them as well.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. And you could even import some demo content because most plugins only shine when you actually have content to look at.</p>\n\n\n\n<p><em>Tammie Lister:</em> Yeah, it&#8217;s true.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: And the &#8220;hello world&#8221; not always does it.</p>\n\n\n\n<p><em>Tammie Lister:</em> Could I have it with Stylebook lockdown? Or I&#8217;m just like, &#8220;Is this how I get my Stylebook?&#8221;</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. And now with the root, you could actually make the Stylebook your landing page.</p>\n\n\n\n<p><em>Tammie Lister:</em> And that&#8217;s how I get my design system. So okay, now we solved my problem. How do we solve the next problem on the Changelog? So we solved both our problems today.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yes.</p>\n\n\n\n<p><em>Tammie Lister:</em> So moving on from that, we have write mode, allow template part editing in write mode. Anything that is improving write mode is also exciting for me because it&#8217;s one of those little paper cutters, it&#8217;s probably like a small version of it, but it&#8217;s an easing of the experience to me and that is also really useful. So I had love to see these iterations over time as well.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah, me too. Yeah. And for the longest time I wasn&#8217;t really getting what the difference is between design mode and write mode. But now with the template part, I am actually getting it. It&#8217;s really cool.</p>\n\n\n\n<p><em>Tammie Lister:</em> I describe the difference between using Google Docs and Dreamweaver. That&#8217;s the best way I can describe for me.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Very good analogies. For a long time document about…</p>\n\n\n\n<p><em>Tammie Lister:</em> When you add things in.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. Well, this is a fun show and we are, I think, that&#8217;s true with 20.0.</p>\n\n\n\n<p><em>Tammie Lister:</em> Two down.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Two down, one to go. And it only had 94 PR so it&#8217;s not that much in there.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\">Gutenberg 20.1</h3>\n\n\n\n<p>But the Gutenberg 20.1, it has not been released yet at the time of this recording. And so it will be released on January 22nd will be the release of 20.1. There&#8217;s a lot of 20s in my life at the moment.</p>\n\n\n\n<p><em>Tammie Lister:</em> There are.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> So it&#8217;s 20.1. All right, yeah. So what does it bring?</p>\n\n\n\n<h3 class=\"wp-block-heading\">Enhancements</h3>\n\n\n\n<p><em>Tammie Lister:</em> This has a lot of things again in the block library. This is the details block. So really requirements with the allowed block attributes there, and that reminds me of a lot of these blocks are created and then I need to be gone over again. And that&#8217;s something you were saying about going over the components and then bring them in. But a lot of these, a new feature like allowed block attributes or different things happen and then you need to go back over the old blocks and reiterate them because they maybe came out after or before and different things. So yeah, some of that&#8217;s going. Page lists, add color support, anything that sees adding support to a block gets me very excited from the senior perspective. And social links button, add clear button for color option, that seems like a small thing, but I know how important that is. Clears color is really, really important.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Every time I say, &#8220;Where did this go wrong? Let&#8217;s clear the colors first.&#8221;</p>\n\n\n\n<p><em>Tammie Lister</em>: Yes. And then with, I kind of made move on to design tools because that&#8217;s the next one after that. But with post comment link, showing border controls by default, and query total show border controls by default, again that&#8217;s deciding on the best defaults is also something you only know when you first release something you are not too sure, particularly with the design tools and to give a frame of design tools. That&#8217;s anything from borders to backgrounds to anything that is styling things. And it&#8217;s generally the things that are in theme JSON with the tooling visualized. So that&#8217;s when we&#8217;re talking about design tools. It&#8217;s the visual knobs and things that you can push to do that fall and interact with theme JSON. That&#8217;s a weird way of framing it, but that&#8217;s the best way I can put it.</p>\n\n\n\n<p>And a lot of these defaults are guessed first time when something comes out. So the post comment link, a guess will have been come up that needed to be on, that needed to be off. So by having these things adjusted, it means that this feedback was given that that should be on by default or this should be off by default.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> But there are so many people. That&#8217;s just a 50/50 decision, but people are not 50/50. So sometimes they want it and sometimes they don&#8217;t want it. But yeah, I had a constant…</p>\n\n\n\n<p><em>Tammie Lister:</em> I had a toolbar where the option had to be added because that&#8217;s constantly my example of there is no good answer.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> No, but there is a shortcut, a keyboard shortcut.</p>\n\n\n\n<p><em>Tammie Lister:</em> There is an answer, put that option in.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> And also remember it. That was also a part of it. That block editor remember me or my choices. Yeah, the clearable option, the color because is also available for the navigation block and it now surfaces the menu name in the list view. That&#8217;s for the navigation block. That was something that people just wouldn&#8217;t recognize the various menus in the list view. And the list view is your friend. So yeah, whatever we do for the list view is actually really a quality of life enhancements there. So the next one is, I&#8217;m not quite sure what this refers to, but maybe you know, the new default.</p>\n\n\n\n<p><em>Tammie Lister:</em> I&#8217;m not sure about this one either, I&#8217;ll be honest. So it&#8217;s the new default rendering mode for editor via post type supports. Looking at it a little bit, what it seems to be doing is similar to what I was saying, which is it basically says it updates how the new default rendering mode can be set for a post type. So to me, it responds to feedback given. So it says it doesn&#8217;t require best endpoint or any API-related changes.</p>\n\n\n\n<p>So reading between the lines, it says that it would be feedback had been given on that and it says existing add post type support can be used to change or reset the default rendering mode. And then it gives some code examples to that. So again, it&#8217;s giving options that you can decide on defaults, which is what you were saying about. Really you don&#8217;t always know, but initially you have to make a best bet and then you can bring those refinements in.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> And then there&#8217;s an enhancement for the data views that it adds a media field to the UI for content preview of the posts and pages in the grid view.</p>\n\n\n\n<p><em>Tammie Lister: </em>I get excited about anything coming into data views.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Data views, and it&#8217;s for the media field is really important for featured images and all that.</p>\n\n\n\n<p><em>Tammie Lister:</em> Yeah. I know it&#8217;s an experiment, but being able to just play around and any new feature that comes into data view is just exciting to be able to play with.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah, yeah. I find them so much modern and I really would love to have make a kind of a snip decision or snip feature that kind of switches out the WP admin with the data views. But of course it cannot be that fast because it&#8217;s been-</p>\n\n\n\n<p><em>Tammie Lister:</em> I think you have to go a little bit gently with humans.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah. A friend of mine said, &#8220;That&#8217;s for you, humans.&#8221;</p>\n\n\n\n<p><em>Tammie Lister:</em> Yeah, but I think that that&#8217;s why we have experiments. We&#8217;re going to make sure that the cake is having some testing. I know at core days in run, that was something that the ad was definitely sharing that by it being in there, it can be tested. It can be all the best version can be done. And then really those people call them edge cases, I call them stress cases because they cause stress. They can be felt afterwards and implemented. Otherwise, it would just take way too long to do so. At the moment, it&#8217;s the best case. That&#8217;s what data views are. And that doesn&#8217;t mean it&#8217;s all the cases.</p>\n\n\n\n<p>So that&#8217;s part of the work with data views is really to go back over it and make sure it does all the work. And if you think of WP admin, anything to come out of the isolated view really has to just do all the work. And that&#8217;s something I&#8217;m very aware when I&#8217;m looking at what design things can I bring through. It&#8217;s like sprinkles at the moment is the best way I can put it because it has to be stuff that&#8217;s really, really packaged and baked already.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. And looking at how the WP admin had been extended by plugins for 20 years, yeah.</p>\n\n\n\n<p><em>Tammie Lister:</em> How has it not been extended by a plugin at this point.</p>\n\n\n\n<p>Because it&#8217;s been so long. It&#8217;s so long and tried and tested and it&#8217;s known. So that&#8217;s something when you bring something new. It will be there and we&#8217;d be talking in a couple of years as if it had always looked that way. And it will be the WP admin. It will just be a case of it has to be done in a certain way because and then everybody will be able to use it and understand it and implement it in that way.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah. But that&#8217;s actually a very good way to end this podcast. I think we are through with 20.1.</p>\n\n\n\n<p><em>Tammie Lister</em>: Three for three.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>We did three in one.</p>\n\n\n\n<p><em>Tammie Lister:</em> Yay.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> That&#8217;s really good. And so thank you so much, Tammie, for being here.</p>\n\n\n\n<p><em>Tammie Lister:</em> Thank you for having me.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> I am so glad we are back in 2025 with the Gutenberg Changelog podcast. And as always, the show notes will be published on <a href=\"http://gutenbergtimes.com/podcast\">gutenbergtimes.com/podcast</a>, and this is episode 113, 113th. And if you have questions and suggestions or news you want to include, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a>. And you can also leave&#8230; If you listen to that on Spotify, Spotify also gives you a feature to comment on it. That&#8217;s a great place to leave questions so we can answer them in the next episode. And thank you, everyone, for being a listener here and welcome back to 2025. And thank you, Tammie, for taking the time out of your life to be on the show and share all the good things with us.</p>\n\n\n\n<p><em>Tammie Lister: </em>Thank you so much.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> All right, you take care. Bye.</p>\n\n\n\n<p><em>Tammie Lister:</em> Take care too. Bye.</p>\n\n\n\n<p></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 19 Jan 2025 10:09:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:111:\"Gutenberg Times: 200th Gutenberg release, 10 Top Layouts, block starter theme and more — Weekend Edition #316\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=31611\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:115:\"https://gutenbergtimes.com/200th-gutenberg-release-10-top-layouts-block-starter-theme-and-more-weekend-edition-316/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:21941:\"<p>Howdy, </p>\n\n\n\n<p>I know it&#8217;s still a month or two, but I am officially done with Winter and the cold. I am already looking forward to Spring and nature painting the world with color again. </p>\n\n\n\n<p>Next month, I will warm myself up again by spending some time in Manila, Philippines at temperatures between 24° and 31<strong>° </strong>Celsius. If you are making plans for WordCamp Asia and might have time to meet, please let me know or use my public calendar <a href=\"https://bit.ly/bph-wcasia\"><strong>bit.ly/bph-wcasia</strong></a>.</p>\n\n\n\n<p>If not WordCamp Asia, might I run into you at CloudFest at the Europa Park in Rust? </p>\n\n\n\n<p>What are your plans for 2025 regarding WordCamp and conferences? </p>\n\n\n\n<p>Have a fabulous weekend! </p>\n\n\n\n<p>Yours, 💕<br /><em>Birgit</em></p>\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background\"><div class=\"wp-block-group__inner-container is-layout-flow wp-block-group-is-layout-flow\">\n<p><strong>Table of Contents</strong></p>\n\n\n\n<ol><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/200th-gutenberg-release-10-top-layouts-block-starter-theme-and-more-weekend-edition-316/#0-word-press-release-information\">Developing Gutenberg and WordPress</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/200th-gutenberg-release-10-top-layouts-block-starter-theme-and-more-weekend-edition-316/#0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/200th-gutenberg-release-10-top-layouts-block-starter-theme-and-more-weekend-edition-316/#2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/200th-gutenberg-release-10-top-layouts-block-starter-theme-and-more-weekend-edition-316/#3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </a></li></ol>\n</div></div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-word-press-release-information\">Developing Gutenberg and WordPress</h2>\n\n\n\n<p><strong>Fabian Kägy</strong> published <a href=\"https://make.wordpress.org/core/2025/01/11/whats-new-in-gutenberg-20-0-10-january/\"><strong>What’s new in Gutenberg 20.0? (10 January)</strong></a>, celebrated the 200th plugin release and highlighted the following updates:</p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><a href=\"https://make.wordpress.org/core/2025/01/11/whats-new-in-gutenberg-20-0-10-january/#enhancements-for-the-style-book\">Enhancements for the Style Book</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2025/01/11/whats-new-in-gutenberg-20-0-10-january/#starter-patterns-get-a-new-ui\">Starter Patterns get a new UI</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2025/01/11/whats-new-in-gutenberg-20-0-10-january/#easily-set-a-page-to-become-the-posts-page\">Easily set a Page to become the Posts Page</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2025/01/11/whats-new-in-gutenberg-20-0-10-january/#display-block-type-badge-for-renamed-blocks\">Display Block Type Badge for renamed blocks</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2025/01/11/whats-new-in-gutenberg-20-0-10-january/#more-highlights\">More Highlights</a></li>\n</ol>\n\n\n\n<a href=\"https://make.wordpress.org/core/2025/01/11/whats-new-in-gutenberg-20-0-10-january/\"><img width=\"647\" height=\"466\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/01/Screenshot-2025-01-13-at-18.06.23.png?resize=647%2C466&ssl=1\" alt=\"Set as post page (screenshot)\" class=\"wp-image-31613\" /></a>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><a href=\"https://x.com/nithin_sreeraj\"><strong>Nithin Sreeraj</strong></a> took a closer look at the features in his post <a href=\"https://wp-content.co/gutenberg-20/\"><strong>Gutenberg Plugin Reaches 200th Release Milestone with Version 20.0</strong></a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>George Mamadashvili</strong> made the <a href=\"https://github.com/WordPress/gutenberg/releases/tag/v20.1.0-rc.1\"><strong>RC1 of Gutenberg 20.1</strong></a> available on GitHub for testing. The final release will be on January 22, 2025. </p>\n\n\n\n<p><strong>Tammie Lister</strong> and I chatted about the last three Gutenberg plugin releases and recorded <strong><a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-113-wordpress-6-8-gutenberg-19-9-20-0-and-20-1-plugin-releases/\">Gutenberg Changelog 113th episode</a>.</strong> We also talked about WordPress 6.8, exploration with AI, storybook and Gutenberg 19.9, 20.0 and 20.1. It was a fun first episode for 2025. It will land on your favorite podcast app on Sunday or shortly after.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background\"><div class=\"wp-block-group__inner-container is-layout-constrained wp-block-group-is-layout-constrained\">\n<p>🎙️ Latest episode: <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-113-wordpress-6-8-gutenberg-19-9-20-0-and-20-1-plugin-releases/\">Gutenberg Changelog 113 – WordPress 6.8, Gutenberg 19.9, 20.0 and 20.1 Plugin Releases</a> with special guest Tammie Lister 💕</p>\n\n\n\n<img width=\"652\" height=\"183\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/01/Screenshot-2025-01-17-at-18.13.07.png?resize=652%2C183&ssl=1\" alt=\"Tammie Lister and Birgit Pauli-Haack recording Gutenberg Changelog episode 113\" class=\"wp-image-37366\" />\n</div></div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</h2>\n\n\n\n<p>In his video <a href=\"https://www.youtube.com/watch?v=Ja388yOaNCE\"><strong>My Top 10 Website Layout Designs</strong></a>, <strong>Jamie Marsland</strong> collected his favorite layouts and demonstrated briefly how his assembled them in subsequent videos. It&#8217;s a great collection as if you are a site builder, you should be able to rebuild them and have them in your arsenal.</p>\n\n\n<div width=\"100%\" class=\"wp-block-newsletterglue-showhide ng-block\">\n<div class=\"wp-block-embed__wrapper\">\n<div class=\"toolbelt-video-wrapper\"></div>\n</div>\n</div>\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>1,086 Block Themes</strong> are now available for browsing in the WordPress Theme directory. The latest approved submissions are:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://wordpress.org/themes/trovium/\">Trivium</a> by Effe Themes</li>\n\n\n\n<li><a href=\"https://wordpress.org/themes/fse-medical-clinic/\">FSE Medical Clinic</a> by Creta Themes</li>\n\n\n\n<li><a href=\"https://wordpress.org/themes/general-food-store/\">General Food Store</a> by WP Radiant</li>\n\n\n\n<li><a href=\"https://wordpress.org/themes/mechanic-car-repair/\">Mechanic Car Repair</a> by <a href=\"https://wordpress.org/themes/author/titanthemes/\">Titan Themes</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/themes/wens-vivid/\">WENS Vivid</a> by WEN Solutions, offering some great front page patterns for restaurants.</li>\n\n\n\n<li><a href=\"https://wordpress.org/themes/whiteblack/\">WhiteBlack</a> by <a href=\"https://wordpress.org/themes/author/masino1967/\">Tommaso G. Scibilia</a>. The artist from Sicily, Italy, published his 11th Block Theme since August 2024, that&#8217;s about two themes per month. 🎉</li>\n</ul>\n\n\n\n<a href=\"https://wordpress.org/themes/https://wordpress.org/themes/tags/full-site-editing/\"><img width=\"652\" height=\"385\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/01/Screenshot-2025-01-16-at-14.10.58.png?resize=652%2C385&ssl=1\" alt=\"\" class=\"wp-image-37344\" /></a>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong><a href=\"https://x.com/janhoekdotcom\">Jan Hoek</a></strong> published the <a href=\"https://wordpress.org/plugins/vital-video-block/\"><strong>Vital Video Block plugin</strong></a>, a tool to help you with your YouTube video display and avoid slow-downs from background loading. </p>\n\n\n\n<a href=\"https://wordpress.org/plugins/vital-video-block/\"><img width=\"652\" height=\"383\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/01/VitalVideoBlock.jpg?resize=652%2C383&ssl=1\" alt=\"screenshot of Vital Video Block plugin. \" class=\"wp-image-37341\" /></a>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Dominik Schilling</strong> updated one of my favorite plugins: <a href=\"https://wordpress.org/plugins/public-post-preview/\"><strong>Public Post Preview</strong></a> with four features: </p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Under Settings &gt; Reading Public Post Preview you can now set a different default expiration time. </li>\n\n\n\n<li>It also shows a link icon in the list of posts so you don&#8217;t have to go into the edit screen to obtain the temporary link.</li>\n\n\n\n<li>The list view also lists a filter to see only posts with the Public Post Preview link enabled. </li>\n\n\n\n<li>The Preview drop down of the editor also lists the public post preview. </li>\n</ul>\n\n\n\n<a href=\"https://wordpress.org/plugins/public-post-preview/\"><img width=\"652\" height=\"457\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/01/Screenshot-2025-01-16-at-16.40.37.png?resize=652%2C457&ssl=1\" alt=\"collage of all UI changes \" class=\"wp-image-37357\" /></a>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Colin Newcomer</strong> talks you along on <a href=\"https://www.gravityforms.com/blog/how-to-get-started-with-wordpress-patterns/\"><strong>getting started with WordPress Patterns</strong></a>. You learn what are Patterns, the synced and the unsynced kinds, and how to management them on your site. The detailed screenshots and instructions make this a great tutorial.  </p>\n\n\n\n<p>The only missing part is the Synced Pattern overrides that arrived with WordPress 6.6 last summer. This feature allows users to make content-specific changes to synced patterns without altering the underlying layout or design. <strong>Nick Diego</strong> posted  <strong><a href=\"https://developer.wordpress.org/news/2024/06/an-introduction-to-overrides-in-synced-patterns/\">an  introduction to overrides in Synced Patterns</a> </strong>on the WordPress Developer Blog. </p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</h2>\n\n\n\n<p><strong>Simon Cooke</strong>, business development director at <em>HumanMade</em>, discussed in his post <a href=\"https://humanmade.com/wordpress-for-enterprise/how-wordpress-full-site-editing-supports-global-scalability/\"><strong>How WordPress’ full site editing supports global scalability</strong></a>. In his view, WordPress Full Site Editing (FSE) helps large companies manage websites across different regions more easily. It allows businesses to create consistent design templates while giving local teams flexibility to adapt content. FSE makes it simpler to maintain a unified brand look, support multiple languages, and create websites that work smoothly in different markets. By providing centralized design tools and easy-to-use content blocks, companies can build more efficient and adaptable digital experiences globally.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><a href=\"https://developer.woocommerce.com/2025/01/13/office-hours-jan-25/\" target=\"_blank\" rel=\"noreferrer noopener\"></a><strong>Brent MacKinnon</strong>, invites you to WooCommerce&#8217;s January Developer Office Hours:<a href=\"https://developer.woocommerce.com/2025/01/13/office-hours-jan-25/\" target=\"_blank\" rel=\"noreferrer noopener\"> <strong>The Future of WooCommerce Themes</strong></a> on <strong>January 22 at 22:00 UTC</strong>. <strong>Ellen Bauer,</strong> WooCommerce&#8217;s Product Lead for themes, blocks &amp; patterns, will share insights on theme development and block patterns. She will share the new starter block theme replacing Storefront, discus of block-based theming best practices and customization and answer your questions. The Developer hours will be held on the <a href=\"https://join.slack.com/t/woocommercecommunity/shared_invite/zt-2y1e6c6b4-X3_oILSeCmr4Dmhkhrx9tw\">WooCommerce Slack space</a> in the #developers channel.</p>\n\n\n\n<p>More updated from <strong><a href=\"https://developer.woocommerce.com/\">WooCommerce Developer Blog</a></strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://developer.woocommerce.com/2025/01/16/order-datastore-caching-a-new-approach-to-optimize-woocommerce-performance/\">Order DataStore Caching — A new approach to optimize WooCommerce performance</a></li>\n\n\n\n<li><a href=\"https://developer.woocommerce.com/2025/01/16/new-woocommerce-blocks-cart-item-image-filter/\">New WooCommerce blocks cart item image filter</a></li>\n\n\n\n<li><a href=\"https://developer.woocommerce.com/2025/01/16/developer-advisory-block-checkout-field-entities/\">Developer advisory: Block Checkout field entities</a></li>\n\n\n\n<li><a href=\"https://developer.woocommerce.com/2025/01/13/feedback-request-adding-order-fulfillments-to-woocommerce/\">Feedback request: Adding order fulfillments to WooCommerce</a></li>\n</ul>\n\n\n\n<a href=\"https://woocommerce.com/\"><img width=\"652\" height=\"443\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/01/Screenshot-2025-01-16-at-14.31.51.png?resize=652%2C443&ssl=1\" alt=\"\" class=\"wp-image-37347\" /></a>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Fränk Klein</strong> took a <a href=\"https://wpdevelopment.courses/articles/wp-development-mode/\"><strong>deep dive in how WP_DEVELOPMENT_MODE</strong></a> helps with developing Block themes, as it bypasses the theme.json cache. Learn how to enable it and how to use it. He also offers an array of code snippets for conditional handling in your wp_config.php file, and shares some pitfalls.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><a href=\"https://x.com/itsamoreh\"><strong>Amor Kumar</strong></a>, principal engineer at WebDev Studios, created the <a href=\"https://github.com/itsamoreh/block-theme-starter\"><strong>Block Starter Theme</strong></a>, so you can &#8220;craft your next WordPress block them with a simple foundation&#8221;. This project is targeted toward agencies or developers building tightly controlled themes for clients. To facilitate full control of the editing experience, the following WordPress core features have been disabled: Openverse integration, Core block patterns, Core block styles, and search in the Block directory. The readme file lists how to use it and suggests a particular workflow for building a block theme. It&#8217;s definitely a great way to get started.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In his post <a href=\"https://kinsta.com/blog/customize-command-palette/\"><strong>How your plugin can customize the WordPress Command Palette</strong></a>, <strong>Steve Bonisteel</strong>, technical editor at Kinsta, explains what the Command Palette is, and how its API can be used by plugin authors to provide a streamlined interaction with the block editor. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In his video <a href=\"https://www.briancoords.com/wp-queries-in-php-and-javascript-building-a-custom-avatar-block/\"><strong>WP Queries in PHP and JavaScript </strong></a>– <strong>Brain Coords </strong>provided a tutorial on how to build a custom Avatar block. &#8220;I share how I built a custom solution for displaying guest speaker images on my podcast website using WordPress. I combined plugins like Seriously Simple Podcasting and the outdated WP Term Images, then created a custom Gutenberg block to dynamically display speaker headshots.&#8221; he wrote.</p>\n\n\n\n<p><strong>&nbsp;<a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" target=\"_blank\" rel=\"noreferrer noopener\">&#8220;Keeping up with Gutenberg &#8211; Index 2024&#8221;</a>&nbsp;</strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test, and Meta team from Jan. 2024 on. Updated by yours truly. The previous years are also available: <strong><strong><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/\">2020</a>&nbsp;|&nbsp;<a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2021/\">2021</a></strong>&nbsp;|&nbsp;<strong><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2022/\">2022</a></strong></strong>&nbsp;|&nbsp;<strong><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/gutenberg-index-2023\">2023</a></strong></p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </h2>\n\n\n\n<p><strong><a href=\"https://x.com/juanmaguitar\">JuanMa Garrido</a></strong> expanded the access to the <a href=\"https://wordpress.github.io/block-development-examples/\"><strong>Block Development Examples</strong></a> on the GitHub Repo. He built a TypeScript app using ReactJS and host it on the WordPress GitHub pages. Each example has its own card, that also shows the contributing author.  The list can be filtered by tags. The details view links back to the readme.md file for each individual examples with explanations, code snippets and related resources. </p>\n\n\n\n<img width=\"652\" height=\"404\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/01/Screenshot-2025-01-16-at-13.54.30.png?resize=652%2C404&ssl=1\" alt=\"Screenshot of the front page of the Block Development Examples. \" class=\"wp-image-37342\" />\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In his 404th episode of the WPbuilds podcast, <a href=\"https://wpbuilds.com/2025/01/09/404-alan-fuller-is-not-found-actually-he-is-and-hes-been-learning-to-develop-blocks/\"><strong>Nathan Wrigley interviewed Alan Fuller, of <em>Fullworks Plugins</em></strong></a>. They discussed Fuller&#8217;s journey from corporate life to WordPress plugin development. The conversation covers WordPress&#8217;s evolution from shortcodes to blocks, focusing on Alan&#8217;s &#8220;Display Eventbrite Events&#8221; plugin and its challenges, such as documentation gaps and API limitations. Alan also shares insights on developing for tools like Elementor, tackling support issues, and marketing struggles due to social anxiety. He highlights the role of AI in replacing part-time developers and reflects on pricing missteps. The episode explores WordPress development trends and Alan’s experiences with modern collaboration tools like Slack and GitHub.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong><a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Need a plugin .zip from Gutenberg&#8217;s master branch?</a></strong><br />Gutenberg Times provides daily build for testing and review. </p>\n\n\n\n<p>Now also available via <a href=\"https://playground.wordpress.net/?blueprint-url=https://gutenbergtimes.com/wp-content/uploads/2020/11/playnightly.json\">WordPress Playground</a>. There is no need for a test site locally or on a server. Have you been using it? <a href=\"mailto:pauli@gutenbergtimes.com\">Email me </a>with your experience</p>\n\n\n\n<p><img alt=\"GitHub all releases\" src=\"https://img.shields.io/github/downloads/bph/gutenberg/total?style=for-the-badge\" /></p>\n\n\n\n<p class=\"has-text-align-center has-small-font-size\"><em>Questions? Suggestions? Ideas? </em><br /><em>Don&#8217;t hesitate to send <a href=\"mailto:pauli@gutenbergtimes.com\">them via email</a> or</em><br /><em> send me a message on WordPress Slack or Twitter @bph</em>.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p class=\"has-text-align-center has-small-font-size\">For questions to be answered on the <a href=\"http://gutenbergtimes.com/podcast\">Gutenberg Changelog</a>, <br />send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>Featured Image:</p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n\n\n\n<p class=\"has-text-align-left\"><strong>Don&#8217;t want to miss the next Weekend Edition? </strong></p>\n\n\n<form class=\"wp-block-newsletterglue-form ngl-form ngl-portrait\" action=\"https://gutenbergtimes.com/feed/\" method=\"post\"><div class=\"ngl-form-container\"><div class=\"ngl-form-field\"><label class=\"ngl-form-label\" for=\"ngl_email\"><br />Type in your Email address to subscribe.</label><div class=\"ngl-form-input\"><input type=\"email\" class=\"ngl-form-input-text\" name=\"ngl_email\" id=\"ngl_email\" /></div></div><button type=\"submit\" class=\"ngl-form-button\">Subscribe</button><p class=\"ngl-form-text\">We hate spam, too, and won&#8217;t give your email address to anyone <br />except Mailchimp to send out our Weekend Edition</p></div><div class=\"ngl-message-overlay\"><div class=\"ngl-message-svg-wrap\"></div><div class=\"ngl-message-overlay-text\">Thanks for subscribing.</div></div><input type=\"hidden\" name=\"ngl_list_id\" id=\"ngl_list_id\" value=\"26f81bd8ae\" /><input type=\"hidden\" name=\"ngl_double_optin\" id=\"ngl_double_optin\" value=\"yes\" /></form>\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 18 Jan 2025 00:33:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"Do The Woo Community: Do the Woo Live Stream, 17/01/2025: Celebrating 7 Years\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"https://dothewoo.io/?post_type=blog&p=89086\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://dothewoo.io/blog/do-the-woo-live-celebrating-7-years/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"Celebrating 7 years of Do the Woo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 17 Jan 2025 14:12:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"Gravatar: Boost Engagement with Advanced WordPress Comment Design\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"http://blog.gravatar.com/?p=2689\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"https://blog.gravatar.com/2025/01/16/wordpress-comments-design/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:15276:\"<p>Want to transform your basic WordPress comment section into something that pulls readers into the conversation? The default comments section can feel a bit uninspiring – it’s just text boxes and basic avatars that don&#8217;t encourage much interaction.</p>\n\n\n\n<p>But with some smart design choices and modern tools, you can create comment sections that make readers want to join the discussion. A well-designed comment area shows visitors their thoughts matter, building a space where meaningful conversations happen naturally. </p>\n\n\n\n<p>This guide explores how to enhance your <a href=\"https://wordpress.org/\">WordPress</a> comments through <a href=\"https://gravatar.com/\">Gravatar integration</a>, which lets you display <a href=\"https://blog.gravatar.com/2024/02/21/securing-cyber-space-role-of-digital-identity-verification/\">verified user profiles</a> and avatars. You&#8217;ll learn how to use Gravatar&#8217;s features to boost trust and recognition among commenters. For those comfortable with code, we’ve also included tips on styling your comment section with CSS to match your site&#8217;s design perfectly.</p>\n\n\n\n<p>Ready to build a more engaging community through better comment design? Let&#8217;s get started.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Why modernize your WordPress comments? A quick overview</strong></h2>\n\n\n\n<p>Basic WordPress comment sections can make your site feel outdated compared to platforms where users interact through verified profiles. This affects more than just appearances – it impacts how visitors engage with your content.</p>\n\n\n\n<p>Sites with basic comment sections often struggle with:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Lower return visitor rates, as users don&#8217;t feel connected to the community.</li>\n\n\n\n<li>Reduced time spent on pages since there&#8217;s less incentive to read discussions.</li>\n\n\n\n<li>More spam comments due to lack of verification.</li>\n\n\n\n<li>Limited user recognition between posts and discussions.</li>\n</ul>\n\n\n\n<p>Adding modern comment features changes this dynamic. When commenters can display verified identities, discussions become more meaningful. Users take more care with their responses when their professional profiles are attached. They&#8217;re more likely to return to check responses and participate in new discussions.</p>\n\n\n\n<p>Quick improvements through tools like Gravatar bring:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Automatic user recognition across WordPress sites.</li>\n\n\n\n<li>Built-in spam reduction through email verification.</li>\n\n\n\n<li>Professional-looking user profiles that build credibility.</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Improving your WordPress comments form with Gravatar</strong></h2>\n\n\n\n<p><a href=\"https://gravatar.com/\">Gravatar</a> is a 3-in-1 solution that can help you create a truly engaging comment section. Let’s look at the different applications. But first – let’s look at what Gravatar truly is and explore <a href=\"https://blog.gravatar.com/2024/12/10/how-to-use-gravatar-in-wordpress/\">its relationship with WordPress</a>.&nbsp;</p>\n\n\n\n<p>First and foremost, Gravatar is a free profile platform by Automattic (the people behind <a href=\"https://woocommerce.com/\">WooCommerce</a> and <a href=\"http://wordpress.com\">WordPress.com</a>) that lets users create dynamic online identities that follow them around the Internet. The profiles are connected to the email address, so whenever you use that to register on a Gravatar-integrated site, the user data is automatically pulled (more on that later).&nbsp;</p>\n\n\n\n<img width=\"1421\" height=\"985\" src=\"https://blog.gravatar.com/wp-content/uploads/2025/01/ronnie-gravatar-profile-1.png\" alt=\"Ronnie Burt Gravatar profile\" class=\"wp-image-2692\" />\n\n\n\n<p>For example, WordPress.com websites are integrated with Gravatar. When you create a profile with a website built on WordPress.com, your Gravatar information is imported, saving you time and effort throughout the registration process. If you don’t have a Gravatar profile and sign up for WordPress.com, you’ll get one automatically and have it linked to the email address that was used.&nbsp;</p>\n\n\n\n<p>WordPress.org also uses Gravatar but only to pull the profile pictures.&nbsp;</p>\n\n\n\n<img width=\"660\" height=\"275\" src=\"https://blog.gravatar.com/wp-content/uploads/2025/01/default-user-information.png?w=660\" alt=\"Default user information in WordPress.org\" class=\"wp-image-2693\" />\n\n\n\n<p>If someone else writes a comment and doesn’t have a Gravatar profile, they’ll show up with this mystery profile picture or a different avatar that you can change from the settings. We recommend that you <a href=\"https://blog.gravatar.com/2024/07/11/enable-comments-in-wordpress/\">enable the Gravatar option</a> and not override the profile pictures – this ensures that Gravatar user who comments on your website will have their avatars show up in your comments section.&nbsp;</p>\n\n\n\n<p>Gravatar is not just about avatars though – people with Gravatar profiles can create in-depth dynamic identities that can capture a wide range of information, from <a href=\"https://blog.gravatar.com/2024/11/11/how-to-list-social-media-handles/\">verified social media links</a>, photos, articles, featured articles, and even payment links. As a WordPress author, a Gravatar profile becomes a crucial tool, as showcasing that you are an actual person behind your blog posts boosts the authenticity and authority of the written content and encourages people to engage because they know it’s an actual human being on the other side.&nbsp;</p>\n\n\n\n<p>Letting your commenters display similar levels of information about themselves is equally important – it encourages people interact and voice their opinions through a more legitimate looking profile. This is also something Gravatar can achieve through deeper integration.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Using the Gravatar Enhanced plugin&nbsp;</strong></h3>\n\n\n\n<p>Okay, so you have a Gravatar profile, but it still doesn’t fully show up in your blog posts and pages. This is where the <a href=\"https://wordpress.org/plugins/gravatar-enhanced/\">Gravatar Enhanced plugin</a> comes in. It’s also completely free and lets you add customizable profile blocks to any post or page.&nbsp;</p>\n\n\n\n<img width=\"660\" height=\"426\" src=\"https://blog.gravatar.com/wp-content/uploads/2025/01/gravatar-profile-block-customized.png?w=660\" alt=\"Gravatar customizable profile block\" class=\"wp-image-2694\" />\n\n\n\n<p>While you can’t add the profile block to the comments section, the Gravatar Enhanced plugin lets you send automated emails inviting commenters to create Gravatar profiles, boosting their presence on your site. You can customize your invitation message, making it clear why Gravatar boosts their credibility as a commenter.</p>\n\n\n\n<img width=\"660\" height=\"198\" src=\"https://blog.gravatar.com/wp-content/uploads/2025/01/gravatar-plugin-invitation.png?w=660\" alt=\"Gravatar invitation email for creating a profile\" class=\"wp-image-2695\" />\n\n\n\n<a href=\"https://wordpress.org/plugins/gravatar-enhanced/\"><img width=\"3243\" height=\"729\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/12/gravatar_enhanced_cta.png\" alt=\"\" class=\"wp-image-2634\" /></a>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Integrating the Gravatar REST API&nbsp;</strong></h3>\n\n\n\n<p>Finally, the Gravatar API offers the most powerful way to integrate your WordPress website with Gravatar, letting you take full advantage of the platform’s comprehensive profile service. You can fully control what level of information you want to import from Gravatar profiles when they sign up with your website. By working with a developer, you can control what information is displayed for each user in a comment thread, and also create accessible and <a href=\"https://blog.gravatar.com/2024/06/05/user-profile-page-examples/\">verified user profiles</a> for each active member on your website, built on Gravatar data. This is ideal in many scenarios, such as a <a href=\"https://blog.gravatar.com/2024/12/12/create-a-forum/\">forum</a> or online community website.</p>\n\n\n\n<img width=\"660\" height=\"366\" src=\"https://blog.gravatar.com/wp-content/uploads/2025/01/gravatar-comment-section.png?w=660\" alt=\"Example of a comment section with Gravatar profiles\" class=\"wp-image-2696\" />\n\n\n\n<p>The integration offers several immediate benefits:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Users who already have Gravatar profiles see their avatars automatically appear when commenting.</li>\n\n\n\n<li>Email verification happens automatically, reducing spam comments.</li>\n\n\n\n<li>Profile information syncs across all WordPress sites, creating consistency.</li>\n\n\n\n<li>Users can maintain separate personal and professional commenting profiles through multiple email addresses.</li>\n</ul>\n\n\n\n<a href=\"https://docs.gravatar.com/getting-started/\"><img width=\"3242\" height=\"729\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/12/gravatar_integration_cta.png\" alt=\"\" class=\"wp-image-2632\" /></a>\n\n\n\n<p>However, if you have a simpler WordPress blog and just want to optimize your comments section, you can use WordPress plugins to get simpler Gravatar functionality. Another essential tool here is <a href=\"https://wordpress.org/plugins/jetpack/\">Jetpack</a>, which comes with <a href=\"https://jetpack.com/support/gravatar-hovercards/\">Gravatar Hovercards</a>.</p>\n\n\n\n<img width=\"660\" height=\"362\" src=\"https://blog.gravatar.com/wp-content/uploads/2025/01/hovercards-example.png?w=660\" alt=\"Gravatar hovercards example\" class=\"wp-image-2698\" />\n\n\n\n<p>These cards display additional information about the commenter without requiring readers to leave the page.</p>\n\n\n\n<p>Whichever option you choose, the technical benefits are substantial:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Reduced spam through email verification.</li>\n\n\n\n<li>Better user recognition across comment threads.</li>\n\n\n\n<li>Privacy controls that let users manage their identity display.</li>\n\n\n\n<li>Automatic profile updates across all WordPress sites.</li>\n</ul>\n\n\n\n<p>This integration turns basic comment sections into trust-building tools. When readers see verified profiles and consistent identities, they&#8217;re more likely to engage in meaningful discussions. Plus, linking Gravatar profiles with WordPress comments creates a natural bridge between casual readers and active community members.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Styling WordPress comment forms with CSS</strong></h2>\n\n\n\n<p>If you want more control over how the comment sections work, you could edit their style with CSS. So, here’s a short tutorial on how you can customize a comment form through the WordPress CSS editor.&nbsp;</p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>From your WordPress dashboard, go to <em>Appearance &gt; Editor &gt; Styles</em>. Click on the pencil icon on the right to start editing styles.</li>\n</ol>\n\n\n\n<img width=\"278\" height=\"387\" src=\"https://blog.gravatar.com/wp-content/uploads/2025/01/how-to-edit-wordpress-styles.png?w=278\" alt=\"How to edit WordPress theme styles\" class=\"wp-image-2717\" />\n\n\n\n<ol start=\"2\" class=\"wp-block-list\">\n<li>Click three dots on the top right, then <em>Additional CSS,</em> or scroll to the bottom of the panel on the right to access <em>Additional CSS.</em></li>\n</ol>\n\n\n\n<img width=\"489\" height=\"393\" src=\"https://blog.gravatar.com/wp-content/uploads/2025/01/how-to-add-custom-css-in-gutenberg.png?w=489\" alt=\"Navigating to the Additional CSS options in WordPress editor\" class=\"wp-image-2718\" />\n\n\n\n<ol start=\"3\" class=\"wp-block-list\">\n<li>Start by adding code for the actual form. You can target it using the class <strong>comment</strong>&#8211;<strong>form</strong>. We’ll change the background color and fonts, as well as add a rounded colored border. Let’s also style the labels while we’re at it.</li>\n</ol>\n\n\n\n<pre class=\"wp-block-code\"><code>.comment-form {\nbackground-color: #fefae0; <em>/* Soft pastel yellow */</em>\nborder: 1px solid #bc6c25; <em>/* Rich contrasting brown */</em>\nborder-radius: 8px;\npadding: 20px;\nfont-family: \'IBM Plex Mono\', monospace; <em>/* IBM Plex Mono font */</em>\nfont-size: 16px;\ncolor: #333;\n}\n\n<em>/* Style the form labels */</em>\n.comment-form <strong>label</strong> {\nfont-family: \'IBM Plex Mono\', monospace;\nfont-size: 14px;\nfont-weight: bold;\ncolor: #555;\nmargin-bottom: 5px;\ndisplay: block;\n}</code></pre>\n\n\n\n<ol start=\"4\" class=\"wp-block-list\">\n<li>Next, we’ll do the input fields, with a background color plus a colored, rounded border.</li>\n</ol>\n\n\n\n<pre class=\"wp-block-code\"><code>.comment-form <strong>input</strong>&#091;type=\"text\"],\n.comment-form <strong>input</strong>&#091;type=\"email\"],\n.comment-form <strong>input</strong>&#091;type=\"url\"],\n.comment-form <strong>textarea</strong> {\nbackground-color: #f8f9fa; <em>/* Light grey for contrast */</em>\nborder: 1px solid #bc6c25; <em>/* Same border color */</em>\npadding: 10px;\nborder-radius: 4px;\nfont-family: \'IBM Plex Mono\', monospace;\nfont-size: 14px;\ncolor: #333;\nmargin-bottom: 15px;\n}\n\n<em>/* Style the textarea (comment box) */</em>\n.comment-form <strong>textarea</strong> {\nmin-height: 120px;\nresize: vertical;\n}</code></pre>\n\n\n\n<ol start=\"5\" class=\"wp-block-list\">\n<li>Finally, the submit button, which we’ll give a different color, font, and rounded border.</li>\n</ol>\n\n\n\n<pre class=\"wp-block-code\"><code>.comment-form input&#091;type=\"submit\"] {\nbackground-color: #bc6c25; /* Rich brown */\ncolor: #ffffff; /* White text for contrast */\nfont-family: \'IBM Plex Mono\', monospace;\nfont-size: 16px;\nfont-weight: bold;\nborder: none;\nborder-radius: 4px;\npadding: 10px 20px;\ncursor: pointer;\n}</code></pre>\n\n\n\n<p>Put it all together, and here’s what you should expect:</p>\n\n\n\n<img width=\"660\" height=\"447\" src=\"https://blog.gravatar.com/wp-content/uploads/2025/01/a-css-styled-wordpress-comment-form.png?w=660\" alt=\"A custom WordPress comment form made using CSS\" class=\"wp-image-2720\" />\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Launch your engagement-focused comment section&nbsp;</strong></h2>\n\n\n\n<p>Transforming your WordPress comment section from basic to engaging doesn&#8217;t require massive changes. By implementing Gravatar profiles and thoughtful design choices, you can create an environment where readers naturally want to participate.</p>\n\n\n\n<p>The combination of verified identities and user profiles shows visitors that their contributions matter. When commenters can display their professional information and verified social links, discussions become more meaningful and spam decreases naturally.</p>\n\n\n\n<p>Start by checking that Gravatar is selected as the active avatar service in your WordPress settings. Then explore additional tools like <a href=\"https://jetpack.com/support/gravatar-hovercards/\">Jetpack for hovercards</a> or <a href=\"https://wordpress.org/plugins/gravatar-enhanced/\">Gravatar Enhanced</a> for easy profile integration. For more technical implementations, the <a href=\"https://docs.gravatar.com/\">Gravatar REST API documentation</a> provides everything needed to build custom solutions.</p>\n\n\n\n<p>Remember: A well-designed comment section isn&#8217;t just about aesthetics – it&#8217;s about creating a space where your community can thrive.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 16 Jan 2025 21:41:28 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Ronnie Burt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:17;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"WPTavern: #152 – David Darke on Building a Successful Agency Through Strategic Growth\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=185452\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"https://wptavern.com/podcast/152-david-darke-on-building-a-successful-agency-through-strategic-growth\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:52041:\"Transcript<div>\n<p>[00:00:00] <strong>Nathan Wrigley:</strong> Welcome to the Jukebox podcast from WP Tavern. My name is Nathan Wrigley.</p>\n\n\n\n<p>Jukebox is a podcast which is dedicated to all things WordPress. The people, the events, the plugins, the blocks, the themes, and in this case, building a successful agency through strategically planned growth.</p>\n\n\n\n<p>If you&#8217;d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast player of choice, or by going to wptavern.com/feed/podcast, and you can copy that URL into most podcast players.</p>\n\n\n\n<p>If you have a topic that you&#8217;d like us to feature on the podcast, I&#8217;m keen to hear from you and hopefully get you, or your idea, featured on the show. Head to wptavern.com/contact/jukebox, and use the form there.</p>\n\n\n\n<p>So on the podcast today, we have David Darke.</p>\n\n\n\n<p>David is a Bristol based entrepreneur, and a longtime WordPress user. He is the co-founder of Atomic Smash, a digital agency specializing in WordPress and WooCommerce performance optimization.</p>\n\n\n\n<p>Since its founding in 2010, Atomic Smash has grown from a two person team into a thriving agency, known for helping businesses improve their digital platforms with WordPress.</p>\n\n\n\n<p>The podcast today traces David&#8217;s experiences growing the agency, and the many highs and lows he&#8217;s been on.</p>\n\n\n\n<p>David&#8217;s story begins in a business incubator, where the affordable desk space facilitated invaluable networking, and relationship building opportunities. Through perseverance and strategic networking, David has grown the agency from these small beginnings into a robust team of 20 professionals.</p>\n\n\n\n<p>We talk about the myriad challenges he faced, from overcoming the initial skepticism due to his age, to the trials of managing business growth and client expectations.</p>\n\n\n\n<p>You&#8217;ll hear about the critical role that external business coaches have played in guiding his agency through different stages of growth, and how strategic learning has been pivotal in expanding beyond core web development skills, to mastering business acumen, and operational strategies.</p>\n\n\n\n<p>David also discusses his current role, which involves less hands-on coding and more focus on technical oversight, sales, and strategic client interactions.</p>\n\n\n\n<p>He shares his insights into the importance of delegation, finding work-life balance, and ensuring his team operates efficiently without overextending themselves.</p>\n\n\n\n<p>We also get into the evolving web industry landscape, particularly the integration of AI and SEO into their service offerings, aiming to position his company as a strategic partner for client growth.</p>\n\n\n\n<p>He emphasizes the importance of hiring the right talent, including freelancers, and the necessity of pausing business coaching to implement growth strategies effectively.</p>\n\n\n\n<p>Whether you&#8217;re an aspiring freelancer, an agency owner looking to grow, or simply passionate about WordPress, this episode is for you.</p>\n\n\n\n<p>If you&#8217;re interested in finding out more, you can find all of the links in the show notes by heading to wptavern.com/podcast, where you&#8217;ll find all the other episodes as well.</p>\n\n\n\n<p>And so, without further delay, I bring you David Darke.</p>\n\n\n\n<p>I am joined on the podcast by David Darke. Hello David.</p>\n\n\n\n<p>[00:03:46] <strong>David Darke:</strong> Hi there. How&#8217;s it going?</p>\n\n\n\n<p>[00:03:47] <strong>Nathan Wrigley:</strong> Yeah, good. Nice to chat to you. David and I first met, well, we haven&#8217;t really met much because the role in which I met David is one where I&#8217;m typically quite busy. I help out with the WordPress London meetup, which happens each month in the city of London, and David was doing a talk there.</p>\n\n\n\n<p>However, the nature of my role is that I am face down in an iPad trying to make sure that the recording happens, and then as soon as the event is over, I busily tidy up with everybody else.</p>\n\n\n\n<p>So I never really got to meet David, but I did manage to catch his talk in great detail. Gave a presentation over there essentially about growing an agency, managing a successful agency. So we&#8217;re going to get into that conversation today, but before we do, David, would you just give us a potted bio? Tell us a little bit about what you do, the journey that you&#8217;ve been on with WordPress and your agency.</p>\n\n\n\n<p>[00:04:38] <strong>David Darke:</strong> Yeah, yeah, great. And I&#8217;ll also say, you looked busy and not stressed, which is actually quite an impressive thing for all the equipment you were managing on the day, but yeah.</p>\n\n\n\n<p>So yeah, my name&#8217;s David Darke, started a WordPress based agency 14 years ago. We are based in Bristol in the UK. And I&#8217;ve definitely worn many hats in that time.</p>\n\n\n\n<p>So started off with myself and my business partner. I was the primary developer and only developer within the team.</p>\n\n\n\n<p>We&#8217;ve grown the team now to just around 20, and my role has shifted in that time going from the only developer, to development lead, to operations management part of the actual business. And now I&#8217;m actually shifted away from operations, and more on the growth and sales side of the business. So definitely all inwardly focused, and then now outwardly focused.</p>\n\n\n\n<p>Again, worn many hats and that&#8217;s been one of those challenges of owning and running an agency is the need to adapt and wear different hats.</p>\n\n\n\n<p>[00:05:33] <strong>Nathan Wrigley:</strong> When you began with you and your business partner, did you have an intuition that you wished to grow? Was it more just, let&#8217;s start a business, let&#8217;s put food on the table and see where it goes? Or did you always have that light at the end of the tunnel, that thing that you were aiming for, growth, growth, growth, getting new business, grow the business, employ more people? How did that all work out?</p>\n\n\n\n<p>[00:05:55] <strong>David Darke:</strong> Yeah, it&#8217;s really funny. In the first year it was that sort of approach of, we need to get clients. We had no money, we had no funding, we were all bootstrapped and self-manage. We literally worked for, it was about eight to nine months before, so in normal jobs, it&#8217;s basically the only job I&#8217;ve actually had.</p>\n\n\n\n<p>I was actually part of a photography team, a photo editing team for a sportswear company. It&#8217;s a random role, but it was basically just get some money behind us so we can actually live in the first year, really.</p>\n\n\n\n<p>And initially it was just, let&#8217;s do it, let&#8217;s try it. It was the perfect opportunity. It was directly outside of after leaving university. There was no risk. I had no family, you know, it was just case of, if it didn&#8217;t work, we&#8217;ll just get a job.</p>\n\n\n\n<p>So the idea was, let&#8217;s try it, let&#8217;s get going. And as soon as we started moving the idea of, not necessarily, not aiming for massive growth, but the idea of having a team behind us was a real goal at that stage.</p>\n\n\n\n<p>And we definitely took a long time to actually employ our first person, and that person&#8217;s actually still part of the team now. He just had his 10th anniversary. So from our side, we definitely took quite a while to actually get that first employee on.</p>\n\n\n\n<p>But after that is really a case of, let&#8217;s work out what team size we need to be to facilitate all the things we need to do. Make sure that myself and my business partner weren&#8217;t overloaded. You know, there&#8217;s definitely a period in the middle growth of the business where we&#8217;re just doing too much stuff and were spread very thin.</p>\n\n\n\n<p>So working out what sort of team size does it need to be to allow us to have the flexibility to give more responsibility to team members, and also give us the brain space to think about how the business should be shaped, grown, and how it should just maintain itself really, yeah.</p>\n\n\n\n<p>So now we&#8217;re at the stage where myself and my business partner are definitely doing less on the tools jobs, I&#8217;m basically doing no production work at all, but we&#8217;re able to invest time in the business and the team.</p>\n\n\n\n<p>[00:07:36] <strong>Nathan Wrigley:</strong> Do you work exclusively with WordPress based projects, or are you more of a broader church than that? Do you do web development in other areas, maybe even software development, things like that, or is it just purely WordPress?</p>\n\n\n\n<p>[00:07:49] <strong>David Darke:</strong> We have a couple of sites where they&#8217;ve got a primary WordPress platform and they use some like Shopify for their e-commerce. So we do support a bit of Shopify on the side. We basically do no real software development or anything outside of the WordPress ecosystem. Every single one of our clients has some form of WordPress installation at some level.</p>\n\n\n\n<p>That does, when you&#8217;re talking about WooCommerce and big sort of CRM integrations, it does mean we have to have our fingers in a lot of pies. We integrate with things like Salesforce and the other big CRMs. So we do have to interact with some middleware sometimes, but 99% of our clients are WordPress.</p>\n\n\n\n<p>[00:08:24] <strong>Nathan Wrigley:</strong> If you were to hang out in Facebook groups, and LinkedIn groups, and things like that, there&#8217;s always a lot of conversation around where you were at the beginning of your journey. You know, I&#8217;ve got this agency, I&#8217;m a one person team, I would like to grow and what have you. And it feels like you&#8217;ve probably gone through all of the things, you&#8217;ve tripped over all the trip wires, hit all the hurdles, got past them all in some way, shape or form.</p>\n\n\n\n<p>And one of the things that came out was, the bit that you just mentioned about, maybe it&#8217;s regret in some way of not making the first hire sooner. And I never managed to scale an agency, I was always very happy to just operate myself, but that was one of the things that concerned me a lot, was making that first hire, committing myself to somebody else&#8217;s welfare.</p>\n\n\n\n<p>Am I right in saying that you, looking back, you think you maybe should have jumped off that a little bit sooner and hired the first person sooner, to free yourselves up to do other things?</p>\n\n\n\n<p>[00:09:21] <strong>David Darke:</strong> Oh yeah, definitely. And you are right, it&#8217;s more about, we didn&#8217;t want to necessarily employ someone and then have to let them go because there wasn&#8217;t enough money to fund their salary. It was really that simple. Making sure there&#8217;s enough security in the business to make sure that we just spent the time and effort in getting them on, getting them into the team, and then having to let them go.</p>\n\n\n\n<p>That&#8217;s from our side, and also from their side. We hadn&#8217;t employed anyone before, we didn&#8217;t want to disappoint them. They want to be part of the team, they want to be part of the journey, we didn&#8217;t want to then have to say, well, you got to go now because we didn&#8217;t think this through properly.</p>\n\n\n\n<p>So we definitely spent a lot of time and I would definitely say at the start there was definite, we were doing too much stuff, and then we had too many projects on, and by the time we needed to have someone on the team, it was almost like too late because the recruitment process does take. You need two weeks to basically start looking for people, you need another couple of weeks to basically do interviews and do that whole process properly and meet them.</p>\n\n\n\n<p>And this was obviously pre covid, so a lot of it was in person, it really was, interview process was getting people into our studio space to actually speak to them. And we really did it too late. We should have been doing it months before so they&#8217;re ready to join. So again, it&#8217;s just that sort of balancing, and it&#8217;s easy with hindsight, but actually the balancing of making sure that our capacity was right, and how we balance our capacity, we did it too late.</p>\n\n\n\n<p>And if we look back now, we did have the security even with the upcoming projects, but it&#8217;s just quite big thing to do on the first time. And even from a legal side, just not knowing exactly every box you need to tick when you employ someone, like what contracts you actually have to have. Actually getting the contract and you need to pay someone to do that, or you need to get, you know, there&#8217;s a lot of things to do. So the advice is, try and do it as early as possible if you want it to do it.</p>\n\n\n\n<p>[00:10:57] <strong>Nathan Wrigley:</strong> Yeah, the interesting word that you used there was capacity. And so there must be, in your head, looking back, obviously now with hindsight, you recognise what that capacity was. Do you have any rule of thumb that you could bring to bear to this conversation? Let&#8217;s say that somebody is, like I was, a web agency owner, or maybe there&#8217;s two or three people who&#8217;ve joined and they&#8217;re just beginning to get the intuition that maybe they could take somebody on. Is there a rule of thumb? Maybe that&#8217;s around finances or the, I don&#8217;t know, the bottleneck in the pipeline of work you&#8217;ve got? Do you have any sort of wisdom about when that first hire might be suitable?</p>\n\n\n\n<p>[00:11:33] <strong>David Darke:</strong> Yeah, I think at the start, it wasn&#8217;t like an intentional approach, but I was definitely working seven days week. And definitely got burnt out around year three or four in that sort of process. And that idea of actually being able to be at a position, obviously finances are one thing, you need the money to pay their salary, that&#8217;s like an underlying thing of security that side.</p>\n\n\n\n<p>But I would definitely say the idea of being able to deliver projects in a capacity where you are only working five days a week, and actually have a normal nine to five or whatever the timeframe is, in X number of hours, seven hours a day, without needing to work in the evenings, without needing to do all these things.</p>\n\n\n\n<p>Actually, even if you are a freelancer, or just trying to grow, or just the idea of being able to do the work in a sensible timeframe, and if you can&#8217;t do the work, then you need help.</p>\n\n\n\n<p>And that&#8217;s basically the rule of thumb. And that&#8217;s how we even work out our hiring capacity now, is we look at the team, we look at what needs to come up. Can we deliver this stuff with a team that we&#8217;ve got?</p>\n\n\n\n<p>And that&#8217;s the sort of tipping point of actually how we scale and grow, and in the areas we need to grow and scale. So even within the team now, we only have one designer. We don&#8217;t do huge number of projects, but if we were doing more and more design work, we&#8217;re literally looking at, how much capacity does that designer have? When do we need the second designer? Or do we just need freelance capacity? That&#8217;s really how we balance it. So just trying to make sure we&#8217;re not over-delivering and just not doing insane hours, just making sure everything&#8217;s sensible and you can actually start to look back and enjoy the actual process rather than it being this burden.</p>\n\n\n\n<p>[00:13:02] <strong>Nathan Wrigley:</strong> I think obviously the finance is a given. If there&#8217;s not enough throughput of cash, then the business is not really a business, it&#8217;s something else. But the intuition around seven days a week being something that is unsustainable, I think everybody can grasp hold of that.</p>\n\n\n\n<p>So if you wish your business to be five days a week, seven hours a day, and it&#8217;s seven days a week, 12 hours a day, then maybe there is extra capacity, and assuming that you&#8217;ve got the finances. I think that&#8217;s an interesting one that everybody can grab hold of. If the amount of free hours in your week don&#8217;t match what you wish to have, then maybe it&#8217;s time to start looking around for additional help.</p>\n\n\n\n<p>[00:13:38] <strong>David Darke:</strong> I really, really, wholeheartedly agree that actually, someone working five hours a day in a productive and structured way is actually probably more effective than someone working 12 hours a day. It really is a case of actually having the brain space to think about what you&#8217;re doing, and less procrastination and more focused on just doing what you need to do in this timeframe. That limitation actually really helps to make sure that you&#8217;re not twiddling your thumbs, you&#8217;re not doing things that don&#8217;t need to be done and really gives focus.</p>\n\n\n\n<p>I think actually from our side, restricting our time, I now actually only work four days a week. So that&#8217;s brought another restriction around, every Thursday I&#8217;m not in the office, so I need to make sure what I need to do in the week is done, usually at the starts of the week, and then Friday, I&#8217;ve got the capacity to almost plan the next week, or do meetings, or do those other things.</p>\n\n\n\n<p>So those limitations sound like there are limitations, but actually it&#8217;s more of a guide rails of how you need to use your time. And then as soon as I leave the office I&#8217;m not interacting with the business. That clear definition really helps from a, the classic work, life balance, you know, really just having that definition. And most of our team, that is the case. It really is a case of, once the time&#8217;s over, you pick up the next day. But it does take quite a lot of management and organisation to do that, especially personally. That&#8217;s something I had to learn. That was one of the biggest of skills I had to learn is just how to organise your own time.</p>\n\n\n\n<p>[00:14:56] <strong>Nathan Wrigley:</strong> Yeah, I think everybody can identify with that thing where, it&#8217;s late at night, you&#8217;re trying to read a book or something like that, and you realise that for every 10 lines that you read, none of the information has gone in. And you could map the same thing to your work life. It&#8217;s so easy to fall into the trap that 12 hours a day, good, five hours day, less good, just because I&#8217;m doing more hours a day.</p>\n\n\n\n<p>But I think you&#8217;re right. There&#8217;s this sort of burnout which just builds up over time. It&#8217;s sort of compound interest, you just feel more and more burnt out, each hour becomes less productive. So taking that absolute time out, and in your case, four days a week, maybe it&#8217;s five hours in the office, something like that. Step out of the front door, you are back to social David, if you like, and normal life, and then walk back through the following morning and you&#8217;re back to work. I can really identify with that, and hopefully the people listening to that can as well.</p>\n\n\n\n<p>[00:15:45] <strong>David Darke:</strong> Yeah, and also I&#8217;ve got a 2-year-old as well, so that really puts a clear definition of, when I&#8217;m at home, they&#8217;re the focus really, it can&#8217;t work both ways. You can&#8217;t work with a two odd running around basically, it&#8217;s almost impossible.</p>\n\n\n\n<p>[00:15:57] <strong>Nathan Wrigley:</strong> A lot of people might be at this point saying, yeah, that&#8217;s all very well, David, but what about, where does the work materialise from? How do you get the work? And obviously now that you are more established and your name has been circulated many, many times, I imagine that&#8217;s a different jigsaw puzzle than it was in the beginning.</p>\n\n\n\n<p>So let&#8217;s cast our mind back to when it was just the two of you at the beginning and you were presumably scrambling around for work. Do you have any advice there? I mean, was it just that you just happened to be in the right place at the right time, the internet was taking off and so on and so forth. Or were there things, looking back, that you thought, actually, do you know what, we did that really well, and we did that really poorly?</p>\n\n\n\n<p>[00:16:35] <strong>David Darke:</strong> I definitely see that the conversations we have nowadays are very different to the ones we had in the past. I think client&#8217;s knowledge of even WordPress is a lot higher. So they&#8217;ve, again, it&#8217;s just maybe just the maturity of the internet and the idea of project managers and digital teams have probably been through two to three websites in the last 10 years. And people&#8217;s sort of growth with that, and experience with it has changed.</p>\n\n\n\n<p>So I think when we were sort of pitching WordPress websites, and actually the whole web development projects, there&#8217;s a lot less emphasis on how much money needed to be spent on a website, everything was cheaper. I think their expectation now is there needs to be good investment in sites for them to be effective, and that was a lot harder sell 10 years ago, I think.</p>\n\n\n\n<p>So there&#8217;s definitely been shift and change in people&#8217;s understanding of what it takes to build a website. And we talked to project managers, digital project managers now, they actually understand that when you create a new website, it&#8217;s actually quite difficult to do content migration. You need two months to like move all the content and do an SEO plan. 10 years ago, no one cared. Just do the website, just get out of there. But they&#8217;ve been through it.</p>\n\n\n\n<p>I think the internet is at that sort of age and maturity where, and the teams that work in businesses and digital managers, they kind of understand the pitfalls of rushing those things, and there needs to be time and thought.</p>\n\n\n\n<p>I think when it comes to your question around how we find work. We started in a business incubator. That was more of a case of, there was some services tagged on, but it was basically the idea of, you join this incubator, it&#8217;s very, very cheap desk space. When you start, I think it&#8217;s every six months you are there, might of been like less than that. Every whatever time period you&#8217;re there, the desks get more expensive. So the idea is you start really cheap and it gives you the idea, within two to three years, it&#8217;s at the point where you should be sort of moving out of the incubator and thinking about other spaces or other options.</p>\n\n\n\n<p>For us it was just cheap desk space. It was the ability for us to get out of the house, go to somewhere where we can work, and the idea is, well, we might meet some people while we&#8217;re there and, what actually happened is when we got dropped into this business incubator, we were pretty much the only web developers in this incubator. So actually being able to help and do favors for people have built to lasting relationships where we still talk to them now.</p>\n\n\n\n<p>Some of them are freelance or contract UX people. Some of them are data people. And they were just there because again, they just wanted desk space. But the people they&#8217;re working with now are bigger organisations, bigger corporates, and those relationships have tied together. But at that time we were basically doing really small work for them, but we&#8217;re around a group of people that needed help and needed advice. And again, expertise and knowledge in general was limited 10 years ago.</p>\n\n\n\n<p>So I think that really helped us in that initial stage of like, how do we just get these small bits of work? As the team grew, it was really about us being proactive with conversations with people we wanted to work with. That has been effective, very ineffective sometimes. But it&#8217;s finding, for us, our unique offering and the way we work, which is more of a maintenance basis and a recurring model, that we kind of really dialed into, and we found the benefits of that. And that&#8217;s, for us it&#8217;s our ability to sell that to clients.</p>\n\n\n\n<p>You know, the idea of you don&#8217;t necessarily need a brand new website every three years. If you just work on the one you&#8217;ve got, adapt and evolve it, you can actually save a lot of money without needing to build a brand new site every three years. So that&#8217;s taken us quite a while to find our model, and our sort of unique offering. But actually finding people and being able to sell that has definitely shifted and changed as the business has grown.</p>\n\n\n\n<p>[00:20:03] <strong>Nathan Wrigley:</strong> It sounds like there&#8217;s a fair degree, in your business at least, at the beginning of what you might describe as networking or socialising. It&#8217;s not all about, I don&#8217;t know, posting Google ads and paying in that way. This is meeting real people in this enclosed space or out in the wider community or what have you. So it sounds like you were getting local business possibly, at the beginning.</p>\n\n\n\n<p>That kind of leads me in a curious direction that I didn&#8217;t anticipate. And that is, did you rely, you and your partner, on your gregarious nature? Are you outgoing? Was that some sort of superpower that you maybe have?</p>\n\n\n\n<p>I think it&#8217;s possible to say that a certain proportion of people who end up in the web development space are not that, they&#8217;re fairly introverted, and so the idea of mixing and socialising might be something that they&#8217;re feeling, yeah, a little bit uncomfortable about. So I just wondered if you wanted to speak to that, whether there was some element of your personality which enabled you to grow.</p>\n\n\n\n<p>[00:20:57] <strong>David Darke:</strong> That might be a possibility. I would also say that at the time when we started the business, myself and a business partner looked quite young. When we&#8217;re talking to businesses and companies about how they want to be growing their website, we just generally looked like we just left university. So actually from a sales perspective, that wasn&#8217;t actually particularly a great thing. We didn&#8217;t look like we had the experience. We didn&#8217;t look like we&#8217;d done this process many times.</p>\n\n\n\n<p>I think from our side some of the networking side of things was beneficial, but then actually hiding behind some of that other communication and other ways speaking and reaching out to businesses was actually beneficial. Because you could actually show expertise and experience in other ways. So it&#8217;s kind of like twofold.</p>\n\n\n\n<p>But definitely from a networking side, the thing we&#8217;ve definitely found with networking events and just general things, you have to be quite careful if you are trying to find new business. For example, most WordPress meetups, you&#8217;ll be talking with people that use WordPress, or develop WordPress, build sites, and not necessarily clients or potential clients. So you then have to find those particular networking events that would actually have potential clients in them. And that might mean that you are going to something that&#8217;s a bit more random. Even something that&#8217;s maybe based around accessibility or something that&#8217;s based around, I don&#8217;t know, even environmental impact or something like that, where you&#8217;ll be talking with other people that potentially would have those challenges, and then you can speak to them about their website and what have you.</p>\n\n\n\n<p>So it is about a selection of what events you go to. But I think the networking side of things is super important because as soon as you come across a challenge, and if you&#8217;ve spoken to someone, a great branding person that you met two weeks ago, that person&#8217;s at the top of your brain. As soon as you see someone with that challenge or you try and help someone, or even a current client that might come to you with a branding challenge, we basically don&#8217;t do any sort of branding at all, we just do development work and design work.</p>\n\n\n\n<p>But as soon as we find someone has a challenge, you can just grab these people really easily because they&#8217;re just forefront of your brain. And that&#8217;s the power of networking more than just meeting people directly. It&#8217;s just getting people to know what you do, and when those challenges come up, they&#8217;re the front of people&#8217;s brains.</p>\n\n\n\n<p>[00:23:05] <strong>Nathan Wrigley:</strong> So you are now at 20 people, I think you said, or thereabouts. So you&#8217;ve gone from two and you&#8217;ve added 18 roughly. During that journey, was it always upwards? Did it always go from two, to three, to four, to six or did it ever sort of slide down again? What I&#8217;m trying to get at in this question is, has it always been growth or have there been moments when that growth has stalled? When the anxiety, looking at the financial spreadsheet, has been more than it was less, put it that way.</p>\n\n\n\n<p>[00:23:34] <strong>David Darke:</strong> Yeah, hundred percent. Definitely hasn&#8217;t always been up. There&#8217;s definitely times where we&#8217;ve had to go down. Some of that has been natural just churn of people leaving and then they have been replaced. Some of it has been from loss of projects or loss of clients and had to make difficult decisions. So it&#8217;s never as, well, for us, definitely wasn&#8217;t always an upward trajectory. I&#8217;d definitely, from my side, there was also points of stagnation and really from our side to actually work out how we get past those. We&#8217;ve needed external business coaches to really help us prioritise and work out how we utilise our superpowers and what we&#8217;re really, really good at, into better, more cohesive offering. And that will really help grow the team.</p>\n\n\n\n<p>So I think from our side, we were kind of quoted these numbers of, when you get to around sort of 10 people, that&#8217;s certain number of challenges. Growing from 10 to 20 is another set of challenges, and getting beyond 20 is basically another set of challenges. So it&#8217;s almost like these milestones in growth.</p>\n\n\n\n<p>And we were definitely lingering around 10, 11 for a long time, just because their natural, even the process you have internally to scale to that number, just needed a lot of internal help, internal and external help to get beyond that. So yeah, there&#8217;s definitely been points of stagnation. There&#8217;s definitely been points of retraction. But if you look to the graph in general, it has been upward.</p>\n\n\n\n<p>[00:24:52] <strong>Nathan Wrigley:</strong> It sounds like you&#8217;ve put yourself in the path of people who you recognise to be good teachers of whatever it is that you need to know. So maybe that&#8217;s some aspect of, I don&#8217;t know, web design for those people in your business that do that. But it also sounded there, like you have deliberately gone out to find business coaches.</p>\n\n\n\n<p>So that maybe has nothing to do with web development, but you&#8217;ve got to balance the books and there are ways of doing that. Is that the case? Do you go out and find people who you think, okay, I need to learn this thing, rather than reading it in books, I&#8217;m just going to take the direct route and go and find a human being that can do that, or an agency that can do that? Because I guess that&#8217;s fairly important as a short circuit of trying to figure it all out yourself.</p>\n\n\n\n<p>[00:25:34] <strong>David Darke:</strong> A hundred percent. Yeah, we were very active three, four years ago of finding a proper business coach. And business coach is like, that&#8217;s very much like a phrase that could cover a lot of things, like you&#8217;re saying, could cover financial, could cover operations or whatever. But actually when it boils down to what we needed, it was almost like a third party for myself and my business partner to be responsible too. To actually say, we&#8217;re going to be doing these things, we&#8217;re going to be doing this activity or whatever it might be, a task that needs to get done in the business or a KPI.</p>\n\n\n\n<p>The first thing that they basically said to us when they joined was, your accounting&#8217;s terrible, go and get it sorted, like basically just go and do that. Look at this and just give that sort of advice and experience to say what&#8217;s working well, what isn&#8217;t. And you now need to go and do this. You&#8217;ve got two weeks to go and do this or however long, and get it done.</p>\n\n\n\n<p>And actually there&#8217;s not many people that myself and my business partner are responsible to. We&#8217;re responsible to our employees for employee led things, but when it comes to business level things, we&#8217;re just responsible to ourselves, you know, each other.</p>\n\n\n\n<p>So actually having this third party to basically wag the finger and say, you need to get this done and you need to get it done now was really helpful to actually make sure things got done. Yeah, that level of experience and that third party to be responsible to was really, really beneficial. And the thing that we kind of got to, and the point we got to was they helped us form KPIs, so key performance indicators for the business, and metrics we can track, and they helped with our accounting processes, they helped with our general capacity processes and all those sort of things that helped the business.</p>\n\n\n\n<p>We then stopped using them because we basically had a load of work that needed to happen, you know, months and years worth of work that needed to happen. And the idea is we&#8217;ll probably pick up that relationship again when we are at the next stage because we now need to work on, we now need to do the growth, we now need to do these things. And we were at the stage where we kind of knew what we needed to do, and we were just basically checking in at that stage. We weren&#8217;t getting anything new.</p>\n\n\n\n<p>But there are going to be set of challenges that we&#8217;re going to face in the next year, two years, where that relationship will be super beneficial again. So I genuinely think that having an external voice, an external ear as well, just to talk through problems, that whole classic rubber duck programming of just speaking your program out loud to someone, it really is super beneficial. And having a mentor, and actually being a mentor for other people is very, very important.</p>\n\n\n\n<p>[00:27:50] <strong>Nathan Wrigley:</strong> Yeah, it&#8217;s almost like you&#8217;ve hired in a third partner or something like that. Somebody who&#8217;s got the right to tell you, you&#8217;re doing this wrong. There&#8217;s a better way to do this. And I think as a freelancer at the beginning, just you and your partner, it is easy to assume that everything needs to be done by the pair of you, and if it can&#8217;t be done by the pair of you, you&#8217;re failures. And of course, in the real world, nobody has the capacity to do all the tasks in every walk of life. We employ people to do almost anything that we come into contact with. So that&#8217;s really interesting.</p>\n\n\n\n<p>Are you good at delegating? Because again, right back at the beginning when you are doing everything, and you&#8217;ve got to go from two to three, I think this is where probably I stumbled, and I&#8217;m sure a lot of people can share in my experience here.</p>\n\n\n\n<p>I just seem to find delegating quite difficult. I don&#8217;t know what that is, but there&#8217;s this thought maybe in the back of my head that, well, I know what I need to do, so I should be the one to begin it, and end it and, what have you. Are you a good delegator or was that a skill that you had to learn?</p>\n\n\n\n<p>[00:28:50] <strong>David Darke:</strong> Yeah, definitely had to learn. And I&#8217;d definitely say I&#8217;m a very average delegator. So my approach to it now is trying to be a bit more hands off. So if I&#8217;m not involved from the start, it&#8217;s a lot easier for me to not be involved in the future. Having oversight and seeing how things work is definitely beneficial. As soon as I&#8217;m trying to get into the, I&#8217;m quite detail orientated, so as soon as I get to know the details and I feel myself wanting to be more involved in something. If I&#8217;m a bit more hands off, and allowing our employees to have responsibility for things, that&#8217;s easier for me to then not be involved in the future and just allowing those things to happen.</p>\n\n\n\n<p>I was definitely a bad delegator at the start, and it&#8217;s definitely something I&#8217;ve worked on and improved on in the years. But it&#8217;s more about techniques rather than naturally just this becomes a thing you can do. It&#8217;s more just allowing people to have responsibility for those things. And myself, just making sure I&#8217;m only checking in when I need to check in or whatever&#8217;s needed for the task at hand. It&#8217;s definitely a challenging thing and it&#8217;s</p>\n\n\n\n<p>one of those tasks, that sort of soft skill which isn&#8217;t really something you can just do a course in or learn. That suite of soft skills is something that you don&#8217;t really get training for as a manager or a business owner, get trained for very meticulous or very particular things around accounting, or if you need to do a certain process, you can just get a course. But that soft skill stuff is super important, but it&#8217;s hard to get training in, and you kind of just have to learn as you go really.</p>\n\n\n\n<p>[00:30:11] <strong>Nathan Wrigley:</strong> Do you ever have to pull yourself back from the opposite of delegating, just getting in too deep into the tasks that your employees are tasked with doing? You sort of find yourself looking over their shoulder and thinking, oh, that&#8217;s curious, let&#8217;s have a chat about that. When really your job now is divorced from that, you are one step back, one step higher if you like, and you&#8217;ve got to just pull yourself back from that precipice.</p>\n\n\n\n<p>[00:30:34] <strong>David Darke:</strong> Yeah, I mean, not necessarily in the way, my role now within the business, because I&#8217;m more to do with the sales side and the growth aspect and less about the internal workings, I definitely find that&#8217;s a lot less. From my side, the things I&#8217;d be checking in now and making sure happens is once a client joins, making sure they&#8217;re happy and checking in from that perspective.</p>\n\n\n\n<p>Definitely from my business partners side, who&#8217;s now more internally focused, it&#8217;s basically their role as a director to direct, actually steer the ship. So there definitely needs to be a certain level of oversight and seeing what is happening. But I think our personalities and characters, he&#8217;s very, very good at having a lot of different things, and having oversight of a lot of different things without needing the granular detail.</p>\n\n\n\n<p>Whereas I&#8217;m, because I&#8217;m more detail orientated, I kind of need everything to help make decisions. But I think for my new role I&#8217;m definitely less involved and less overseeing and that side of things. But it&#8217;s almost important that it does happen to some degree, that people have oversight of stuff, just to make sure things are done in the right way and make sure that things are profitable, for example. And we have a set of business values, make sure things are being delivered with those values in mind. It definitely needs that in place. It&#8217;s never just about wagging fingers, just watching, making sure people are working or anything like that. It&#8217;s really the case of making sure the business is doing what it&#8217;s meant to be doing.</p>\n\n\n\n<p>[00:31:47] <strong>Nathan Wrigley:</strong> Yeah, it sounds like you have to have trust on a fairly profound level, that the people that you have invested your time into, and they&#8217;ve invested their time into your business, you can trust them. You delegate a task, and the anticipation therefore is that that task will be done and they&#8217;re going to tackle it in the same way that hopefully you will have done, and the processes are there to make sure that happens.</p>\n\n\n\n<p>So now that you are, I&#8217;m going to use the word manager, maybe you have a different word for yourself. I&#8217;m guessing, again, if we rewind the clock, I&#8217;m guessing that you probably weren&#8217;t able to look forward and think, yeah, this is what I&#8217;ll be doing in 10 or 15 years time, this is what my day will look like, because you generally concentrate on the next six months.</p>\n\n\n\n<p>Do you enjoy the work that you are doing? I&#8217;m not meaning to back you into a corner there. What I&#8217;m sort of angling after is, there&#8217;s bound to be bits of this new role that are satisfying, but there&#8217;s probably bits that, oh boy, I just wish I could hand that over. And again, that&#8217;s part of growing the business.</p>\n\n\n\n<p>Because it feels, sometimes I have conversations with people who are in similar positions to you, and in some cases they&#8217;re stepping back from the more managerial role and they&#8217;re going back to the, I want to be in front of a computer and I want to be doing coding again, and it&#8217;s still my business but I&#8217;m going to employ somebody else to do the managing part, and I&#8217;m going to go back to being a developer because that&#8217;s what I enjoy.</p>\n\n\n\n<p>So it&#8217;s questions around that really. Do you find the same satisfaction in the work that you&#8217;re doing now, or do you find sometimes you look over at your employees and think, oh, wish I was doing that again?</p>\n\n\n\n<p>[00:33:10] <strong>David Darke:</strong> I think from my side, the things I really enjoy doing, I really enjoy experimenting and having sort of technical oversight over things. My needs to be doing coding and delivering is slightly less. But again, a lot of satisfaction, enjoyment even just from the sales process of really delving into a client&#8217;s challenge and communicating with them about how we can solve those things. That actually requires me to actually have a lot of technical oversight, understanding, not necessarily prototyping, but actually being able to articulate to them how our work will improve their site.</p>\n\n\n\n<p>And that does require, that does sort of scratch that itch from a technical side of me being able to work with clients, and talk with them, and do technical audits, and actual solution architecture and stuff for new potential clients and existing clients. So I definitely feel that my need to be on the tools is covered by that.</p>\n\n\n\n<p>My real, I guess purpose within the business is to make sure the business is growing, that&#8217;s the key thing. That&#8217;s where I get real satisfaction from is seeing the team working, from seeing the business grow. And that&#8217;s almost like at a different level from my own personal need to do coding or those sort of things. So I get a bit of an itch, scratch from that side of things.</p>\n\n\n\n<p>The definite story that we have when we employ people, and we really do look to try and grab freelancers to be part of the team, because they&#8217;ve had to deal with, I don&#8217;t know, some of the minutia of sending invoices, getting new clients, having to tackle all these things of being a freelancer. And when they have the opportunity to just do the work they want to be doing, you get really good results from people, and you get a really satisfied employee because they just get to worry about what they&#8217;re doing, rather than worrying about the work upcoming, and having to worry about were the invoices sent. Do they have to do their tax return? You know, all this other stuff that they just don&#8217;t get to do.</p>\n\n\n\n<p>So I think from my side, it&#8217;s really like a character thing. And you do have to ask yourself what you want to be doing within your business. And there&#8217;s no reason why someone couldn&#8217;t run a business and be any sort of business. It could be a design business, branding, it could be developments, that they can&#8217;t build themself into the business in a way where they are still on the tools. They could be a solutions architect, they could be lead developer, but it&#8217;s about building the business around it so there&#8217;s still opportunity of growth and they still have ability to concentrate on other things.</p>\n\n\n\n<p>There&#8217;s nothing against someone actually doing the work and running a business. Just you need to have that character to be able to handle that, and also want to be able to it.</p>\n\n\n\n<p>And I think what we want to be doing within the business is something we worked on a lot with our business coach, because we have worn so many hats along the way, just actually picking those things that we did really enjoy and trying to build them into a role that we wanted to move forward with was a key part of the work we did with them.</p>\n\n\n\n<p>[00:35:41] <strong>Nathan Wrigley:</strong> I think every industry, no matter what you&#8217;re in, you&#8217;re always staring over the horizon. You&#8217;re always trying to figure out where the next piece of work is coming from, or what the next big wave is. But I think particularly the web, technology, but the web specifically, that moves at a really incredible rate. You take your eye off for six months and you&#8217;ve lost sight of what&#8217;s going on.</p>\n\n\n\n<p>And I&#8217;m just sort of wondering about that really, if there&#8217;s anything in the near term that you are thinking about. I don&#8217;t know, that may be AI, it may be something that you&#8217;ve seen in the WordPress space that you really like. So that&#8217;s an open-ended question really. Where does the business feel like it&#8217;s going to you? What pivots are you thinking about over the very short, near term?</p>\n\n\n\n<p>[00:36:19] <strong>David Darke:</strong> AI is super interesting, it&#8217;s something we&#8217;re definitely keeping an eye on. And the understanding that AI is going to be part of everything, every app in the next 10 years. It&#8217;s going to be here, it&#8217;s here to stay, it&#8217;s not going anywhere, it&#8217;s going to grow. And the idea of how we utilise it. Most of the time, the way we deliver stuff to clients is understanding what is in the marketplace and making the good recommendations.</p>\n\n\n\n<p>So you might have a particular brief that says, we want to be using AI as part of this project, you know, really delving down to what actually means. Is it a chat bot for sales process? Is it chat bot for support? Is it something around content creation? It could be anything.</p>\n\n\n\n<p>So I think from our side, the things you want to actually be focusing on, again, it&#8217;s really delving into our, the way we work and trying to work with clients and find clients that really want to be digging in and helping them grow, not just helping them keep their website online, help them, support them.</p>\n\n\n\n<p>The idea of us or anyone being able to produce a website that looks pretty good, either using page builders, or AI generator websites, or anything is becoming more and more easy. So the human connection there and the ability to actually be a strategic partner and help growth is going to be the key to businesses in the future. It&#8217;s more about the strategy and the consultation that happens around these things is going to be where the profit is, where the actual need for businesses is going to be really focused.</p>\n\n\n\n<p>The way we&#8217;re adapting is basically bringing in bigger strategic brains, not just delivery, it&#8217;s about businesses and growth. That&#8217;d be business insight people. It could be even just SEO specialists, we don&#8217;t do much in the way of SEO, but that&#8217;s quite a simple thing. But actually having a specialist on the team for growth rather than just for building a website. We&#8217;re part of your team, your digital arm of your team, how does your website grow? That&#8217;s going to be our offering more and more in the future. So we&#8217;re not just delivery partners.</p>\n\n\n\n<p>[00:38:11] <strong>Nathan Wrigley:</strong> Fascinting. Honestly, it&#8217;s been a really interesting chat. I&#8217;ve enjoyed very much hearing about your journey. If anybody else has shared my intuition and would like to contact you, maybe they&#8217;re interested in the way that you&#8217;ve grown, or maybe they&#8217;re going through some struggle that you have perhaps overcome already, where would be the best place to find you? Be that on social media or your website. What&#8217;s the handle that you would drop?</p>\n\n\n\n<p>[00:38:34] <strong>David Darke:</strong> Yeah, probably the best place would be LinkedIn. I&#8217;ll give you a link. Yeah, I don&#8217;t actually have it off the top my head, but it should be just LinkedIn, David Darke. But, yeah, that&#8217;s probably the best place. I&#8217;m trying to be on social media less in general so, yeah, that&#8217;s definitely a good place.</p>\n\n\n\n<p>[00:38:46] <strong>Nathan Wrigley:</strong> Well, in which case, I will put that into the show notes. So if you go to wptavern.com/podcast, search for the episode with David Darke, D A R K E, you will find it in the show notes there. So all that it remains for me to do is to say, David Darke, thank you so much for chatting to me today. I really appreciate it.</p>\n\n\n\n<p>[00:39:02] <strong>David Darke:</strong> Thank you very much. Thanks for having me.</p>\n</div>\n\n\n\n<p>On the podcast today we have <a href=\"https://www.linkedin.com/in/daviddarke/\">David Darke</a>.</p>\n\n\n\n<p>David is a Bristol-based entrepreneur and long time WordPress user. He is the co-founder of Atomic Smash, a digital agency specialising in WordPress and WooCommerce performance optimisation. Since its founding in 2010, Atomic Smash has grown from a two-person team into a thriving agency known for helping businesses improve their digital platforms with WordPress. The podcast today traces David’s experiences growing the agency and the many highs and lows that he’s been on.</p>\n\n\n\n<p>David&#8217;s story begins in a business incubator where the affordable desk space facilitated invaluable networking and relationship-building opportunities. Through perseverance and strategic networking, David has grown the agency from these small beginnings to a robust team of twenty professionals.</p>\n\n\n\n<p>We talk about the myriad challenges he faced, from overcoming the initial skepticism due to his age, to the trials of managing business growth and client expectations. You&#8217;ll hear about the critical role that external business coaches have played in guiding his agency through different stages of growth, and how strategic learning has been pivotal in expanding beyond core web development skills to mastering business acumen and operational strategies.</p>\n\n\n\n<p>David also discusses his current role, which involves less hands-on coding and more focus on technical oversight, sales, and strategic client interactions. He shares his insights into the importance of delegation, finding work-life balance, and ensuring his team operates efficiently without overextending themselves.</p>\n\n\n\n<p>We also get into the evolving web industry landscape, particularly the integration of AI and SEO into their service offerings, aiming to position his company as a strategic partner for client growth. He emphasises the importance of hiring the right talent, including freelancers, and the necessity of pausing business coaching to implement growth strategies effectively.</p>\n\n\n\n<p>Whether you&#8217;re an aspiring freelancer, an agency owner looking to grow, or simply passionate about WordPress, this episode is for you.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links</h2>\n\n\n\n<p><a href=\"https://www.atomicsmash.co.uk/\">Atomic Smash website</a></p>\n\n\n\n<p><a href=\"https://www.linkedin.com/in/daviddarke/\">David on LinkedIn</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 15 Jan 2025 15:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nathan Wrigley\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"Do The Woo Community: New Hosts, New Shows and 7 Years of Do the Woo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=89023\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"https://dothewoo.io/new-hosts-new-shows-and-7-years-of-do-the-woo/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:107:\"Version 4.2 is coming your way with new hosts and new shows. Plus we are celebrating 7 years of Do the Woo.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 15 Jan 2025 11:32:40 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt: Matt 4.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=134653\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://ma.tt/2025/01/forty-one/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4535:\"<p>Forty-one is a nice birthday because it doesn&#8217;t feel like too much pressure. For forty I did a big eclipse thing that ended up amazing, this year I&#8217;m replicating what I did a few years ago and celebrating in New York, Houston, and San Francisco.</p>\n\n\n\n<p>My birthday today has already been lovely. Saw the amazing Broadway show <a href=\"https://www.maybehappyending.com/\">Maybe Happy Ending</a> (powered by WordPress!) thanks to a suggestion from my colleague Susan Hobbs who&#8217;s a connoisseur of musicals. Then did some fun karaoke in K-town. I didn&#8217;t realize how much I missed New York! Tonight will celebrate with one of my favorite DJs, <a href=\"https://soundcloud.com/lemuriansounds\">Lemurian</a>, who flew up from Tulum. In the spirit of <a href=\"https://ma.tt/2024/01/birthday-gift/\">a blog post for my birthday,</a> I&#8217;d like to share with you all a blog post I&#8217;ve been working on a while inspired by one of Lemurian&#8217;s mixes. In 2018 Max (aka Lemurian) played at someplace called Concept and opened with a very interesting track.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<p>Now, the thing that caught my ear was the <a href=\"https://en.wikipedia.org/wiki/Bassoon\">bassoon</a>. A double-reed instrument that you don&#8217;t often hear in the front of things, much less house music. Here is the original track on Spotify:</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<p>This lead me down a rabbit hole to <a href=\"https://lyricalbrazil.com/2014/01/17/coisas-banais-and-preciso-me-encontrar/\">an amazing (WordPress-powered) site called Lyrical Brazil that takes the Brazilian Portuguese lyrics and translates them</a>. Please read that entire blog post. It turns out this song was written by a police officer who was shot and then paralyzed from the waist down, then started a Brazilian music school Candeia which was a fixture of Portela samba school. Here&#8217;s the lyrics of the song, translated:</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>Let me go, I need to wander<br />I’ll go around, seeking<br />To laugh, so as not to cry (repeat)<br />I want to watch the sun rise, to see the rivers’ waters flow<br />To hear the birds sing<br />I want to be born, I want to live<br />Let me go, I need to wander<br />I’ll go around, seeking<br />To laugh, so as not to cry<br />If anyone asks after me, tell them I’ll only come back after I find myself<br />I want to watch the sun rise, to see the rivers’ waters flow<br />To hear the birds sing<br />I want to be born, I want to live… (repeat)</p>\n</blockquote>\n\n\n\n<p>Stunning poetry. Made all the better when you understand the context in which is was written.</p>\n\n\n\n<p>One of the things I say to my friends is that in lieu of birthday gifts I just want them to publish, whether it&#8217;s words, photos, music, or anything. I leave you all with that. Each of us has an incredible story, a unique life experience that is yours and no one else&#8217;s. Find a way to express that creatively, and put that on the open web. It&#8217;s scary! Vulnerable. But you&#8217;ll find once you do that the rewards are better than you ever imagined. 2025 is going to be a weird year, let&#8217;s blog through it. Mazel tov!</p>\n\n\n\n<p>All birthday posts: <a href=\"https://ma.tt/2003/01/bday/\">19</a>, <a href=\"https://ma.tt/2004/01/so-im-20/\">20</a>, <a href=\"https://ma.tt/2005/01/hot-barely-legal-matt/\">21</a>, <a href=\"https://ma.tt/2006/01/matt-22/\">22</a>, <a href=\"https://ma.tt/2007/01/twenty-three/\">23</a>, <a href=\"https://ma.tt/2008/01/twenty-four/\">24</a>, <a href=\"https://ma.tt/2009/01/twenty-five/\">25</a>, <a href=\"https://ma.tt/2010/01/twenty-six/\">26</a>, <a href=\"https://ma.tt/2011/01/twenty-seven/\">27</a>, <a href=\"https://ma.tt/2012/01/twenty-eight/\">28</a>, <a href=\"https://ma.tt/2013/01/twenty-nine/\">29</a>, <a href=\"https://ma.tt/2014/01/matt-3-0/\">30</a>, <a href=\"https://ma.tt/2015/01/thirty-one/\">31</a>, <a href=\"https://ma.tt/2016/01/thirty-two/\">32</a>, <a href=\"https://ma.tt/2017/01/thirty-three/\">33</a>, <a href=\"https://ma.tt/2018/01/thirty-four/\">34</a>, <a href=\"https://ma.tt/2019/01/thirty-five/\">35</a>, <a href=\"https://ma.tt/2020/01/thirty-six/\">36</a>, <a href=\"https://ma.tt/2021/01/thirty-seven/\">37</a>, <a href=\"https://ma.tt/2022/01/thirty-eight/\">38</a>, <a href=\"https://ma.tt/2023/01/thirty-nine/\">39</a>, <a href=\"https://ma.tt/2024/01/forty/\">40</a>, <a href=\"https://ma.tt/2025/01/forty-one/\">41</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 12 Jan 2025 01:55:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:20;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:121:\"Gutenberg Times: State of the Word, Gutenberg 19.9 and 20.0, Block editor for books, Studio Sync – Weekend Edition #315\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=31490\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:124:\"https://gutenbergtimes.com/state-of-the-word-gutenberg-19-9-and-20-0-block-editor-for-books-studio-sync-weekend-edition-315/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:24429:\"<p><strong>Happy New Year!&nbsp;</strong>🎆 🙌 🎉🥂</p>\n\n\n\n<p>I hope you had some wonderful time with your family or friends over the holidays, and you started re-energized and excited into 2025. </p>\n\n\n\n<p>At Gutenberg Times, we, that&#8217;s you and me, are now celebrating our seventh anniversary! Although, I started curating Gutenberg updates right after WordCamp Europe in June 2017, I registered the domain Gutenbergtimes.com and started the newsletter on January 14, 2018.</p>\n\n\n\n<p>My dear friend, Bob Dunn aka BobWP started the <a href=\"https://dothewoo.io/\">DoTheWoo </a>network around the same time, and we are planning a joined anniversary podcast episode to chat about our journey in the WordPress community. Stay Tuned!</p>\n\n\n\n<p>As I just returned from vacation, I am pretty sure I haven&#8217;t caught up with all the great things that happened around the block editor. The updates here are pretty cool, though! </p>\n\n\n\n<p>More again next week 🤗 </p>\n\n\n\n<p>Yours, 💕<br /><em>Birgit</em></p>\n\n\n\n<p>PS: We are not only four weeks away from WordCamp Asia. If you want to meet there, use my public calendar to self-schedule a meeting<a href=\"https://bit.ly/bph-wcasia\">: <strong>bit.ly/bph-wcasia</strong></a>. </p>\n\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background\"><div class=\"wp-block-group__inner-container is-layout-flow wp-block-group-is-layout-flow\">\n\n<p><strong>Table of Contents</strong></p>\n\n\n<ol><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/state-of-the-word-gutenberg-19-9-and-20-0-block-editor-for-books-studio-sync-weekend-edition-315/#0-word-press-release-information\">Developing Gutenberg and WordPress</a><ol><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/state-of-the-word-gutenberg-19-9-and-20-0-block-editor-for-books-studio-sync-weekend-edition-315/#state-of-the-word\">State of the Word</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/state-of-the-word-gutenberg-19-9-and-20-0-block-editor-for-books-studio-sync-weekend-edition-315/#gutenberg-plugin\">Gutenberg plugin</a></li></ol></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/state-of-the-word-gutenberg-19-9-and-20-0-block-editor-for-books-studio-sync-weekend-edition-315/#0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/state-of-the-word-gutenberg-19-9-and-20-0-block-editor-for-books-studio-sync-weekend-edition-315/#2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/state-of-the-word-gutenberg-19-9-and-20-0-block-editor-for-books-studio-sync-weekend-edition-315/#3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/state-of-the-word-gutenberg-19-9-and-20-0-block-editor-for-books-studio-sync-weekend-edition-315/#playground-updates\">Playground updates</a></li></ol>\n\n</div></div>\n\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-word-press-release-information\">Developing Gutenberg and WordPress</h2>\n\n\n\n<p><strong>Jonathan Derosiers</strong> has published the <a href=\"https://make.wordpress.org/core/2025/01/11/wordpress-6-8-release-squad-timeline-and-focus/\"><strong>final planning information for WordPress 6.8.</strong></a> The 10-person release squad consist of long-time contributors with a ton of experience. Desrosiers also confirmed the schedule, which was earlier proposed by Hector Prieto,:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>March 4, 2025, for Beta 1 </li>\n\n\n\n<li>March 25, 2025, for RC 1 and  </li>\n\n\n\n<li>April 15, 2025, the general release. </li>\n</ul>\n\n\n\n<p>WordPress &#8220;6.8 will focus primarily on being a polish and bug fix release. New features will be considered if deemed reasonably ready.&#8221; Derosiers wrote. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Justin Tadlock</strong> published the monthly roundup post on the WordPress Developer Blog <strong><a href=\"https://developer.wordpress.org/news/2025/01/whats-new-for-developers-january-2025/\">What’s new for developers? (January 2025)</a></strong>. You learn about the new Query total block, updates to styling blocks in themes, Playground updates as wells important update for Plugin developers. </p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"state-of-the-word\"><strong>State of the Word</strong></h3>\n\n\n\n<img width=\"652\" height=\"489\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/01/SOTW-2024-Tokyp-Stage-by-Hiromi-Ohta.jpeg?resize=652%2C489&ssl=1\" alt=\"Stage of State of the Word, photo by Hiromi-Ohta @nikosun\" class=\"wp-image-31562\" />\n\n\n\n<p>On December 16, 2024, Matt Mullenweg, Matias Ventura, Junko Fukui, and Mary Hubbard delivered the <a href=\"https://www.youtube.com/watch?v=KLybH5YvIPQ\"><strong>State of the Word 2024</strong></a> from Tokyo. The WordPress YouTube channel has all three videos for those of us, who could not be in Japan.</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://www.youtube.com/watch?v=KLybH5YvIPQ\">State of the Word 2024</a></li>\n\n\n\n<li><a href=\"https://www.youtube.com/watch?v=XPhQFSAvKVw\">Q &amp; A with Matt Mullenweg</a> </li>\n\n\n\n<li><a href=\"https://www.youtube.com/watch?v=Qt5FOQYX1nE\">STOW Panel Discussions</a> on publishing in the open and the future of WordPress in Japan and beyond. </li>\n</ul>\n\n\n\n<p><strong>Nicholas Garofalo</strong> published a recap on the WordPress news site: <a href=\"https://wordpress.org/news/2024/12/state-of-the-word-2024-legacy-innovation-and-community/\"><strong>State of the Word 2024: Legacy, Innovation, and Community</strong></a>. </p>\n\n\n\n<p><strong>Jyolsna J E</strong> posted her recap on the WPTavern. <strong><a href=\"https://wptavern.com/recap-of-the-state-of-the-word-2024\">Recap of the State of the Word 2024&nbsp;</a></strong></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<h3 class=\"wp-block-heading\" id=\"gutenberg-plugin\">Gutenberg plugin</h3>\n\n\n\n<p>Gutenberg 19.9 was released on December 19th. In his post <strong><a href=\"https://make.wordpress.org/core/2024/12/18/whats-new-in-gutenberg-19-9-19-december/\">What’s new in Gutenberg 19.9? (19 December)</a> </strong>manager <strong>Ramon Dodd</strong> highlighted: </p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><a href=\"https://make.wordpress.org/core/2024/12/18/whats-new-in-gutenberg-19-9-19-december/#style-book-in-classic-themes\">Style Book in classic themes</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2024/12/18/whats-new-in-gutenberg-19-9-19-december/#introducing-the-query-total-block\">Introducing the Query Total block</a></li>\n</ol>\n\n\n\n<p>Jyolsna JE has the skinny for you via WPTavern:  <a href=\"https://wptavern.com/gutenberg-19-9-introduces-style-book-to-classic-themes\"><strong>Gutenberg 19.9 Introduces Style Book to Classic Themes</strong></a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Gutenberg 20.0 </strong>was also released. It&#8217;s the 200th release of the Gutenberg plugin. The release post is still in the works but you can read the <a href=\"https://github.com/WordPress/gutenberg/releases/tag/v20.0.0\">changelog on GitHub. </a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>Next week, <strong>Tammie Lister </strong>and I will talk through the two Gutenberg releases on the next episode of the Gutenberg Changelog. It&#8217;s going to be great fun as Tammie was one of the original designers/developers on the Gutenberg team, so the 200th release is a great occasion to talk about the journey in WordPress. Tammie Lister is also the design release lead for WordPress 6.8. </p>\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background\"><div class=\"wp-block-group__inner-container is-layout-constrained wp-block-group-is-layout-constrained\">\n<p>🎙️ Latest episode: <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-113-wordpress-6-8-gutenberg-19-9-20-0-and-20-1-plugin-releases/\">Gutenberg Changelog 113 – WordPress 6.8, Gutenberg 19.9, 20.0 and 20.1 Plugin Releases</a> with special guest Tammie Lister 💕</p>\n\n\n\n<img width=\"652\" height=\"183\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/01/Screenshot-2025-01-17-at-18.13.07.png?resize=652%2C183&ssl=1\" alt=\"Tammie Lister and Birgit Pauli-Haack recording Gutenberg Changelog episode 113\" class=\"wp-image-37366\" />\n</div></div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</h2>\n\n\n\n<p><strong>Ella van Durpe</strong> created an early prototype to  <a href=\"https://wordpress.org/news/2024/12/write-books-with-the-block-editor/\"><strong>Write Books With the Block Editor</strong></a>. The nascent project outside of WordPress is used to create e-books and documents using the Block Editor, even offline. You can export your work in EPUB format for e-book readers like Kindle or as DOCX files. Its features include chapter navigation, cover design, and a demo editor available as a Progressive Web App (PWA). It&#8217;s still evolving, with planned improvements like revision history and better file support. Feedback is welcome to shape its development. You can try it out by going to the <a href=\"https://block-editors.github.io/blockdocs/\">demo editor</a> and install it as a PWA locally via the installation icon in your browser bar: <img width=\"300\" height=\"34\" class=\"wp-image-31511\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/01/Screenshot-2025-01-07-at-16.58.57.png?resize=300%2C34&ssl=1\" alt=\"\" /></p>\n\n\n\n<img width=\"652\" height=\"453\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/01/Screenshot-2024-12-10-at-09.35.01.webp?resize=652%2C453&ssl=1\" alt=\"\" class=\"wp-image-31512\" />\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p><strong><a href=\"https://github.com/krstivoja\">Marko Krstic</a></strong> released his <a href=\"https://wordpress.org/plugins/dblocks-finder/\"><strong>DBlocks Finder</strong></a> plugin for blocks &amp; synced patterns and helps users find and manage Gutenberg blocks and synced patterns within their WordPress sites. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Anne Katzeff</strong> shared in her blog post <a href=\"https://www.askdesign.biz/blog/2024/12/convert-content-from-the-classic-editor-to-blocks/\"><strong>Convert Content from the Classic Editor to Blocks</strong></a>, the few easy steps to converting content from the Classic to the Block editor. Katzeff also <a href=\"https://www.youtube.com/watch?v=5Xwcec4SLMU\">created a video</a> with the steps you can follow along which covers converting blocks one post at a time or Global conversation using the <a href=\"https://wordpress.org/plugins/convert-to-blocks/\"><strong>Convert to Blocks</strong></a> plugin by 10up</p>\n\n\n<div width=\"100%\" class=\"wp-block-newsletterglue-showhide ng-block\">\n\n<div class=\"wp-block-embed__wrapper\">\n<div class=\"toolbelt-video-wrapper\"></div>\n</div>\n\n</div>\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<h2 class=\"wp-block-heading\" id=\"2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</h2>\n\n\n\n<p class=\"has-small-font-size\"><strong>Nick Diego</strong> published a code snippet on the Developer blog on <a href=\"https://developer.wordpress.org/news/snippets/how-to-filter-the-output-of-a-block-binding/\"><strong>How to filter the output of a block binding</strong></a>, using using the&nbsp;<code>block_bindings_source_value</code>&nbsp;filter. He provides a practical example of modifying the display of book prices in different currencies based on a URL query parameter. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In his post <strong><a href=\"https://wordpress.org/news/2025/01/wordpress-themes-need-more-weird-a-call-for-creative-digital-homes/\">WordPress Themes Need More Weird: A Call for Creative Digital Homes</a></strong>, <strong>Nick Hamze</strong>  advocates  bringing back creativity and uniqueness in website design, especially when it comes to WordPress themes. He points out how everyone’s designs are starting to look the same, which kinda kills the vibe of real self-expression. Hamze is urging theme designers to ditch the boring old layouts and go for bold looks that show off strong opinions and suit specific needs. Think of themes like album covers—it&#8217;s all about having personality and making that instant visual impact. Overall, it’s a shout-out to designers to try out those unconventional ideas to jazz up WordPress themes and make the whole web scene way more fun and varied!</p>\n\n\n\n<img width=\"652\" height=\"489\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/01/psychedeli.webp?resize=652%2C489&ssl=1\" alt=\"\" class=\"wp-image-31575\" /><a href=\"https://wordpress.org/themes/psychedeli/\"><em>Theme: Psychedeli by Automattic</em></a>\n\n\n\n<p>In <a href=\"https://developer.wordpress.org/news/2024/12/mastering-light-and-dark-mode-styling-in-block-themes/\"><strong>Mastering light and dark mode styling in block themes</strong></a>, Justin Tadlock shows you how you can implement a light or dark mode depending on the visitors system settings. &#8220;The&nbsp;<code>color-scheme</code>&nbsp;property and&nbsp;<code>light-dark()</code>&nbsp;function are the foundation of the method used in this tutorial. They are both baseline CSS standards in 2024, so the challenge is making them work with WordPress standards.&#8221; Tadlock wrote. <br /></p>\n\n\n\n\n<p><strong>&nbsp;<a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" target=\"_blank\" rel=\"noreferrer noopener\">&#8220;Keeping up with Gutenberg &#8211; Index 2025&#8221;</a>&nbsp;</strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test, and Meta team from Jan. 2024 on. Updated by yours truly. The previous years are also available: <strong><strong><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/\">2020</a>&nbsp;|&nbsp;<a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2021/\">2021</a></strong>&nbsp;|&nbsp;<strong><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2022/\">2022</a></strong></strong>&nbsp;|&nbsp;<strong><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/gutenberg-index-2023\">2023</a></strong> | &nbsp;<strong><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/gutenberg-index-2024\">2024</a></strong></p>\n\n\n\n\n<h2 class=\"wp-block-heading\" id=\"3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </h2>\n\n\n\n<p><strong>Eric Karkovack</strong> posted on the Kinsta blog on how to <a href=\"https://kinsta.com/blog/block-bindings-api/\"><strong>Use the WordPress Block Bindings API to power your blocks</strong></a>. The Block Bindings API, introduced in WordPress 6.5, is a significant advancement for WordPress developers. It allows binding data sources to core WordPress blocks, enabling the creation of dynamic websites more efficiently. </p>\n\n\n\n<p>For more use cases and more in-depth insights, you can also peruse the <em>WordPress Developer Blog</em>. <a href=\"https://developer.wordpress.org/news/?s=Block+Bindings&post_type=post\">This page lists all articles on Block Bindings</a>. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In his video, <a href=\"https://www.youtube.com/watch?v=q8EgRPwHoRQ\"><strong>Create an AMAZING WordPress Carousel with the Interactivity API!</strong></a>, <strong>Elliott Richmond</strong> takes you along on to build a Slider with the create-block scaffolding tool, using the interactivity api template. You&#8217;ll learn in this video:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Setting up a carousel container and managing context variables. </li>\n\n\n\n<li>Calculating offsets and indices dynamically for smooth navigation. </li>\n\n\n\n<li>Adding seamless transitions with CSS for a polished user experience. </li>\n\n\n\n<li>Reverse-engineering forwards and backwards navigation with ease. </li>\n\n\n\n<li>How to prepare your slider for integration with WordPress settings or database values.</li>\n</ul>\n\n\n\n<p>Sounds like a fun programming adventure! Richmond also shared <a href=\"https://github.com/eirichmond/demo-carousel\"><strong>his code on GitHub</strong></a></p>\n\n\n<div width=\"100%\" class=\"wp-block-newsletterglue-showhide ng-block\">\n\n<div class=\"wp-block-embed__wrapper\">\n<div class=\"toolbelt-video-wrapper\"></div>\n</div>\n\n</div>\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>Ryan Welcher also shared a snippet on the WordPress Developer Blog: <br /><a href=\"https://developer.wordpress.org/news/snippets/snippet-how-to-register-a-block-variation-but-hide-it-from-the-inserter/\"><strong>How to register a block variation but hide it from the inserter</strong></a>. &#8220;In some cases, a custom block is overkill, and a block variation is a better solution. For example, a&nbsp;user in the outreach channel&nbsp;wanted to add an attribute to a block that was only used in a template and, based on the existence of that attribute, add some custom functionality.&#8221; Welcher wrote. </p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"playground-updates\">Playground updates</h2>\n\n\n\n<p>This week, and new version of Studio, the WordPress.com local development environment based on Playground, was released. The post <a href=\"https://wordpress.com/blog/2025/01/06/studio-sync/\"><strong>Build Locally, Deploy Globally: Meet Studio Sync for&nbsp;WordPress.com</strong></a> has all the details of the new Sync features. You can use it to </p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Synchronize local sites with WordPress.com hosted sites</li>\n\n\n\n<li>Take a local site live with a WordPress.com hosting plan.</li>\n</ul>\n\n\n\n<p>The Sync feature is available to users with a Business or eCommerce plan. </p>\n\n\n\n<img width=\"652\" height=\"466\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/01/connect-site-studio-wordpress-com-edited.webp?resize=652%2C466&ssl=1\" alt=\"\" class=\"wp-image-31571\" />\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In the online workshop, an online workshop on <a href=\"https://wordpress.tv/2024/12/16/wordpress-playground-for-developers/\"><strong>WordPress Playground for developers</strong></a>,, Core WordPress Playground developer, <strong>Berislav Brgiacak</strong> joined developer educator <strong>Jonathan Bossenger</strong> to share insights into how developers can leverage WordPress Playground. <a href=\"https://gist.github.com/bgrgicak/481009de258e3c0e58c6be48564b4e30\">Their notes are available on GitHub</a>. You&#8217;ll learn </p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>how to configure a playground instance with your custom plugin and theme, and store that in GitHub. </li>\n\n\n\n<li>how to create a blueprint version of the above configuration  to share with clients and coworkers. </li>\n\n\n\n<li>about possible use cases to use Playground. </li>\n</ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Nick Diego </strong>and <strong>Ryan Welcher</strong> also tackled Playground in their latest Developer Hours: <a href=\"https://www.youtube.com/watch?v=jTKMfM4tEqk\"><strong>Everything you need to know about WordPress Playground</strong></a>. WordPress Playground allows users to create fully functional WordPress instances directly in their browser, with no installation or setup required. Beyond spinning up WordPress sites, Playground offered powerful capabilities, from testing plugins and themes to running demos and even supporting app development. No matter how you engage with WordPress, Playground has something valuable to offer. In the session, Welcher and Diego explored tools and workflows for plugin and theme development, demonstrated how to use Playground for testing and support, highlighted key improvements introduced in 2024, and offered a preview of exciting new features planned for 2025.</p>\n\n\n<div width=\"100%\" class=\"wp-block-newsletterglue-showhide ng-block\">\n\n<div class=\"wp-block-embed__wrapper\">\n<div class=\"toolbelt-video-wrapper\"></div>\n</div>\n\n</div>\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Adam Zieliński</strong> did some experimentation over the holidays, and has been using <a href=\"https://adamadam.blog/2025/01/08/wordpress-as-a-git-repo/\"><strong>WordPress as a git repo</strong></a>, using Playground. As to answer the WHY he wrote:  &#8220;I want Notion that’s free, offline first, and where I own my data. I also want to collaborate with my wife and my improve group. WordPress is the perfect foundation, the hosted version solves many of my problems, but I&nbsp;<em>really</em>&nbsp;want to version my data as static files.&#8221;</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n\n<p><strong><a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Need a plugin .zip from Gutenberg&#8217;s master branch?</a></strong><br />Gutenberg Times provides daily build for testing and review. </p>\n\n\n<p>Now also available via <a href=\"https://playground.wordpress.net/?blueprint-url=https://gutenbergtimes.com/wp-content/uploads/2020/11/playnightly.json\">WordPress Playground</a>. There is no need for a test site locally or on a server. Have you been using it? <a href=\"mailto:pauli@gutenbergtimes.com\">Email me </a>with your experience</p>\n\n\n<p><img alt=\"GitHub all releases\" src=\"https://img.shields.io/github/downloads/bph/gutenberg/total?style=for-the-badge\" /></p>\n\n\n\n\n<p class=\"has-text-align-center has-small-font-size\"><em>Questions? Suggestions? Ideas? </em><br /><em>Don&#8217;t hesitate to send <a href=\"mailto:pauli@gutenbergtimes.com\">them via email</a> or</em><br /><em> send me a message on WordPress Slack or Twitter @bph</em>.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p class=\"has-text-align-center has-small-font-size\">For questions to be answered on the <a href=\"http://gutenbergtimes.com/podcast\">Gutenberg Changelog</a>, <br />send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n\n<p>Featured Image: Exhibition: <a href=\"https://lastsupper.live/munich/\">The Last Supper Motor world Munich</a> Photo by Birgit Pauli-Haack</p>\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n\n\n<p class=\"has-text-align-left\"><strong>Don&#8217;t want to miss the next Weekend Edition? </strong></p>\n\n<form class=\"wp-block-newsletterglue-form ngl-form ngl-portrait\" action=\"https://gutenbergtimes.com/feed/\" method=\"post\"><div class=\"ngl-form-container\"><div class=\"ngl-form-field\"><label class=\"ngl-form-label\" for=\"ngl_email\"><br />Type in your Email address to subscribe.</label><div class=\"ngl-form-input\"><input type=\"email\" class=\"ngl-form-input-text\" name=\"ngl_email\" id=\"ngl_email\" /></div></div><button type=\"submit\" class=\"ngl-form-button\">Subscribe</button><p class=\"ngl-form-text\">We hate spam, too, and won&#8217;t give your email address to anyone <br />except Mailchimp to send out our Weekend Edition</p></div><div class=\"ngl-message-overlay\"><div class=\"ngl-message-svg-wrap\"></div><div class=\"ngl-message-overlay-text\">Thanks for subscribing.</div></div><input type=\"hidden\" name=\"ngl_list_id\" id=\"ngl_list_id\" value=\"26f81bd8ae\" /><input type=\"hidden\" name=\"ngl_double_optin\" id=\"ngl_double_optin\" value=\"yes\" /></form>\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n\n\n\n\n<p></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 11 Jan 2025 11:45:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:21;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Matt: Status Quo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=134651\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"https://ma.tt/2025/01/status-quo/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:355:\"<p><a href=\"https://wordpress.org/news/2025/01/jkpress/\">I wrote over on WordPress.org about breaking the status quo with a Joost/Karim fork</a>. It&#8217;s a perfect time as <a href=\"https://automattic.com/2025/01/09/aligning-automattics-sponsored-contributions-to-wordpress/\">Automattic is re-focusing its work while the legal stuff is going on</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 11 Jan 2025 02:38:47 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:22;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"WordPress.org blog: Joost/Karim Fork\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=18394\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"https://wordpress.org/news/2025/01/jkpress/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:9256:\"<p>Making great software, great product that stands the test of time and not just survives but thrives through monumental technological shifts is <em>incredibly hard</em>. That challenge is part of the reason I love doing it. There is never a dull day, and the reward of seeing the code you wrote used by the most amazing creators in the world is an indescribable pleasure. <strong>When I see what people create with WordPress, some days I feel like I’m grinding pigment for Leonardo da Vinci or slitting a quill for Beethoven.</strong></p>\n\n\n\n<p>In open source, one thing that makes it even harder to ship great software is bringing together disparate groups of contributors who may have entirely different incentives or missions or philosophies about how to make great work. Working together on a team is such a delicate balance, and even one person rowing in the wrong direction can throw everyone else off.</p>\n\n\n\n<p>That’s why periodically I think it is very healthy for open source projects to fork, it allows for people to try out and experiment with different forms of governance, leadership, decision-making, and technical approaches. As I&#8217;ve said, forking is beautiful, and <a href=\"https://wordpress.org/news/2024/10/spoon/\">forks have my full support and we&#8217;ll even link and promote them</a>.</p>\n\n\n\n<p><a href=\"https://joost.blog/\">Joost</a> is a self-proclaimed leader in the SEO space, an industry known for making the web better. He asked for and <a href=\"https://joost.blog/leading-marketing-communication-for-wordpress/\">I gave him WordPress marketing leadership responsibility</a> in January 2019 and <a href=\"https://joost.blog/why-im-stepping-down-from-my-wordpress-marketing-role/\">he stepped down in June of 2019</a>, I think we would both agree in those 5 months he was not effective at leading the marketing team or doing the work himself.</p>\n\n\n\n<p><a href=\"https://marucchi.com/\">Karim</a> leads a small WordPress agency called <a href=\"https://crowdfavorite.com/\">Crowd Favorite</a> which counts clients such as Lexus and ABC and employs ~50 people.</p>\n\n\n\n<p>Both are men I have shared meals with and consider of the highest integrity. I would trust them to watch any of my 15 godchildren for a day. These are good humans. Now go do the work. It probably won&#8217;t happen on day one, but Joost and Karim&#8217;s fork, which I&#8217;ll call JKPress until they come up with a better name, has a number of ideas they want to try out around governance and architecture. While Joost and Karim will be unilaterally in charge in the beginning, it sounds <a href=\"https://joost.blog/wordpress-leadership/\">like they want to set up</a>:</p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>A non-profit foundation, with a broad board to control their new project.</li>\n\n\n\n<li>A website owned by that foundation which hosts community resources like a plugin directory, forums, etc.</li>\n\n\n\n<li>No more centralized and moderated plugin and theme directories with security guidelines or restrictions are what plugins are allowed to do like putting banners in your admin or gathering data, everything done in a federated/distributed manner.</li>\n\n\n\n<li>The trademarks for their new project will either be public domain or held by their foundation.</li>\n\n\n\n<li>&#8220;Modernization&#8221; of the technology stack, perhaps going a Laravel-like approach or changing how WordPress&#8217; architecture works.</li>\n\n\n\n<li>Teams and committees to make decisions for everything, so no single person has too much power or authority.</li>\n</ol>\n\n\n\n<p><a href=\"https://marucchi.com/wordpress-leadership-continued/\">Karim has a similar post</a>. Joost says he has the time and energy to lead:</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">So <a href=\"https://twitter.com/photomatt?ref_src=twsrc%5Etfw\">@photomatt</a> &#8211; I saw the post by <a href=\"https://twitter.com/automattic?ref_src=twsrc%5Etfw\">@automattic</a>.<br /><br />I\'m ready to lead the next releases. I am sure plenty of people and companies are willing to help me and we\'ve got plenty of ideas on what we should be doing.<a href=\"https://twitter.com/hashtag/WordPress?src=hash&ref_src=twsrc%5Etfw\">#WordPress</a></p>&mdash; Joost de Valk (@jdevalk) <a href=\"https://twitter.com/jdevalk/status/1877731220135538728?ref_src=twsrc%5Etfw\">January 10, 2025</a></blockquote>\n</div>\n\n\n\n<p>Now, as core committer Jb Audras (not employed by me or Automattic) points out, within WordPress we have a process in which people earn the right to lead a release:</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Before leading any major release of WordPress, please start with leading a minor one <a href=\"https://twitter.com/jdevalk?ref_src=twsrc%5Etfw\">@jdevalk</a>. Then, apply to be Triage Lead or Coordination Lead Deputy for a major release. These are the steps everyone in our community should follow before claiming to run « the next releases ».</p>&mdash; Jb Audras (@AudrasJb) <a href=\"https://twitter.com/AudrasJb/status/1877833087473565785?ref_src=twsrc%5Etfw\">January 10, 2025</a></blockquote>\n</div>\n\n\n\n<p>However in Joost and Karim&#8217;s new project, they don&#8217;t need to follow our process or put in the hours to prove their worth within the WordPress.org ecosystem, they can just lead by example by shipping code and product to people that they can use, evaluate, and test out for themselves. If they need financial or hosting support is sounds like WP Engine wants to support their fork:</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">We appreciate <a href=\"https://twitter.com/jdevalk?ref_src=twsrc%5Etfw\">@jdevalk</a> and <a href=\"https://twitter.com/karimmarucchi?ref_src=twsrc%5Etfw\">@karimmarucchi</a> thoughtful call for constructive conversation, change and evolved leadership within the WordPress community. Moments of disruption challenge all of us to reflect and to act.<br /><br />WordPress’s success as the most widely used CMS is not the…</p>&mdash; WP Engine (@wpengine) <a href=\"https://twitter.com/wpengine/status/1870242287218790849?ref_src=twsrc%5Etfw\">December 20, 2024</a></blockquote>\n</div>\n\n\n\n<p>Awesome! (Maybe it&#8217;s so successful they rebrand as JK Engine in the future.) WP Engine, with its half a billion in revenue and 1,000+ employees, has more than enough resources to support and maintain a legitimate fork of WordPress. And they are welcome to use all the GPL code myself and others have created to do so, including many parts of WordPress.org that are open source released under the GPL, and Gutenberg which is GPL + MPL. </p>\n\n\n\n<p>Joost also is a major investor (owner?) in <a href=\"https://poststatus.com/\">Post Status</a> (which he tried to sell to me a few months ago, and I declined to buy, perhaps kicking off his consternation with me), so they have a news media site and Slack instance already ready to go. He also is an investor in <a href=\"https://patchstack.com/\">PatchStack</a> and appears to be trying to create a new business around something called <a href=\"https://progressplanner.com/\">Progress Planner</a>, both of which could be incorporated into the new non-profit project to give them some competitive distinctions from WordPress.</p>\n\n\n\n<p>To make this easy and hopefully give this project the push it needs to get off the ground, I&#8217;m deactivating the .org accounts of <a href=\"https://profiles.wordpress.org/joostdevalk/\">Joost</a>, <a href=\"https://profiles.wordpress.org/pirazo/\">Karim</a>, <a href=\"https://profiles.wordpress.org/sereedmedia/\">Se Reed</a>, <a href=\"https://profiles.wordpress.org/idea15/\">Heather Burns</a>, and <a href=\"https://profiles.wordpress.org/mor10/\">Morten Rand-Hendriksen</a>. I strongly encourage anyone who wants to try different leadership models or align with WP Engine to join up with their new effort.</p>\n\n\n\n<p>In the meantime, on top of my <a href=\"https://automattic.com/\">day job running a 1,700+ person company with 25+ products</a>, which I typically work 60-80 hours a week on, I&#8217;ll find time on nights and weekends to work on WordPress 6.8 and beyond. Myself and other &#8220;non-sponsored&#8221; contributors have been doing this a long time and while we may need to reduce scope a bit I think we can put out a solid release in March.</p>\n\n\n\n<p>Joost and Karim have a number of bold and interesting ideas, and I&#8217;m genuinely curious to see how they work out. The beauty of open source is they can take all of the GPL code in WordPress and ship their vision. You don&#8217;t need permission, you can just do things. If they create something that&#8217;s awesome, we may even merge it back into WordPress, that ability for code and ideas to freely flow between projects is part of what makes open source such an engine for innovation. I propose that in a year we do a WordPress + JKPress summit, look at what we&#8217;ve shipped and learned in the process, which I&#8217;d be happy to host and sponsor in NYC next January 2026. The broader community will benefit greatly from this effort, as it&#8217;s giving us a true chance to try something different and see how it goes.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 11 Jan 2025 02:06:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:23;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"Gravatar: Designing a Unique Digital Persona: A Social Media Branding Strategy\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"http://blog.gravatar.com/?p=2384\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://blog.gravatar.com/2025/01/10/personal-branding-social-media/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:19428:\"<p>Social media has become one of the most effective places for building and shaping personal brands, especially on sites like LinkedIn, Twitter, and Instagram, which allow you to demonstrate expertise, connect with industry peers, gain knowledge, and grow a following. Besides all of this, your social media presence also often serves as a first impression for potential employers, clients, or collaborators, so it’s very important to have a strategy at hand.&nbsp;</p>\n\n\n\n<p>First, you’ll need to recognize that social media can quickly amplify both positive and negative aspects of your brand. Consistent, thoughtful posting can establish credibility and authority, while missteps can rapidly damage your reputation. Your &#8220;digital footprint&#8221; – the trail of data you leave online – has a lasting impact on your <a href=\"https://blog.gravatar.com/2024/04/10/personal-branding-tools/\">personal brand</a>.  </p>\n\n\n\n<p>To help you on this journey, we’ll go through all the aspects of a successful online persona and what you can do to make the most out of your digital presence. </p>\n\n\n\n<p>Let’s begin!&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Why consistency across platforms is so important&nbsp;</strong></h2>\n\n\n\n<p>Building a strong personal brand relies on maintaining a consistent image across social media platforms. This uniformity helps people recognize and remember you more easily. When your profiles look and feel similar on different sites, you&#8217;re reinforcing your brand with each interaction.</p>\n\n\n\n<p>Think of it like a jigsaw puzzle. Each social media profile is a piece, and when they fit together, they create a clear picture of who you are and what you stand for. Inconsistencies can muddy the waters and weaken your brand&#8217;s impact.</p>\n\n\n\n<p><a href=\"https://gravatar.com/\">Gravatar</a> is a tool that offers a solution to this challenge. It acts as a central hub for managing your profile information and avatar across multiple platforms. With its &#8220;Update Once, Sync Everywhere&#8221; feature, you save time and ensure a uniform online presence.</p>\n\n\n\n<a href=\"https://gravatar.com/connect/?gravatar_from=blog\"><img width=\"3243\" height=\"729\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/12/free_profile_cta.png\" alt=\"\" class=\"wp-image-2616\" /></a>\n\n\n\n<p>Gravatar integrates with many platforms, including <a href=\"https://wordpress.com/\">WordPress</a>, <a href=\"https://github.com/\">GitHub</a>, and <a href=\"https://slack.com/\">Slack</a>. Beyond profile pictures, it syncs your bio, social links, and other profile elements, creating a cohesive online identity that strengthens your personal brand.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>How to strategically separate personal and professional profiles&nbsp;</strong></h2>\n\n\n\n<p>Keeping your personal and professional online identities separate is a smart move. It helps protect your privacy, maintains professionalism, and allows for more targeted networking. But how do you do this effectively while still maintaining a cohesive personal brand?</p>\n\n\n\n<p>Gravatar offers a unique solution by linking identities to email addresses rather than names. This allows you to create and manage multiple profiles easily – one for work, one for personal life, and even one for anonymous use if needed. To set this up, simply use different email addresses for each profile you want to create.</p>\n\n\n\n<p>Here are some tips for maintaining consistency between different profiles while catering to different audiences:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Use similar color schemes or design elements across profiles to maintain brand recognition.</li>\n\n\n\n<li>Adapt your language and content to suit the audience of each profile. Your professional profile might be more formal, while your personal one could be more casual.</li>\n\n\n\n<li>Consider using different profile pictures across your profiles, depending on their intent. For example, a suit for your professional profile, and casual attire for your personal one.</li>\n</ul>\n\n\n\n<p>Gravatar&#8217;s privacy settings allow you to control what information is visible on each profile. This gives you full control over your data and what you share in different contexts.</p>\n\n\n\n<img width=\"660\" height=\"331\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/11/privacy-settings-gravatar-1.png?w=660\" alt=\"Privacy settings for verified links on a Gravatar profile\" class=\"wp-image-2401\" />\n\n\n\n<h2 class=\"wp-block-heading\"><strong>How to choose the right platforms for your personal brand</strong></h2>\n\n\n\n<p>Picking the right social media platforms for your personal brand is like choosing the stage for your performance. You want a venue where your audience gathers and where your talents shine brightest.</p>\n\n\n\n<p>Start by understanding what a personal brand really is. It&#8217;s the unique mix of skills, experience, and personality you want the world to see. With that in mind, here&#8217;s how to choose your platforms:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Find your audience: </strong>Where do the people you want to reach hang out online? If you&#8217;re targeting professionals, <a href=\"https://www.linkedin.com/\">LinkedIn</a> might be your go-to. For a younger, more visual audience, <a href=\"https://www.instagram.com/\">Instagram</a> or <a href=\"https://www.tiktok.com/\">TikTok</a> could be better bets.</li>\n\n\n\n<li><strong>Match your content style: </strong>What kind of content do you enjoy creating? If you love writing, <a href=\"https://x.com/\">X (formerly Twitter)</a> or LinkedIn might suit you. For visual storytellers, Instagram or <a href=\"https://www.youtube.com/\">YouTube</a> could be ideal.</li>\n\n\n\n<li><strong>Align with your goals: </strong>What are you trying to achieve? If it&#8217;s professional networking, focus on LinkedIn. For thought leadership, X or <a href=\"https://bsky.app/\">Bluesky</a> might work well. To showcase your work visually, consider Instagram or <a href=\"https://www.behance.net/search/projects\">Behance</a>.</li>\n</ul>\n\n\n\n<p>Popular platforms and their strengths:</p>\n\n\n\n<table class=\"has-fixed-layout\"><tbody><tr><td><strong>Platform</strong></td><td><strong>Best for</strong></td></tr><tr><td>LinkedIn</td><td>Professional networking and B2B connections</td></tr><tr><td>X/Twitter</td><td>Quick insights and industry conversations</td></tr><tr><td>Bluesky</td><td>Similar to Twitter, but decentralized</td></tr><tr><td>Instagram</td><td>Visual content and lifestyle branding</td></tr><tr><td>YouTube</td><td>In-depth tutorials and vlogs</td></tr><tr><td>TikTok</td><td>Short-form, entertaining videos</td></tr></tbody></table>\n\n\n\n<p><br />Start with one or two platforms where you can consistently create high-quality content. As you grow more comfortable, you can expand to others. Think quality over quantity: It&#8217;s better to excel on fewer platforms than to spread yourself thin across many.</p>\n\n\n\n<p>When setting up your profiles, ensure your bio, profile picture, and overall aesthetic align with your personal brand. Use similar usernames and social media handles across platforms when possible to make it easy for people to find you.</p>\n\n\n\n<p>And don&#8217;t forget to review and update your profiles regularly. Your skills, achievements, and brand messaging will evolve over time, and your online presence should reflect that.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Understand what success looks like on social media&nbsp;</strong></h2>\n\n\n\n<p>Success on social media isn&#8217;t just about racking up followers. It&#8217;s about achieving your specific goals. Are you aiming to become an influencer, or are you trying to drive conversions for your business? Your strategy should align with these objectives.</p>\n\n\n\n<p>If you&#8217;re after conversions, focus on engagement rates, click-throughs, and lead generation. For brand awareness, keep an eye on reach, impressions, and share of voice. Remember, vanity metrics like follower count can be misleading.</p>\n\n\n\n<p>Quality trumps quantity when it comes to followers. This aligns with <a href=\"https://kk.org/thetechnium/1000-true-fans/\">Kevin Kelly&#8217;s &#8220;1,000 True Fans&#8221; principle</a>, which suggests that to be successful, you don&#8217;t need millions of followers but rather 1,000 true fans who deeply value your work.</p>\n\n\n\n<p>These dedicated followers are more likely to engage with your content, share it, and convert into customers or clients. They provide a stable foundation for your personal brand and can be more valuable than a larger group of passive followers.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Deciding on posting frequency and sticking to a schedule</strong></h2>\n\n\n\n<p>Consistency is key when building your personal brand on social media, and it can only be achieved if you’re realistic about your schedule and the posting frequency that you can maintain long-term without sacrificing content quality. This could range from daily posts to a few times a week, depending on your capacity and the platforms you&#8217;re using.</p>\n\n\n\n<p>Create a content calendar to plan your posts in advance. This helps ensure a balanced mix of content types and topics. Use scheduling tools to automate your posts, saving time and maintaining consistency.</p>\n\n\n\n<p>Experiment with different posting times to find when your audience is most active and engaged. Many social platforms offer insights on optimal posting times for your specific followers.</p>\n\n\n\n<p>Keep in mind that it&#8217;s better to post high-quality content less frequently than to publish subpar content just to meet a quota. Your followers will appreciate thoughtful, valuable posts more than a constant stream of mediocre updates.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Studying people with similar personal brands</strong></h2>\n\n\n\n<p>Analyzing successful personal brands in your niche can provide valuable insights. Focus on extracting unique elements from their content strategies, audience engagement tactics, and cross-platform synergies. Use social listening tools and AI-powered analytics to conduct in-depth competitor analysis.</p>\n\n\n\n<p>Look for emerging trends and untapped opportunities within your niche by studying patterns across multiple successful brands. The goal isn&#8217;t to imitate, but to innovate and adapt these insights to your unique voice and style.</p>\n\n\n\n<p>Gravatar&#8217;s consolidated profile view can streamline your research process. It allows you to quickly assess an influencer&#8217;s digital footprint across various platforms, revealing valuable insights into their overall brand consistency and platform-specific strategies.</p>\n\n\n\n<p>An interesting approach is to explore “<a href=\"https://www.linkedin.com/pulse/carl-jungs-12-archetypes-strong-brand-identity-niels-kramer/\">brand archetypes</a>”. These archetypes, first identified by psychologist Carl Jung, include personas like the Sage (sharing wisdom), the Creator (driving innovation), and the Hero (overcoming challenges). For example, <a href=\"https://www.apple.com/\">Apple</a> embodies the Creator archetype through innovative design and creative empowerment, while <a href=\"https://www.google.com/\">Google</a> represents the Sage through its focus on knowledge and information sharing.</p>\n\n\n\n<p>Analyze profiles of successful people in your field to identify which archetype they embody. Look at their content style, messaging patterns, and how they engage with their audience. Don&#8217;t just copy them – use these insights to refine your unique voice while staying true to your chosen archetype. Your Gravatar profile can help reinforce this archetype through consistent visual and written elements across platforms.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Mastering the art of collaborations</strong></h2>\n\n\n\n<p>When thinking about collaborations, many people imagine regular guest posts or social media shoutouts. However, you can go way beyond those. Experiment with innovative formats like multi-platform storytelling campaigns, collaborative product launches, or industry-specific challenges.</p>\n\n\n\n<p>When approaching potential collaborators, spend some time on the partnership proposals. Clearly outline mutual benefits and set realistic expectations. After a few tries, start analyzing metrics of successful collaborations to understand their full impact on brand growth and audience engagement.</p>\n\n\n\n<p>Gravatar&#8217;s verified links feature can help establish credibility when reaching out to potential collaborators. An up-to-date Gravatar profile ensures that collaborators always have access to your latest work and achievements, facilitating more meaningful partnerships.</p>\n\n\n\n<p>Consider forming a &#8220;collaboration ring&#8221; – a strategic alliance of complementary personal brands that regularly support and amplify each other&#8217;s content. This approach can create a network effect, expanding your reach and influence exponentially.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Understanding how to use AI strategically in social posting</strong></h2>\n\n\n\n<p>With time, more and more social media strategies use AI to increase productivity and generate ideas.&nbsp;</p>\n\n\n\n<p>Consider using AI-driven sentiment analysis to fine-tune your messaging. These tools can help you understand how your audience perceives your content, allowing you to adjust your tone and style for maximum impact.</p>\n\n\n\n<p>For example, Natural Language Processing (NLP) analyzes audience comments, helping you tailor your content to their interests and concerns. Meanwhile, computer vision AI can optimize your visual content for better engagement.</p>\n\n\n\n<p>AI-powered chatbots are also a staple for handling routine follower interactions, freeing up your time for more strategic tasks. And predictive analytics can identify optimal content themes and formats for different platforms and audience segments.</p>\n\n\n\n<p>However, it&#8217;s crucial to maintain authenticity. Use AI as a tool to augment your creativity, not replace it. The most effective personal brands blend AI-driven insights with a genuine human touch.</p>\n\n\n\n<p>When using AI, be transparent with your audience. They&#8217;ll appreciate your honesty, and it can even position you as a forward-thinking brand embracing cutting-edge technology.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>The importance of a digital footprint management strategy&nbsp;</strong></h2>\n\n\n\n<p>Your digital footprint – the trail of data you leave online – is very important in shaping your personal brand. Every post, comment, and like contributes to the digital persona you&#8217;re creating. Managing this footprint is essential for maintaining a positive professional image and seizing career opportunities.</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Start by regularly reviewing your online presence across all platforms. Set up <a href=\"https://www.google.com/alerts\">Google Alerts</a> for your name to stay informed about what&#8217;s being said about you online.&nbsp;</li>\n\n\n\n<li>Be mindful of what you post and comment on, ensuring it aligns with your personal brand values.</li>\n\n\n\n<li>Create and share content that reinforces your expertise and professional interests. This proactive approach helps shape your digital footprint positively.&nbsp;</li>\n\n\n\n<li>Utilize privacy settings on social media platforms to control what information is publicly visible.</li>\n</ul>\n\n\n\n<p>Remember, your digital footprint has long-term implications. Today&#8217;s casual post could impact future opportunities. Strive for a balance between authenticity and professionalism in your online interactions.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>How to use social media analytics to your advantage&nbsp;</strong></h2>\n\n\n\n<p>Social media analytics are powerful tools that provide insights into your content performance and audience behavior.&nbsp;</p>\n\n\n\n<p>Key metrics to track include:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Engagement: </strong>Likes, comments, shares</li>\n\n\n\n<li><strong>Reach:</strong> How many people see your content</li>\n\n\n\n<li><strong>Follower growth: </strong>Track growth over time, and take note of anything you post that’s cause a sudden burst in followers.</li>\n\n\n\n<li><strong>Click-through rates on shared links: </strong>Which links are getting the most engagement?</li>\n\n\n\n<li><strong>Audience demographics:</strong> Age, location, interests</li>\n</ul>\n\n\n\n<p>Use these metrics to improve your content strategy. If posts about a certain topic get more engagement, consider creating more content in that area. Most major social media platforms offer built-in analytics tools – familiarize yourself with these.</p>\n\n\n\n<p>Set specific goals for your social media presence and use analytics to track progress. This data-driven approach allows you to make informed decisions about your content and posting strategy.</p>\n\n\n\n<p>We recommend that you experiment with posting at different times and use analytics to find your audience&#8217;s most active hours.&nbsp;</p>\n\n\n\n<p>While numbers are important, they&#8217;re not everything. Use analytics as a guide, but don&#8217;t let them stifle your creativity or authenticity. The most successful personal brands balance data-driven decisions with genuine, value-driven content.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Elevate your personal brand with Gravatar&nbsp;</strong></h2>\n\n\n\n<img width=\"660\" height=\"343\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/11/gravatar-new-homepage-1.png?w=660\" alt=\"Gravatar homepage\" class=\"wp-image-2398\" />\n\n\n\n<p>Throughout this guide, we&#8217;ve explored numerous strategies to elevate your personal brand on social media. From maintaining consistency across platforms to leveraging AI and analytics, each approach contributes to a stronger, more impactful online presence.</p>\n\n\n\n<p>Gravatar is a powerful tool that can be invaluable in building a strong online presence and reinforcing your personal brand. Its most important features include:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>A consistent avatar across thousands of websites</li>\n\n\n\n<li>A centralized profile with your bio and links</li>\n\n\n\n<li>Easy updating: change your Gravatar once, and it updates everywhere</li>\n</ul>\n\n\n\n<p>With Gravatar, you save time and ensure consistency in your online presence. It&#8217;s particularly useful if you&#8217;re active on multiple platforms or managing different online identities.</p>\n\n\n\n<p>Taking control of your online image starts with simple steps, and setting up a Gravatar profile is an excellent place to begin. It forms the foundation of a cohesive personal brand across the web, allowing you to present a unified, professional image wherever you engage online.</p>\n\n\n\n<p>Like any worthwhile endeavor, your personal brand is an ongoing project. Regularly revisit your strategy, stay open to new tools and trends, and always prioritize providing value to your audience. With persistence and the right tools like Gravatar, you can build a personal brand that truly stands out.</p>\n\n\n\n<p><a href=\"https://gravatar.com/profile\">Create your free Gravatar profile today.</a></p>\n\n\n\n<a href=\"https://gravatar.com/connect/?gravatar_from=blog\"><img width=\"3243\" height=\"729\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/12/free_profile_cta.png\" alt=\"\" class=\"wp-image-2616\" /></a>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 10 Jan 2025 15:07:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Ronnie Burt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:24;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Matt: Studio Sync\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=134649\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://ma.tt/2025/01/studio-sync/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1908:\"<p><a target=\"_blank\" href=\"http://wordpress.com/\" rel=\"noreferrer noopener\">WordPress.com</a>&nbsp;launched&nbsp;<a target=\"_blank\" href=\"https://wordpress.com/blog/2025/01/06/studio-sync/\" rel=\"noreferrer noopener\">a new update to Studio this week</a>, and we’re&nbsp;<a target=\"_blank\" href=\"https://www.searchenginejournal.com/wordpress-com-launches-studio-sync-local-development/536927/\" rel=\"noreferrer noopener\">already seeing some buzz</a>.</p>\n\n\n\n<p><a target=\"_blank\" href=\"https://developer.wordpress.com/studio/\" rel=\"noreferrer noopener\">Studio</a>&nbsp;is our free and open source app for local WordPress development, enabling you to spin up unlimited WordPress sites on your personal computer.</p>\n\n\n\n<p>Through its newest feature, Studio Sync, you have complete freedom to:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Connect your Studio site to and from a <a href=\"http://wordpress.com/\" target=\"_blank\" rel=\"noreferrer noopener\">WordPress.com</a> production or staging site, included for free in <a href=\"https://wordpress.com/hosting/\" target=\"_blank\" rel=\"noreferrer noopener\">Business and Commerce hosting plans</a>.</li>\n\n\n\n<li>Push and pull changes as a team by connecting a local Studio site to a shared <a href=\"http://wordpress.com/\" target=\"_blank\" rel=\"noreferrer noopener\">WordPress.com</a> site.</li>\n\n\n\n<li>Synchronize your local and hosted sites at any time with one click.</li>\n</ul>\n\n\n\n<p>Studio is an excellent tool to have in your development arsenal, and you can&nbsp;<a target=\"_blank\" href=\"https://developer.wordpress.com/studio/\" rel=\"noreferrer noopener\">download it for free</a>, explore the&nbsp;<a target=\"_blank\" href=\"https://developer.wordpress.com/docs/developer-tools/studio/\" rel=\"noreferrer noopener\">docs</a>, and become a contributor on&nbsp;<a target=\"_blank\" href=\"https://github.com/Automattic/studio/issues\" rel=\"noreferrer noopener\">GitHub</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 09 Jan 2025 18:30:02 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:25;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:118:\"WPTavern: Patchstack Rejected as WordCamp Europe 2025 Sponsor Due to Lack of ‘Significant’ WordPress Contributions\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=185079\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:123:\"https://wptavern.com/patchstack-rejected-as-wordcamp-europe-2025-sponsor-due-to-lack-of-significant-wordpress-contributions\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:10879:\"<p>Oliver Sild, CEO of Patchstack, <a href=\"https://x.com/OliverSild/status/1876916364994019526\">shared on X</a>&nbsp; an email he received from WordCamp Central explaining why Patchstack&#8217;s application to sponsor WordCamp Europe 2025 was rejected.</p>\n\n\n\n<img src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXfL4aIgbciGnlDFKqlKZwZlNOMEiy30zHz6RZmugC7jZ0z1YXc6UEqPyKvGzjMGKLPHDPnjJ-e8TYBdN_FJTnapK_GGOp6oQ-RHWzsICDUSwz3FfODgKSDP8an-9vWDWolWvuLmHA?key=ZgBlIz0kaMWTnVmfm77jMpxV\" alt=\"Screenshot of the email from WordCamp Central.\" />\n\n\n\n<p>The email, written by <a href=\"https://profiles.wordpress.org/foosantos/\">Felipe Santos</a>, detailed a shift in the sponsorship process. It stated that “the Community team is transitioning from a first-come, first-served model to a new approach. While the sponsorship process will remain familiar, we are placing greater emphasis on contributions and the relationships companies maintain with the WordPress project. We recognize that this shift may feel frustrating, but <strong>sponsoring WordCamps is a privilege</strong>, and we aim to increase expectations in this area moving forward.”</p>\n\n\n\n<p>Santos suggested that Patchstack pledge to <a href=\"https://wordpress.org/five-for-the-future/\">Five for the Future</a> as it “would be an excellent way to demonstrate commitment and build trust within the community.” He added that they will re-evaluate Patchstack’s eligibility “once <strong>significant contributions</strong> have been established.”</p>\n\n\n\n<p>Sild countered that “the tier we applied to still has 6 spots open. I know companies who were accepted for sponsorship after we were rejected who also don&#8217;t have five for the future.”</p>\n\n\n\n<p>Patchstack is a leading name in WordPress security with a mission to make open-source safer and raised $5 million in its <a href=\"https://wptavern.com/patchstack-secures-5m-in-series-a-funding\">Series A funding round</a> last year. &nbsp;They published 76% of all known WordPress-related security vulnerabilities and became the largest CVE (Common Vulnerabilities and Exposures) Naming Authority by volume in 2023. Their Zero-Day Bug Bounty Program awarded the highest bounty in WordPress history – $14,400- to John Blackbourn, who exposed a critical vulnerability in the LiteSpeed Cache plugin last month.</p>\n\n\n\n<p>Sild also shared that Patchstack contributed to Five for the Future till the person who pledged the hours via Patchstack left the company. Sild also highlighted Patchstack’s other contributions &#8211; reporting vulnerabilities in plugins and ensuring the security of the ecosystem, and running a <a href=\"https://patchstack.com/for-plugins/\">managed VDP platform</a> built in collaboration with the European Union.&nbsp;</p>\n\n\n\n<p>He continued, “Over 50% of all new security vulnerability disclosures in the WordPress ecosystem were found &amp; reported by our community of security researchers. All of the validating, triaging and coordination was done by our team for the WordPress ecosystem for free. That&#8217;s 4566 individual vulnerabilities in 2024 alone.”</p>\n\n\n\n<p>Interestingly, there is nothing about contributing to the Five for the Future mentioned in the <a href=\"https://make.wordpress.org/community/handbook/wordcamp-organizer/planning-details/fundraising/local-wordcamp-sponsorship/\">WordCamp Sponsorship Handbook</a>, <a href=\"https://make.wordpress.org/community/files/2017/08/2017-WordCamp-Sponsorship-Agreement.pdf\">WordCamp Sponsorship Agreement</a> or <a href=\"https://europe.wordcamp.org/2025/call-for-sponsors/\">WordCamp Europe&#8217;s Call for Sponsors</a> page. Sponsorship packages are still open for the 2025 event at the time of publishing this article. </p>\n\n\n\n<p>Sild’s post sparked widespread criticism about the rejection and the community soon came out to support Sild. Simon Harper, owner of SRH Design <a href=\"https://x.com/SRHDesign/status/1876935002811756792\">shared</a>, “It is ridiculous to think that Oliver, the Patchstack team and volunteers have &#8220;not contributed enough&#8221; to WordPress.</p>\n\n\n\n<p>Taco Verdo of Emilia Capital was <a href=\"https://x.com/TacoVerdo/status/1876922111341543474\">disappointed</a>, “Sometimes I really don&#8217;t understand what we&#8217;re doing in the WordPress community team&#8230; :(“</p>\n\n\n\n<p>Francesca Marano, &nbsp;Head of Partnership at Patchstack, <a href=\"https://x.com/FrancescaMarano/status/1876927137912926297\">dubbed</a> it “Another sad day open source”. She shared, “As someone who was active for a long time in the community team and was around when the Five for the Future program was created, I am surprised and saddened by a few things: 1. Not having the change publicly discussed in the community make blog. 2. Not having the criteria added to the sponsorship page (Still shows only GPL) 3. Relying on FFtF data, which has been unreliable since the beginning. I was still active in the team when we started discussing how to improve the program,”</p>\n\n\n\n<p>Todd E Jones, founder of Copyflight, <a href=\"https://x.com/tejones/status/1876999042149868013\">tweeted</a>, “Right now I fail to see how A8 has real concerns for security or accessibility. Dismissive of experts in both areas.”&nbsp; Web developer Robert DeVore also shared his <a href=\"https://x.com/deviorobert/status/1876996387100917823\">thoughts</a>, “Without programs like Patchstack, the WordPress ecosystem would be a wasteland (worse than it is now). Anybody who doesn&#8217;t see that is a blind idiot.”</p>\n\n\n\n<p>Co-founder of Nevma, Takis Bouyouris, had this to <a href=\"https://x.com/takisbig/status/1876948123437674802\">say</a>: “The #WordPress Community needs to stop being ridiculed like this. Once we had hard and fair rules in @WCEurope. Observe the GPL, observe the CoC. Now contributing to the community becomes some convoluted madness where you cannot contribute unless you contribute enough based on a vague and untrustworthy metrics.”</p>\n\n\n\n<p>WPTuts <a href=\"https://x.com/WPTutz/status/1876961046675571166\">tweeted</a>, “Sadly, this seems indicative of WordPress (as a project/company) at the moment: hell-bent on alienating the community and contributors who have made WordPress what it is today and are a significant reason for its success and popularity. Unless you tick those boxes, you&#8217;re out!”</p>\n\n\n\n<p><strong>Matt Mullenweg</strong> termed the email “crappy” and promised to look into it. He <a href=\"https://x.com/photomatt/status/1877030025574191570\">commented</a>, “I agree that&#8217;s a crappy email to get, and it&#8217;s also not 100% accurate. Thanks for raising this issue, I&#8217;ll look into it. Thank you for all you and your colleagues do trying to make WordPress and its plugins and themes better.”</p>\n\n\n\n<img width=\"2066\" height=\"712\" src=\"https://wptavern.com/wp-content/uploads/2025/01/image.png\" alt=\"Matt Mullenweg\'s comment\" class=\"wp-image-185097\" />\n\n\n\n<p>WordCamp Europe has faced criticism in the past for <a href=\"https://europe.wordcamp.org/2022/diversity-at-wceu/\">diversity issues</a> in speaker lineups and organizing teams, but this marks the first major controversy regarding sponsorships. The WordCamp Europe Organizing Team shared that they have no information on this as WordCamp Central handles the sponsorship application processing. </p>\n\n\n\n<p>(I’m waiting to hear from the Patchstack team and WordCamp Central and will update their responses).</p>\n\n\n\n<p><strong>Update</strong>: Oliver Sild expressed disappointment, stating: &#8220;Right now, the last thing we’ve been told is that we’re not eligible to sponsor any WordPress events. Honestly, it’s a pity, because for us WordCamp EU has been our “home base” and it has been a our annual tradition for years to bring the entire team together. We had 20 people in Torino for a full week. We had to change the plans for this year and we’ll organise this year gathering elsewhere &#8211; so our presence at WCEU will definitely be smaller. Our team is involved with organising WordCamps in Poland, Lithuania, and across Europe &#8211; I’m sure they’ll continue to contribute. We have been also reached out by so many people who hope we’ll organise a side-event for WCEU or even start a new developer focused conference. We are seriously thinking about both.&#8221;</p>\n\n\n\n<p>Oliver also mentioned learning that some companies were selected to sponsor WordCamps despite not contributing to the Five for the Future initiative. Despite Patchstack&#8217;s direct inquiries, they received no further clarification or explanation about the decision to reject them or the comment from <a href=\"https://x.com/photomatt/status/1877030025574191570\">Matt</a> about the email not being “100% accurate.”</p>\n\n\n\n<p>Patchstack also signed up for <a href=\"https://wordpress.org/five-for-the-future/pledge/patchstack-2/\">Five for the Future</a>. They will  sponsor 3 contributors for a total of 4 hours per week across Community, Documentation, Meta and Training teams.</p>\n\n\n\n<table class=\"has-fixed-layout\"><tbody><tr><td><strong>Full Text of the Email Received by Oliver Sild &amp; Team</strong>:<br /><br />&#8220;Hi Francesca and Oliver,<br /><br />Thank you for your patience as we continue to refine our approach to WordPress event sponsorships. I understand your interest in learning more about the process and what steps might strengthen future sponsorship opportunities.<br /><br />To provide some context, the Community team is transitioning from a first-come, first-served model to a new approach.<br /><br />While the sponsorship process will remain familiar, we are placing greater emphasis on contributions and the relationships companies maintain with the WordPress project.<br /><br />We recognize that this shift may feel frustrating, but sponsoring WordCamps is a privilege, and we aim to increase expectations in this area moving forward.<br /><br />For instance, I noticed that Patchstack has not yet made a pledge to Five for the Future, a program that enables companies to contribute to the WordPress project through dedicated volunteer hours. Taking this step would be an excellent way to demonstrate commitment and build trust within the community. WordPress thrives because of its contributors and your participation would make a meaningful impact.<br /><br />Once significant contributions have been established, we are happy to re-evaluate your eligibility for financial sponsorship of WordPress events.<br /><br />Thank you for your continued interest in supporting the WordPress community. If you have any further questions or need assistance with the next steps, please don&#8217;t hesitate to reach out.<br /><br />I hope that helps and Happy New Year!<br />&#8212;<br />Felipe Santos<br />support@wordcamp.org&#8221;</td></tr></tbody></table>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 09 Jan 2025 03:48:02 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Jyolsna\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:26;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"WPTavern: WordPress.com Launches Studio Sync \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=185061\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://wptavern.com/wordpress-com-launches-studio-sync\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1261:\"<p>WordPress.com has introduced <a href=\"https://wordpress.com/blog/2025/01/06/studio-sync/\">Studio Sync</a>, a new feature for its local development app, Studio. Launched last year as a free, open-source tool for Mac and Windows users, <a href=\"https://developer.wordpress.com/studio/\">Studio</a> now integrates seamlessly with WordPress.com through this update.</p>\n\n\n\n<p>Studio Sync allows developers to effortlessly synchronize local, staging, and live environments with just a few clicks, bridging the gap between local development and live site hosting. The feature also supports team collaboration, enabling multiple developers to connect their local Studio sites to a shared WordPress.com site.&nbsp;</p>\n\n\n\n<p><strong>Currently Studio Sync is available only to users with WordPress.com Business or Commerce plan. </strong>Interested users can check the <a href=\"https://developer.wordpress.com/docs/developer-tools/studio/sync/\">documentation</a> to learn more about this feature. </p>\n\n\n\n<p>After releasing Studio, WordPress.com had released the <a href=\"https://wordpress.com/blog/2024/10/29/studio-assistant/\">Studio Assistant</a> &#8211; a multilingual, AI-powered chatbot that simplifies development tasks through an intuitive chat interface.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 09 Jan 2025 03:12:40 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Jyolsna\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:27;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"WPTavern: #151 – Elena Brescacin on Accessibility Challenges and Solutions\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=185040\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"https://wptavern.com/podcast/151-elena-brescacin-on-accessibility-challenges-and-solutions\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:44389:\"Transcript<div>\n<p>[00:00:00] <strong>Nathan Wrigley:</strong> Welcome to the Jukebox podcast from WP Tavern. My name is Nathan Wrigley.</p>\n\n\n\n<p>Jukebox is a podcast which is dedicated to all things WordPress. The people, the events, the plugins, the blocks, the themes, and in this case the challenges of creating accessible websites with WordPress.</p>\n\n\n\n<p>If you&#8217;d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast player of choice, or by going to wptavern.com/feed/podcast. And you can copy that URL into most podcast players.</p>\n\n\n\n<p>If you have a topic that you&#8217;d like us to feature on the podcast, I&#8217;m keen to hear from you and hopefully get you, or your idea, featured on the show. Head to wptavern.com/contact/jukebox, and use the form there.</p>\n\n\n\n<p>So on the podcast today we have Elena Brescacin. Elena is an accessibility consultant from Italy who has been blind since birth, and working online since 2000 with Tangity Design a part of NTT Data Company.</p>\n\n\n\n<p>Her journey with WordPress began in 2021, but she has been aware of it since 2003. A computer geek, Elena enjoys finding solutions to everyday challenges through technology.</p>\n\n\n\n<p>Elena is here to discuss the significant accessibility advancements and challenges within WordPress, especially with the transition from the Classic Editor to the Block Editor. She shares how full site editing has empowered her to manage most of her site content and structure without needing constant visual assistance, despite some areas needing further improvement.</p>\n\n\n\n<p>We talk about her experiences navigating the internet using screen reader software, the importance of adhering to HTML semantics for accessibility, and her involvement in the WordPress community, including her contributions to the Italian Polyglots, and speaking at WordPress events.</p>\n\n\n\n<p>Elena also reflects on the evolution of the internet, personal experiences with various web accessibility tools, and her advocacy work in digital spaces. We get into real world challenges, such as inaccessible event venues, and the advantages of online events for better accessibility.</p>\n\n\n\n<p>Elena shares her frustrations and triumphs in web accessibility, her insights on the impact of proper semantic web design, and her continued efforts to raise awareness and support a more inclusive internet.</p>\n\n\n\n<p>If you&#8217;re curious about web accessibility, particularly how WordPress is used to create content, this episode is for you.</p>\n\n\n\n<p>If you&#8217;re interested in finding out more, you can find all of the links in the show notes by heading to wptavern.com/podcast, where you&#8217;ll find all the other episodes as well.</p>\n\n\n\n<p>And so without further delay, I bring you Elena Brescacin.</p>\n\n\n\n<p>I am joined on the podcast today by Elena Brescacin. Hello, Elena.</p>\n\n\n\n<p>[00:03:28] <strong>Elena Brescacin:</strong> Hello. Thank you for having me as a guest.</p>\n\n\n\n<p>[00:03:32] <strong>Nathan Wrigley:</strong> You are so welcome. I have to say, massive apologies to Elena, and we&#8217;ll get onto this in a moment. Elena has been more gracious than you can imagine.</p>\n\n\n\n<p>We have tried multiple times to get this podcast recorded. And apart from this one time, more or less everything that we&#8217;ve tried has failed. And as I said, we&#8217;ll discover why that is in a moment. But firstly, my sincere thanks for sticking with me, despite the frustrating nature of it, seemingly being happy to carry on the endeavor. So I&#8217;m very grateful. Thank you so much.</p>\n\n\n\n<p>Okay, so the endeavor today is to talk about your journey with WordPress, we&#8217;re going to land there in the end. But before we get into that, would you just give us a little bit of your potted bio, and hopefully that&#8217;ll paint a picture of what we&#8217;re going to talk about today. But just tell us a little bit about yourself, what you have done in the past. Maybe go back right to the beginning of all that. And then, yeah, just let us know what it is that you&#8217;re doing currently.</p>\n\n\n\n<p>[00:04:29] <strong>Elena Brescacin:</strong> I am an accessibility consultant. I am blind, I have been blind since birth. I&#8217;m from Italy. I work online since 2000. 2002 I started working officially, and I work for the same company. It has changed names many times, but now it&#8217;s called Tangity Design. It&#8217;s part of NTT Data Company. It&#8217;s a Japanese multi-country company.</p>\n\n\n\n<p>Currently I am working so much time with AI and with accessibility of websites and mobile apps. And of course, I&#8217;m involved into the Fediverse because I find that it&#8217;s the future of communication right now. I have no WordPress in 2003, but I started using it in 2021.</p>\n\n\n\n<p>[00:05:26] <strong>Nathan Wrigley:</strong> Thank you very much. So earlier in your bio just then, you said that you had been blind from birth. Now I&#8217;m not entirely sure what the spectrum of that word means, but my understanding is that the word blind can be different things to different people. But in your case, is it fair to say that you are entirely blind, you have no sight at all, or do you have impaired vision?</p>\n\n\n\n<p>[00:05:49] <strong>Elena Brescacin:</strong> No, no, no, I am totally blind. I don&#8217;t see anything.</p>\n\n\n\n<p>[00:05:53] <strong>Nathan Wrigley:</strong> And clearly on a podcast like this, where we&#8217;re talking about WordPress, this is going to play into the conversation a lot. Is it the sort of blind nature of things that you are doing your accessibility work in? Are you helping people online, particularly WordPress website builders and app builders and things like that? Do they come to you with a requirement to understand how their interface, how their website is working, and you give them kind of an appraisal of, this works, this doesn&#8217;t work, you need to look at this and so on?</p>\n\n\n\n<p>[00:06:22] <strong>Elena Brescacin:</strong> Yes, it happens. This is part of my job. I also teach to some customers when they have no idea of what accessibility is.</p>\n\n\n\n<p>I have had many speeches for accessibility. I participated to TEDx in 2015. I did not use WordPress then. And I had the WordPress Accessibility Day in 2024. I have spoken in two WordCamps. Italy, WordCamp 2021, and Verona WordCamp 2023. Unfortunately, the speeches are in Italian. Accessibility is in English, WordPress Accessibility Day is in English. The speech is called the Same Editor, Same Language. It talks about Gutenberg. And I also participated to Core Days, WordPress Core Days in 2024, last November in Rome. And I presented my experience with multilingual website based on Gutenberg.</p>\n\n\n\n<p>[00:07:29] <strong>Nathan Wrigley:</strong> Thank you very much. Now, it feels to me that if you&#8217;ve been working online, and I think you mentioned 2003 possibly as one of the earlier dates that you mentioned in your biography. Would it be true to say that at the beginning of the internet, so when we were all just getting online, and it was dial up modems and what have you. I was using the internet from a fairly early date, and it feels to me as if the internet might have been a more hospitable place for somebody who is blind back then.</p>\n\n\n\n<p>Because my recollection of the internet back then was that really it was just text. There was text and there were underlying text links. There was very little in the way of imagery, but it was primarily text. We certainly didn&#8217;t have video, we didn&#8217;t have complicated platforms to publish things online.</p>\n\n\n\n<p>Has the internet basically become more challenging over the previous two decades for somebody like you to navigate around? I&#8217;m not talking there about the ability to create content, I&#8217;m just talking about the ability to consume content. Is the internet more noisy, more difficult to navigate around now than it used to be, let&#8217;s say 20 years ago?</p>\n\n\n\n<p>[00:08:42] <strong>Elena Brescacin:</strong> Oh, well, it depends on what you want to see, because you had much text-based content then, it&#8217;s true. But obstacles began into 1999 with the first visual captcha, the anti-spam, anti-bot control based on visual text. Copy this text into a box. If you are a human you can see, otherwise you are cut off.</p>\n\n\n\n<p>[00:09:15] <strong>Nathan Wrigley:</strong> I know exactly what you mean. So it was those early captchas where you had to be able to see a particular thing. And if you could see it, it was fairly straightforward to carry on. And we all know what captchas are. We see them still, often it&#8217;s click on pictures of, I don&#8217;t know, cars or something like that. And without that pass, if you like, you are stifled, aren&#8217;t you? You can&#8217;t then go on to do whatever it is. It may be log into a platform, what have you. So that was your first experience, was it? Captchas was the first time the internet became something which you could no longer do. Suddenly there was a barrier which hadn&#8217;t existed before.</p>\n\n\n\n<p>[00:09:49] <strong>Elena Brescacin:</strong> It has started to become common after 1999. The first to implement was Yahoo, Yahoo Groups. Then it came on Google, it came everywhere.</p>\n\n\n\n<p>Now I have also another platform that concerns money. Some benefits of a service I have joined, they give a benefit, yearly benefit. And they have a captcha, a visual captcha on login, a visual captcha to change the password, a visual captcha for if you forget the password. I must ask for help every time I have to access that service.</p>\n\n\n\n<p>[00:10:29] <strong>Nathan Wrigley:</strong> So the internet in that regard is an entirely frustrating experience. I&#8217;m sure that we&#8217;ll get into slightly more positive things.</p>\n\n\n\n<p>But I want to spend a moment just discussing what it is that you do when you browse the internet. I mean, clearly it&#8217;s obvious to you what you do, but it may be that the listeners to this podcast, because we have a very wide listenership, and some of them are very experienced, they no doubt think about accessibility for their websites all the time. But there&#8217;s bound to be other people who really don&#8217;t know what it is that somebody like you is doing on a day-to-day basis to navigate the internet.</p>\n\n\n\n<p>So can we just describe what it is that you are doing. When you are sat at your computer now, and we could talk about different devices like phones or whatever as well, but let&#8217;s just begin with a computer, a desktop computer. How is it that you are able to navigate the internet without being able to see what&#8217;s on a screen, how does it work?</p>\n\n\n\n<p>[00:11:25] <strong>Elena Brescacin:</strong> So I do not have a mouse, I do not use a mouse. I have a keyboard, standard keyboard every person has at home. I used the computer since 1989. I was less than 10 years old, and I was nine, almost 10 years old. And I learned to use the keyboard to get confident with the keyboard. But computers now have some software. Some are expensive, some are free. They are called the screen readers. I currently use the paid one. It&#8217;s called Jaws for Windows, acronym for Job Access With Speech.</p>\n\n\n\n<p>[00:12:06] <strong>Nathan Wrigley:</strong> We will add that into the show notes so that everybody can find that, thank you. Yeah, sorry, keep going, I interrupted.</p>\n\n\n\n<p>[00:12:11] <strong>Elena Brescacin:</strong> It&#8217;s a software that renders by voice, or by braille device. There is a hardware device called Braille Display, which is for braillists like me, otherwise they use speech. I use, of course, I use a Windows machine.</p>\n\n\n\n<p>Another open source software is called NVDA. It&#8217;s for Windows, Non-visual Desktop Access. I use those softwares on the computer, on Windows.</p>\n\n\n\n<p>On Macintosh, I have also a Macintosh, but I use it rarely because it&#8217;s old, it&#8217;s about 10 years old. The screen reader there is called Voiceover, the same that is in my main mobile device, my iPhone.</p>\n\n\n\n<p>And unfortunately the open source field, I&#8217;ve talked about Linux, it&#8217;s less careful to accessibility. There are some users, brave users that use that kind of system, but I find it less immediate, less straight forward. Let&#8217;s say I have to work, I have to have smooth work, not to go and check if everything works before working. Do you understand me?</p>\n\n\n\n<p>[00:13:27] <strong>Nathan Wrigley:</strong> I fully understand. I think most people who have had experience with Windows, Mac, and Linux, I think there&#8217;s a certain level of dedication, shall we say, which is required to keep going with Linux. Some people have it, and other people don&#8217;t. But it sounds like it&#8217;s the same for you as it would be for somebody who has sight, only a different set of problems no doubt.</p>\n\n\n\n<p>Now, when I go to a website, let&#8217;s say for example I visit, I don&#8217;t know, in my case the BBC website, which is a news organisation in the UK. And they present lots of written content, and lots of video content, and lots of images and so on. When I&#8217;m looking at that, I navigate my way around by capturing what comes into my eyes, and I decide what I want to look at based upon the prompts, text or what have you. And then I find the link and what have you.</p>\n\n\n\n<p>It would occur to me that many people would imagine that you, as a screen reader user, are browsing the same way that I am. In other words, you are looking somehow at the same screen that I am.</p>\n\n\n\n<p>But that&#8217;s not true, is it? Because you are kind of in a way navigating the HTML. And the way that the website has been constructed on the backend is much more important than it would be for me.</p>\n\n\n\n<p>So for example, a font size of something enormous screams title just because it&#8217;s big. But in your case, the bigness of the text doesn&#8217;t say anything about its titleness if you like. And this same thing maps out in every single part of the website.</p>\n\n\n\n<p>So can you just give us an idea of what it is that you have to go through, let&#8217;s say when you end up at a website like the BBC. What are you actually doing with the keyboard, and how are you getting information about what it is that you want to get to? Or how are you not getting information about what it is that you want to get to? So the frustrations as well as how it ought to be done.</p>\n\n\n\n<p>[00:15:21] <strong>Elena Brescacin:</strong> Oh, well, you said about the big text saying title. I look for, if I have to read a piece of news, not the list of news, but the single article of news to search for the news. I look for the heading level one. It&#8217;s an HTML code called heading.</p>\n\n\n\n<p>There are six levels of headings. Heading level one is the most important, the most evident, it&#8217;s the title. If I have to search for a new site, a brand new site, I usually search for the main menu, a navigation menu. HTML has a semantic, it&#8217;s called semantic. The layout is associated to specific code.</p>\n\n\n\n<p>You know that if it has four legs, a tail, it can be an animal. The website, the concept is very, very restricted because navigation menu is a type of code. And often developers and designers create visually with graphics what should be created by code. So screen readers do not detect information correctly.</p>\n\n\n\n<p>So with the example of before, the animal, it has four legs, a tail, but it&#8217;s a cylindrical chair. Sighted people always protest when I say your product is not tested for accessibility, and a website rather than mobile app, or a physical product and so on.</p>\n\n\n\n<p>Then if I create some content, an article, a text, a word document, whatever else, they always protest. Sighted people protest because I have not checked the formatting, the text is too small, or too big, or I have no color, and I say, why should you protest? If I have no sighted person testing my product before I deploy it publicly, why should you protest if a sighted people have not tested my product, and why should I not protest being blind if your product is not tested by blind? It&#8217;s the same, the same frustration, but they don&#8217;t understand.</p>\n\n\n\n<p>[00:17:59] <strong>Nathan Wrigley:</strong> Yeah, so with your screen reader you are going through and you are hoping to find cues inside the code of the website, for want of a better word. Let&#8217;s just say it like that. You&#8217;re hoping to find the H1s, which will indicate, this is a title, you&#8217;re hoping to find the H2s, which indicate this is a subheading if you like. And then, you know, H3 is under that, and H4 is under that, and all of that working out in a logical structure. So this semantic nature of everything.</p>\n\n\n\n<p>[00:18:24] <strong>Elena Brescacin:</strong> Sequential.</p>\n\n\n\n<p>[00:18:25] <strong>Nathan Wrigley:</strong> Yeah, sequential. And my guess is that when you are browsing the web, this is very rarely the case. I&#8217;m going to ask you a question, it&#8217;s putting you on the spot a little bit. But if you had to put a percentage, so one through to a hundred, a percentage on how frequently you encounter a website which you can completely use without a great deal of effort. So it&#8217;s built exactly how you would expect it to be, how you would wish it to be. As a percentage, how often does that happen? If you were to visit a hundred websites, how many of them would satisfy you from an accessibility point of view?</p>\n\n\n\n<p>[00:19:02] <strong>Elena Brescacin:</strong> Oh my god. Could I say 20, 30%? But the percentage would increase if, for example, some news websites, many of them are even based on WordPress, but the problem itself is not WordPress or the CMS, it&#8217;s the many, many, many advertising that they put inside. Moving advertising, moving sliders. Images without labels, or buttons without labels.</p>\n\n\n\n<p>I had a very, very high frustration last week because Nathan was trying to interview me with a platform called SquadCast, but it did not give me the control for the microphone, the speakers, the headphones. It was labeled related to chat, help leave the call and so on, but not the setting of microphone. So no one could hear each other.</p>\n\n\n\n<p>[00:20:03] <strong>Nathan Wrigley:</strong> It was a profoundly moving experience actually. And I say that in all of the wrong senses of the word, moving for all the wrong reasons. Because I have interviewed hundreds, possibly thousands of people at this point, but I don&#8217;t believe that I&#8217;ve ever interviewed anybody who has no sight. And so you are a first. And so honestly the guilt I&#8217;m feeling is fairly profound.</p>\n\n\n\n<p>I sent you the link in order to open up the platform in the same way that I do every single time, and then there was just this wave of one frustration after another. And it never stopped, did it? It was just one problem, then another, then another.</p>\n\n\n\n<p>There&#8217;s things that we were trying to set up like selecting the headphones to use, which is typically a one second exercise, and selecting the microphone that you wish to use. Again, it&#8217;s another fairly straightforward exercise if you use it in the way that I do. But we must have spent, what, half an hour, something like that, just hitting obstacle after obstacle. And it really did give me a profound sense of, well, this is just wrong.</p>\n\n\n\n<p>Here we are trying to carry out a normal thing, I&#8217;m eating up your time, and you are eating into my time, and so there&#8217;s this sense of guilt in both directions that, well, we&#8217;re wasting each other&#8217;s time and what have you.</p>\n\n\n\n<p>All the while the frustration is building for you because literally nothing that you were hoping to achieve was possible. And so that was the sort of apology at the beginning. We are recording it on another platform today, which thankfully has proven to be an awful lot easier. I&#8217;m sure in many respects it&#8217;s not perfect as well, but we seem to be having a little bit more luck but, again, describe that, this isn&#8217;t perfect either.</p>\n\n\n\n<p>[00:21:41] <strong>Elena Brescacin:</strong> Yeah, not to speak about the calendar. When I talk about semantic, another good example should be table. The calendar Nathan has to book the podcasts has no table structure and no keyboard commands to select the dates. Overall you have no semantic, it&#8217;s just a visual. The time zone, which date can be selected. So for example, I was trying the 16th of December for the new reschedule of the interview, and it just gave me, sent me a calendar, the calendar invitation on 11th of December.</p>\n\n\n\n<p>[00:22:27] <strong>Nathan Wrigley:</strong> The thing that I&#8217;m getting out of it is that the internet for me basically is a, how to describe this? The internet for me has usually been a place of joy. I go to it and everything, given the nature of what I have available to me, you know, my eyes function, my ears function, my arms and legs are all functioning, and I have a screen which is just at the right height for me and everything. Essentially everything in my scenario is working in the way that I would hope. And so the internet is this thing of joy. I go there and I can consume film, I can consume audio, I can write blog posts, I can take part in podcast interviews. It&#8217;s wonderful.</p>\n\n\n\n<p>But I&#8217;m getting the impression that for somebody such as you, the internet is possibly anything other than joyful. I mean, maybe it is in some regards joyful, and that there&#8217;s no doubt moments where you&#8217;re profoundly moved by it, and it is wonderful. But I&#8217;m guessing also that it is also seriously annoying. It&#8217;s almost like you have to go the extra mile again, and again, and again, and again to do basic things.</p>\n\n\n\n<p>And as we move more of ordinary life online, banking goes online. Booking things that you want to be delivered to your house goes online. The government, paying tax goes online. If it&#8217;s not set up for you, you are really being penalised for the way that the world is moving. And that must be frustrating and let all of that out if you want to, you know, is it a frustrating experience, the internet for you?</p>\n\n\n\n<p>[00:23:55] <strong>Elena Brescacin:</strong> I think that internet was given the wrong dimension, make it more utopia than it really is. Because let&#8217;s remember that internet is made by humans. So if humans do not pay attention to other humans, the issue is the same you can find in the street outside. It&#8217;s not something worse than real world.</p>\n\n\n\n<p>It can be amplified if you have, for example, social networks hate speech. I sometimes ask people to describe photos for me because they don&#8217;t. They publish a screenshot on their posts on social networks, a screenshot regarding conversation, regarding even politics and so on. But then I do not read the line because it&#8217;s a screenshot.</p>\n\n\n\n<p>And if I asked, can you describe the photo for me? They just say something to me. What, are you stupid? Did you not understand? People like you should not come to the social network. If you are blind, how can you read, and can you write? They doubt my identity. And so not to talk about voting, voting elections. I have a person helping me. They come to the cabin with me, the room where we have to vote. They take a pencil and trace the sign to the right politician or whatever I say, but I have no proof. I have no proof if they have actually voted what I asked for.</p>\n\n\n\n<p>[00:25:39] <strong>Nathan Wrigley:</strong> Gosh.</p>\n\n\n\n<p>[00:25:40] <strong>Elena Brescacin:</strong> Yes, this is the reality.</p>\n\n\n\n<p>[00:25:42] <strong>Nathan Wrigley:</strong> You sound much more buoyant about it. I was maybe anticipating the wrong thing in a sense there, but it sounds like you, rather than being, I don&#8217;t know, miserable about the failings of the internet for people who are blind, but it feels like you&#8217;ve gone in the other direction. That you&#8217;ve gone more in the, I want to make people aware that this is going on. So you are advising people when they don&#8217;t put alt tags on their social media posts. You&#8217;ve done that to me, which was really helpful, because I then know that that&#8217;s a requirement. And also, you&#8217;ve got yourself in the WordPress space and are educating people.</p>\n\n\n\n<p>So I&#8217;m just keen to know what your posture is there. Is it going to be your mission in the future basically to be helpful and to fight the good fight about accessibility?</p>\n\n\n\n<p>[00:26:28] <strong>Elena Brescacin:</strong> I try to help people and to help myself because just the frustration brings nowhere. If you just go on with frustration, it&#8217;s over. Online services give me a lot, for example, digital books, e-commerce and so on, online banking and so on. But if you do nothing for accessibility, you cannot expect others to do anything.</p>\n\n\n\n<p>[00:26:57] <strong>Nathan Wrigley:</strong> Yeah, good point.</p>\n\n\n\n<p>[00:26:58] <strong>Elena Brescacin:</strong> Overall, you cannot expect politician to do anything.</p>\n\n\n\n<p>[00:27:03] <strong>Nathan Wrigley:</strong> In terms of WordPress, let&#8217;s just shift the conversation to WordPress now. We have the new, well, it&#8217;s not new anymore, we have the Block Editor, the Site Editor and what have you. And I&#8217;m going to link to a few bits and pieces in the show notes. So if you go to wptavern.com and you search for this episode, and it will be on the page there, we&#8217;ll add the links to all of the bits and pieces we&#8217;re about to discuss. You&#8217;ve written a few articles where you say that WordPress has basically made leaps and bounds, and it&#8217;s become an interface which is much better for you to use.</p>\n\n\n\n<p>Now, let&#8217;s just rewind the clock like 10 years or more, when we had what is now the classic editor. What was it like as a content writer, a story writer, a blogger who was blind? What was it like back then, and how has it improved with the block editor?</p>\n\n\n\n<p>[00:27:55] <strong>Elena Brescacin:</strong> So I have worked into the WordPress system. I knew it in 2003. My profile on wordpress.org is from 2005. And my activity in WordPress was very frustrating at the beginning, because I didn&#8217;t find very easily the controls on the classic editor. Strange, because many blind users I know are happy with the classic editor. For me, it&#8217;s different. Maybe it&#8217;s me, I don&#8217;t know. But when classic editor was the only one to use, I was using it in code mode. So I wrote HTML by hand. And in the end I abandoned the WordPress because it wasn&#8217;t so good.</p>\n\n\n\n<p>But at that time, I was talking to the first Italian community manager, let&#8217;s say. He was called Paolo Valenti. And this guy was the first translator of WordPress. And he just said, remember you cannot leave WordPress totally, sooner or later you&#8217;ll come back. And he was right. This man, unfortunately, is no longer here. He died by cancer in 2022.</p>\n\n\n\n<p>[00:29:19] <strong>Nathan Wrigley:</strong> So in the day when you were using the Classic Editor, and for many people listening to this podcast, that will be entirely familiar. But for those people who&#8217;ve joined in the last five, six years or so, it may be something that you haven&#8217;t dabbled with.</p>\n\n\n\n<p>Yeah, you really did have to, in order to make the full use of it and to add things onto the page, it was possible to write some text and then highlight it, and then potentially, I don&#8217;t know, select that you wanted it to be a paragraph or what have you. In many ways it was more straightforward to write the HTML itself, wasn&#8217;t it? So you would write the P tag and what have you.</p>\n\n\n\n<p>And this became an incredibly frustrating experience, which probably that kind of experience was the thing which promoted the idea of using a block-based approach where you drop the block in and you begin writing, and you can do the forward slash and select the kind of block that you want, and you&#8217;re off to the races.</p>\n\n\n\n<p>So how is the block editor better than the classic editor? And obviously we know that some of your friends would disagree with that sentiment, but for you, why do you find it better? What does it do differently and better in your experience?</p>\n\n\n\n<p>[00:30:23] <strong>Elena Brescacin:</strong> Because the block is an interface, basically it&#8217;s an interface, and it&#8217;s from the rules from WordPress Core, they say it&#8217;s accessible, second level accessibility guidelines. I do not enter into technical details now. But my opinion on Block Editor is because you can rapidly move blocks up and down with a key combination. You can even check the style, the colours and so on. That&#8217;s not my task.</p>\n\n\n\n<p>But having to select a single block and work on that block without harming the other content. The possibility to add a block manually with the add block function or by markdown. I use markdown syntax for titles, for headings. Not links, but many other functions because I do not take my hands away from the keyboard, the letters.</p>\n\n\n\n<p>[00:31:26] <strong>Nathan Wrigley:</strong> It hadn&#8217;t really occurred to me that the Block Editor kind of locks you into the block that you are currently working on in a way, doesn&#8217;t it? So you just said that you can&#8217;t kind of interfere with the other bits and pieces on a page unless you are editing within the confines of that block.</p>\n\n\n\n<p>So if I&#8217;m in a paragraph block and I am writing, I&#8217;m in that paragraph. Whereas with the old Classic Editor, I was in all of the content, unless there was some plugin or something like that, that was going to inject something.</p>\n\n\n\n<p>So an accidental keystroke could delete tons of content, including the markup that would&#8217;ve given that portion of the content some context. So, you know, it might have been the H1 tag. You could accidentally interfere with that, delete that somehow. Whereas all of that is then abstracted away inside the Block Editor, and it&#8217;s a selection you make, not a heading that you type. Although I suppose you could choose to do it that way. So that&#8217;s interesting. I hadn&#8217;t really thought about it like that. So it creates less mistakes, it&#8217;s easier to get started. And if you were to drop into somebody else&#8217;s piece of content, you&#8217;d be able to navigate your way around it more easily, right?</p>\n\n\n\n<p>[00:32:31] <strong>Elena Brescacin:</strong> And even the templating system, the Full Site Editing has changed my point of view on templating, because before I had to hire someone for coding and so on.</p>\n\n\n\n<p>Now, I have also hired a person for helping me with the styling, with graphics and so on. But this woman who has helped me, who spoke to the WordPress Accessibility Day with me, she has helped me with the styles, but was just teaching me the interface for what&#8217;s about the content and the structure of the site. It&#8217;s mine. Gloria just did the colours, and the size, and what visual, and what I cannot verify in person.</p>\n\n\n\n<p>[00:33:20] <strong>Nathan Wrigley:</strong> Okay, so you were able to do the lion&#8217;s share as we describe it, the lion&#8217;s share of the work. And really the bit that, I think you said Gloria was doing there, Gloria was helping you just to have that appeal for somebody with sight. So she was sizing the text so that it looked appropriate on the page, but the majority of it you were able to do inside the Site Editor. Interacting with, what is what you get templates, as opposed to having to employ somebody to fiddle with template.php files and things like that.</p>\n\n\n\n<p>[00:33:46] <strong>Elena Brescacin:</strong> Yes, she just helped me because she is a freelance web designer and WordPress trainer, and she has trained me on Full Site Editing. The good thing is that she has believed in me from the beginning.</p>\n\n\n\n<p>When I supported another person in a Facebook group, she contacted me, and then we started the journey to WordCamps. I have spoken to a couple of WordCamps in Verona, and one is online. Those ones are in Italian. And I have also participated with Gloria in the WordPress Accessibility Day 2024.</p>\n\n\n\n<p>[00:34:29] <strong>Nathan Wrigley:</strong> What does WordPress still have to get right? So although it sounds like you personally are very happy with the Block Editor and it&#8217;s brought a lot of benefits that you can make use of. I&#8217;m guessing that there&#8217;s an awful lot frustration still. What would be the things for the year 2025 that you would hope would be addressed? What are still some of the things which are frustrating about being, well, not just the Block Editor, being inside a WordPress site in general? But maybe the Block Editor is a good target to begin.</p>\n\n\n\n<p>[00:35:00] <strong>Elena Brescacin:</strong> Oh, for example, a more targeted search block. Because now the search block, you have just the search field and button, it could be like that. But when you place that block in a navigation or somewhere, you should be able to choose where it can search. Because if you are, for example, I have my site talking about a real world and a fantasy world, I should be able to say, search for content just in the real world and just in the fantasy world.</p>\n\n\n\n<p>So when they click in the menu, in the search box on the main fantasy world page, they just got content from that category or from that post type. In fact, I have created a multilingual, experimental, and very basic site by using just Gutenberg and template.</p>\n\n\n\n<p>They should also give the possibility to duplicate a template. Because now, Gutenberg, you can duplicate post, duplicate page. But if you have, for example, I have Italian header and English header, I would like to be able to clone the Italian header and then translate the content inside.</p>\n\n\n\n<p>[00:36:26] <strong>Nathan Wrigley:</strong> There&#8217;s always going to be things, isn&#8217;t there? Edge cases. It really hadn&#8217;t occurred to me that search being a front end thing was something that needed addressing. But it sounds like it does. But what about the sort of backend of things, if you like?</p>\n\n\n\n<p>[00:36:36] <strong>Elena Brescacin:</strong> The search block I mean is a backend thing that you can set up from the template. You can set up the block, the interface of the block in the block settings. That I mean.</p>\n\n\n\n<p>[00:36:49] <strong>Nathan Wrigley:</strong> How do you feel about the importance that&#8217;s given to the direction the project in terms of accessibility? Do you feel it gets the attention it deserves?</p>\n\n\n\n<p>In an ideal world it would obviously, every single thing about the WordPress project, the community, the code, everything would have accessibility front and centre. But we don&#8217;t live in that perfect world. We live in the world where we have the constraints on time, and the project has to move in certain directions, and maybe accessibility falls off for one of the releases and what have you.</p>\n\n\n\n<p>But how do you feel, as a whole, WordPress does? Do you feel it is at the forefront? Do you think it&#8217;s lagging behind other platforms that you may have played with?</p>\n\n\n\n<p>[00:37:28] <strong>Elena Brescacin:</strong> WordPress for now is the best CMS for accessibility in backend with its Full Site Editing. But I think it has to become more consistent. Accessibility team should get more people inside I think for testing, for coders, skilled coders. Because I feel that it&#8217;s, not being neglected willingly, but because few people are working in that. This is my feeling.</p>\n\n\n\n<p>[00:38:02] <strong>Nathan Wrigley:</strong> Do you involve yourself in those communities? And if you do, are you able to tell us where you might go if having listened to this podcast, you think, actually, do you know what, that would be something I&#8217;d like to spend some of my time on.</p>\n\n\n\n<p>So just drop some of the names of the, I don&#8217;t know, Slack channels or other places online that you go when you want to discuss WordPress accessibility.</p>\n\n\n\n<p>[00:38:25] <strong>Elena Brescacin:</strong> I mostly go to the GitHub platform of specific project. Let&#8217;s talk about ActivityPub, let&#8217;s talk about single plugins accessibility.</p>\n\n\n\n<p>There is the Slack channel in Make WordPress Slack. But I do not participate often into Slack because unfortunately at work I have not that time. So it happens that I miss discussions. Sometimes I have helped the Polyglots in the Italian community, Polyglot, to translate WordPress.</p>\n\n\n\n<p>[00:39:04] <strong>Nathan Wrigley:</strong> It also sounds like you&#8217;ve been involved in real world events, plus some online events as well. I think you mentioned WordCamps that you&#8217;d attended as well, and I was wondering from an accessibility point how they have been.</p>\n\n\n\n<p>But also you mentioned the WP Accessibility Day as well. Do you just want to mention your participation in those? Let&#8217;s start with WordPress events. How have they been from your perspective?</p>\n\n\n\n<p>[00:39:27] <strong>Elena Brescacin:</strong> Accessibility, unfortunately it&#8217;s very difficult. Real world events are very difficult for accessibility because I need a person helping me to move through location, the WordCamp locations. It&#8217;s quite difficult without help.</p>\n\n\n\n<p>There are many information that are conveyed by colours. The black signal is the track one, the white is track two, for example, and so on, or you have the locations. There are no, not many explanation. I must ask for help to move across tables on the contributor days. Now I am trying to apply to WordCamp Europe 2025. I don&#8217;t know how it goes.</p>\n\n\n\n<p>I went to the WordCamp 2023 and to WordPress Core Day 2024. I got help from people there, but I had a person assisting me because otherwise I could not manage to go to the WordCamp alone. But the WordPress Accessibility Day was online.</p>\n\n\n\n<p>[00:40:38] <strong>Nathan Wrigley:</strong> So that was a more straightforward undertaking.</p>\n\n\n\n<p>[00:40:40] <strong>Elena Brescacin:</strong> Yes. But let me say that in-person events are more useful for networking. You get to know people, you get to talk to people, you get to confront. In few words, you get to exist, because otherwise you are a voice, you&#8217;re a face, you&#8217;re nothing else.</p>\n\n\n\n<p>[00:40:59] <strong>Nathan Wrigley:</strong> Who are some of the people online in the WordPress space that you hang out with, who you communicate with? Do you want to just name drop a few people that it might be interesting for me to add into the show notes, so that people can follow them as well as you on maybe social media or something.</p>\n\n\n\n<p>[00:41:14] <strong>Elena Brescacin:</strong> I think you know Michelle Frechette. Matthias Pfefferle from ActivityPub. Yes, you know him because you just interviewed him. I knew about your event because I was following him and I got you to the Mastodon network.</p>\n\n\n\n<p>[00:41:31] <strong>Nathan Wrigley:</strong> Excellent. I&#8217;ll put some of those links into the show notes so people can follow them as well. But more importantly, Elena, where would people, if people have been listening to this and thought that they&#8217;d like to communicate with you and get your thoughts on the state of WordPress in terms of accessibility, where would we find you? Where&#8217;s the place where you hang out most frequently? I think you said Mastodon.</p>\n\n\n\n<p>[00:41:50] <strong>Elena Brescacin:</strong> On Mastodon and on LinkedIn.</p>\n\n\n\n<p>[00:41:53] <strong>Nathan Wrigley:</strong> Perfect. I will find the links for both of those and I will add them to the show notes. Anything else that we have mentioned today will also be in the show notes. Head to wptavern.com. Search for the podcast section, and within that search for Elena&#8217;s podcast. And from there you&#8217;ll be able to delve inside the show notes, and get a faithful transcription of everything that we said today as well, I hope.</p>\n\n\n\n<p>So all that it remains for me to do is to say, Elena Brescacin, thank you so much for chatting to me today. I really appreciate it.</p>\n\n\n\n<p>[00:42:23] <strong>Elena Brescacin:</strong> Okay.</p>\n</div>\n\n\n\n<p>On the podcast today we have <a href=\"https://mastodon.uno/@talksina\">Elena Brescacin</a>.</p>\n\n\n\n<p>Elena is an accessibility consultant from Italy who has been blind since birth, and working online since 2000 with Tangity Design, a part of NTT Data Company. Her journey with WordPress began in 2021, but she has been aware of it since 2003. A computer geek, Elena enjoys finding solutions to everyday challenges through technology.</p>\n\n\n\n<p>Elena is here to discuss the significant accessibility advancements and challenges within WordPress, especially with the transition from the Classic Editor to the Block Editor. She shares how Full Site Editing has empowered her to manage most of her site content and structure without needing constant visual assistance, despite some areas needing further improvement.</p>\n\n\n\n<p>We talk about her experiences navigating the internet using screen reader software, the importance of adhering to HTML semantics for accessibility, and her involvement in the WordPress community, including her contributions to the Italian Polyglots and speaking at WordPress events.</p>\n\n\n\n<p>Elena also reflects on the evolution of the internet, personal experiences with various web accessibility tools, and her advocacy work in digital spaces. We get into real-world challenges, such as inaccessible event venues, and the advantages of online events for better accessibility.</p>\n\n\n\n<p>Elena shares her frustrations and triumphs in web accessibility, her insights on the impact of proper semantic website design, and her continued efforts to raise awareness and support a more inclusive internet.</p>\n\n\n\n<p>If you’re curious about web accessibility, particularly how WordPress is used to create content, this episode is for you.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links</h2>\n\n\n\n<p><a href=\"https://mastodon.uno/@talksina\">Elena&#8217;s Mastodon</a></p>\n\n\n\n<p><a href=\"https://www.linkedin.com/in/talksina/\">Elena on LinkedIn</a></p>\n\n\n\n<p><a href=\"https://tangity.global/\"> Tangity Design</a></p>\n\n\n\n<p><a href=\"https://www.youtube.com/watch?v=b89FIDsI3SY\">Share to fight prejudice</a>, Elena on TEDxAssisi</p>\n\n\n\n<p><a href=\"https://2024.wpaccessibility.day/sessions/same-editor-same-language/\">Same Editor, Same Language: How Gutenberg’s Accessibility Enhances Creativity and Inclusion</a> at WordPress Accessibility Day 2024</p>\n\n\n\n<p><a href=\"https://verona.wordcamp.org/2023/session/blind-blogging-e-indipendenza-wordpress-senza-vedere/\">BlIND – Blogging e indipendenza: WordPress senza vedere</a> at WordCamp Verona 2023</p>\n\n\n\n<p><a href=\"https://italia.wordcamp.org/2021/session/wordpress-a-dieci-dita-creare-un-sito-con-la-sola-tastiera/\">WordPress a dieci dita: creare un sito con la sola tastiera</a> at WordCamp Italia 2021</p>\n\n\n\n<p><a href=\"https://events.wordpress.org/rome/2024/coredays/interview-with-elena-brescacin/\">Interview with Elena Brescacin</a> at WordPress Core Days, Roma 2024</p>\n\n\n\n<p><a href=\"https://en.wikipedia.org/wiki/JAWS_(screen_reader)\">JAWS (screen reader)</a></p>\n\n\n\n<p><a href=\"https://en.wikipedia.org/wiki/Refreshable_braille_display\"> Braille Display</a></p>\n\n\n\n<p><a href=\"https://en.wikipedia.org/wiki/NonVisual_Desktop_Access\">NonVisual Desktop Access</a></p>\n\n\n\n<p><a href=\"https://support.apple.com/en-gb/guide/voiceover/welcome/mac\">Voiceover for Mac</a></p>\n\n\n\n<p>Elena&#8217;s <a href=\"https://plusbrothers.net/english/about/\">Plus Brothers</a></p>\n\n\n\n<p><a href=\"https://heropress.com/essays/defeating-silence-and-stigma-with-wordpress/\">Defeating silence and stigma with WordPress / Sconfiggere silenzio e stigma con WordPress</a></p>\n\n\n\n<p><a href=\"https://www.letsenvision.com/blog/ally-ai-hiv-stigma\">How Elena Brescacin Uses ally to Break HIV Stigma and Champion Accessibility</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 08 Jan 2025 15:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nathan Wrigley\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:28;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"WPTavern: Hosting and Themes Teams Announce Representatives for 2025\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=184991\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"https://wptavern.com/hosting-and-themes-teams-announce-representatives-for-2025\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2941:\"<p>The Themes and Hosting teams has unveiled their representatives for 2025. </p>\n\n\n\n<h3 class=\"wp-block-heading\">Themes Team Reps&nbsp;</h3>\n\n\n\n<p>In November, the Themes Team <a href=\"https://make.wordpress.org/themes/2024/11/13/nominations-call-for-the-themes-team-representatives-2025-edition/\">announced</a> their search for community members familiar with WordPress theme development to serve as representatives for 2025. The call for nominations was open to everyone, allowing individuals to nominate themselves or others.</p>\n\n\n\n<p>Interestingly, several comments on the announcement post suggested re-nominating the 2024 representatives. After consulting with current and former team representatives, the Themes Team decided to retain the existing team reps for another term:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://profiles.wordpress.org/acosmin/\">Alexandru Cosmin</a> from Romania is sponsored by <a href=\"https://extendthemes.com/\">Extend Themes</a> as a part-time reviewer. He released his first WordPress theme in 2008, and since then, has played diverse roles—serving as a reviewer, developer, and team representative.</li>\n\n\n\n<li><a href=\"https://profiles.wordpress.org/kafleg/\">Ganga Kafle</a> from Nepal is a full-time WordPress contributor sponsored by <a href=\"https://rankmath.com/\">Rank Math</a>. Active in the community since 2012, he is an organizer for WordCamp Asia 2025 and a moderator for WordPress-related podcasts like <a href=\"https://gowithwp.com/\">Go With WP</a>.</li>\n\n\n\n<li><a href=\"https://profiles.wordpress.org/shivashankerbhatta/\">Shiva Shanker Bhatta</a> from Nepal is the founder/CEO of AF Themes. With over a decade of experience in WordPress, he focuses on themes, plugins, and community contributions.</li>\n</ul>\n\n\n\n<p>In <a href=\"https://make.wordpress.org/themes/2024/12/30/a-year-in-themes-team-2024/\">2024</a>, the Themes Team closed a total of 39,796 tickets, with Alexandru Cosmin, Ganga Kafle, and Shiva Shanker Bhatta collectively handling 1,708 reviews. Ganga Kafle and Alexandru Cosmin were the top reviewers last year.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Hosting Team Reps</h3>\n\n\n\n<p>After a <a href=\"https://make.wordpress.org/hosting/2024/11/29/voting-for-hosting-team-reps-2023-2/\">Call for Nominations</a>, four candidates were proposed for the Hosting Team Rep positions: Matthias Pfefferle, Javier Casares, Zunaid Amin, and Lucas Radke. However, Matthias and Javier declined the opportunity. Following an anonymous survey, the team announced the following representatives for 2025:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://profiles.wordpress.org/zunaid321/\">Zunaid Amin</a> from Bangladesh is joining as a new Hosting Team Rep. He is a WordPress Engineer at Rocket.Net.</li>\n\n\n\n<li><a href=\"https://profiles.wordpress.org/crixu/\">Lucas Radke</a> from Germany is the Product Manager at WordPress VIP. He is continuing as Hosting Team Rep.</li>\n</ul>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 07 Jan 2025 20:14:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Jyolsna\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"Gravatar: How to Customize Your WordPress Author Box\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"http://blog.gravatar.com/?p=2702\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://blog.gravatar.com/2025/01/07/wordpress-author-box/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:12263:\"<p>An author box in WordPress might seem like a simple addition to any blog, but it’s actually one of the most important elements. Showing author credentials builds content authority – something that&#8217;s becoming increasingly vital in an era of AI-generated content and information overload. When readers can verify the expertise and background of the person behind an article, they&#8217;re more likely to trust and engage with the content.</p>\n\n\n\n<p>WordPress includes basic author bio functionality, but the default options often fall short when trying to showcase author credentials and links effectively. If you want to connect with your audience, you need something that does more than just display a name and photo.</p>\n\n\n\n<p>To help you with that, we’ll show how to create dynamic, professionally styled author boxes using the free <a href=\"https://wordpress.org/plugins/gravatar-enhanced/\">Gravatar Enhanced plugin</a>, helping you transform basic author information into compelling author profiles that update automatically.</p>\n\n\n\n<a href=\"https://wordpress.org/plugins/gravatar-enhanced/\"><img width=\"3243\" height=\"729\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/12/gravatar_enhanced_cta.png\" alt=\"\" class=\"wp-image-2634\" /></a>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Why would you want to customize your WordPress author box?</strong></h2>\n\n\n\n<p>The internet is a place where literally anyone and anything can post content, humans and bots alike. But that doesn’t mean that they are experts in their field or that the posted piece is something users can trust.&nbsp;</p>\n\n\n\n<p>A well-designed author box with verified links does just that – it shows the face behind the words and puts your content above the millions of spammers and bots, <strong>building trust and showcasing expertise</strong>.&nbsp;</p>\n\n\n\n<p>Besides that, <a href=\"https://www.google.com/\">Google</a> and other <strong>search engines look for signals that demonstrate Experience, Expertise, Authoritativeness, and Trustworthiness (E-E-A-T)</strong> when ranking content. An author box with verified credentials, professional links, and relevant expertise helps strengthen these signals. For example, if you&#8217;re writing about medical topics, displaying your medical credentials and links to professional profiles helps validate your authority on the subject.</p>\n\n\n\n<p><strong>Okay, but what if you have a site with multiple authors?</strong> Well, it becomes even more complicated. Without additional tools, you’d have to create separate WordPress profiles for each author and add their credentials to the post. A better alternative is to find a profile management tool that lets you pull author information from a central database and updates automatically as their profiles update (hint: It’s <a href=\"https://gravatar.com/\">Gravatar</a>!)</p>\n\n\n\n<p><strong>Finally, author boxes also improve reader engagement.</strong> When readers can verify who&#8217;s writing the content and see the author&#8217;s expertise, they&#8217;re more likely to trust and engage with the material. Plus, social proof through professional network links and credentials helps establish a stronger connection with your audience.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Default customization options for author boxes in WordPress</strong></h2>\n\n\n\n<p>WordPress comes with basic author box functionality, but its default options can feel limiting. By default, each author gets two main elements: a Gravatar-powered profile picture and a biographical text field found in the <em>Users</em> section of the WordPress dashboard.</p>\n\n\n\n<img width=\"892\" height=\"372\" src=\"https://blog.gravatar.com/wp-content/uploads/2025/01/default-user-information-1.png\" alt=\"Default user information in WordPress\" class=\"wp-image-2705\" />\n\n\n\n<p>Getting your author box to look exactly how you want proves challenging with these basic tools. The visual styling depends entirely on your active WordPress theme, which means changing how it looks often requires diving into template files and custom CSS. You can change the background color and the padding of the box, but that’s pretty much it,&nbsp;</p>\n\n\n\n<img width=\"1449\" height=\"966\" src=\"https://blog.gravatar.com/wp-content/uploads/2025/01/bio-default-wordpress-settings.png\" alt=\"Default settings for the author biography box in WordPress\" class=\"wp-image-2706\" />\n\n\n\n<p>Any customizations made through template files must be implemented through a child theme to prevent them from disappearing during theme updates. This creates an ongoing maintenance burden, especially for multi-author sites that need consistent styling across different contributors.</p>\n\n\n\n<p>The biographical text field also has limitations. Authors can&#8217;t easily add social media links, credentials, or other dynamic content that might change over time. Each update requires logging into WordPress and manually editing the bio text – a time-consuming process when managing multiple authors.</p>\n\n\n\n<p>These restrictions often push site owners to look for better solutions that don&#8217;t require constant maintenance or coding knowledge. The need for more flexibility in design and easier profile management has led to the development of tools that expand on WordPress&#8217;s built-in author box capabilities.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Gravatar Enhanced: The best way to customize your author box in WordPress</strong></h2>\n\n\n\n<img width=\"1217\" height=\"530\" src=\"https://blog.gravatar.com/wp-content/uploads/2025/01/gravatar-enhanced-plugin.png\" alt=\"Gravatar Enhanced plugin download page\" class=\"wp-image-2707\" />\n\n\n\n<p><a href=\"https://wordpress.org/plugins/gravatar-enhanced/\">The Gravatar Enhanced plugin</a> rethinks how author boxes work in WordPress. At its core, the plugin&#8217;s Profile Block pulls information directly from Gravatar profiles, offering a fresh approach to displaying author information that&#8217;s both dynamic and easy to manage.</p>\n\n\n\n<p>The Profile Block stands out by eliminating the need for manual updates. Authors can modify their profiles once at <a href=\"http://gravatar.com\">Gravatar.com</a>, and these changes automatically appear across every site using the block. This centralized management saves significant time, especially for authors who contribute to multiple WordPress sites.</p>\n\n\n\n<p>For guest authors, the process becomes remarkably simple. Instead of creating WordPress user accounts, site owners just add the Profile Block and enter the author&#8217;s email address.&nbsp;</p>\n\n\n\n<p>The block automatically fetches and displays their Gravatar <a href=\"https://blog.gravatar.com/2024/11/18/create-online-profile/\">profile information</a>, including professional credentials, <a href=\"https://blog.gravatar.com/2024/11/11/how-to-list-social-media-handles/\">social media links</a>, and biographical details.</p>\n\n\n\n<p>Customization options are extensive but user-friendly. Through the block settings panel, you can:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Adjust the background color to match your site&#8217;s design.</li>\n\n\n\n<li>Modify padding and spacing for better visual balance.</li>\n\n\n\n<li>Choose which profile elements to display.</li>\n\n\n\n<li>Customize border styles and box shadows.</li>\n\n\n\n<li>Set the width and alignment.</li>\n</ul>\n\n\n\n<img width=\"1226\" height=\"793\" src=\"https://blog.gravatar.com/wp-content/uploads/2025/01/gravatar-profile-block-customized-1.png\" alt=\"Customization options for the Gravatar profile block\" class=\"wp-image-2708\" />\n\n\n\n<p>All these features integrate smoothly with WordPress&#8217;s block editor, making it simple to add author boxes to any post, page, or custom post type. The block inherits your theme&#8217;s typography settings by default, ensuring a consistent look across your site. If you want, you could also further customize it through CSS, giving you even more flexibility in how they look on the front end. For example, you could add border animations on hover or put semi-transparent overlays for a more interesting design.&nbsp;</p>\n\n\n\n<p>As you can see, unlike traditional author boxes that display basic information, the Profile Block acts as a verified digital <a href=\"https://blog.gravatar.com/2024/11/08/creating-a-digital-business-card/\">business card</a> – readers know they&#8217;re seeing authentic, current author information pulled directly from the author&#8217;s Gravatar profile.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>How to set up your customized author box with Gravatar Enhanced&nbsp;</strong></h2>\n\n\n\n<p>Getting started with a more powerful author box takes just a few simple steps. First, <a href=\"https://gravatar.com/connect/?gravatar_from=signup\">create a Gravatar account</a> using your WordPress email address – this forms the foundation of your enhanced author profiles.</p>\n\n\n\n<p>Setting up your Gravatar profile is straightforward:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Upload a professional photo for your avatar.</li>\n</ul>\n\n\n\n<img width=\"1471\" height=\"529\" src=\"https://blog.gravatar.com/wp-content/uploads/2025/01/uploading-profile-pic-to-gravatar.png\" alt=\"Uploading a profile picture to Gravatar\" class=\"wp-image-2709\" />\n\n\n\n<ul class=\"wp-block-list\">\n<li>Add a detailed bio highlighting your expertise.</li>\n</ul>\n\n\n\n<img width=\"1452\" height=\"1123\" src=\"https://blog.gravatar.com/wp-content/uploads/2025/01/gravatar-about-section.png\" alt=\"Adding a bio section to your Gravatar profile\" class=\"wp-image-2710\" />\n\n\n\n<ul class=\"wp-block-list\">\n<li>Include relevant social media profiles and professional links.</li>\n</ul>\n\n\n\n<img width=\"660\" height=\"334\" src=\"https://blog.gravatar.com/wp-content/uploads/2025/01/verified-accounts-gravatar-new.png?w=660\" alt=\" Linking verified accounts to a Gravatar profile\" class=\"wp-image-2711\" />\n\n\n\n<ul class=\"wp-block-list\">\n<li>Add any certifications or credentials that build trust – either through custom links or photos.&nbsp;</li>\n</ul>\n\n\n\n<p>Next, install the Gravatar Enhanced plugin on your WordPress site.&nbsp;</p>\n\n\n\n<img width=\"1515\" height=\"723\" src=\"https://blog.gravatar.com/wp-content/uploads/2025/01/search-gravatar-plugin.png\" alt=\"Installing the Gravatar Enhanced plugin to WordPress \" class=\"wp-image-2712\" />\n\n\n\n<p>Once activated, you&#8217;ll find the Profile Block ready to use in the block editor. Add it to your single post template or anywhere you want author information to appear, input the author&#8217;s email connected to their Gravatar profile, and the plugin will automatically generate the profile block using their profile information.</p>\n\n\n\n<img width=\"1526\" height=\"521\" src=\"https://blog.gravatar.com/wp-content/uploads/2025/01/gravatar-profile-block-in-editor.png\" alt=\"Adding a profile block in WordPress\" class=\"wp-image-2713\" />\n\n\n\n<p>Because the Gravatar profile is dynamic, every single change will be immediately updated on the block as well. No need to juggle multiple author bios or worry about outdated information.</p>\n\n\n\n<p>For multi-author sites, simply repeat the process for each contributor. They&#8217;ll control their own profiles through Gravatar.com while you maintain a consistent, professional look across all author boxes on your site.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Transform your WordPress author boxes with Gravatar Enhanced</strong></h2>\n\n\n\n<p>Moving beyond WordPress&#8217;s basic author box functionality opens up new possibilities for showcasing writer expertise and building trust. The Gravatar Enhanced plugin replaces manual profile management with automatic, real-time updates while adding excellent customization options and privacy protections.</p>\n\n\n\n<p>Instead of wrestling with template files or juggling multiple author accounts, you get a streamlined system where authors manage their own profiles.&nbsp;</p>\n\n\n\n<p>Ready to upgrade your author boxes? <a href=\"https://wordpress.org/plugins/gravatar-enhanced/\">Get started with Gravatar Enhanced toda</a>y and give your content the professional polish it deserves. </p>\n\n\n\n<a href=\"https://wordpress.org/plugins/gravatar-enhanced/\"><img width=\"3243\" height=\"729\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/12/gravatar_enhanced_cta.png\" alt=\"\" class=\"wp-image-2634\" /></a>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 07 Jan 2025 19:01:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Ronnie Burt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:30;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"Do The Woo Community: Kicking Off 2025 with Do the Woo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=88714\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://dothewoo.io/kicking-off-2025-with-do-the-woo/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"As we kick off 2025, we are on the cusp of Do the Woo, version 5.0 and our 7th Anniversary.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 07 Jan 2025 10:46:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:31;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"Do The Woo Community: Strategies to Elevate Your Personal Brand and Agency on LinkedIn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"https://dothewoo.io/?post_type=blog&p=88438\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"https://dothewoo.io/blog/strategies-to-elevate-your-personal-brand-and-agency-on-linkedin/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:147:\"LinkedIn empowers agencies and founders to connect and grow by sharing authentic content, engaging actively, and building meaningful relationships.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 07 Jan 2025 00:15:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:32;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"WPTavern: WordPress.org Services Resume After Holiday Break\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=184826\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://wptavern.com/wordpress-org-services-resume-after-holiday-break\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1980:\"<p>Automattician Alex Shiels of the Meta team has <a href=\"https://make.wordpress.org/meta/2025/01/03/welcome-back-everyone-the-holiday/\">announced</a> the resumption of WordPress.org services after the holiday break of two weeks. Users can now register new accounts, submit plugins, themes, and photos, and review plugins once again.</p>\n\n\n\n<p>Last month, Matt Mullenweg declared WordPress.org&#8217;s <a href=\"https://wptavern.com/matt-mullenweg-declares-holiday-break-for-wordpress-org-services\">first-ever holiday break</a>. He said, “In order to give myself and the many tired volunteers around WordPress.org a break for the holidays, we’re going to be pausing a few of the free services currently offered.”&nbsp;</p>\n\n\n\n<p>Initially, WP Engine was the sole exception, retaining full access to WordPress.org. Later, user registrations were reopened to support WordCamps following a ticket raised by Joost de Valk of Emilia Capital on <a href=\"https://github.com/WordPress/wordcamp.org/issues/1450\">WordPress GitHub</a>. The ticket highlighted that a WP.org account is required to purchase WordCamp tickets.</p>\n\n\n\n<p>Matt did not share a specific date for resuming the services, stating, “I hope to find the time, energy, and money to reopen all of this sometime in the new year.”</p>\n\n\n\n<img width=\"1174\" height=\"1866\" src=\"https://wptavern.com/wp-content/uploads/2025/01/Create-WordPress-account.png\" alt=\"WordPress.org new account registration page.\" class=\"wp-image-184827\" />\n\n\n\n<p>To create a <a href=\"https://login.wordpress.org/register\">new account</a>, users must provide their email address and a username. The registration form includes three checkboxes: confirming acceptance of the Privacy Policy (mandatory), subscribing to the WordPress Announcements mailing list, and the infamous <a href=\"https://wptavern.com/wordpress-org-makes-pineapple-pizza-checkbox-optional\">pineapple pizza</a>. Only accepting the Privacy Policy is required to proceed.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 04 Jan 2025 21:52:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Jyolsna\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:33;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"WPTavern: Nick Hamze’s Call to Make WordPress Themes Weird and Exciting Sparks Accessibility Discussion\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=184802\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:113:\"https://wptavern.com/nick-hamzes-call-to-make-wordpress-themes-weird-and-exciting-sparks-accessibility-discussion\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:9329:\"<p>Nick Hamze has <a href=\"https://wordpress.org/news/2025/01/wordpress-themes-need-more-weird-a-call-for-creative-digital-homes/\">called</a> for making WordPress themes exciting and the web weird again. “WordPress desperately needs your creativity, your weird ideas, your willingness to break the visual rules. The future of the web shouldn’t be a monochrome landscape of identical layouts.”, he said.</p>\n\n\n\n<p>He believes there are plenty of good themes in the Repository but no great themes with “designs that break the mold and spark excitement.”&nbsp;</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>We need more themes that make people say “Wow!” or “That’s different!” rather than “That’s clean and professional.” The web needs more personality, more risk-taking, more fun.</p>\n</blockquote>\n\n\n\n<p>According to him, great themes should:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Have a distinct point of view</li>\n\n\n\n<li>Embrace specific aesthetics boldly</li>\n\n\n\n<li>Design for specific use cases</li>\n\n\n\n<li>Break some rules thoughtfully</li>\n</ul>\n\n\n\n<p>Hamze&#8217;s call comes amid growing uncertainty about the future of WordPress themes. While the repository now hosts over 13,000 free themes, recent community discussions have often cast a grim outlook.Some of the discussions/articles published on the fate of themes include:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://www.wpwatercooler.com/wpwatercooler/ep421-the-theme-is-dead-long-live-the-theme/\">The Theme Is Dead, Long Live the Theme</a></li>\n\n\n\n<li><a href=\"https://wickydesign.com/wordpress-themes-are-dead/\">WordPress Themes Are Dead</a></li>\n\n\n\n<li><a href=\"https://www.binarymoon.co.uk/2019/09/the-end-of-wordpress-themes-is-in-sight/\">The End of WordPress Themes is in Sight</a></li>\n\n\n\n<li><a href=\"https://freemius.com/blog/full-site-editing-death-wordpress-themes/\">Will Page Builders &amp; Full Site Editing Be the Death of WordPress Themes?</a></li>\n\n\n\n<li><a href=\"https://www.reddit.com/r/Wordpress/comments/gxon74/is_wordpress_theme_business_dead/\">Is WordPress Theme Business Dead?</a></li>\n\n\n\n<li><a href=\"https://infinum.com/blog/gutenberg-wordpress-themes/\">WordPress Themes Are Dead. Long Live WordPress Themes!</a></li>\n</ul>\n\n\n\n<p>Vova Feldman of Freemius too <a href=\"https://x.com/vovafeldman/status/1874755673051046316\">recently</a> highlighted the stagnation in the WordPress theme market: “The WordPress Theme Market is in big trouble! Over the past six years, the annual single-site pricing for themes has shown little to no growth. In fact, the average price has decreased by 9%, dropping from $55.78 in 2019 to $50.75 in 2024.”</p>\n\n\n\n<p>Many will remember the excitement generated by the <a href=\"https://olliewp.com/\">Ollie theme</a>, but it <a href=\"https://wptavern.com/ollie-theme-faces-pushback-from-wordpress-theme-review-team\">faced pushback</a> from the Theme Review team. Though Matt Mullenweg, Josepha Haden Chomphosy and Justin Tadlock supported the theme, in the end, it was featured on the repository only after dropping its <a href=\"https://wptavern.com/contentious-review-process-leads-ollie-theme-to-remove-innovative-onboarding-features-amid-stagnating-block-theme-adoption\">innovative onboarding features</a>. </p>\n\n\n\n<h3 class=\"wp-block-heading\">Accessibility Challenges</h3>\n\n\n\n<p>Amber Hinds, CEO of Equalize Digital (the team behind the <a href=\"https://wordpress.org/plugins/accessibility-checker/\">Equalize Digital  Accessibility Checker plugin</a>) noticed some accessibility issues with Hamze&#8217;s post and she <a href=\"https://x.com/heyamberhinds/status/1875008828963459458\">drew attention</a> to them. She said, “WordPress themes need more #a11y and expected interfaces that convert. Not &#8220;weird&#8221; designs that confuse people or kill time on site.”</p>\n\n\n\n<p>Matt Mullenweg joined the conversation and <a href=\"https://x.com/photomatt/status/1875185846204444871\">replied</a>, “You’re tipping into net negative contribution territory. Like at what point do you say a Rothko painting isn’t high contrast enough?”</p>\n\n\n\n<a href=\"https://x.com/heyamberhinds/status/1875008828963459458\"><img src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXdeHt8-2pgs_pe3wTiEqhq4Kx8XmJe16Qqw37VixJ7x9bvDcxo6SAMkwHhBJdEoSPlqPWb5rIR7t3gDR5qJs4FuKDNktDuSwdhRXCPGswaWvUqVEGlzwJ-XydZ9WeZEzVScaNIRCw?key=DI5V1CDAajrWF-CBcBeB8lsn\" alt=\"Tweet from Amber Hinds about accessibility issues with Hamze\'s post  and replies from Matt Mullenweg.\" /></a>\n\n\n\n<p>However, this sparked backlash. Katie Keith of Barn2Plugins <a href=\"https://x.com/KatieKeithBarn2/status/1875459920713429205\">questioned</a>, “Why would the leader of the WordPress project say something so disrespectful to one of the community’s top accessibility experts simply for highlighting some accessibility issues? THAT is tipping into net negative contribution territory.”</p>\n\n\n\n<p>WordPress developer Earle Davies also shared his <a href=\"https://x.com/EarleDavies_/status/1875201740301365454\">thoughts</a>, “Wonder why accessibility in WordPress sucks? When experts highlight accessibility flaws, it’s considered a net negative contribution by the leader of the project. No surprise a8c employees argue why they choose design &gt;accessibility. WP/GB accessibility sucks. Indisputable fact.”</p>\n\n\n\n<p>Accessibility Expert Alex Stine <a href=\"https://x.com/alexleestine303/status/1875552325760381230\">tweeted</a>, “Matt has always taken this stand-offish approach to accessibility and I quit trying to figure out why.” He also <a href=\"https://x.com/alexleestine303/status/1875252730241093729\">said</a>, “Accessibility and inclusion are important. Sure, themes should be eye popping fun. That doesn&#8217;t mean they shouldn&#8217;t be accessible too.”</p>\n\n\n\n<p>Accessibility Advocate Anne Bovelett <a href=\"https://x.com/Bovelett/status/1875199415335432657\">added</a>, “If a theme is not accessible by contrast, it may look like a Porsche Carrera to the site owner and a good part of the visitors, but it will be a Porsche with windows that can’t be seen through from inside nor outside with doorknobs that won’t budge, to a large percentage of visitors.” She also shared her <a href=\"https://www.youtube.com/watch?v=6HS0tDxkotI\">YouTube video</a> showing examples of how many people experience the web and suggested organizing Design Days like Core Days.&nbsp;</p>\n\n\n\n<p>Designer Brian Gardner had this to <a href=\"https://x.com/bgardner/status/1875617016599761153\">say</a>: &#8221; I’m all for creative WordPress themes—whether bold and quirky or plain but practical. As far as I’m concerned, they should ALL be accessible. At a bare minimum, every theme should pass basic color contrast requirements.&#8221;</p>\n\n\n\n<p>“Rothko should be fine as long as no one needs to access the painting to order medical supplies or pay their water bills. Although, a text/audio alternative to the painting is very beneficial for those with low or no vision.”, <a href=\"https://x.com/stevejonesdev/status/1875220751076487668\">tweeted</a> Steve Jones, Co-Owner and CTO at Equalize Digital.</p>\n\n\n\n<p>Jenni McKinnon, CEO of WP Pros(e) <a href=\"https://x.com/iamjennialways/status/1875501922356285500\">asked</a>, “If the Rothko painting was on a website, then wouldn&#8217;t the WCAG point to what is (or isn&#8217;t) &#8220;high contrast enough?&#8221;” while Courtney Robertson of GoDaddy <a href=\"https://x.com/courtneyr_dev/status/1875191954918773021\">emphasised</a>: “Democratizing publishing is for all. WordPress must ensure no one is excluded from creating or consuming content.”</p>\n\n\n\n<p>Kevin Geary of Digital Gravy also does not support Nick Hamze. He <a href=\"https://x.com/thekevingeary/status/1875560264982261890\">said</a>, &#8220;WP &#8220;themes&#8221; are dead. It&#8217;s a dead concept. If you don&#8217;t realize this, you&#8217;re completely out of touch with how sites are built and managed. It&#8217;s especially antithetical to the fundamentals of a block editor&#8230;.WP needs actual leadership and real improvements to the software. We&#8217;d all LOVE a &#8220;sanitized and professional&#8221; wp-admin right about now. &#8220;Weird themes,&#8221; not so much.&#8221;</p>\n\n\n\n<p>According to <a href=\"https://x.com/carolinapoena/status/1875395756288569594\">Carolina Nymark</a> of Yoast (former team representative for the Themes Team), “Themes can be art and experimental and still be accessible and high quality. You just have to decide that is what you want to build.” And for WordPress developer <a href=\"https://x.com/briancoords/status/1875577961736499471\">Brian Coords</a>, “True creativity often thrives within constraints. Weird for weirdness sake is not art or self-expression. Creating something meaningful that inspires a shared experience between people (regardless of how they navigate the web) should be the ideal.”</p>\n\n\n\n<p>Discussions are still going on about accessibility. Meanwhile, the U.S. Federal Trade Commission (FTC) fined AI accessibility startup <a href=\"https://www.msn.com/en-us/news/technology/ftc-orders-ai-accessibility-startup-accessibe-to-pay-1m-for-misleading-advertising/ar-AA1wVcNt\">accessiBe</a> to pay $1M for misleading advertising. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 04 Jan 2025 20:07:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Jyolsna\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:34;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"WordPress.org blog: WordPress Themes Need More Weird: A Call for Creative Digital Homes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=18358\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:102:\"https://wordpress.org/news/2025/01/wordpress-themes-need-more-weird-a-call-for-creative-digital-homes/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4728:\"<p>The modern web has gradually shifted from a vibrant tapestry of personal expression to a landscape of identical designs, where millions of websites share not just similar structures, but identical visual language, spacing, and interaction patterns. As we collectively gravitate toward the same “proven” layouts and “conversion-optimized” designs, we’re not just losing visual diversity – we’re ceding control over how we present ourselves to the world. This matters because genuine self-expression online isn’t just about aesthetics – it’s about maintaining spaces where authentic voices can flourish.&nbsp;</p>\n\n\n\n<p>When every blog has the same hero section, when every portfolio follows the same grid, when every restaurant site looks interchangeable, we create an echo chamber of sameness. The cost isn’t just visual monotony – it’s the slow erosion of the web’s ability to surprise, delight, and showcase truly individual perspectives. WordPress, with its emphasis on complete ownership and control, offers an opportunity to break free from this convergence of design, allowing creators to build digital spaces that truly reflect their unique voice and vision.</p>\n\n\n\n<p>Think of WordPress themes like album covers. They should have personality and create an immediate visual impact. The web has become too sanitized, with everyone chasing the same minimal, “professional” look.</p>\n\n\n\n<p>Great themes should:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Have a strong point of view – like how Kubrick (the classic WordPress theme) defined an era with its distinctive header gradient. Don&#8217;t try to be everything to everyone.</li>\n\n\n\n<li>Embrace specific aesthetics boldly – whether that’s brutalist design, pixel art, hand-drawn elements, or distinctive typography. Create themes that excite people rather than just working for everyone.</li>\n\n\n\n<li>Design for specific use cases – like a theme for photographers that’s all about full-bleed images or a theme for writers that treats typography as art or a theme for musicians that feels like an album cover.</li>\n\n\n\n<li>Break some rules thoughtfully – because not every theme needs a hamburger menu. Not every theme needs to be mobile-first. Sometimes constraints create character.</li>\n</ul>\n\n\n\n<p>We need more themes that make people say “Wow!” or “That’s different!” rather than “That’s clean and professional.” The web needs more personality, more risk-taking, more fun.</p>\n\n\n\n<p>After spending countless hours digging through the WordPress theme repository, searching for designs that break the mold and spark excitement, I came up nearly empty-handed. Don’t get me wrong – there are plenty of well-built themes out there. But where’s the daring? The personality? The unexpected?</p>\n\n\n\n<p>If you&#8217;ve got a wild theme idea burning in your mind – that portfolio theme that looks like a vintage trading card collection, that blog theme inspired by zine culture, that restaurant theme that feels like a hand-drawn menu – now&#8217;s the time to build it. WordPress desperately needs your creativity, your weird ideas, your willingness to break the visual rules. The future of the web shouldn&#8217;t be a monochrome landscape of identical layouts. Let&#8217;s make WordPress themes exciting again. Let&#8217;s make the web weird again.</p>\n\n\n\n\n<a href=\"https://wordpress.org/themes/psychedeli\" target=\"_blank\" rel=\"noreferrer noopener\"><img width=\"1024\" height=\"768\" src=\"https://i0.wp.com/wordpress.org/news/files/2024/12/psychedeli.webp?resize=1024%2C768&ssl=1\" alt=\"Psychedeli theme\" class=\"wp-image-18360\" /></a>\n\n\n\n<a href=\"https://wordpress.org/themes/kawaii-chan\" target=\"_blank\" rel=\"noreferrer noopener\"><img width=\"1024\" height=\"768\" src=\"https://i0.wp.com/wordpress.org/news/files/2024/12/kawaii.webp?resize=1024%2C768&ssl=1\" alt=\"Kawaii-Chan theme\" class=\"wp-image-18362\" /></a>\n\n\n\n<a href=\"https://wordpress.org/themes/lowfi\" target=\"_blank\" rel=\"noreferrer noopener\"><img width=\"1024\" height=\"768\" src=\"https://i0.wp.com/wordpress.org/news/files/2024/12/lofi.webp?resize=1024%2C768&ssl=1\" alt=\"LowFi theme\" class=\"wp-image-18361\" /></a>\n\n\n\n<a href=\"https://wordpress.org/themes/bedrock\" target=\"_blank\" rel=\"noreferrer noopener\"><img width=\"1024\" height=\"768\" src=\"https://i0.wp.com/wordpress.org/news/files/2024/12/bedrock.webp?resize=1024%2C768&ssl=1\" alt=\"Bedrock theme\" class=\"wp-image-18364\" /></a>\n\n\n\n<a href=\"https://wordpress.org/themes/feelingood\" target=\"_blank\" rel=\"noreferrer noopener\"><img width=\"1024\" height=\"768\" src=\"https://i0.wp.com/wordpress.org/news/files/2024/12/feeling.webp?resize=1024%2C768&ssl=1\" alt=\"Feelin’Good theme\" class=\"wp-image-18363\" /></a>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 02 Jan 2025 18:53:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Nick Hamze\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:35;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"WPTavern: India to Host Three WordCamps in January 2025\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=184532\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"https://wptavern.com/india-to-host-three-wordcamps-in-january-2025\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3418:\"<p>The Indian WordPress community is set for an exciting start to 2025, with three WordCamps scheduled for January, as per <a href=\"https://central.wordcamp.org/schedule/\">WordCamp Central</a>. India has a thriving WordPress community&nbsp;and&nbsp; according to the <a href=\"https://make.wordpress.org/community/2024/07/18/wordpress-meetup-trends/\">WordPress Meetup global trends report</a> (January 2023 to June 2024), published by the Community Team, Indian cities Ahmedabad and Mumbai recorded the highest engagement for in-person events.</p>\n\n\n\n<h3 class=\"wp-block-heading\">WordCamp Ahmedabad </h3>\n\n\n\n<p>The fifth edition of <a href=\"https://ahmedabad.wordcamp.org/2025/\">WordCamp Ahmedabad</a> will take place on January 3 and 4, 2025, at the AUDA Auditorium in Shela, Gujarat. The first day is dedicated to WordPress contribution and Showcase while the <a href=\"https://ahmedabad.wordcamp.org/2025/schedule/\">schedule</a> for the second day features a single track of sessions, covering topics such as WordPress contributions, digital marketing, accessibility, and AI.</p>\n\n\n\n<img src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXdWNtdIQjRA_C-nsvmH3vWVVOeGKRgfvts1Nxn3fmz1-eiV8ZJx63tpBugRLtLWM4j8kUvMEoGXVhtidwJXB6LBWXvNKgb5Da3PLrBaNfEw42sWsT9CBR1qiWMhfZW7m4ny-LuO0A?key=lJ1ZD8aYOQDoIBUAS0AGGSDs\" alt=\"WordCamp Ahmedabad Wapuu inspired by Gujarat’s International Kite Festival—Uttarayan\" />\n\n\n\n<p>The event’s mascot, <a href=\"https://ahmedabad.wordcamp.org/2025/meet-our-wapuu/\">Wapuu</a>, is inspired by Gujarat’s International Kite Festival—Uttarayan—symbolizing the limitless possibilities of WordPress. Adding to the excitement, the organizers have announced a <a href=\"https://ahmedabad.wordcamp.org/2025/get-ready-for-the-wcahmedabad-social-media-contest/\">Social Media Contest</a> with prizes for the best photo, reel, and group selfie, encouraging attendees to share their experience creatively.</p>\n\n\n\n<h3 class=\"wp-block-heading\">WordCamp Kolhapur </h3>\n\n\n\n<p>The first edition of <a href=\"https://kolhapur.wordcamp.org/2025/\">WordCamp Kolhapur</a> is scheduled for January 11 and 12, 2025, at D.Y. Patil School of Engineering and Management, Kasaba Bawada, Maharashtra. As a debut event, it has generated significant interest.</p>\n\n\n\n<p> A few <a href=\"https://kolhapur.wordcamp.org/2025/call-for-sponsors/\">sponsorship slots</a>, including Silver, Bronze, and Micro levels, are still open, and limited no-swag <a href=\"https://kolhapur.wordcamp.org/2025/tickets/\">tickets </a>are available for those interested in attending.</p>\n\n\n\n<h3 class=\"wp-block-heading\">WordCamp Kolkata</h3>\n\n\n\n<p><a href=\"https://kolkata.wordcamp.org/2025/\">WordCamp Kolkata</a> will return for its third edition on January 18, 2025, at Viveka Tirtha, West Bengal. Previously held in 2019 and 2022, this edition promises an enriching experience.</p>\n\n\n\n<p>The event will feature sessions on eCommerce, translation, accessibility, and design, along with workshops on Gutenberg, WP-CLI, headless WordPress, and core contributions, conducted across two tracks.</p>\n\n\n\n<p>The event is still accepting <a href=\"https://kolkata.wordcamp.org/2025/call-for-sponsors/\">Sponsors</a> and <a href=\"https://kolkata.wordcamp.org/2025/call-for-media-partners/\">Media Partners</a>.</p>\n\n\n\n<p>With these three events on the calendar, January 2025 promises to be a remarkable month for the WordPress community in India.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 01 Jan 2025 19:30:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Jyolsna\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:36;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"HeroPress: Growing Up in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=7713\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:120:\"https://heropress.com/essays/growing-up-in-wordpress/#utm_source=rss&utm_medium=rss&utm_campaign=growing-up-in-wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:9353:\"<img width=\"1024\" height=\"512\" src=\"https://heropress.com/wp-content/uploads/3024/12/121724-min.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: WordPress is the fertile soil in which I got to grow.\" /><h3 class=\"kt-adv-heading7713_ca85c7-49 wp-block-kadence-advancedheading\">Coming from the girl with the bag: Not here to code.&nbsp;</h3>\n\n\n\n<p>The growth and success I have found in my 15 years as a marketing professional has absolutely been impacted by WordPress, more specifically, the WordPress community.&nbsp;</p>\n\n\n\n<p>10 years ago I was working in a corporate marketing environment and I was really coming into myself as a professional. I was figuring out how to batch work and align strategic planning with task blocking while collaborating with sales teams in the field.</p>\n\n\n\n<p>I was operating a $750k budget in addition to the $1.5M budget that I co-operated with sales and product dev, and it was <em>amazing</em> what I could do with those resources. Our regional division was leading the company in pre-sales, lead conversion rates, engagement across our digital platforms and I was setting a new bar for marketing divisions across the country. I was helping to drive tens of millions of dollars into our pipeline.</p>\n\n\n\n<p>Then I got fired.</p>\n\n\n\n<h4 class=\"kt-adv-heading7713_fd7d38-67 wp-block-kadence-advancedheading\">Dealing With The Yuck</h4>\n\n\n\n<p>Why? I became a whistleblower against some good-ol-boy business practices which interfered with&nbsp; my ability to be *absolutely* amazing instead of regular amazing. The VP of Sales had a suspicious relationship with one of our marketing vendors, and despite me finding a better solution for more than half the price, I was asked to “drop it” and to leave the vendor securely in our budget (full story available over wine any time if I see you irl).&nbsp;</p>\n\n\n\n<p>Long story short, I was eventually dismissed on the spot, I received a severance package, and I resolved to never let others’ lack of integrity compromise my work again. I used those funds as fuel and started MKConsulting.</p>\n\n\n\n<p>What does this have to do with WordPress or the WordPress community?</p>\n\n\n\n<p>Nothing, yet.</p>\n\n\n\n<h4 class=\"kt-adv-heading7713_1a49f0-78 wp-block-kadence-advancedheading\">Finding Something New</h4>\n\n\n\n<p>Honestly at this point in my marketing career I had actively worked to remove websites from WordPress in a number of jobs I had because it was clunky and ugly, and I didn’t get it.&nbsp; I had spent 6 years dealing with WP off and on and never even knew the community existed.</p>\n\n\n\n<p>I spent the next two years learning how to be a business owner and how to run a marketing agency. Or was I just freelancing? I wasn’t really sure. I got my MBA so I could learn more about entire business operating systems and to break up the exclusive sales/marketing/user lens I had leveraged to date. I spoke at local events, I joined clubs, the hustle was real.&nbsp;</p>\n\n\n\n<p>I found my way into start-ups, as they were a great place for me to really showcase my market research abilities, strategic go to market positioning skills, and love for brand building.&nbsp;</p>\n\n\n\n<p>One particular startup led me to a connection that brought me my first long term retainer customer &#8211; a WordPress hosting company. That startup, and the connections that came from it, are still driving major work, joy, and passion for me, bittersweetly and tragically fracturing into different aspects of my life.</p>\n\n\n\n<h4 class=\"kt-adv-heading7713_1908c0-b0 wp-block-kadence-advancedheading\">Finding WordPress</h4>\n\n\n\n<p>I followed one of those fellow executives for work, as he was now the CEO of my new client, and he invited me to this thing called a Word Camp.&nbsp;</p>\n\n\n\n<p>I got to travel to Seattle for my first time &#8211; and my life changed forever. Bridget Willard took me on an introduction tour at the speaker/sponsor pre dinner and it was so different from anything else I had experienced in my corporate marketing career.&nbsp;</p>\n\n\n\n<p>After the initial shock to my system wore off caused by the sheer number of t-shirts, and the utmost display of casual community I had ever witnessed at a conference (by then I had attended dozens of tech conferences and other corporate industry events), there was something special about it &#8211; it was real. These were real humans that cared about being successful in more than one way. And honestly, it really took me getting to my first WCUS before it all really clicked for me.&nbsp;</p>\n\n\n\n<p>For the first time in my career I found an intersection of desire for business growth AND ethical display of integrity and sustainable values, seamlessly co-existing.&nbsp;</p>\n\n\n\n<p>The people were warm and welcoming and cared about my human plight more than my value as a productive professional.&nbsp;</p>\n\n\n\n<p>This was confusing for me. As a people pleasing perfectionist that adorned my self worth with my ability to make money for others and “do a good job” was inherently all I had ever known as an adult, and in many ways as a kid too.</p>\n\n\n\n<h4 class=\"kt-adv-heading7713_6c80b5-8b wp-block-kadence-advancedheading\">A Time Of Growth</h4>\n\n\n\n<p>This community opened my eyes to ask questions like, who is my whole person, beyond being good at marketing and business growth strategies?&nbsp;</p>\n\n\n\n<p>The authentic and raw relationships I encountered within the WordPress community showed me that choosing between good business and being a good human could sustainably co habitate. There are good people doing good business, and my corporate experience had not really shown me that side of what is economically sustainable. There was a thirst to do things the right way.&nbsp;</p>\n\n\n\n<p>I began aligning with clients and teams who shared my values, opening doors to remote work and global collaboration.</p>\n\n\n\n<p>The access to remote work, remote culture, and the discovery of a global community that shared these values, promoting work life balance as well as viable technology products and services became key skills beyond marketing that I was able to foster and that would help me propel myself for years to come.&nbsp;</p>\n\n\n\n<p>The combination of being good at my job within the reliable ecosystem of web tech provided stability to continue to work in the remote world.</p>\n\n\n\n<p>Ultimately this safety gave me the freedom to begin to reconciling my own growth as a person and my growth as a professional, beyond the growth in pipelines for my clients.</p>\n\n\n\n<p>When COVID-19 hit, my experience in remote work positioned me uniquely. I was able to niche myself as one of few marketers in the world operating in the US that could go beyond successfully executing smart marketing campaigns in a remote environment &#8211; but I could build remote culture, manage global asynchronous teams and empower dozens of others to be successful at marketing, sales, customer support, account management and talent acquisition too.&nbsp;</p>\n\n\n\n<p>I leveraged this to diversify beyond web tech clients and found bio tech, climate tech, and ag tech companies to even further align my passions with my skills and my conscience as an ethical, sustainable marketer.&nbsp;</p>\n\n\n\n<p>My underlying passions for teaching and sharing my expertise continued to serve me as I became a Fractional CMO. I was an early adopter of this framework of employment and the balance it gave me pushed me more and more into my own personal growth.</p>\n\n\n\n<h4 class=\"kt-adv-heading7713_5341e7-36 wp-block-kadence-advancedheading\">The Future</h4>\n\n\n\n<p>About 3 years ago the work-life balance lines blurred further as I got better at managing my time, my passions, my teams, expertise and work product. I was finally ready to grow up as a marketing agency owner. I sunset MKConsulting, and Frameworks MKTG entered the market. We broker marketing, sales, and growth talent off and on as needed for one person marketing departments around the world.&nbsp;</p>\n\n\n\n<p>Through it all, I&#8217;ve had my heart broken while working with climate tech and bio tech clients. But web tech has been a great home to grow in, and that is largely because the WordPress community connecting me to amazing humans, all around the world.</p>\n\n\n\n<p>I’m more confident than ever that showing up as my fully authentic self is what keeps me happy. When I can keep my family, friends, clients, teammates, and investors happy we all stay much more aligned to thrive. Thriving is a natural byproduct when I get to be real, and to maintain my stress levels and just do what I do.&nbsp;&nbsp;</p>\n\n\n\n<p>Coming to this clear view of what my professional timeline can be is once again, life changing.</p>\n\n\n\n<p>I will not waste the opportunities afforded to me, I am determined to become the best version of my whole human self. I&#8217;m determined to continue being a part of proving how sustainable business growth is possible and reliable.</p>\n\n\n\n<p>So thank you, WordPress community.&nbsp; You are the fertile soil in which I got to grow.&nbsp;</p>\n\n\n\n<p>Love yall. See ya in Slack.<br />Or maybe another WC somewhere.<br />Or maybe come visit me in Texas.&nbsp;</p>\n<p>The post <a href=\"https://heropress.com/essays/growing-up-in-wordpress/\">Growing Up in WordPress</a> appeared first on <a href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 01 Jan 2025 15:33:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"MK Keefer\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:37;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"WPTavern: Community Team Proposes Women-Centric WordPress Events for International Women’s Day\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=184491\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:104:\"https://wptavern.com/community-team-proposes-women-centric-wordpress-events-for-international-womens-day\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1804:\"<p>The WordPress Community Team has <a href=\"https://make.wordpress.org/community/2024/12/19/hosting-wordpress-events-for-women-on-international-womens-day/\">proposed</a> hosting women-centric events on International Women&#8217;s Day through local WordPress communities to celebrate, empower, and inspire women. These events are envisioned as platforms where women can connect, share experiences, and enhance their skills in an inclusive and supportive environment.</p>\n\n\n\n<p>These events could take various forms, such as networking sessions, workshops, talks, learning activities, or mentorship opportunities. Local communities interested in organizing such events can apply through the <a href=\"https://make.wordpress.org/community/handbook/community-deputy/other-event-formats/nextgen-wordpress-event/\">&nbsp;Creative WordPress Events Form</a>. Approved communities will receive a dedicated website and a stipend of $100 – $500 USD to support the event.</p>\n\n\n\n<p>The team is also seeking volunteer designers to create a banner and logo for the event, as well as a sticker sheet featuring female Wapuu designs.</p>\n\n\n\n<p>Pooja Derashri shared the vision of the team regarding this event: “By organizing women-centric WordPress events on International Women’s Day, we can spark meaningful conversations and encourage more women to join, lead, and contribute to WordPress. It’s an opportunity to strengthen our community and amplify women’s voices in open source.”</p>\n\n\n\n<p>The WordPress community has a history of organizing women-only events/initiatives. Notably, <a href=\"https://wordpress.org/news/2023/11/shirley/\">WordPress 6.4</a> and <a href=\"https://wordpress.org/news/2020/12/simone/\">WordPress 5.6</a> were led by teams composed of women and underrepresented gender groups.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 31 Dec 2024 19:14:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Jyolsna\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:38;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"WPTavern: Plugins Team Unveils Roadmap for Phase 2 of Plugin Check\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=184481\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"https://wptavern.com/plugins-team-unveils-roadmap-for-phase-2-of-plugin-check\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3622:\"<p>Chris Christoff of the Plugins Team has published the roadmap of <a href=\"https://make.wordpress.org/plugins/2024/12/24/plugin-check-goals-roadmap/\">Phase 2</a> of the <a href=\"https://wordpress.org/plugins/plugin-check/\">Plugin Check plugin</a>. According to the statistics shared at this year’s State of the Word, 41% fewer issues were reported per approved plugin after launching the Plugin Check tool, enabling the team to approve 138% more plugins each week and significantly reducing the review queue length.&nbsp;</p>\n\n\n\n<p>In the words of David Perez, “Plugin Check is a tool for testing whether your plugin meets the required standards for the WordPress.org plugin directory. With this plugin, you will be able to run most of the checks used for new submissions and check if your plugin meets the requirements.”</p>\n\n\n\n<p>David Perez also shared that the Plugin Check plugin significantly reduced the time for reviews, bringing the average wait time down from 37 weeks to 9 weeks, even as plugin submissions have almost doubled.</p>\n\n\n\n<p>In <a href=\"https://make.wordpress.org/plugins/2024/09/17/introducing-plugin-check-pcp/\">Phase 1</a>, Plugin Check was released to the community as a plugin available through WordPress.org. It currently has 2000+ Active installations. In October this year, it became a <a href=\"https://wptavern.com/wordpress-enforces-plugin-check-and-2fa-for-new-plugin-submissions\">requirement </a>for new plugin submissions to the Plugin Directory and for relisting plugins that were removed due to security issues.</p>\n\n\n\n<p><a href=\"https://make.wordpress.org/plugins/2024/12/24/plugin-check-goals-roadmap/\">Phase 2</a> of Plugin Check will expand its coverage to include updates made by plugin authors to plugins already listed in the Directory. Planned improvements for the second phase include enhanced documentation, more intuitive messaging, a revamped UI, conditional rule application, the addition of an experimental checks feature, easier output customization for better integration, and retroactive directory integration.</p>\n\n\n\n<p>The Plugins Team revealed that the Plugin Check project also aims to help plugin authors keep up with the latest best practices by allowing them to quickly scan their plugins for performance improvements and best practice opportunities. The PCP team will also collaborate with other teams to support plugin authors.</p>\n\n\n\n<p>Currently, Plugin Check evaluates plugins based on best practices across five categories: General, Plugin Repo, Security, Performance, and Accessibility. The Plugin Team encourages all plugin authors to integrate Plugin Check into their development workflows.&nbsp;</p>\n\n\n\n<img width=\"1909\" height=\"1145\" src=\"https://wptavern.com/wp-content/uploads/2024/12/image-18.png\" alt=\"Errors shown when Classic Widgets plugin is checked with Plugin Check\" class=\"wp-image-184483\" />\n\n\n\n<p>Specific rollout timelines and processes for Phase 2 will be shared in a future Make Plugins post as its release approaches. Those interested in contributing to the plugin can do so on its <a href=\"https://github.com/wordPress/plugin-check/\">GitHub repository</a>.</p>\n\n\n\n<p>Details on the specific timeline and processes for Phase 2 will be shared in an upcoming ‘Make Plugins’ post as the release date approaches. Those interested in contributing to the project can do so through its <a href=\"https://github.com/wordPress/plugin-check/\">GitHub repository</a>.</p>\n\n\n\n<p>Also check out <a href=\"https://pascalbirchler.com/wordpress-plugin-check/\">Pascal Birchler’s post</a> on Why you should start using Plugin Check.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 31 Dec 2024 17:59:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Jyolsna\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:39;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"Do The Woo Community: Highlights from a Q and A with James Kemp from Woo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"https://dothewoo.io/?post_type=blog&p=88445\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://dothewoo.io/blog/highlights-from-a-q-and-a-with-james-kemp-from-woo/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:380:\"James Kemp, Core Product Manager at Woo, recently shared updates and plans for the platform during a Q&#38;A episode on Woo ProductChat. His insights shed light on the current direction of WooCommerce and its commitment to empowering both merchants and developers. Integrating Premium Extensions into WooCommerce Core To simplify the experience for users, WooCommerce is [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 31 Dec 2024 10:50:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:40;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"WPTavern: WordCamp Europe 2025: Tickets and Diversity Scholarship Now Available\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=183631\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"https://wptavern.com/wordcamp-europe-2025-tickets-and-diversity-scholarship-now-available\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2556:\"<p>WordCamp Europe has <a href=\"https://europe.wordcamp.org/2025/tickets/\">released tickets</a> for the 2025 edition of the event scheduled for June 5-7 in Basel, Switzerland.</p>\n\n\n\n<p>There are two types of tickets: the General ticket, priced at €50, and the Micro-Sponsor ticket, which costs €250. Both options include access to all sessions and Contributor Day on June 5, though separate registration is required for Contributor Day.</p>\n\n\n\n<p>The Micro-Sponsor ticket, priced closer to the actual cost of attendance, is a great way to support the event if you’re able to contribute more. Tickets are refundable, and you can transfer ownership by editing the attendee details using the link provided in your purchase confirmation email. To purchase tickets, you’ll now need a <a href=\"https://login.wordpress.org/register\">WordPress.org account</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">WordCamp Europe 2025 Diversity Scholarship</h3>\n\n\n\n<p>WordCamp Europe 2025 is introducing a <a href=\"https://europe.wordcamp.org/2025/apply-now-for-the-wordcamp-europe-2025-diversity-scholarship/\">Diversity Scholarship</a>, an initiative previously exclusive to WordCamp Asia. This program has been extended to the Europe event following recommendations from members of WordPress Community Support PBC and Queeromattic to allocate surplus funds from the 2024 flagship event budgets toward DEIB (Diversity, Equity, Inclusion, and Belonging) initiatives. </p>\n\n\n\n<p>To qualify, applicants must be active contributors to the WordPress project, have never attended a flagship WordCamp (Asia, US, or Europe), require financial assistance to attend, and belong to an underrepresented demographic among open-source contributors. Applicants should also demonstrate a commitment to using their experience to help grow their local WordPress community or the WordPress community in Europe.</p>\n\n\n\n<p>The scholarship covers travel expenses to Basel from the recipient’s home city, accommodation during the event, and a ticket to WordCamp Europe 2025. However, it does not include airport transfers, meals, or other incidental expenses.</p>\n\n\n\n<p>Applications for the scholarship will be accepted until<strong> January 31, 2025</strong>. </p>\n\n\n\n<p>For more details, visit the WordCamp Europe <a href=\"https://europe.wordcamp.org/2025/apply-now-for-the-wordcamp-europe-2025-diversity-scholarship/\">website</a>.</p>\n\n\n\n<p>Last year’s event in Torino, Italy, saw nearly 3,000 attendees, and the 2025 edition is expected to draw between 3,500 and 4,500 participants.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 30 Dec 2024 17:59:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Jyolsna\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:41;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"Gravatar: Advanced Tips for Creating a Successful Online Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"http://blog.gravatar.com/?p=2532\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://blog.gravatar.com/2024/12/27/create-online-community/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:24623:\"<p>Building an online community takes dedication, skill, and strategic thinking – but the rewards make it worth every bit of effort. A thriving community can transform your business, whether it&#8217;s your main focus or supplements your existing offerings.</p>\n\n\n\n<p>Starting a community might seem deceptively simple. After all, people naturally want to connect with others who share their interests. And social media makes it easier than ever to gather people in one place.</p>\n\n\n\n<p>But creating a community that genuinely serves its members while meeting your goals? That&#8217;s a different challenge entirely. Most communities struggle with low engagement, unclear purpose, or lack of sustainable growth.</p>\n\n\n\n<p>This guide breaks down advanced strategies for building a community that lasts. You&#8217;ll learn practical approaches to choosing the right platform, creating engaging experiences, and fostering meaningful connections among members. Each section includes specific tactics you can implement right away, backed by examples from successful communities.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Define your reason for creating an online community</strong></h2>\n\n\n\n<p>Starting an online community requires significant time and resources. Before diving in, you need a clear purpose that guides every decision you make.</p>\n\n\n\n<p>The most successful communities serve specific, well-defined goals. A vague aim like &#8220;connecting people&#8221; won&#8217;t provide enough direction. Instead, focus on concrete objectives such as:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Supporting customers through peer-to-peer problem solving.</li>\n\n\n\n<li>Building brand loyalty through exclusive experiences and early access.</li>\n\n\n\n<li>Creating collaborative learning spaces where members share expertise.</li>\n\n\n\n<li>Gathering feedback to improve products or services.</li>\n\n\n\n<li>Providing specialized networking opportunities in niche fields.</li>\n</ul>\n\n\n\n<p>Your community&#8217;s purpose shapes everything from platform choice to content strategy. An educational community focused on live workshops needs different tools than a support community built around troubleshooting forums.</p>\n\n\n\n<p>Ask yourself: <strong>Will this community be central to your business model or support existing offerings?</strong> A course creator might build their entire business around a learning community, while a retailer might use community spaces to enhance customer experience through product discussions and reviews.</p>\n\n\n\n<p>The clearer your purpose, the easier it becomes to make decisions that serve both your members and your goals.</p>\n\n\n\n<h1 class=\"wp-block-heading\"><strong>Define your ideal persona and why community is important for them</strong></h1>\n\n\n\n<p>Success in community building starts with deeply understanding who your members are and what draws them to connect with others. Going beyond basic demographics reveals what truly motivates participation.</p>\n\n\n\n<p>Take these specific examples:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Remote tech workers seeking professional growth might join to share career advice, discuss industry trends, and build relationships outside their immediate team.</li>\n\n\n\n<li>Home bakers learning artisan bread techniques want to troubleshoot recipes, showcase their creations, and find motivation from fellow enthusiasts.</li>\n\n\n\n<li>Independent artists could gather to share business tips, critique works in progress, and find potential collaborators.</li>\n</ul>\n\n\n\n<p>Each group has distinct needs that shape how they&#8217;ll engage. Remote workers might value structured networking events and skill-sharing sessions, while bakers might prefer photo-rich discussions and live-streaming demonstrations. Artists might engage most with portfolio showcases and project collaboration tools.</p>\n\n\n\n<p>Study where your ideal members currently gather online. What frustrates them about existing spaces? What makes them stick around? Use these insights to craft experiences that solve real pain points.</p>\n\n\n\n<p>And remember – your community will attract different types of participants. Some will actively create content, others will moderate discussions, while many will simply absorb information. Design your space to support all these interaction styles.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Selecting the right format and channels for your online community</strong></h2>\n\n\n\n<p>Your community&#8217;s format directly impacts how members interact and engage. Each option offers distinct advantages for different community goals:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Forums</strong> excel at organizing in-depth discussions by topic, making it easy for members to find relevant conversations and contribute meaningfully. They&#8217;re particularly effective for technical support or knowledge-sharing communities.</li>\n\n\n\n<li><strong>Live events</strong> build excitement and real-time connection. Whether through video workshops, AMAs, or virtual meetups, synchronous gatherings create shared experiences that strengthen community bonds.</li>\n\n\n\n<li><a href=\"https://blog.gravatar.com/2024/07/11/enable-comments-in-wordpress/\"><strong>Comment sections</strong></a> work well for focused discussions around specific content pieces. They&#8217;re ideal for communities built around blogs, courses, or media content where context matters.</li>\n\n\n\n<li><strong>Activity feeds</strong> keep members updated on community happenings, highlighting recent discussions, achievements, and contributions. They help maintain engagement between deeper interactions.</li>\n</ul>\n\n\n\n<p><a href=\"https://wordpress.org/\">WordPress</a> offers the flexibility to mix these formats without platform restrictions. Unlike social media networks, you control the experience and aren&#8217;t subject to algorithmic changes or paid reach limitations. It also gives you an opportunity to create an engaging community platform with <a href=\"https://blog.gravatar.com/2024/05/09/wordpress-profile-page/\">customized profile pages</a> and personalized recommendations based on user data.&nbsp;</p>\n\n\n\n<p>Whatever the format is,<strong> we recommend starting with free channels to build your initial audience.</strong> For example, many fitness channels offer free training videos on YouTube and then a paid membership option for subscribers who want to join specific programs. Similarly, the <a href=\"https://www.youtube.com/@GoodMythicalMorning/community\">Good Mythical Morning YouTube channel</a> nurtures viewers before inviting them to join their premium <a href=\"https://www.mythicalsociety.com/\">Mythical Society community</a>. This approach lets you demonstrate value and build trust before asking for a deeper commitment.</p>\n\n\n\n<img width=\"660\" height=\"314\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/12/mythical-society.png?w=660\" alt=\"The Mythical Society\" class=\"wp-image-2535\" />\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Creating member profiles for your community&nbsp;</strong></h2>\n\n\n\n<p>Member profiles form the foundation of community identity and connection. <a href=\"https://gravatar.com/\">Gravatar</a> helps website owners with this crucial element by linking profiles to email addresses, enabling consistent identity across platforms with minimal setup time.</p>\n\n\n\n<p>The &#8220;Update Once, Sync Everywhere&#8221; feature saves valuable time for both administrators and members. Instead of creating new profiles for each community space, Gravatar allows all integrated platforms to pull in and auto-populate profile data.</p>\n\n\n\n<p><a href=\"https://blog.gravatar.com/2024/08/26/gravatar-api-tutorial-for-app-developers/\">Two powerful APIs</a> make implementation straightforward:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>The <a href=\"https://docs.gravatar.com/api/avatars/images/\">Avatar API</a> pulls member photos and basic details</li>\n\n\n\n<li>The <a href=\"https://docs.gravatar.com/rest-api/\">Profile API</a> imports comprehensive profile information</li>\n</ul>\n\n\n\n<p>This automation speeds up the <a href=\"https://blog.gravatar.com/2024/09/06/onboarding-user-experience/\">user onboarding</a> significantly. New members arrive with pre-filled profiles, reducing friction and increasing the likelihood they&#8217;ll engage right away. Familiar avatars across different sections of your community help members recognize each other easily, strengthening relationships.</p>\n\n\n\n<p><img src=\"https://s0.wp.com/wp-content/mu-plugins/wpcom-smileys/twemoji/2/72x72/2728.png\" alt=\"✨\" class=\"wp-smiley\" /><em>If you’re looking for some inspiration on how to build beautiful profile pages, check out our article on </em><a href=\"https://blog.gravatar.com/2024/06/05/user-profile-page-examples/\"><em>user profile page examples</em></a><em>.&nbsp;</em></p>\n\n\n\n<p>Privacy remains in members&#8217; control. They choose what information to share and can maintain multiple identities for different community roles – perfect for separating member and moderator profiles.</p>\n\n\n\n<a href=\"https://docs.gravatar.com/getting-started/\"><img width=\"3242\" height=\"729\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/12/gravatar_integration_cta.png\" alt=\"\" class=\"wp-image-2632\" /></a>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Creating community guidelines and moderation strategies</strong></h2>\n\n\n\n<p>Smart moderation strategies keep communities healthy while encouraging authentic interaction. Advanced approaches include:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>AI-powered content filtering to catch obvious violations automatically.</li>\n\n\n\n<li>Multi-tier moderation systems where trusted members help maintain community standards.</li>\n\n\n\n<li>Living guidelines that adapt based on community feedback and real situations.</li>\n</ul>\n\n\n\n<p>Gravatar&#8217;s universal profiles enhance these efforts by:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Using verified email addresses to reduce fake accounts and spam.</li>\n\n\n\n<li>Building trust scores based on member history across platforms.</li>\n\n\n\n<li>Speeding up issue resolution through integrated reporting systems.</li>\n</ul>\n\n\n\n<p>Balance strict rules with community self-regulation. The <a href=\"https://stackexchange.com/\">Stack Exchange network</a> demonstrates this well: Experienced members gain moderation privileges through consistent positive contributions, creating a sustainable system where the community largely moderates itself.</p>\n\n\n\n<p>Clear consequences for guideline violations matter, but focus more on rewarding positive behavior. Highlight exemplary members, celebrate constructive contributions, and create paths for members to earn additional privileges through helpful participation.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Strategies for launching and growing your community</strong></h2>\n\n\n\n<p>A successful community launch builds momentum that drives sustained growth. Smart tactics maximize early engagement and set the right foundations.</p>\n\n\n\n<p>Reward early adopters with exclusive perks like special &#8220;founding member&#8221; badges displayed on profiles. Besides the badges, members with this level could also have direct access to community leadership, the right to give input on future features and direction, and even early access to new content or features.</p>\n\n\n\n<p>However, you should nurture all members, not just the early adopters. Create achievement systems that encourage meaningful participation:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Recognition for quality contributions.</li>\n\n\n\n<li>Special roles for consistent, helpful answers.</li>\n\n\n\n<li>Progress tracking tied to learning goals.</li>\n\n\n\n<li>Visible milestones on member profiles.</li>\n</ul>\n\n\n\n<p>You can measure how successful your efforts are by measuring engagement metrics – number of comments, new members, etc. However, it’s best to go beyond the basics and track indicators that show real community health:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Ratio of new discussions to responses.</li>\n\n\n\n<li>Time between member questions and first answers.</li>\n\n\n\n<li>Number of connections made between members.</li>\n\n\n\n<li>Quality and depth of conversations.</li>\n</ul>\n\n\n\n<p>Finally, think of different ways you can scale engagement through time. Partner with micro-influencers who genuinely connect with your community&#8217;s purpose – their authentic enthusiasm will attract members who share your values.</p>\n\n\n\n<p>As your community grows, personalize the experience based on member behavior and interests. Use Gravatar profile data to:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Customize onboarding paths.</li>\n\n\n\n<li>Suggest relevant discussions.</li>\n\n\n\n<li>Connect members with shared interests.</li>\n\n\n\n<li>Highlight content matching expertise levels.</li>\n</ul>\n\n\n\n<p>Keep in mind that small, active communities often provide more value than large, disengaged ones. Focus on fostering quality interactions rather than chasing member numbers.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Fostering engagement and participation in your online community&nbsp;</strong></h2>\n\n\n\n<p>Engaged communities don&#8217;t happen by accident. They need thoughtful content, smart incentives, and active leadership. This section explores advanced strategies that go beyond basic engagement tactics, helping you create an environment where meaningful interaction happens naturally.</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Creating compelling community content and discussions&nbsp;</strong></h3>\n\n\n\n<p>Strong content sparks conversations that keep members coming back. Focus on creating material that taps into your community&#8217;s specific interests and motivations:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Frame discussion topics as practical problems to solve rather than digital queries.</li>\n\n\n\n<li>Share behind-the-scenes insights that make members feel like insiders.</li>\n\n\n\n<li>Create content series that build anticipation and regular participation.</li>\n\n\n\n<li>Use polls and surveys to gather opinions on controversial industry topics.</li>\n</ul>\n\n\n\n<p>Mix content formats to suit different learning and interaction styles:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Short-form videos for quick tips and demonstrations.</li>\n\n\n\n<li>Long-form articles for deep dives into complex topics.</li>\n\n\n\n<li>Audio content for on-the-go consumption.</li>\n\n\n\n<li>Interactive workshops for hands-on learning.</li>\n</ul>\n\n\n\n<p>Encourage member-generated content by:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Featuring expert members in community spotlights.</li>\n\n\n\n<li>Running themed challenges that showcase member work.</li>\n\n\n\n<li>Creating dedicated spaces for member success stories.</li>\n\n\n\n<li>Setting up peer mentoring programs.</li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Implementing gamification and rewards for active members</strong></h3>\n\n\n\n<p>Gamification transforms passive members into active participants when implemented thoughtfully. The <a href=\"https://www.duolingo.com/\">Duolingo</a> language learning community demonstrates this perfectly – their streak system and XP leaderboards turn daily practice into an engaging challenge.</p>\n\n\n\n<img width=\"660\" height=\"290\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/12/duolingo-daily-quest.png?w=660\" alt=\"Example of Duolingo completed daily quest\" class=\"wp-image-2578\" />\n\n\n\n<p>Achievement paths should reflect genuine community values. A tech support community might award &#8220;Problem Solver&#8221; status to members who consistently provide validated solutions. These members then receive special privileges, like the ability to mark answers as official solutions or mentor newcomers.</p>\n\n\n\n<p>Collaborative challenges build stronger connections between members. Take <a href=\"https://www.strava.com/challenges\">Strava&#8217;s monthly distance challenges</a> – they motivate individual achievement while fostering a sense of shared accomplishment. Your community might organize team projects that combine different skill sets, such as writers partnering with designers to create resources for the community.</p>\n\n\n\n<img width=\"660\" height=\"270\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/12/strava.png?w=660\" alt=\"Strava’s monthly distance challenges\" class=\"wp-image-2538\" />\n\n\n\n<p><strong>The most effective rewards provide real value. </strong>This could mean exclusive access to industry experts, featured spots in community content, or early access to new features. One gaming community successfully uses a point system where active members earn credits toward premium content and merchandise.</p>\n\n\n\n<p>Track achievements through Gravatar profiles to make recognition visible and persistent. Members can showcase their expertise badges, contribution streaks, and impact metrics across all community spaces, building consistent reputation and authority.</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Staying involved and active as a community leader</strong></h3>\n\n\n\n<p>Leadership visibility builds trust and encourages participation. Make your presence felt through:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Regular &#8220;state of the community&#8221; updates.</li>\n\n\n\n<li>Direct responses to member concerns.</li>\n\n\n\n<li>Personal stories that demonstrate vulnerability.</li>\n\n\n\n<li>Clear communication about community decisions.</li>\n</ul>\n\n\n\n<p><strong>Balance hands-on involvement with empowering others.</strong> Train moderators to handle day-to-day management, spotlight emerging community leaders and create opportunities for members to take ownership of initiatives.</p>\n\n\n\n<p>Remember that your consistent presence shows members their participation matters.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Scaling and building your community</strong></h2>\n\n\n\n<p>Growth presents both opportunities and challenges for community builders. A strategic approach helps maintain quality while expanding reach.</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Start with a detailed roadmap that outlines growth phases.</strong> Map specific initiatives to member count milestones – what works for 100 members likely won&#8217;t serve 10,000. Include plans for things like expanding moderator teams, adding new content formats, introducing advanced features, and upgrading the technical infrastructure of your platform to accommodate increased traffic.&nbsp;</li>\n\n\n\n<li><strong>Make data-driven decisions</strong> by tracking meaningful metrics:\n<ul class=\"wp-block-list\">\n<li>Member retention rates across different joining cohorts.</li>\n\n\n\n<li>Response times for member questions.</li>\n\n\n\n<li>Active participation percentages.</li>\n\n\n\n<li>Content engagement patterns.</li>\n</ul>\n</li>\n\n\n\n<li><strong>Gather and act on member feedback systematically.</strong> Monthly surveys, feedback threads, and one-on-one conversations with active members reveal pain points before they become major issues.</li>\n\n\n\n<li><strong>Maintain community culture through growth spurts.</strong> The Reddit community r/AskHistorians demonstrates this well &#8211; they&#8217;ve scaled to over a million members while maintaining strict quality standards for historical discussion.</li>\n\n\n\n<li><strong>Be cautious about growing too quickly. </strong>Rapid member influx can overwhelm moderation systems and dilute community culture. Focus on attracting members who align with your community&#8217;s core values rather than chasing pure numbers.</li>\n</ul>\n\n\n\n<p>And remember: <strong>bigger isn&#8217;t always better.</strong> A focused community of 500 engaged members often provides more value than one with 50,000 lurkers. A great example of this is <a href=\"https://join.creatorscience.com/#pricing\">Jay Clouse’s highest-tier community</a>, which has a cap of 200 members. He knows that exclusivity is one of the most important perks, and having fewer subscribers allows him to pay more attention and provide those people with unique benefits.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>How to monetize your community strategically</strong></h2>\n\n\n\n<p>Smart monetization enhances member value while creating sustainable revenue. The trick lies in aligning monetary goals with community benefits. Here’s what you can do:&nbsp;</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Paid memberships: </strong>Premium memberships work well when they unlock genuine value. <a href=\"https://www.sarahbethyoga.com/\">Sara Beth Yoga</a>, for example, offers basic classes through her YouTube channel while reserving expert-led workshops and specialized support groups for paying members. Members gladly pay because the premium features directly serve their goals.</li>\n\n\n\n<li><strong>Sponsored content: </strong>Brand partnerships succeed through authentic alignment. A photography community might partner with camera manufacturers for exclusive tutorials or early product access. Both the brand and community benefit, while members gain valuable insights.</li>\n\n\n\n<li><strong>Virtual events:</strong> These can include workshops taught by community experts, industry <a href=\"https://blog.gravatar.com/2024/06/16/how-to-network-at-a-conference/\">conferences</a> featuring member speakers, mastermind groups for specific topics, and behind-the-scenes tours or demonstrations.</li>\n\n\n\n<li><strong>Digital products</strong>: If members frequently ask similar questions, package those answers into comprehensive guides or courses. Let community input shape product development to ensure relevance.&nbsp;</li>\n\n\n\n<li><strong>Affiliate marketing: </strong>Sign up for affiliate programs to earn commissions on products you’ve personally tried and you believe your audience will find useful or interesting.&nbsp;</li>\n</ul>\n\n\n\n<p>Always maintain transparency about monetization. Explain how revenue supports community growth and improvement. Many successful communities, like <a href=\"http://dev.to\">DEV.to</a>, openly discuss their business model and gather member input on monetization decisions.</p>\n\n\n\n<p>Start small – test ideas with core members before full rollout. Their feedback helps refine offerings that truly serve the community.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Scaling your thriving community: Gravatar&#8217;s role in sustainable expansion</strong></h2>\n\n\n\n<p>Building a thriving online community requires careful planning, consistent effort, and the right tools. Each element covered in this guide is vital in creating spaces where people genuinely want to connect and contribute.</p>\n\n\n\n<p><a href=\"https://blog.gravatar.com/2024/06/03/profiles-as-a-service/\">Gravatar&#8217;s profiles-as-service system</a> removes major technical hurdles from community growth. This frees you to focus on what matters most – fostering meaningful connections between members.</p>\n\n\n\n<p>The platform supports sustainable expansion through several key features:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Streamlined registration</strong> eliminates common friction points. New members arrive with pre-populated profiles, making them more likely to engage immediately. No more abandoned signups due to lengthy forms.</li>\n\n\n\n<li><strong>Multi-platform identity management</strong> helps members maintain consistent presence across community spaces. A member&#8217;s contributions in your forums, comments, and events all link back to their unified profile on <a href=\"https://github.com/\">GitHub</a>, <a href=\"https://slack.com/\">Slack</a>, and other integrated platforms.</li>\n\n\n\n<li><strong>Rich profiles </strong>enable deeper connections. Members can showcase relevant expertise, interests, and achievements. This makes it easier for them to find like-minded peers and contribute meaningfully to discussions.</li>\n\n\n\n<li><strong>Privacy controls</strong> give members confidence in participation. They can manage multiple identities and control exactly what information appears in different community contexts. This flexibility encourages authentic engagement.</li>\n\n\n\n<li><strong>Developer-friendly integration</strong> speeds implementation through well-documented APIs and SDKs. You can focus on building unique community features instead of recreating basic profile functionality.</li>\n</ul>\n\n\n\n<p>Ready to start building your community? <a href=\"https://docs.gravatar.com/\">Explore how Gravatar can help</a> lay the foundation for sustainable growth while creating engaging member experiences.</p>\n\n\n\n<a href=\"https://docs.gravatar.com/getting-started/\"><img width=\"3242\" height=\"729\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/12/gravatar_integration_cta.png\" alt=\"\" class=\"wp-image-2632\" /></a>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 27 Dec 2024 16:11:49 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Ronnie Burt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:42;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"WPTavern: WordPress Training Team Launches New Course for Designers: Beginner WordPress Designer\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=183334\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:106:\"https://wptavern.com/wordpress-training-team-launches-new-course-for-designers-beginner-wordpress-designer\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1749:\"<p>The Training Team has launched a new course on Learn WordPress specifically for designers: <a href=\"https://learn.wordpress.org/course/beginner-wordpress-designer/\">Beginner WordPress Designer</a>. This learning pathway is crafted to help designers new to WordPress gain the skills needed to create professional websites.</p>\n\n\n\n<p>The course covers essential topics such as building a style guide, understanding block themes, and adopting a block-first approach to design. It also teaches best practices in web design, theme customization, layout composition, and working with media blocks.</p>\n\n\n\n<p>This learning pathway is free and open to everyone and consists of 24 lessons organized into 6 sections, requiring approximately 4 hours to complete:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Introduction to designing with WordPress</li>\n\n\n\n<li>Getting to know WordPress</li>\n\n\n\n<li>Web design best practices</li>\n\n\n\n<li>Customizing themes and templates</li>\n\n\n\n<li>Layout composition</li>\n\n\n\n<li>Working with media blocks</li>\n</ul>\n\n\n\n<a href=\"https://x.com/dcwhatwhat/status/1870036926087954635\"><img src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXcsB3IrCP79JgZlCcxR20I-kjT0wy8FAiSG471vrHErMhi3tkleO2KwZ8wwJU-LmAuauVD-D6FwKOe3NdOdEeSzfPhZbETKhQCGAuUuUwoZQs4jySI_OqjSX2UaGOyiZY9GUXZt2g?key=9To1fAJHQrfgfCSDChmn5_yZ\" alt=\"Tweet from WordPress Training Team rep Jamie Madden: \" /></a>\n\n\n\n<p>Lesley Sim, Co-founder of Newsletter Glue <a href=\"https://x.com/lesley_pizza/status/1870045335906832793\">tweeted</a>, “This looks so good and so useful.”</p>\n\n\n\n<p><a href=\"https://learn.wordpress.org/\">Learn WordPress</a> is an educational initiative by the Training team aimed at helping users of all levels improve their WordPress skills.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 26 Dec 2024 20:57:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Jyolsna\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:43;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"WPTavern: Matt Mullenweg Asks What Drama to Create in 2025, Community Reacts\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=183317\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"https://wptavern.com/matt-mullenweg-asks-what-drama-to-create-in-2025-community-reacts\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:9860:\"<p>On Christmas Eve, WordPress co-founder Matt Mullenweg took to <a href=\"https://www.reddit.com/r/WPDrama/comments/1hlp08d/what_drama_should_i_create_in_2025/\">Reddit</a>, causing quite a stir by asking what kind of drama he should create in 2025. He posted, “What drama should I create in 2025? I’m very open to suggestions. Should we stop naming releases after jazz musicians and name them after Drake lyrics? Eliminate all dashboard notices? Take over any plugins into core? Change from blue to purple? I think we can brainstorm together and come up with way better things than I could on my own. <img src=\"https://s.w.org/images/core/emoji/15.0.3/72x72/263a.png\" alt=\"☺\" class=\"wp-smiley\" /> Also, Merry Christmas! <img src=\"https://s.w.org/images/core/emoji/15.0.3/72x72/1f384.png\" alt=\"🎄\" class=\"wp-smiley\" />”</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"reddit-embed-bq\"><a href=\"https://www.reddit.com/r/WPDrama/comments/1hlp08d/what_drama_should_i_create_in_2025/\">What drama should I create in 2025?</a><br /> by<a href=\"https://www.reddit.com/user/photomatt/\">u/photomatt</a> in<a href=\"https://www.reddit.com/r/WPDrama/\">WPDrama</a></blockquote>\n</div>\n\n\n\n<p>The post quickly amassed over 500 comments. However, the community was far from being amused, and a good portion of the replies urged him to stop posting, step down, seek professional help, or take a break and avoid creating any drama. “For someone in your position, creating extraneous drama for these people is not only disrespectful, it&#8217;s outright psychopathic to the extent that it affects their ability to work and be productive.”, read one <a href=\"https://www.reddit.com/r/WPDrama/comments/1hlp08d/comment/m3ovebk/\">comment</a> from Stubby_Shillelagh.</p>\n\n\n\n<p>Redditor WillmanRacing referenced a Sherman Act violation, suggesting sarcastically, “I have a fantastic idea for some drama we can get up to. Why don&#8217;t we create a <a href=\"https://wordpressfoundation.org/\">charitable foundation</a> governing our open source software product, instead of <a href=\"https://automattic.com/\">our for-profit company</a>. Why don&#8217;t we also operate our main website as its <a href=\"https://wordpress.org/\">own separate entity</a>, with employees and volunteers provided by <a href=\"https://audrey.co/\">yet another entity</a>. Then, why dont we have all of these entities take action against one of our competitors and their entire customer base, refusing to do business with any customers until they stop working with our competitor. Why don&#8217;t we ban ALL of those people from our services, and try to compel them to use our service instead?” </p>\n\n\n\n<p>Many expressed frustration and hoped for a return to normalcy. One Redditor <a href=\"https://www.reddit.com/r/WPDrama/comments/1hlp08d/comment/m3om7bh/\">shared</a>, “I&#8217;ve been a huge fan of WordPress for the longest time, and I hate to see all this drama happening. Learning WordPress is actually how I landed my first official programming job. I really hope everything will get back to normal soon.”</p>\n\n\n\n<p>Responding to calls for taking a break, Matt quoted Shakespeare’s Macbeth: “Life&#8217;s but a walking shadow, A poor player that struts and frets his hour upon the stage, and then is heard no more: It is a tale told by an idiot, full of sound and fury, signifying nothing.”</p>\n\n\n\n<p>Matt also hinted that some exciting things are on the way. He said, “I&#8217;m really excited for people to experience Phase 3 of Gutenberg, things like real-time co-editing done completely peer-to-peer with WebRTC.”&nbsp;</p>\n\n\n\n<img src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXf07lUKH9MXt_vqFieCzYniY92OBQ5zYieFbWFRkWW7EbOBWMx3wBq0OGn14WjHmtgfdAPR9NaJnV3eFmIN7szRoueCIZ-MYVZX10IpkgBG6skYhRTWHbs1KTsa3n6sl6OD7AKt3Q?key=VJAxsFxouUADeL7bmQ2E84-5\" alt=\"\" />\n\n\n\n<p>Another person <a href=\"https://www.reddit.com/r/WPDrama/comments/1hlp08d/comment/m3q58tc/\">chimed in</a>, “Matt is doing to WordPress.org what broadcom is doing to VMware. WordPress used to be such a happy place with a rich thriving developer community, but now everyone is scared shitless that Matt will do a rug pull because he feels like it.”</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>It (WordPress) has a very special place in my heart, as well. I think WordPress&#8217; brightest days are ahead of it. </p>\n\n\n\n<p>&#8211; Matt Mullenweg</p>\n</blockquote>\n\n\n\n<p>Matt was also criticized for not grasping the gravity of the situation. One Redditor <a href=\"https://www.reddit.com/r/WPDrama/comments/1hlp08d/comment/m3ohcq4/\">said</a>, “How can you write such a post in a time like this? The WordPress community needs stability and a leadership to trust again. It doesn’t matter if you want to be funny, this is not the right time. Do you think people see this post and think, &#8220;yeah, that’s a project I want to contribute to?&#8221; Contributors are leaving, even getting banned. Clients are worried. Users looking for alternatives. A court is involved. But your actions don’t really look like you get the seriousness of this. It’s really sad to watch.”</p>\n\n\n\n<p>Another Redditor too shared this opinion and Matt replied, “I hope you see how much this is unique to WPE and not something that has happened before or since with others. <strong>Silver Lake holds things for 4-6 years and then flips and moves on. Myself and many others are in this for decades. We have seen their type come and go in the past.</strong>”</p>\n\n\n\n<p>When a Redditor asked about choosing Shopify or sticking with WordPress, Matt recommended, “Use WordPress if you value freedom, autonomy, and want to be in complete control of your digital future. Shopify can be expensive but a good proprietary solution if you want to do exactly what they offer and not color outside the lines too much.” Most of Matt’s comments in Reddit were downvoted. </p>\n\n\n\n<p>Some supported Matt’s recent actions. “Thanks for your &#8220;drama&#8221;. Had it been successful, this would have set the best precedent ever for the all the hyper-capitalist leeches leeching off the free work of others. But everyone is selfish, and short-sighted. They should have taken the opportunity to back you, and dealt with you later, but alas. All fools.”, read one <a href=\"https://www.reddit.com/r/WPDrama/comments/1hlp08d/comment/m3r7q2u/\">comment</a>.</p>\n\n\n\n<p>Another one <a href=\"https://www.reddit.com/r/WPDrama/comments/1hlp08d/comment/m3rbe7k/\">said</a>, “If you want to make the change you claim you want to see and Matt take a more ethical stance on his business practices, then maybe give WordPress back to the people for free as it was intended. Until then we should appreciate the guy who brought us to the dance. Does not mean we need to like him, more successful people are not liked, something very sad about watching a group of people attack a man who gave 50% of the net to the world for free.”</p>\n\n\n\n<p>The community also offered Matt various suggestions, both serious and playful:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Provide steady leadership.</li>\n\n\n\n<li>Listen to the community.</li>\n\n\n\n<li>Show restraint and consider how his actions affect the rest of the community.</li>\n\n\n\n<li>Publicly promise that no plugins from the Repo will be taken over.</li>\n\n\n\n<li>Endorse a successor to WordPress</li>\n\n\n\n<li>Federate the Repos and take the hosting costs off Automattic.</li>\n\n\n\n<li>Introduce a built-in way to create a simple contact form&nbsp;</li>\n\n\n\n<li>Hand over WordPress.org to a community-run group.</li>\n\n\n\n<li>Make Gutenberg absolutely awesome.</li>\n\n\n\n<li>Offer WordPress with three options right out of the box: Classic only, Gutenberg only, or both.</li>\n\n\n\n<li>Name WordPress releases after meteors/poets/songwriters.</li>\n\n\n\n<li>Charge $.05 per request to anything at WordPress.org</li>\n</ul>\n\n\n\n<p>Regarding the ongoing drama, Matt said, “We&#8217;ll look back on the WPE drama next year as something that seemed like a big deal at the time but isn&#8217;t that notable in the grand arc of history.”</p>\n\n\n\n<p>&nbsp;He signed off, saying, “I really do enjoy talking with people on the internet, even if we don&#8217;t always agree, and I appreciate everyone taking the time to share their perspective. Forums like this is how I got my start as a teenager. If you think Reddit is spicy, you should have seen Usenet and IRC back in the day! I hope you all have an amazing Christmas and very happy new year.”</p>\n\n\n\n<p>The discussion spilled over to Twitter, too. Ryan Duff <a href=\"https://x.com/ryancduff/status/1871708268755869736\">dubbed</a> it “Just another day of very unhealthy and toxic behavior from WordPress co-founder Matt Mullenweg.”</p>\n\n\n\n<p>Takis Bouyouris <a href=\"https://x.com/takisbig/status/1872231107594535031\">tweeted</a>, “Either Matt has crossed some sort of personal Rubicon, or it is hard to imagine how such pettiness could have been the attribute of one who lead the project for so many years. Being lonely at the top, detached from reality and without healthy consult is a sign of a fading ruler. The Autumn of the Patriarch, by Gabriel García Márquez is a great novel on the topic.”&nbsp;</p>\n\n\n\n<p>Duane Storey <a href=\"https://x.com/DuaneStorey/status/1871773196795691345\">tweeted</a>, “Matt looking down at the #WordPress community on Reddit this Christmas eve, wondering why we are all still singing and enjoying ourselves without our WordPress.org toys.”</p>\n\n\n\n<p>Kellie Peterson <a href=\"https://x.com/kellie/status/1871701861369340395\">exclaimed</a>, “What fresh hell? This is what Matt Mullenweg is doing on Christmas Eve. He could be spending it with his alleged many godchildren, his mother, and his sister but instead he&#8217;s sowing chaos.”</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 26 Dec 2024 20:13:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Jyolsna\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:44;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"Gravatar: The Future of Blog UX: 6 Trends and Tools You Need\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"http://blog.gravatar.com/?p=2562\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://blog.gravatar.com/2024/12/23/blog-ux-best-practices/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:20196:\"<p>Even though great content is an important part of any blog, it’s only a small part of <a href=\"https://blog.gravatar.com/2024/08/16/user-experience-personalization/\">creating great user experiences</a>. Everything on your site should be focused on making sure readers can actually find, enjoy, and interact with what you&#8217;ve written.&nbsp;</p>\n\n\n\n<p>A well-designed user experience keeps visitors reading longer, encourages them to explore more posts, and makes them more likely to take a desired action, whether that&#8217;s signing up for your newsletter or checking out your products.</p>\n\n\n\n<p><strong>Search engines care about user experience too. </strong>Google specifically looks at how people interact with your blog, making UX a significant factor in where your content appears in search results. And according to <a href=\"https://lawsofux.com/jakobs-law/\">Jakob&#8217;s Law</a>, which tells us users prefer websites that work similarly to ones they already know, creating a familiar yet modern interface can dramatically increase engagement.</p>\n\n\n\n<p>Ready to make your blog easier to use and more engaging? Let&#8217;s explore some proven practices and tools to help create an outstanding experience for your readers. Plus, discover how <a href=\"https://gravatar.com/\">Gravatar</a> can boost your blog&#8217;s credibility and user interaction.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>1. Ensuring your blog homepage is easy to navigate and well-organized</strong></h2>\n\n\n\n<p>The homepage of your blog sets the tone for the entire reading experience. Getting it right means implementing smart navigation features that help readers find exactly what they want.</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Start with an intelligent search system. </strong>Add auto-suggest functionality that predicts what users might search for as they type and weigh the results based on popularity and relevance. Make sure search results can be filtered by date, category, or content type to help readers narrow down their options.</li>\n</ul>\n\n\n\n<img width=\"1647\" height=\"919\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/12/example-search-system-woo.png\" alt=\"WooCommerce’s search function\" class=\"wp-image-2565\" />\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Structure your content with a clear taxonomy.</strong> Limit your primary categories to 5-7 options – any more can overwhelm readers. Build nested subcategories for more specific topics and use dynamic tag clouds to show popular subjects. This creates clear pathways for readers to explore related content.</li>\n</ul>\n\n\n\n<img width=\"1687\" height=\"771\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/12/gravatar-category-overview.png\" alt=\"Gravatar’s category overview\" class=\"wp-image-2566\" />\n\n\n\n<p>How you load content matters, too. For blogs with lots of posts, choose between:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Infinite scroll:</strong> Great for casual browsing and image-heavy content.</li>\n\n\n\n<li><strong>Pagination:</strong> Better for readers who want to track their progress or return to specific pages.</li>\n</ul>\n\n\n\n<p>On mobile devices, focus on these essential elements:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>A clean drawer menu that slides in from the side.</li>\n\n\n\n<li>Floating action buttons for quick access to searches or categories.</li>\n\n\n\n<li>Headers that stay visible while scrolling.</li>\n</ul>\n\n\n\n<p>For content previews on your homepage:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Keep excerpts between 120-160 characters.</li>\n\n\n\n<li>Use 16:9 ratio images for consistency.</li>\n\n\n\n<li>Create custom layouts for different types of posts (tutorials, news, reviews).</li>\n</ul>\n\n\n\n<p>Remember to test your navigation with real users. Watch how they browse and search, then adjust based on their behavior. <strong>The best blog homepage design is one that feels natural and helps readers discover more of your content without thinking about it.</strong></p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>2. Optimizing the visual experience on your blog posts</strong></h2>\n\n\n\n<p>The main goal of great blog design is to make content easy and pleasant to read. Let&#8217;s look at specific techniques that enhance readability and keep readers engaged.</p>\n\n\n\n<p>Typography needs precise measurements to work well:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Set body text between 16-18px for comfortable reading.</li>\n\n\n\n<li>Use a line height of 1.5-1.6 to create breathing room between lines.</li>\n\n\n\n<li>Keep line length to 60-75 characters to prevent eye strain.</li>\n\n\n\n<li>Pick fonts that render crisply on all screen sizes.</li>\n</ul>\n\n\n\n<p>Make long posts easier to navigate with these structural elements:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Add a sticky table of contents that follows as readers scroll.</li>\n\n\n\n<li>Show a progress bar indicating how far through the post they are.</li>\n\n\n\n<li>Create clear visual separation between sections using whitespace.</li>\n\n\n\n<li>Include &#8220;jump to section&#8221; links for quick navigation.</li>\n</ul>\n\n\n\n<p>The first screen readers see (the &#8220;above-fold&#8221; area) should give them immediate context:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Add a clear summary box highlighting the main points.</li>\n\n\n\n<li>Display estimated reading time prominently.</li>\n\n\n\n<li>Keep at least 15-20% of space empty to avoid visual clutter.</li>\n\n\n\n<li>Use subheadings to break up text into scannable chunks.</li>\n</ul>\n\n\n\n<p>For complex or technical posts:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Create expandable sections for detailed explanations.</li>\n\n\n\n<li>Add tooltips to explain specialized terms.</li>\n\n\n\n<li>Use bullet points and numbered lists for step-by-step instructions.</li>\n\n\n\n<li>Include relevant screenshots or diagrams.</li>\n</ul>\n\n\n\n<p><strong>Most importantly, maintain consistency across all posts. </strong>Readers shouldn&#8217;t have to relearn how to navigate each time they visit. This follows Jakob&#8217;s Law – when elements work the same way throughout your blog, readers feel more confident exploring your content.</p>\n\n\n\n<p>Overall, visual design should support your content, not compete with it. Every element should serve a purpose in making the post easier to read and understand.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>3. Performance optimization: Speeding up your blog with dynamic content loading</strong></h2>\n\n\n\n<p>A fast-loading blog keeps readers happy and engaged. Here&#8217;s how to serve content quickly and efficiently using modern loading techniques.</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Start with progressive loading to prioritize what matters</strong>, such as text and critical elements. Defer less important elements until after the main content appears and use resource hints to tell browsers what to load next. For example, you can implement the intersection observer API to load images only as readers scroll through them.&nbsp;</li>\n\n\n\n<li><strong>Structure your JavaScript smartly</strong> by splitting code into smaller chunks that load only when needed. Use dynamic imports for features like comment sections or sharing buttons, load third-party scripts (like analytics) after core content, and apply virtual scrolling on index pages to handle large archives efficiently.&nbsp;</li>\n\n\n\n<li><strong>Optimize images for better performance</strong> by compressing them without noticeably reducing quality. We recommend generating WebP versions of all images and creating multiple sizes for different screen widths. You could also use content-aware loading to prioritize visible images.</li>\n\n\n\n<li><strong>Set up technical optimizations</strong>, including browser caching with appropriate cache-control headers, skeleton screens (placeholder content) while posts load, and a CDN that will serve assets from locations close to your readers. Make sure you monitor Core Web Vitals regularly to catch performance issues early.&nbsp;</li>\n\n\n\n<li><strong>Include infinite scroll implementations</strong> like pre-loading the next set of posts before readers reach the bottom, keeping memory usage in check by removing posts far outside the viewport, saving scroll position when readers click through to a post, and showing loading indicators only when new content is actually loading.</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>4. Making your blog more authoritative through E-E-A-T best practices</strong></h2>\n\n\n\n<p>Building trust with users means showing them exactly why they should value your content. Experience, expertise, authoritativeness, and trustworthiness (E-E-A-T) help readers – and search engines – understand the credibility behind your posts.</p>\n\n\n\n<p>The best way to do that is by creating <a href=\"https://blog.gravatar.com/2024/10/23/upgrade-author-profiles-with-the-gravatar-block-for-wordpress/\">comprehensive author profiles</a>:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>List relevant credentials and certifications.</li>\n\n\n\n<li>Highlight years of experience in specific topics.</li>\n\n\n\n<li>Link to other published work and research.</li>\n\n\n\n<li>Show professional achievements and awards.</li>\n\n\n\n<li>Connect social media profiles to establish a reliable <a href=\"https://blog.gravatar.com/2024/04/10/personal-branding-tools/\">digital presence</a>.</li>\n</ul>\n\n\n\n<p>Gravatar makes managing author identities simple across multiple platforms. Contributors have to create just one profile, and their information appears on Gravatar-supported websites, including every <a href=\"http://wordpress.com\">WordPress.com</a> blog. There, the integration happens automatically – perfect for blogs with multiple contributors or authors who write across different sites.&nbsp;</p>\n\n\n\n<p>For <a href=\"http://wordpress.org\">WordPress.org</a> sites, the <a href=\"https://wordpress.org/plugins/gravatar-enhanced/\">Gravatar Enhanced plugin</a> adds powerful profile features:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Customizable author profile blocks.</li>\n</ul>\n\n\n\n<img width=\"1548\" height=\"742\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/12/profile-block-example.png\" alt=\"The Gravatar profile block on WordPress\" class=\"wp-image-2567\" />\n\n\n\n<ul class=\"wp-block-list\">\n<li>Automatic profile card embedding in posts.&nbsp;</li>\n\n\n\n<li>Social media integration.&nbsp;</li>\n\n\n\n<li>Custom biography sections.</li>\n</ul>\n\n\n\n<img width=\"1542\" height=\"724\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/12/customizable-author-biography.png\" alt=\"Example of a customizable author biography section \" class=\"wp-image-2568\" />\n\n\n\n<p>You can use these features to build authority with your audience and create dedicated pages showcasing each author&#8217;s expertise. And if your users don’t have a Gravatar profile, you can set up an automated email sequence inviting them to create one.&nbsp;</p>\n\n\n\n<img width=\"660\" height=\"198\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/12/gravatar-plugin-invitation.png?w=660\" alt=\"Example of an invitation to create a Gravatar profile\" class=\"wp-image-2569\" />\n\n\n\n<p><img src=\"https://s0.wp.com/wp-content/mu-plugins/wpcom-smileys/twemoji/2/72x72/1f4a1.png\" alt=\"💡\" class=\"wp-smiley\" /><em>If you’re not on WordPress (org or com), don’t worry! You can use Gravatar on any platform thanks to its easy-to-implement </em><a href=\"https://blog.gravatar.com/2024/06/03/profiles-as-a-service/\"><em>REST API</em></a><em>.</em></p>\n\n\n\n<p>Now, going beyond author profiles, you can build authority by structuring your archives effectively. For example, you can create Group posts by topic to demonstrate subject knowledge and display engagement metrics like comment counts. When you have someone who’s been contributing for a while, you can feature their most popular or influential posts or add testimonials from industry peers or readers.&nbsp;</p>\n\n\n\n<p>We also recommend that you make expertise visible throughout your content, not just through design:&nbsp;</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Add &#8220;About the Author&#8221; sections within posts.</li>\n\n\n\n<li>Include relevant credentials in article introductions.</li>\n\n\n\n<li>Link to author&#8217;s research or cited works.</li>\n\n\n\n<li>Show expertise indicators next to author names.</li>\n\n\n\n<li>Feature author contributions to industry publications.</li>\n</ul>\n\n\n\n<p>The Gravatar API lets you enhance these profiles further:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Pull in verified professional achievements.</li>\n\n\n\n<li>Display unified author information across platforms.</li>\n\n\n\n<li>Show real-time updates to author credentials.</li>\n\n\n\n<li>Create custom profile layouts for different content types.</li>\n</ul>\n\n\n\n<p>Whatever your approach is, the best strategy is authenticity. Focus on highlighting genuine expertise and real accomplishments rather than inflating credentials. Readers appreciate honesty and will trust authors who demonstrate their knowledge through quality content backed by verifiable experience.</p>\n\n\n\n<a href=\"https://wordpress.org/plugins/gravatar-enhanced/\"><img width=\"3243\" height=\"729\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/12/gravatar_enhanced_cta.png\" alt=\"\" class=\"wp-image-2634\" /></a>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>5. Boosting engagement and user interactions on your blog</strong></h2>\n\n\n\n<p>There are several strategies you can implement for a successful and engaging experience.&nbsp;</p>\n\n\n\n<p>First, you must <strong>ensure that your internal linking structure is logical</strong> – you don’t need to link to everything, just the posts that make sense. When you’re smart about it, you can keep readers exploring your content naturally through connections based on topics, skill levels, and reader interests. So, place contextual links within your content where they add value, and use automated related post sections that adapt based on what similar readers have found useful.</p>\n\n\n\n<p>Now, it’s a great thing to guide your readers throughout the blog, but you also need to <strong>motivate them with concrete but meaningful calls to action</strong>. Don’t bombard them with popups; analyze your scroll depth data to understand where readers are most receptive to taking action. Test different CTA positions, designs, and messages with various user segments to find what resonates best.</p>\n\n\n\n<p>Want to create a successful newsletter? <strong>Think beyond basic signup forms.</strong> <a href=\"https://wordpress.com/newsletter/\">WordPress.com&#8217;s native newsletter</a> functionality allows for sophisticated subscriber management. You can segment your audience, deliver automated post notifications, and track which content drives the most engagement. Plus, you can show different content blocks depending on whether someone&#8217;s already subscribed.</p>\n\n\n\n<p>However, perhaps the most powerful way to <strong>build engagement is through an active comment section</strong>. Here&#8217;s where Gravatar&#8217;s universal profile system really shines. When readers comment, their <a href=\"https://blog.gravatar.com/2024/06/05/user-profile-page-examples/\">verified profiles</a> automatically sync across any Gravatar-enabled platform. This builds a sense of community as readers recognize familiar faces and can trust they&#8217;re interacting with real people.</p>\n\n\n\n<img width=\"1784\" height=\"992\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/12/gravatar-comment-section.png\" alt=\"Example of a comment section with Gravatar profiles\" class=\"wp-image-2570\" />\n\n\n\n<p>With the <a href=\"https://jetpack.com/\">Jetpack</a> plugin, you can enhance this further by enabling <a href=\"https://support.gravatar.com/profiles/hovercards/\">hovercards</a> – detailed profile previews that appear when readers hover over a commenter&#8217;s name. These cards can display social connections, verified links, and complete user information, encouraging meaningful discussions while reducing spam and low-quality comments. This feature is automatically enabled on WordPress.com websites.&nbsp;</p>\n\n\n\n<img width=\"1036\" height=\"569\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/12/hovercards-example.png\" alt=\"Example of hovercards\" class=\"wp-image-2571\" />\n\n\n\n<p>Want to set up commenting on your WordPress site? Check out our detailed <a href=\"https://blog.gravatar.com/2024/07/11/enable-comments-in-wordpress/#:~:text=Enable%20comments%20on%20specific%20posts&text=Go%20to%20the%20Discussion%20panel,and%20click%20on%20Allow%20comments\">guide on enabling and managing comments</a> effectively.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>6. Creating multimedia elements that add genuine value to articles</strong></h2>\n\n\n\n<p>Adding images, videos, and interactive elements can enhance understanding – but only if they&#8217;re implemented thoughtfully. Your multimedia content should support your message without slowing down your blog.</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Data visualization demands careful attention to detail:</strong> Interactive charts and graphs have to work across screen sizes while maintaining readability. Before adding a visual element, ask whether it makes complex information clearer. And remember to A/B test different visualization styles to see which ones readers engage with most.</li>\n\n\n\n<li><strong>Video integration requires balancing quality with performance: </strong>Implement lazy loading so videos only download when readers scroll near them. This keeps your pages fast while still offering rich content. Match your video player controls to your blog&#8217;s design, and add clear thumbnails that tell readers what they&#8217;ll learn.</li>\n</ul>\n\n\n\n<p>Whatever multimedia elements you choose, optimize them for <a href=\"https://support.google.com/webmasters/answer/9205520?hl=en\">Core Web Vitals</a>:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Compress files without sacrificing quality.</li>\n\n\n\n<li>Set proper width and height attributes to prevent layout shifts.</li>\n\n\n\n<li>Use modern formats like WebP for images and WebM for video.</li>\n\n\n\n<li>Ensure all content works well on mobile devices.</li>\n</ul>\n\n\n\n<p>Most importantly, <strong>make your multimedia content accessible</strong>. Add descriptive alt text for images, provide transcripts for videos, and ensure interactive elements work with keyboard navigation and screen readers.</p>\n\n\n\n<p>Think of multimedia as a powerful tool, not a requirement. Each element should serve a clear purpose in helping readers better understand your content. When used strategically, these additions can transform complex topics into engaging, memorable experiences.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Boost your blog’s UX with Gravatar integration</strong></h2>\n\n\n\n<p>Ready to put these UX improvements into action? Gravatar offers a simple way to enhance your blog&#8217;s user experience through automated profile management.</p>\n\n\n\n<p>The Gravatar Enhanced plugin makes implementation straightforward, with customizable profile blocks that showcase author expertise and build reader trust. Hovercards add depth to your comment sections, displaying detailed user information when readers hover over profile images. This creates a more dynamic, engaging experience that encourages meaningful discussions.</p>\n\n\n\n<p>For developers, the Gravatar API enables custom profile displays tailored to your blog&#8217;s specific needs. Build unique author showcases, create advanced comment systems, or integrate user profiles in creative ways. Plus, built-in privacy controls let users manage exactly what information they share.</p>\n\n\n\n<p>Whether you’re a developer or a passionate blogger, you can use Gravatar to transform your blog into an engaging, professional platform where readers can connect with authors and each other meaningfully. Check out the <a href=\"https://docs.gravatar.com/\">Gravatar REST API</a> or the <a href=\"https://wordpress.org/plugins/gravatar-enhanced/\">Gravatar Enhanced plugin</a> today!</p>\n\n\n\n<a href=\"https://docs.gravatar.com/getting-started/\"><img width=\"3242\" height=\"729\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/12/gravatar_integration_cta.png\" alt=\"\" class=\"wp-image-2632\" /></a>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 23 Dec 2024 19:24:17 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Ronnie Burt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:45;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"WPTavern: Joost de Valk Calls for Breaking the WordPress Status Quo, Community Reacts\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=183019\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:95:\"https://wptavern.com/joost-de-valk-calls-for-breaking-the-wordpress-status-quo-community-reacts\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:10236:\"<p>Joost de Valk, co-founder of the Yoast SEO plugin has called for <a href=\"https://joost.blog/wordpress-leadership/\">Breaking the Status Quo</a> of the WordPress world. This comes in the wake of Matt Mullenweg’s announcement of a <a href=\"https://wptavern.com/matt-mullenweg-declares-holiday-break-for-wordpress-org-services\">holiday break for WordPress.org</a> and the ongoing Automattic-WP Engine legal dispute.</p>\n\n\n\n<p>de Valk said, “We, the WordPress community, need to decide if we’re ok being led by a single person who controls everything, and might do things we disagree with, or if we want something else. For a project whose tagline is “Democratizing publishing”, we’ve been very low on exactly that: democracy.”</p>\n\n\n\n<p>Referring to Mullenweg as a BDFL (Benevolent Dictator For Life), de Valk argued that Matt is “no longer Benevolent, and because of that, speaking up in public is a risk.” </p>\n\n\n\n<p>de Valk acknowledged that due to Yoast’s contributions to WordPresss, he “did get some say in where WordPress went, though never officially, and never when it went in directions that Matt disagreed with. Over time, that influence became less as Matt tightened his grip on the project. I think that tightening was in part a cramp. Wanting to control more what people were working on, because the project wasn’t progressing fast enough in the direction he wanted it to go in.”</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>I think it’s time to let go of the cult and change project leadership. I’ve said it before: we need a “board”. We can’t wait with doing that for the years it will take for Automattic and WP Engine to fight out this lawsuit.</p>\n\n\n\n<p>&#8211; Joost de Valk</p>\n</blockquote>\n\n\n\n<p>He said, “I’m still, to this day, very thankful for what Matt has created. I would love to work with him to fix all this. But it’s clear now, that we can no longer have him be our sole leader, although I’d love it if we could get him to be among the leaders.”</p>\n\n\n\n<p>He put forward 5 steps that must be taken fast:&nbsp;</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>A WordPress foundation-like entity consisting of a board with people from diverse backgrounds leads the project.</li>\n\n\n\n<li>WordPress.org and key community assets are transferred to the foundation.</li>\n\n\n\n<li>The WordPress trademark is made public domain or managed for free use.</li>\n\n\n\n<li>Companies and individuals can sponsor the foundation, receiving perks like listings on a hosting page.</li>\n\n\n\n<li>Small teams are formed for Architecture, Product, Events, etc., with proper governance.</li>\n</ul>\n\n\n\n<p>He also suggested “Federated and Independent Repositories” to decentralize the official WordPress repository. He said, “Matt might not agree to my first five points above. However, we can still work on the Federated and Independent Repositories without his permission because, frankly, we don’t need it.”</p>\n\n\n\n<p>He revealed that he’s already in talks with other community figures like Karim Marucchi, CEO of <a href=\"https://crowdfavorite.com/\">Crowd Favorite</a>. He is also willing to take up the mantle of the movement if needed.&nbsp;</p>\n\n\n\n<p>He said, “I’m here, and willing to lead through this transition. I do have the time, the energy and the money needed to fund myself doing it. I’ve worked in this industry and this community for close to 20 years and it’s very dear to me. Thanks in large part to the WordPress project, I have the privileged position to be able to drop and/or delegate some of the stuff I’m working on and start working on this.”</p>\n\n\n\n<h2 class=\"wp-block-heading\">Karim Marucchi&#8217;s Vision For a New WordPress Business Roadmap</h2>\n\n\n\n<p>Karim Marucchi of Crowd Favorite <a href=\"https://marucchi.com/wordpress-leadership-continued/\">backed Joost de Valk</a>. He said, “the current situation has jeopardized the very fabric of this ecosystem.”</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>We need to prevent a single entity from doing to WordPress what befell other open-source projects that shrank or died while protecting one party’s market position.</p>\n\n\n\n<p>&#8211; Karim Marucchi</p>\n</blockquote>\n\n\n\n<p>He proposed five essential critical paths to concentrate on:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Securing the supply chain &amp; start modernization </li>\n\n\n\n<li>Convening, defining &amp; creating the Commons </li>\n\n\n\n<li>Defining the roadmap as “the” Open-Web’s Operating System.</li>\n\n\n\n<li>Open Source as a hub for innovation</li>\n\n\n\n<li>Focusing on leading data ownership, privacy, and accessibility</li>\n</ul>\n\n\n\n<p>de Valk and Marucchi will get together with other community leaders in January 2025 to decide the way forward.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\">Response From Matt</h2>\n\n\n\n<p>Matt commented under de Valk’s blog post: “I think this is a great idea for you to lead and do under a name other than WordPress. There’s really no way to accomplish everything you want without starting with a fresh slate from a trademark, branding, and people point of view.”</p>\n\n\n\n<img src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXcTpyqNYnNjZg-xV2Rv1R7x3qQXGpoU7AVGZOc8tFo9OOrVkfiL8ChA2lRDim6K7cX0D6yfTdxr8OjEGK-hQHA9_hnfXqMbbQICT9rD3KXX9KrRuxfPPDRt-DaNRfYhaKGxBmGfzQ?key=-I6GkQPHdB1BBSFBEdeFapzU\" alt=\"\" />\n\n\n\n<h2 class=\"wp-block-heading\">Response From the Community </h2>\n\n\n\n<p>Joost de Valk found support from other community leaders too.&nbsp;</p>\n\n\n\n<p>Brian Gardner of WP Engine supported de Valk, <a href=\"https://x.com/bgardner/status/1870160970930094201\">tweeting</a>, “Cosign. (My personal op and b/c I <img src=\"https://s.w.org/images/core/emoji/15.0.3/72x72/1f49b.png\" alt=\"💛\" class=\"wp-smiley\" /> WordPress.)”</p>\n\n\n\n<p>WP Engine also came out in <a href=\"https://x.com/wpengine/status/1870242287218790849\">support</a>.&nbsp;</p>\n\n\n\n<img src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXdEiJs51Ktl6ff9Sk9qm46CV7Ov8Jz0F57KRKIXNwYrGYQT-T8w1r0MPOJb-7TfTRLPEEtdX8wPepMDPulo20eAC04JCpQmKaMhVAPAalacKcJbWqJaDdGUcUc8Xn4PsZdJkHYL?key=-I6GkQPHdB1BBSFBEdeFapzU\" alt=\"\" />\n\n\n\n<p>Michele Butcher-Jones of Can’t Speak Geek also shared her <a href=\"https://x.com/Michele_Butcher/status/1870153025970389432\">thoughts</a>:</p>\n\n\n\n<img src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXdmEzYfuNjqwVmODtiT7PFZTYA2Prtc6p5vlH-U46nbuPrPotPJh3NZj6NHuFSa6FvNJjKzIZYl7Ll2UmoaJbgqo7M03lP2zn_Z5mYm7zddaTZFhtqzyiUlu3Rjen4L4RO-6lWv?key=-I6GkQPHdB1BBSFBEdeFapzU\" alt=\"\" />\n\n\n\n<p>Katie Keith of Barn2Plugins <a href=\"https://x.com/KatieKeithBarn2/status/1870209673300988414\">shared</a>, “Wow, I never expected someone as high profile as&nbsp; @jdevalk to speak out so openly against the current leadership of WordPress. However, I completely agree with his analysis of the situation and his proposed solutions.”</p>\n\n\n\n<p>WordPress Core Committer Tonya Mork <a href=\"https://x.com/hellofromTonya/status/1870185509391348102\">said</a>, “I&#8217;ve been mostly quiet, other than publicly pausing my WordPress Core contributions. That ends today. I stand with&nbsp; @jdevalk and @karimmarucchi for the &#8220;hold this community together&#8221; effort. Publicly sharing my support.”</p>\n\n\n\n<p>Taco Verdo of Emilia Capital had this to <a href=\"https://x.com/TacoVerdo/status/1870227289327161440\">say</a>:</p>\n\n\n\n<img src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXcS5tGbOrk8z10qVICgWBrl6BrRMHwTxgVgdPShb2cv6cjp7-xfBOyxvdIY48IBP2fvpiHtr0KxbO53aGIbjZZDT9qXGsv-f-NeYQ3I94Rc6D_HhP_2YA0gHk5CUobGxmIf6wta1g?key=-I6GkQPHdB1BBSFBEdeFapzU\" alt=\"\" />\n\n\n\n<p><a href=\"https://x.com/schutzsmith/status/1870241562245960157\">Daniel Schutzsmith</a>, <a href=\"http://on Brown @jb510\">Jon Brown</a>, <a href=\"https://x.com/MeetKarissa/status/1870188249064387046\">Karissa Skirmont</a>, <a href=\"https://x.com/BlakeWhittle7/status/1870184049236464120\">Blake Whittle</a>, <a href=\"https://x.com/DuaneStorey/status/1870144554562986053\">Duane Storey</a>, <a href=\"https://x.com/vovafeldman/status/1870433054533013625\">Vova Feldman</a> and <a href=\"https://x.com/takisbig/status/1870398208985215188\">Takis Bouyouris</a> also came out in support of de Valk.&nbsp;&nbsp;</p>\n\n\n\n<p>Andrei Lupu was, however, against the development. He <a href=\"https://x.com/euthelup/status/1870215581841911837\">said</a>, “Let me nuke my WP career with an honest question: why would we follow a board of people who sold their products when they peaked? No one is perfect and I&#8217;m not sure if switching from one person&#8217;s vision to multiple people fighting for influence of a &#8220;board&#8221; is a good thing.”</p>\n\n\n\n<p>@ViaEth also <a href=\"https://x.com/ViaEth/status/1870485717232882157\">supports</a> Matt. “All of this started after WPE couldn&#8217;t continue to leech off the #WordPress branding. All of these blog posts and whining just proves @photomatt right. Companies want to suck WP dry if this was purely about altruistic reason they would just fork the codebase and fuck off.”</p>\n\n\n\n<p><a href=\"https://x.com/jessuppi/status/1870432050370769222\">Jesse Nickles</a>, an SEO enthusiast, also does not believe in de Valk. He said, “Despite my desire to want to give you another chance as a &#8220;thought leader&#8221; or whatever else, 2 things are seared into my memory&#8230; first, the fact that Yoast SEO was always, and still is, one of the most dishonest and tricky plugins in WordPress history.”</p>\n\n\n\n<p>Morten Rand-Hendriksen published <a href=\"https://www.linkedin.com/pulse/after-wordpress-morten-rand-hendriksen-mkvgc/\">After WordPress</a>. According to him, there are two paths forward for the WordPress community:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Mullenweg releases his iron grip on the project, brings in proper governance, creates a more equitable ecosystem economy, and steps into a role of visionary leader instead of micromanager.&nbsp;</li>\n\n\n\n<li>The community organizes, takes every lesson learned over the past 20+ years, combines with a vision for what the world will need going into the next 10 years, and builds a new platform to stand on.</li>\n</ul>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 21 Dec 2024 19:00:28 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Jyolsna\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:46;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"Gravatar: Customize Your Link in Bio: Top Tools Reviewed\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"http://blog.gravatar.com/?p=2436\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://blog.gravatar.com/2024/12/20/link-in-bio-tools/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:19973:\"<p>Every social media platform has an About section. However, this tends to be very limited in terms of what you can include in it, making it hard to make a memorable first impression and truly tell people what you’re all about. For example, these sections often limit you to a single link in your profile and don’t allow different content formats, just text.&nbsp;</p>\n\n\n\n<p>That&#8217;s why link-in-bio tools have become essential for anyone sharing content online. These tools let you pack multiple destinations into one simple URL, making it easier to guide followers to your content, products, or services.</p>\n\n\n\n<p>This is important for everyone – from an influencer promoting sponsored content to a business owner showcasing products. But with so many tools on the market, it can be hard to choose the right one – some offer basic link collections, while others provide advanced features like analytics and customization options.</p>\n\n\n\n<p>This guide examines popular link-in-bio tools, from dedicated solutions like <a href=\"https://blog.gravatar.com/2024/10/21/linktree-alternatives/\">Linktree</a> to comprehensive profile systems like <a href=\"https://gravatar.com/\">Gravatar</a>. You&#8217;ll learn about essential features, pricing comparisons, and practical tips to help you select the tool that fits your needs.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>What is a link-in-bio tool?</strong></h2>\n\n\n\n<p>A link-in-bio tool creates a single webpage that houses all your important links. Think of it as a mini-website that fits inside your social media profile&#8217;s single link limitation. Instead of choosing between linking to your website, the latest video, or a new product, you can share everything at once.</p>\n\n\n\n<p>These tools typically let you include the following:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Social media profiles</li>\n\n\n\n<li>Website links</li>\n\n\n\n<li>Product pages</li>\n\n\n\n<li>Blog posts</li>\n\n\n\n<li>Contact information</li>\n\n\n\n<li>Latest announcements</li>\n\n\n\n<li>Promotional content</li>\n</ul>\n\n\n\n<p>As you can see, this is a great alternative to X’s (Twitter) one-link or <a href=\"https://blog.gravatar.com/2024/04/12/maximize-your-instagram-bio-the-top-tools-to-consider/\">Instagram’s five-link limit</a>. However, beyond solving the one-link problem, these tools make your profile look more professional.&nbsp;</p>\n\n\n\n<p>Rather than cramming multiple URLs into your bio text, you present a clean, organized hub for your content. This makes it easier for followers to find what they&#8217;re looking for, whether that&#8217;s your latest <a href=\"https://www.youtube.com/\">YouTube</a> video or your online store.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Features to consider in a link-in-bio tool</strong></h2>\n\n\n\n<p>While the features you require will depend on your specific use case, there are some universal good-to-haves that every good link-in-bio tool should provide.&nbsp;</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Flexible presentation options.</strong> Look for platforms that provide various layouts and themes to match your style. For example, a photographer might want a grid layout to showcase their portfolio, while a musician might prefer a list format with embedded music players.</li>\n\n\n\n<li><strong>Design flexibility beyond basic themes.</strong> The best tools let you control colors, fonts, and layouts to match your brand identity. Some even allow custom CSS for complete design control. This means you can make your bio page look like a natural extension of your website or social media presence.</li>\n\n\n\n<li><strong>Link management features. </strong>While basic tools might limit you to 5-10 links, more advanced options offer unlimited links with organizing capabilities. You might want to group your podcast episodes separately from your shop links, or temporarily feature a special promotion without deleting your regular links.</li>\n\n\n\n<li><strong>Additional content features.</strong> Beyond simple URLs, look for tools that support text descriptions, image galleries, video embeds, or newsletter signups. A makeup artist could embed tutorial videos directly in their bio page, while a writer could feature book excerpts alongside purchase links.</li>\n\n\n\n<li><strong>Useful integrations with other platforms.</strong> This might include connecting your eCommerce store to display products, embedding your Spotify playlist, or linking your email marketing service to capture leads. These integrations save time by automatically updating your bio page when you post new content.</li>\n\n\n\n<li><strong>Privacy and user control features.</strong> Some tools let you password-protect certain links, manage multiple profiles from one account, or control who can edit your page. This becomes especially important when working with teams or managing different brands.</li>\n\n\n\n<li><strong>In-depth analytics. </strong>Good tools show you which links get the most clicks, when people visit your page, and where they&#8217;re coming from. This data helps you optimize your page – for instance, you might discover that placing your newsletter signup at the top doubles your conversion rate.</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Comparing the top link in bio tools</strong></h2>\n\n\n\n<p>Each link-in-bio tool offers unique advantages. Here&#8217;s a detailed look at seven popular options to help you make an informed choice.</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Gravatar</strong></h3>\n\n\n\n<img width=\"660\" height=\"343\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/11/gravatar-new-homepage-4.png?w=660\" alt=\"Gravatar homepage\" class=\"wp-image-2444\" />\n\n\n\n<p>At its core, <a href=\"https://gravatar.com/\">Gravatar</a> is a universal profile system that doubles as a link-in-bio tool with a unique <a href=\"https://blog.gravatar.com/2024/02/27/gravatar-manifesto-one-profile-everywhere/\">&#8220;Set once, seen everywhere&#8221;</a> approach to online profiles. When you create a Gravatar profile, thousands of websites can automatically display your profile picture and information – but only with your consent.&nbsp;</p>\n\n\n\n<p>For example, when you comment on a WordPress blog or contribute to a GitHub project, these platforms can pull in your verified profile data. This automatic syncing saves time and ensures consistency across your <a href=\"https://blog.gravatar.com/2024/04/10/personal-branding-tools/\">online presence</a>.</p>\n\n\n\n<img width=\"660\" height=\"103\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/11/sites-using-gravatar.png?w=660\" alt=\"Logos of sites using Gravatar\" class=\"wp-image-2460\" />\n\n\n\n<p>The platform functions as both a <a href=\"https://blog.gravatar.com/2024/08/28/level-up-your-profile-3-cool-new-features-for-your-link-in-bio/\">link-in-bio tool</a> and a comprehensive profile system. You can add:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Essential links to social media and websites.</li>\n</ul>\n\n\n\n<img width=\"660\" height=\"429\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/11/gravatar-links-feature-1.png?w=660\" alt=\"Adding website links to a Gravatar profile\" class=\"wp-image-2446\" />\n\n\n\n<ul class=\"wp-block-list\">\n<li>Verified account connections.</li>\n</ul>\n\n\n\n<img width=\"660\" height=\"333\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/11/gravatar-profile-links-new-4.png?w=660\" alt=\"Gravatar verified links feature \" class=\"wp-image-2447\" />\n\n\n\n<ul class=\"wp-block-list\">\n<li>About Me section.</li>\n</ul>\n\n\n\n<img width=\"660\" height=\"510\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/11/gravatar-about-section.png?w=660\" alt=\"Editing the About section in Gravatar\" class=\"wp-image-2448\" />\n\n\n\n<ul class=\"wp-block-list\">\n<li>Payment details.</li>\n</ul>\n\n\n\n<img width=\"660\" height=\"336\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/11/gravatar-wallet-feature.png?w=660\" alt=\"Adding payment links and wallet addresses to Gravatar\" class=\"wp-image-2450\" />\n\n\n\n<ul class=\"wp-block-list\">\n<li>Contact information.</li>\n</ul>\n\n\n\n<img width=\"660\" height=\"285\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/11/adding-contact-info-to-gravatar-profile.png?w=660\" alt=\"Adding contact information to Gravatar profile\" class=\"wp-image-2451\" />\n\n\n\n<ul class=\"wp-block-list\">\n<li>Images and videos.</li>\n</ul>\n\n\n\n<img width=\"660\" height=\"238\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/11/gravatar-images-section.png?w=660\" alt=\"Adding images to a Gravatar profile\" class=\"wp-image-2452\" />\n\n\n\n<p>Customization options give you full control over your profile&#8217;s appearance. Drag and drop elements to perfect their placement, choose background colors that match your brand, and add custom headers and footers to make the page yours. The layout builder makes it simple to create a professional-looking profile without needing design skills.</p>\n\n\n\n<p>Think of Gravatar as a <a href=\"https://blog.gravatar.com/2024/08/02/organizational-benefits-of-efficient-contact-sharing/\">digital business card</a> that evolves with your online presence. Beyond basic contact details, it showcases your portfolio, connects your social profiles, and highlights your professional achievements – all in one place that updates everywhere automatically.</p>\n\n\n\n<p>Privacy remains in your control. Create multiple profiles for different aspects of your life – perhaps one for professional connections and another for creative projects. Choose exactly what information appears on which websites and manage all your online identities from a single dashboard.</p>\n\n\n\n<p>Unlike most competitors, Gravatar offers <a href=\"https://blog.gravatar.com/2024/06/26/link-your-gravatar-profile-with-a-free-custom-domain/\">free custom domain support</a> (when acquired through <a href=\"http://wordpress.com\">WordPress.com</a>). This means your bio page can live at “yourname.link” instead of a platform-specific URL. And the entire service costs nothing for individual users, making it an accessible option for anyone building their online presence.</p>\n\n\n\n<a href=\"https://gravatar.com/connect/?gravatar_from=blog\"><img width=\"3243\" height=\"729\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/12/free_profile_cta.png\" alt=\"\" class=\"wp-image-2616\" /></a>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Linktree</strong></h3>\n\n\n\n<img width=\"660\" height=\"471\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/11/linktree-homepage.png?w=660\" alt=\"Linktree homepage\" class=\"wp-image-2453\" />\n\n\n\n<p><a href=\"https://linktr.ee/\">Linktree</a> popularized the link-in-bio concept with its straightforward approach. The platform shines with its user-friendly interface and extensive template collection. You can set up a basic page in minutes, choosing from various button styles and color schemes.</p>\n\n\n\n<p>With their free plan, you get unlimited links, QR codes, and a Shop tab to sell products like merch and affiliates. If you decide to go for one of their paid plans, however, you get:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Advanced design options like custom animations</li>\n\n\n\n<li>Deeper analytics, such as performance for specific links.</li>\n\n\n\n<li>Link scheduling, SEO settings, <a href=\"https://accounts.google.com/signin/v2/identifier?service=analytics&passive=1209600&continue=https%3A%2F%2Fanalytics.google.com%2Fanalytics%2Fweb%2F%23&followup=https%3A%2F%2Fanalytics.google.com%2Fanalytics%2Fweb%2F&flowName=GlifWebSignIn&flowEntry=ServiceLogin\">Google Analytics</a>, and other marketing tools.&nbsp;</li>\n\n\n\n<li>Collecting email addresses and phone numbers.&nbsp;</li>\n\n\n\n<li>Priority support and tailored onboarding with the highest tier.&nbsp;</li>\n</ul>\n\n\n\n<p>Linktree also integrates well with platforms like <a href=\"https://mailchimp.com/\">Mailchimp</a> and <a href=\"https://www.shopify.com/\">Shopify</a>, making it suitable for email marketing and ecommerce.</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Later Link in Bio</strong></h3>\n\n\n\n<img width=\"660\" height=\"396\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/11/later-link-in-bio-homepage.png?w=660\" alt=\"Later link-in-bio tool homepage\" class=\"wp-image-2454\" />\n\n\n\n<p><a href=\"https://later.com/link-in-bio/\">Later&#8217;s tool</a> takes a unique approach by turning your Instagram feed into clickable content. Each post becomes a link destination, making it perfect for visual content creators who frequently reference past Instagram posts.&nbsp;</p>\n\n\n\n<p>There is a free plan, but it’s very hard to find what’s actually included in it. The paid tiers start from $25/month up to $80 for individuals and $200 per month for agencies.&nbsp;</p>\n\n\n\n<p>Features include:&nbsp;</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>30 and 150 posts per social profile for the first two paid tiers and unlimited for the rest.&nbsp;</li>\n\n\n\n<li>Easy integration with Later&#8217;s social media scheduling tools for planning posts and corresponding bio links in advance.&nbsp;</li>\n\n\n\n<li>Analytics with up to 1 year of data.</li>\n\n\n\n<li>Credits for AI features.&nbsp;</li>\n\n\n\n<li>Brand collab tools for creators.&nbsp;</li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Hopp by Wix</strong></h3>\n\n\n\n<img width=\"660\" height=\"344\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/11/hopp-by-wix-homepage.png?w=660\" alt=\"Hopp homepage\" class=\"wp-image-2455\" />\n\n\n\n<p>Built on <a href=\"https://www.wix.com/\">Wix&#8217;s</a> website platform, <a href=\"https://www.hopp.co/\">Hopp</a> offers extensive customization options. Users benefit from Wix&#8217;s drag-and-drop interface and design flexibility, making it possible to create highly personalized landing pages.</p>\n\n\n\n<p>Besides that, you also get:&nbsp;</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>URL shortening to match the brand name.&nbsp;</li>\n\n\n\n<li>A mobile landing page that you can track.&nbsp;</li>\n\n\n\n<li>Smart promotions that show a pre-roll when a user clicks on a specific URL.&nbsp;</li>\n</ul>\n\n\n\n<p>The platform particularly suits small businesses thanks to its built-in ecommerce capabilities. You can sell products directly through your bio page, complete with inventory management and secure payment processing.</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Sprout Social</strong></h3>\n\n\n\n<img width=\"660\" height=\"318\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/11/sprout-social-link-in-bio-tool.png?w=660\" alt=\"Sprout Social’s link-in-bio tool homepage\" class=\"wp-image-2456\" />\n\n\n\n<p>Aimed at businesses and agencies, <a href=\"https://sproutsocial.com/features/link-in-bio/\">Sprout Social&#8217;s link-in-bio</a> feature comes as part of its comprehensive social media management suite. The tool emphasizes professional features like:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Grid-like design of the links that mirrors an Instagram feed.</li>\n\n\n\n<li>Advanced analytics – group, profile, and post-level reporting.&nbsp;</li>\n\n\n\n<li>Automated link rotation and link scheduling.</li>\n\n\n\n<li>Engagement and customer care services include social inbox, comment moderation, and case management.&nbsp;</li>\n</ul>\n\n\n\n<p>While it&#8217;s one of the pricier options with no free plan, the integrated approach makes sense for teams already using Sprout Social&#8217;s other features. The tiers start from $199/per seat per month up to $399.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Stan</strong></h3>\n\n\n\n<img width=\"660\" height=\"430\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/11/stan-link-in-bio-tools.png?w=660\" alt=\"Stan homepage\" class=\"wp-image-2457\" />\n\n\n\n<p><a href=\"https://www.stan.store/\">Stan</a> focuses on monetization, functioning as both a link-in-bio tool and an ecommerce platform. It&#8217;s built specifically for creators who want to:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Sell digital products, services, courses, and webinars.&nbsp;</li>\n\n\n\n<li>Offer paid subscriptions.</li>\n\n\n\n<li>Host exclusive content.</li>\n\n\n\n<li>Manage fan relationships.</li>\n</ul>\n\n\n\n<p>The platform includes features for managing customer relationships and tracking sales metrics, though its specialized nature means it might be overkill for users just seeking basic link sharing.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Maximizing impact: Best practices for link in bio optimization</strong></h2>\n\n\n\n<p>Creating a link in bio page marks just the beginning – optimizing it is what drives real results. Here&#8217;s how to make your page more effective.</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Start with a clean, organized design that matches your brand.</strong> If you&#8217;re a photographer with a minimalist black-and-white Instagram feed, your bio page should reflect that same aesthetic. This visual consistency helps visitors instantly recognize and trust your page.</li>\n\n\n\n<li><strong>Place your most important content at the top</strong> – that new product launch or latest video needs prime placement. And remember to remove outdated links promptly. Nothing frustrates visitors more than clicking a &#8220;new release&#8221; link from three months ago.</li>\n\n\n\n<li><strong>Write clear, action-focused text for each link.</strong> Instead of &#8220;My YouTube,&#8221; try &#8220;Watch my latest photography tutorials.&#8221; Rather than &#8220;Shop,&#8221; use &#8220;Browse handmade ceramics.&#8221; These specific descriptions tell visitors exactly what to expect, increasing the likelihood they&#8217;ll click.</li>\n\n\n\n<li><strong>Test your page on different devices – mobile, desktop, and tablet. </strong>Are buttons easy to tap? Is text readable without zooming? Does the page load quickly? Most of your visitors will browse on phones, so mobile-first design matters.</li>\n\n\n\n<li><strong>Track your analytics to understand what works.</strong> If your <a href=\"https://www.spotify.com/int/why-not-available/\">Spotify</a> playlist gets more clicks than your online store, maybe your audience prefers content over products. Use these insights to adjust your strategy. Try different link placements, descriptions, or visual elements to see what resonates.</li>\n\n\n\n<li><strong>Think of your bio page as telling your brand&#8217;s story. </strong>Rather than throwing random links together, create sections that guide visitors through your work. A fitness coach might group links into categories like &#8220;Workout Plans,&#8221; &#8220;Nutrition Tips,&#8221; and &#8220;Success Stories.&#8221; This structured approach helps visitors find exactly what interests them.</li>\n\n\n\n<li><strong>Remember to refresh your page regularly. </strong>Add seasonal content, highlight new projects, and remove outdated material. A dynamic page gives followers reasons to return and explore what&#8217;s new.</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Create the ultimate link-in-bio with Gravatar</strong></h2>\n\n\n\n<p>Link in bio tools solve common problems, but Gravatar takes a different approach. Rather than just collecting links, it acts as a complete online identity manager. Your Gravatar profile syncs across various integrated platforms, ensuring your online presence stays consistent without extra work.</p>\n\n\n\n<p>What makes Gravatar unique? Privacy controls let you decide exactly what information appears where. You can manage multiple identities from one account. And unlike most link in bio tools, Gravatar offers custom domain support at no cost when using a WordPress.com domain.</p>\n\n\n\n<p>Plus, there&#8217;s no catch – it&#8217;s completely free for individual users. Getting started takes minutes: sign up with your email, add your essential information, and customize your profile. Your unified online presence awaits. </p>\n\n\n\n<p><a href=\"https://gravatar.com/profile\">Create your Gravatar profile for free</a> so that your social media followers can truly make a connection with you.</p>\n\n\n\n<a href=\"https://gravatar.com/connect/?gravatar_from=blog\"><img width=\"3243\" height=\"729\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/12/free_profile_cta.png\" alt=\"\" class=\"wp-image-2616\" /></a>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 20 Dec 2024 20:18:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Ronnie Burt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:47;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"Gravatar: 7 Transformative Techniques for Website Content Personalization\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"http://blog.gravatar.com/?p=2226\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://blog.gravatar.com/2024/12/20/website-personalization/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:23688:\"<p>Ever visited a website that seems to know exactly what you&#8217;re looking for? That&#8217;s website personalization in action. It&#8217;s the art of tailoring a site&#8217;s content, layout, and overall experience to each user based on their preferences, behaviors, and demographics.</p>\n\n\n\n<p>Website personalization can be done in different ways. You might encounter:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Content personalization that serves up articles or products you&#8217;re likely to enjoy.</li>\n\n\n\n<li>User interface customization that adjusts the layout based on your browsing habits.</li>\n\n\n\n<li>Product recommendations that feel like they&#8217;re reading your mind.</li>\n\n\n\n<li>Marketing messages that speak directly to your interests.</li>\n</ul>\n\n\n\n<p>Think about how <a href=\"https://www.netflix.com/\">Netflix</a> suggests shows you might like or how <a href=\"https://www.amazon.com/\" rel=\"nofollow\">Amazon</a> recommends products based on your browsing history.&nbsp;</p>\n\n\n\n<p>Similarly, news websites often customize their content feeds to match your reading preferences, while eCommerce sites may greet you with personalized homepages depending on your location and cookie history.</p>\n\n\n\n<p>In this article, we&#8217;ll dive into key techniques for implementing personalization on your website. We&#8217;ll also explore how <a href=\"https://gravatar.com/\">Gravatar</a> can play a very important role in this process, helping you create a more engaging and tailored experience for your users.</p>\n\n\n\n<p>Ready to transform your website into a personalized hub that keeps visitors coming back for more? Let&#8217;s get started!</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Benefits of website personalization</strong></h2>\n\n\n\n<p>Successful online content always caters to the needs and preferences of its visitors, and website personalization is a powerful strategy for improving your site&#8217;s performance and user satisfaction.&nbsp;</p>\n\n\n\n<p>Here&#8217;s how it can help you:</p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Improved user experience:</strong> When your website speaks directly to each user&#8217;s needs and preferences, it creates a more enjoyable and relevant browsing experience. It&#8217;s like having a store that rearranges itself for each customer – pretty cool, right?</li>\n\n\n\n<li><strong>Increased engagement:</strong> Tailored content is a magnet for user attention. When visitors find what they&#8217;re looking for quickly and easily, they&#8217;re more likely to stick around, explore more pages, and return for future visits.</li>\n\n\n\n<li><strong>Higher conversion rates:</strong> Personalized recommendations and targeted Calls-To-Action (CTAs) are conversion powerhouses. By showing users exactly what they&#8217;re interested in, you&#8217;re essentially laying out a red carpet to the &#8220;Buy Now&#8221; button.</li>\n\n\n\n<li><strong>Enhanced customer loyalty:</strong> When users feel understood and valued, they&#8217;re more likely to form an emotional connection with your brand. This can turn casual browsers into loyal customers who not only keep coming back but also recommend your site to others.</li>\n\n\n\n<li><strong>Better data utilization:</strong> Personalization allows you to put all that user data you&#8217;ve been collecting to good use. Instead of letting insights gather dust, you&#8217;re turning them into actionable strategies that drive real business growth.</li>\n\n\n\n<li><strong>Competitive advantage:</strong> When constantly fighting with competitors (not in real life, hopefully), adding a personalized experience can be your secret weapon. It sets your website apart and gives users a compelling reason to choose you over the generic alternatives.</li>\n</ol>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Challenges of website personalization</strong></h2>\n\n\n\n<p>While website personalization offers numerous benefits, it&#8217;s not without its hurdles. Let&#8217;s take a look at some of the common challenges you might face:</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Collecting data</strong></h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Data collection methods:</strong> Gathering user data can be tricky. You might use behavior tracking, surveys, or third-party sources. However, as people become more conscious about their data, the best strategy is to collect this information directly from your users – it’s the most trustworthy way.&nbsp;</li>\n\n\n\n<li><strong>Data quality and accuracy:</strong> Your personalization is only as good as your data. Poor quality or inaccurate data can lead to off-target personalization, which might frustrate users instead of delighting them.</li>\n\n\n\n<li><strong>Integration challenges:</strong> Integrating data from multiple sources into a unified system can be like solving a complex puzzle. Tools like Gravatar can help simplify this process by providing a centralized profile management system.</li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Adherence to data regulations</strong></h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Privacy laws and regulations:</strong> Navigating the maze of data privacy laws like the <a href=\"https://gdpr-info.eu/\">General Data Protection Regulation (GDPR)</a> and the <a href=\"https://oag.ca.gov/privacy/ccpa\" rel=\"nofollow\">California Consumer Privacy Act (CCPA)</a> can be daunting. If you don’t comply, you risk legal issues and losing the trust of your users.&nbsp;</li>\n\n\n\n<li><strong>Consent management:</strong> Getting user consent for data collection and personalization efforts is crucial. It&#8217;s a balancing act between being transparent and not overwhelming users with consent requests.</li>\n\n\n\n<li><strong>Data security:</strong> With great data comes great responsibility. Securing user information is paramount to prevent breaches and misuse. Gravatar, for instance, prioritizes data security and gives users <a href=\"https://support.gravatar.com/account/data-privacy/\">control over their personal information</a>.</li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Other challenges</strong></h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Technical complexity:</strong> Implementing personalization can be technically demanding. Setting up algorithms, managing large datasets, and ensuring real-time data processing are not small tasks.</li>\n\n\n\n<li><strong>Resource constraints:</strong> Personalization efforts can be time-consuming and potentially expensive. You might need to invest in new tools or expertise. Using existing solutions like Gravatar can help streamline processes and reduce the burden on your resources.</li>\n\n\n\n<li><strong>Over-personalization:</strong> There&#8217;s a fine line between helpful personalization and feeling like you&#8217;re being watched. Finding the right balance is key to ensuring personalization feels natural and beneficial, not creepy or intrusive.</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Requirements of a personalization engine</strong></h2>\n\n\n\n<p>To effectively personalize your website, you&#8217;ll need a reliable personalization engine. Here are the key components you should look for:</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Unified dataset</strong></h3>\n\n\n\n<p>A unified dataset is like the brain of your personalization efforts. It&#8217;s a centralized repository that brings together data from various sources, giving you a comprehensive view of your users.</p>\n\n\n\n<p><strong>Benefits:</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Provides a holistic understanding of user behavior and preferences.</li>\n\n\n\n<li>Enables detailed audience segmentation for targeted engagement.</li>\n\n\n\n<li>Simplifies the process of combining data from different channels.</li>\n</ul>\n\n\n\n<p><strong>Data sources:</strong> Your unified dataset might include information from CRM systems, eCommerce platforms, social media, mobile apps, and even in-store data.</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Open architecture</strong></h3>\n\n\n\n<p>An open architecture is all about flexibility. It&#8217;s a system design that plays well with others, allowing easy integration with various third-party tools and technologies.</p>\n\n\n\n<p><strong>Benefits:</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Connects with your existing marketing tech stack (CRM, CMS, analytics tools, etc.).</li>\n\n\n\n<li>Allows for easy addition of new features and tools without disrupting existing systems.</li>\n\n\n\n<li>Reduces the need for extensive custom development work.</li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Decision logic</strong></h3>\n\n\n\n<p>Decision logic is the smart part of your personalization engine. It&#8217;s the set of rules and algorithms that determine what personalized content to serve up based on user data.</p>\n\n\n\n<p><strong>Benefits:</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Automates the personalization process, reducing manual effort.</li>\n\n\n\n<li>Enables real-time personalization, delivering tailored content on the fly.</li>\n\n\n\n<li>Uses machine learning to continuously improve personalization strategies based on user interactions.</li>\n</ul>\n\n\n\n<p>Decision logic can power personalized product recommendations, dynamic content delivery, targeted email campaigns, and much more!</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Types of data used for personalization</strong></h2>\n\n\n\n<p>Effective website personalization relies on various types of data. Let&#8217;s explore the key categories:</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Contextual data</strong></h3>\n\n\n\n<p>Contextual data is all about the user&#8217;s current situation and environment, including their device, operating system, browser, screen resolution, and traffic source (direct, paid, referral, search, social media).</p>\n\n\n\n<p>This information helps tailor the user experience based on their current context and specific situation.</p>\n\n\n\n<p><strong>Some examples include:&nbsp;</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Displaying a mobile-optimized version of a website for smartphone users.&nbsp;</li>\n\n\n\n<li>A food app showing restaurant recommendations depending on the user’s location.&nbsp;</li>\n\n\n\n<li>Customizing content based on the user&#8217;s referral source (e.g., different landing pages for social media vs. search engine traffic).&nbsp;</li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Behavioral data</strong></h3>\n\n\n\n<p>Behavioral data captures how users interact with your website, for example where they click, what they add to their cart and purchase, and what pages they visit. This data provides you with insights into user preferences and interests, allowing for highly accurate personalization.</p>\n\n\n\n<p><strong>Some examples include:</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Recommending products based on previous purchases or browsing history.</li>\n\n\n\n<li>Personalizing content based on frequently visited pages or clicked links.</li>\n\n\n\n<li>Sending notifications and emails about items in their cart.&nbsp;</li>\n</ul>\n\n\n\n<img width=\"660\" height=\"435\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/09/wordpress-abandoned-cart-email.png?w=660\" alt=\"Abandoned cart email by WordPress\" class=\"wp-image-2229\" />\n\n\n\n<h3 class=\"wp-block-heading\"><strong>CRM data</strong></h3>\n\n\n\n<p>CRM data is information you&#8217;ve collected directly from users, mostly through surveys, registration forms, and other intentional interactions. This is one of the best data types because it’s highly accurate for personalization as it&#8217;s directly provided by the user, reflecting their stated preferences and needs.</p>\n\n\n\n<p><strong>Some examples include:</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Customizing email marketing campaigns based on user-provided preferences.</li>\n\n\n\n<li>Personalizing website content for registered users based on their profile information.</li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Zero-party data</strong></h3>\n\n\n\n<p>Zero-party data is information voluntarily shared by users through surveys, polls, and other interactive tools, including personal details and preferences. It’s considered highly reliable as it&#8217;s willingly shared by the user, offering deep insights into their preferences.</p>\n\n\n\n<p><strong>Some examples include:</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Creating personalized content and offers based on user-provided preferences and feedback.&nbsp;</li>\n\n\n\n<li>Enhancing user profiles with detailed information gathered from interactive tools.</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Exploring key techniques for website personalization</strong></h2>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>1. Segmenting your site according to personas</strong></h3>\n\n\n\n<p>Create distinct experiences for different user groups:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Define key personas like &#8220;<em>Budget-conscious shoppers</em>,&#8221; &#8220;<em>Luxury buyers</em>,&#8221; or &#8220;<em>Tech enthusiasts</em>&#8221; based on demographics, behavior, and preferences. You can create your personas with a tool like the <a href=\"https://www.hubspot.com/make-my-persona\" rel=\"nofollow\">Hubspot persona creator</a>.&nbsp;</li>\n</ul>\n\n\n\n<img width=\"660\" height=\"460\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/09/hubspot-make-my-persona-.png?w=660\" alt=\"Hubspot’s buyer persona tool\" class=\"wp-image-2230\" />\n\n\n\n<ul class=\"wp-block-list\">\n<li>Use tools like <a href=\"https://marketingplatform.google.com/about/analytics/\" rel=\"nofollow\">Google Analytics</a> to gather data on user segments. Look at metrics like pages visited, time on site, and conversion rates for each segment.</li>\n\n\n\n<li>Develop content variations for each persona. For example, show &#8220;<em>Budget-conscious shoppers</em>&#8221; value-focused messaging and discounts while presenting &#8220;<em>Luxury buyers</em>&#8221; with premium product recommendations.</li>\n</ul>\n\n\n\n<p><strong>Example:</strong> If you’re a sports apparel website, you can show runners products like performance shoes and workout gear. But for people who are more into streetwear, make it all about the latest fashion-forward sneakers and urban apparel.</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>2. Utilizing geolocation strategies</strong></h3>\n\n\n\n<p>Tailor content based on a user&#8217;s location:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Use IP detection to identify user location and deliver location-specific content, like showing local store information, events, or news based on the user&#8217;s city or region.</li>\n</ul>\n\n\n\n<img width=\"660\" height=\"479\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/09/trip-advisor-homepage.png?w=660\" alt=\"Tripadvisor geo-location based homepage\" class=\"wp-image-2231\" />\n\n\n\n<ul class=\"wp-block-list\">\n<li>Adjust language, currency, and shipping options based on user location. A visitor from Germany should see prices in Euros and German language content.</li>\n</ul>\n\n\n\n<p>For example, <a href=\"http://booking.com\" rel=\"nofollow\">Booking.com</a> automatically shows the version of the site relevant to the user&#8217;s country and suggests destinations based on previous searches.</p>\n\n\n\n<p>This is the homepage for US visitors:&nbsp;</p>\n\n\n\n<img width=\"660\" height=\"487\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/09/booking-us-homepage.png?w=660\" alt=\"Booking homepage with the US as a location\" class=\"wp-image-2232\" />\n\n\n\n<p>And this is what’s on the page for Spanish visitors:&nbsp;</p>\n\n\n\n<img width=\"660\" height=\"339\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/09/booking-spain-homepage.png?w=660\" alt=\"Booking homepage with Spain as a location\" class=\"wp-image-2234\" />\n\n\n\n<h3 class=\"wp-block-heading\"><strong>3. Optimizing content based on devices used</strong></h3>\n\n\n\n<p>Adapt your site to different devices:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Ensure your website is mobile-friendly and adapts to different screen sizes using responsive design frameworks like <a href=\"https://getbootstrap.com/\">Bootstrap</a> or <a href=\"https://get.foundation/\" rel=\"nofollow\">Foundation</a>.</li>\n\n\n\n<li>Deliver different content formats based on device type. Prioritize concise text and vertical videos for mobile users while offering longer-form articles on desktop.</li>\n\n\n\n<li>Optimize loading times and performance, especially for mobile users. Compress images, minify code, and use browser caching.</li>\n</ul>\n\n\n\n<p><a href=\"https://open.spotify.com/\" rel=\"nofollow\">Spotify</a>&#8216;s mobile app is a master class in device optimization. It&#8217;s streamlined for on-the-go listening, with big buttons and simplified navigation. Switch to the desktop, and suddenly you&#8217;ve got a full-featured music command center.</p>\n\n\n\n<img width=\"660\" height=\"371\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/09/spotify-app-and-desktop.png?w=660\" alt=\"Spotify on mobile and desktop\" class=\"wp-image-2235\" />\n\n\n\n<h3 class=\"wp-block-heading\"><strong>4. Personalizing landing pages</strong></h3>\n\n\n\n<p>Create customized entry points:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Use visitor data to customize landing page elements in real time. Personalize headlines, images, and CTAs based on user segments.</li>\n\n\n\n<li>Conduct A/B tests with tools like <a href=\"https://www.optimizely.com/\" rel=\"nofollow\">Optimizely</a> or <a href=\"https://www.abtasty.com/\">AB Tasty</a> to determine the most effective personalized elements.</li>\n</ul>\n\n\n\n<p>For example, show a landing page with enterprise-focused messaging and case studies to visitors from large companies while highlighting ease of use for small business visitors.&nbsp;</p>\n\n\n\n<p>HubSpot is the king of personalized landing pages. Visit as a marketer, and you&#8217;ll see content about lead generation and email campaigns. But if you&#8217;re in sales, it&#8217;s all about CRM and pipeline management.</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>5. Personalizing recommendations</strong></h3>\n\n\n\n<p>Suggest relevant content or products:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Use user behavior data and machine learning to provide personalized product or content recommendations.</li>\n\n\n\n<li><a href=\"https://www.amazon.com/\" rel=\"nofollow\">Amazon</a> is the pioneer in personalized recommendations, suggesting products based on a user&#8217;s browsing and purchase history.</li>\n</ul>\n\n\n\n<img width=\"660\" height=\"371\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/09/amazon-recommendation.png?w=660\" alt=\"Example of Amazon recommendations\" class=\"wp-image-2236\" />\n\n\n\n<ul class=\"wp-block-list\">\n<li>News sites like <a href=\"https://www.nytimes.com/\" rel=\"nofollow\">The New York Times</a> recommend articles based on a reader&#8217;s interests and previously read stories.</li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>6. Targeted CTAs</strong></h3>\n\n\n\n<p>Create calls-to-action that have an impact:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Design CTAs that cater to specific user segments and behaviors.&nbsp;</li>\n\n\n\n<li>Use dynamic content to adjust CTAs based on user interactions.</li>\n\n\n\n<li>Optimize CTA placement for maximum visibility.&nbsp;</li>\n\n\n\n<li>Use behavioral triggers to display CTAs at the right moment.</li>\n</ul>\n\n\n\n<p>For instance, show a &#8220;<em>Schedule a Demo</em>&#8221; CTA to enterprise visitors who have viewed multiple product pages while offering a &#8220;<em>Try for Free</em>&#8221; CTA to small business visitors.&nbsp;</p>\n\n\n\n<p>7. Personalized checkout pages</p>\n\n\n\n<p>Streamline the purchase process:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Use user data to pre-fill forms and reduce checkout friction.&nbsp;</li>\n\n\n\n<li>Offer personalized payment options and shipping methods.</li>\n\n\n\n<li>Provide personalized product recommendations during checkout based on the items in the user&#8217;s cart.</li>\n</ul>\n\n\n\n<p>For example, every time a customer adds a product to their cart on <a href=\"https://fentybeauty.com/\" rel=\"nofollow\">Fenty Beauty</a>’s website, a popup of the checkout shows up with some recommended products.&nbsp;</p>\n\n\n\n<img width=\"660\" height=\"394\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/09/fenty-beauty-checkout-recommendations.png?w=660\" alt=\"Personalized recommendations Fenty Beauty \" class=\"wp-image-2237\" />\n\n\n\n<h3 class=\"wp-block-heading\"><strong>8. Customizing loyalty programs</strong></h3>\n\n\n\n<p>Reward users in meaningful ways:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Offer rewards based on user preferences and behavior. If you know a customer loves eco-friendly products, offer points bonuses on green items.</li>\n\n\n\n<li>Send personalized emails and notifications to loyalty program members.&nbsp;</li>\n\n\n\n<li>Use segmentation to deliver relevant loyalty program updates.</li>\n\n\n\n<li>​​Use gamification to keep things fun. Progress bars, badges, and tiered rewards can turn shopping into an engaging experience.</li>\n</ul>\n\n\n\n<p><a href=\"https://www.sephora.com/beauty/profile-beautyinsider\" rel=\"nofollow\">Sephora&#8217;s Beauty Insider</a> program offers different rewards and perks based on a member&#8217;s tier and purchase history.</p>\n\n\n\n<img width=\"660\" height=\"394\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/09/sephora-beauty-insider-loyalty-program.png?w=660\" alt=\"Sephora\'s Beauty Insider program\" class=\"wp-image-2238\" />\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Gravatar: A key player in website personalization</strong></h2>\n\n\n\n<img width=\"660\" height=\"411\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/09/gravatar-profiles-as-a-service.png?w=660\" alt=\"Gravatar Profiles as a Service\" class=\"wp-image-2239\" />\n\n\n\n<p><a href=\"https://gravatar.com/\">Gravatar</a> is a powerful tool for web developers who want to improve their website personalization strategies.&nbsp;</p>\n\n\n\n<p>With Gravatar&#8217;s user profile integration, you can <strong>import essential user data, including names, display names, avatars, locations, and verified accounts</strong>. This access to <a href=\"https://blog.gravatar.com/2024/06/05/user-profile-page-examples/\">user profile information</a> means that new visitors don’t have to fill out endless forms just to use your website, improving their experience from the get-go.</p>\n\n\n\n<p>Gravatar&#8217;s ongoing development, particularly the inclusion of user interests, opens up new avenues for developers to <strong>implement more sophisticated personalization techniques</strong>. This feature enables the creation of tailored content recommendations and product suggestions based on user preferences, potentially increasing engagement and conversion rates.</p>\n\n\n\n<p>The platform&#8217;s straightforward integration process, whether for <a href=\"https://wordpress.org/\" rel=\"nofollow\">WordPress</a> sites or custom-built platforms, allows developers to <strong>quickly implement personalization features</strong>. The comprehensive <a href=\"https://docs.gravatar.com/\">Gravatar API documentation</a> will give you all the necessary resources to incorporate these features effectively.</p>\n\n\n\n<p>Finally, Gravatar&#8217;s commitment to user privacy aligns with current data protection standards, allowing developers to <strong>employ personalization strategies that respect user preferences and comply with privacy regulations</strong>.</p>\n\n\n\n<p>Ready to take your website personalization to the next level? <a href=\"https://docs.gravatar.com/\">Head over to Gravatar</a> and start exploring. Your users (and your conversion rates) will love you for it!</p>\n\n\n\n<a href=\"https://gravatar.com/connect/?gravatar_from=blog\"><img width=\"3243\" height=\"729\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/12/free_profile_cta.png\" alt=\"\" class=\"wp-image-2616\" /></a>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 20 Dec 2024 20:17:15 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Ronnie Burt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:48;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"WPTavern: Matt Mullenweg Declares Holiday Break for WordPress.org Services\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=182947\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"https://wptavern.com/matt-mullenweg-declares-holiday-break-for-wordpress-org-services\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5872:\"<p>For the first time, Matt Mullenweg has announced a <a href=\"https://wordpress.org/news/2024/12/holiday-break/\">holiday break</a> for WordPress.org services. In his blog post, he said, “In order to give myself and the many tired volunteers around WordPress.org a break for the holidays, we’re going to be pausing a few of the free services currently offered.”</p>\n\n\n\n<p>The paused services include new account registrations on WordPress.org, plugin reviews, and new submissions to the plugin, theme, and photo directories.</p>\n\n\n\n<img src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXfPNBwLn0SaNg9Hqo3bpEVo3gyd0rF5yLjZ7KKr89dRkQFElnuZFk5JCJYDpovaH0pacHEGd1tmMfrGKQTVQvFBdcU6WFrlkAeJOsB48X47sd05u9Y7uAFBoDaKYIuAX8LryYXX1Q?key=i0QQsUcgmuemusiuIs5gOcgv\" alt=\"\" />\n\n\n\n<p>During this time, WP Engine will retain full access to WordPress.org. Matt explained, “As you may have heard, I’m legally compelled to provide free labor and services to WP Engine thanks to the success of their expensive lawyers, so in order to avoid bothering the court I will say that none of the above applies to WP Engine, so if they need to bypass any of the above please just have your high-priced attorneys talk to my high-priced attorneys and we’ll arrange access, or just reach out directly to me on Slack and I’ll fix things for you.”</p>\n\n\n\n<p>Matt has not provided a specific date for resuming these services, stating, “<strong>I hope to find the time, energy, and money to reopen all of this sometime in the new yea</strong>r. Right now much of the time I would spend making WordPress better is being taken up defending against WP Engine’s legal attacks. Their attacks are against Automattic, but also me individually as the owner of WordPress.org, which means if they win I can be personally liable for millions of dollars of damages.”</p>\n\n\n\n<p>He concluded the blog post by saying, “If you would like to fund legal attacks against me, I would encourage you to sign up for WP Engine services, they have great plans and pricing starting at $50/mo and scaling all the way up to $2,000/mo. If not, you can use literally any other web host in the world that isn’t suing me and is offering promotions and discounts for switching away from WP Engine.”</p>\n\n\n\n<p>The official WordPress <a href=\"https://x.com/WordPress/status/1869909487932583971\">Twitter</a> account echoed the announcement: “In order to give tired volunteers around WordPress.org a break for the holidays, we’re going to be pausing a few of the free services currently offered…And to be super clear for the court so we&#8217;re not held in contempt, none of this applies to @wpengine.”</p>\n\n\n\n<a href=\"https://x.com/WordPress/status/1869909487932583971\"><img width=\"1780\" height=\"1266\" src=\"https://wptavern.com/wp-content/uploads/2024/12/image-15.png\" alt=\"\" class=\"wp-image-182956\" /></a>\n\n\n\n<p>Some have applauded the much-needed break for volunteers, while others expressed concern over the indefinite suspension of services.&nbsp;</p>\n\n\n\n<a href=\"https://x.com/albertalbs/status/1870066631864688977\"><img width=\"2884\" height=\"678\" src=\"https://wptavern.com/wp-content/uploads/2024/12/image-10.png\" alt=\"\" class=\"wp-image-182949\" /></a>\n\n\n\n<a href=\"https://x.com/chrisdavidmiles/status/1869924684369895616\"><img width=\"2872\" height=\"1060\" src=\"https://wptavern.com/wp-content/uploads/2024/12/image-11.png\" alt=\"\" class=\"wp-image-182950\" /></a>\n\n\n\n<a href=\"https://x.com/YoungbloodJoe/status/1869968488523002274\"><img width=\"2838\" height=\"1150\" src=\"https://wptavern.com/wp-content/uploads/2024/12/image-12.png\" alt=\"\" class=\"wp-image-182951\" /></a>\n\n\n\n<a href=\"https://x.com/PeterZaitsev/status/1870159733191258321\"><img width=\"2870\" height=\"1012\" src=\"https://wptavern.com/wp-content/uploads/2024/12/image-13.png\" alt=\"\" class=\"wp-image-182952\" /></a>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress User Registration Reopened to Support WordCamps&nbsp;</h2>\n\n\n\n<p>Since a WordPress.org account is mandatory to buy WordCamp tickets, the temporary suspension of new user registrations had raised concerns, as it restricted new users from buying tickets for upcoming WordCamps, including major events like WordCamp <a href=\"https://europe.wordcamp.org/2025/\">Europe</a>, <a href=\"https://asia.wordcamp.org/2025/\">Asia</a>, <a href=\"https://pune.wordcamp.org/2025/\">Pune</a>, <a href=\"https://kolhapur.wordcamp.org/2025/\">Kolhapur</a>, and <a href=\"https://ahmedabad.wordcamp.org/2025/\">Ahmedabad</a>, where tickets are already on sale.</p>\n\n\n\n<p>Jeff Chandler commented on the issue, saying, “If the requirement is not removed, at the very least, for WordCamp sites with events coming up and they suffer because of it, that&#8217;s going to be such a huge blow to current and future event organizers and to the community itself.”</p>\n\n\n\n<p>Joost de Valk of Emilia Capital raised the issue in <a href=\"https://github.com/WordPress/wordcamp.org/issues/1450\">WordPress GitHub</a> and Dion Hulse reenabled the registration if the referrer is WordCamp. “Login: Enable user account creations when the referer is WordCamp. This allows for WordCamps tickets to continue to be bought. Per Matt.”, reads the <a href=\"https://meta.trac.wordpress.org/changeset/14325\">Trac</a> message.&nbsp;</p>\n\n\n\n<img width=\"3328\" height=\"1246\" src=\"https://wptavern.com/wp-content/uploads/2024/12/image-14.png\" alt=\"\" class=\"wp-image-182954\" />\n\n\n\n<p>Dion Hulse then <a href=\"https://meta.trac.wordpress.org/changeset/14326\">enabled</a> user registrations for upcoming &#8216;nextgen events&#8217;. </p>\n\n\n\n<img width=\"2232\" height=\"1050\" src=\"https://wptavern.com/wp-content/uploads/2024/12/image-16.png\" alt=\"\" class=\"wp-image-182958\" />\n\n\n\n<p>Discussions are continuing in <a href=\"https://www.reddit.com/r/Wordpress/comments/1hi8880/in_the_spirit_of_the_season_matt_blames_holiday/\">Reddit </a>too.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 20 Dec 2024 19:19:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Jyolsna\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:49;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:102:\"WPTavern: Lena (Eleni) Stergatou Receives Inaugural WordCamp Europe Kim Parsell Memorial Scholarship \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=182933\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:109:\"https://wptavern.com/lena-eleni-stergatou-receives-inaugural-wordcamp-europe-kim-parsell-memorial-scholarship\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2700:\"<p>Lena (Eleni) Stergatou has been awarded the first-ever WordCamp Europe Kim Parsell Memorial Scholarship. This prestigious scholarship, previously exclusive to WordCamp US, was recently <a href=\"https://wptavern.com/wordcamp-asia-and-wordcamp-europe-added-to-kim-parsell-memorial-scholarship-program\">extended to include WordCamp Asia and Europe</a> following the latest meeting of the WordPress Foundation Board.</p>\n\n\n\n<p>The scholarship honors <a href=\"https://wordpress.org/news/2019/11/people-of-wordpress-kim-parsell/\">Kim Parsell</a>, a beloved member of the WordPress community and regarded as one of the first “women of WordPress.” Affectionately referred to as #wpmom, Kim was a passionate WordPress contributor and advocate for women in technology.</p>\n\n\n\n<p>In their <a href=\"https://wordpressfoundation.org/news/2024/announcing-the-2025-wordcamp-europe-kim-parsell-memorial-scholarship-recipient-eleni-stergatou/\">announcement</a>, the WordPress Foundation stated, “Lena’s dedication to WordPress translations, core, plugins, and more truly embodies the values that Kim held dear.”</p>\n\n\n\n<p>Hailing from Greece, Lena is a devoted WordPress and BuddyPress enthusiast. She has been working as a “Code wrangler”, “Happiness Engineer” and translator (in Greek) with WordPress multisite since 2008 and since 2010 with BuddyPress. She currently develops web services for the Greek educational community at the Computer Technology Institute (CTI Diophantus).</p>\n\n\n\n<p>Her <a href=\"https://profiles.wordpress.org/lenasterg/\">WordPress profile</a> reads, “I&#8217;m familiar with WordPress core and ways to extend it, have an eye for problems on large-scale multisite installation, have fixed numerous outdated themes and edited plugins in order to make them work as they should in multisite WordPress.</p>\n\n\n\n<p>I‘m used to answer questions about WordPress usage, write manuals and FAQs (in Greek language). I love to debug, fix broken things, extend functionalities and share them with others.</p>\n\n\n\n<p>This love led me to participate in the WordPress and BuddyPress community, by contributing with new plugins, “resurrect” broken plugins, bug fixes and contribute to Greek translations as Locale manager in WordPress Greek team.”</p>\n\n\n\n<p>Lena is an active contributor to the WordPress Community, Core, and Polyglots teams.</p>\n\n\n\n<p>The scholarship covers travel to the host city, hotel accommodation for the event duration, and a WordCamp ticket. It does not include airport transfers, meals, or other incidental expenses.</p>\n\n\n\n<p><a href=\"https://europe.wordcamp.org/2025/\">WordCamp Europe 2025</a> will be held from June 5–7 in Basel, Switzerland.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 20 Dec 2024 16:39:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Jyolsna\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:48:\"WpOrg\\Requests\\Utility\\CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Mon, 27 Jan 2025 18:10:54 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:13:\"last-modified\";s:29:\"Mon, 27 Jan 2025 17:45:29 GMT\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:16:\"content-encoding\";s:2:\"br\";s:7:\"alt-svc\";s:19:\"h3=\":443\"; ma=86400\";s:4:\"x-nc\";s:9:\"HIT ord 1\";}}s:5:\"build\";i:1737873327;s:21:\"cache_expiration_time\";i:1738044654;s:23:\"__cache_expiration_time\";i:1738044654;}','off');
INSERT INTO `wp_options` VALUES (1464698,'_transient_timeout_dash_v2_88ae138922fe95674369b1cb3d215a2b','1738044654','off'),(1464699,'_transient_dash_v2_88ae138922fe95674369b1cb3d215a2b','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2025/01/jkpress/\'>Joost/Karim Fork</a></li><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2025/01/wordpress-themes-need-more-weird-a-call-for-creative-digital-homes/\'>WordPress Themes Need More Weird: A Call for Creative Digital Homes</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://dothewoo.io/exploring-woocommerce-2024-new-features-and-developer-insights-with-marcel-and-mike/\'>Do The Woo Community: Reflections on the WooCommerce Releases from 2024 with Marcel and Mike</a></li><li><a class=\'rsswidget\' href=\'https://blog.gravatar.com/2025/01/22/new-background-and-sticker-features/\'>Gravatar: Create Unique Avatars With Backgrounds and Stickers!</a></li><li><a class=\'rsswidget\' href=\'https://blog.gravatar.com/2025/01/26/wordpress-author-page/\'>Gravatar: Enhance Your WordPress Blog: Create a Custom Author Page</a></li></ul></div>','off'),(1462932,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1738044654','off'),(1462933,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1738001454','off'),(1464686,'_site_transient_timeout_wp_theme_files_patterns-d5652ebb352b68d01b3ccadf72d3c937','1738003225','off'),(1464687,'_site_transient_wp_theme_files_patterns-d5652ebb352b68d01b3ccadf72d3c937','a:2:{s:7:\"version\";s:6:\"2.12.0\";s:8:\"patterns\";a:0:{}}','off'),(1464674,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1738002602;s:7:\"checked\";a:9:{s:16:\"boldgrid-gridone\";s:7:\"1.25.10\";s:4:\"crio\";s:6:\"2.12.0\";s:14:\"twentynineteen\";s:3:\"2.0\";s:12:\"twentytwenty\";s:3:\"1.7\";s:16:\"twentytwentyfive\";s:3:\"1.0\";s:16:\"twentytwentyfour\";s:3:\"1.0\";s:15:\"twentytwentyone\";s:3:\"1.3\";s:17:\"twentytwentythree\";s:3:\"1.0\";s:15:\"twentytwentytwo\";s:3:\"1.1\";}s:8:\"response\";a:8:{s:4:\"crio\";a:6:{s:5:\"theme\";s:4:\"crio\";s:11:\"new_version\";s:6:\"2.22.9\";s:3:\"url\";s:34:\"https://wordpress.org/themes/crio/\";s:7:\"package\";s:53:\"https://downloads.wordpress.org/theme/crio.2.22.9.zip\";s:8:\"requires\";s:3:\"5.5\";s:12:\"requires_php\";s:3:\"5.6\";}s:14:\"twentynineteen\";a:6:{s:5:\"theme\";s:14:\"twentynineteen\";s:11:\"new_version\";s:3:\"3.0\";s:3:\"url\";s:44:\"https://wordpress.org/themes/twentynineteen/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/twentynineteen.3.0.zip\";s:8:\"requires\";s:3:\"4.7\";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.8\";s:3:\"url\";s:42:\"https://wordpress.org/themes/twentytwenty/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/twentytwenty.2.8.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:16:\"twentytwentyfour\";a:6:{s:5:\"theme\";s:16:\"twentytwentyfour\";s:11:\"new_version\";s:3:\"1.3\";s:3:\"url\";s:46:\"https://wordpress.org/themes/twentytwentyfour/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/twentytwentyfour.1.3.zip\";s:8:\"requires\";s:3:\"6.4\";s:12:\"requires_php\";s:3:\"7.0\";}s:15:\"twentytwentyone\";a:6:{s:5:\"theme\";s:15:\"twentytwentyone\";s:11:\"new_version\";s:3:\"2.4\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentyone/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentyone.2.4.zip\";s:8:\"requires\";s:3:\"5.3\";s:12:\"requires_php\";s:3:\"5.6\";}s:17:\"twentytwentythree\";a:6:{s:5:\"theme\";s:17:\"twentytwentythree\";s:11:\"new_version\";s:3:\"1.6\";s:3:\"url\";s:47:\"https://wordpress.org/themes/twentytwentythree/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/theme/twentytwentythree.1.6.zip\";s:8:\"requires\";s:3:\"6.1\";s:12:\"requires_php\";s:3:\"5.6\";}s:15:\"twentytwentytwo\";a:6:{s:5:\"theme\";s:15:\"twentytwentytwo\";s:11:\"new_version\";s:3:\"1.9\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentytwo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentytwo.1.9.zip\";s:8:\"requires\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"5.6\";}s:16:\"boldgrid-gridone\";a:8:{s:5:\"theme\";s:16:\"boldgrid-gridone\";s:11:\"new_version\";s:7:\"1.25.11\";s:3:\"url\";s:32:\"http://www.boldgrid.com/grid-one\";s:7:\"package\";s:61:\"https://repo.boldgrid.com/themes/boldgrid-gridone-1.25.11.zip\";s:6:\"author\";s:64:\"<a href=\"http://www.boldgrid.com/the-team\">The BoldGrid Team</a>\";s:3:\"Tag\";a:8:{i:0;s:17:\"custom-background\";i:1;s:13:\"custom-colors\";i:2;s:11:\"custom-menu\";i:3;s:12:\"editor-style\";i:4;s:17:\"responsive-layout\";i:5;s:20:\"rtl-language-support\";i:6;s:17:\"translation-ready\";i:7;s:17:\"boldgrid-theme-40\";}s:6:\"search\";s:17:\"boldgrid-theme-40\";s:6:\"fields\";a:9:{s:7:\"version\";s:7:\"1.25.11\";s:6:\"author\";s:64:\"<a href=\"http://www.boldgrid.com/the-team\">The BoldGrid Team</a>\";s:11:\"description\";s:586:\"Designed specifically for use with the BoldGrid suite of plugins, all BoldGrid themes are highly customizable, responsive to a wide range of devices, and of course, beautiful. Every BoldGrid theme includes five pre-selected color palettes and an advanced tool for creating your own unique palette. In addition, all themes feature multiple menu locations and widget areas, which are easily customizable to suit your needs. So if you&#8217;re looking for a theme that looks great, feels modern and professional, and offers plenty of features to make it your own, you&#8217;ve chosen well.\";s:13:\"download_link\";s:61:\"https://repo.boldgrid.com/themes/boldgrid-gridone-1.25.11.zip\";s:4:\"name\";s:8:\"Grid One\";s:4:\"slug\";s:16:\"boldgrid-gridone\";s:4:\"tags\";a:8:{i:0;s:17:\"custom-background\";i:1;s:13:\"custom-colors\";i:2;s:11:\"custom-menu\";i:3;s:12:\"editor-style\";i:4;s:17:\"responsive-layout\";i:5;s:20:\"rtl-language-support\";i:6;s:17:\"translation-ready\";i:7;s:17:\"boldgrid-theme-40\";}s:12:\"last_updated\";s:10:\"2022-10-11\";s:8:\"homepage\";s:25:\"https://www.boldgrid.com/\";}}}s:9:\"no_update\";a:1:{s:16:\"twentytwentyfive\";a:6:{s:5:\"theme\";s:16:\"twentytwentyfive\";s:11:\"new_version\";s:3:\"1.0\";s:3:\"url\";s:46:\"https://wordpress.org/themes/twentytwentyfive/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/twentytwentyfive.1.0.zip\";s:8:\"requires\";s:3:\"6.7\";s:12:\"requires_php\";s:3:\"7.2\";}}s:12:\"translations\";a:0:{}}','off'),(1464675,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1738002693;s:8:\"response\";a:10:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:5:\"5.3.5\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.5.3.5.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:60:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=2818463\";s:2:\"1x\";s:60:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=2818463\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/akismet/assets/banner-1544x500.png?rev=2900731\";s:2:\"1x\";s:62:\"https://ps.w.org/akismet/assets/banner-772x250.png?rev=2900731\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.8\";s:6:\"tested\";s:5:\"6.7.1\";s:12:\"requires_php\";s:6:\"5.6.20\";s:16:\"requires_plugins\";a:0:{}}s:39:\"boldgrid-easy-seo/boldgrid-easy-seo.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:31:\"w.org/plugins/boldgrid-easy-seo\";s:4:\"slug\";s:17:\"boldgrid-easy-seo\";s:6:\"plugin\";s:39:\"boldgrid-easy-seo/boldgrid-easy-seo.php\";s:11:\"new_version\";s:6:\"1.6.16\";s:3:\"url\";s:48:\"https://wordpress.org/plugins/boldgrid-easy-seo/\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/plugin/boldgrid-easy-seo.1.6.16.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/boldgrid-easy-seo/assets/icon-256x256.png?rev=1773296\";s:2:\"1x\";s:70:\"https://ps.w.org/boldgrid-easy-seo/assets/icon-128x128.png?rev=1773296\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/boldgrid-easy-seo/assets/banner-1544x500.png?rev=1773381\";s:2:\"1x\";s:72:\"https://ps.w.org/boldgrid-easy-seo/assets/banner-772x250.png?rev=1773381\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.4\";s:6:\"tested\";s:5:\"6.7.1\";s:12:\"requires_php\";s:3:\"5.3\";s:16:\"requires_plugins\";a:0:{}}s:29:\"nginx-helper/nginx-helper.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:26:\"w.org/plugins/nginx-helper\";s:4:\"slug\";s:12:\"nginx-helper\";s:6:\"plugin\";s:29:\"nginx-helper/nginx-helper.php\";s:11:\"new_version\";s:5:\"2.3.2\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/nginx-helper/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/nginx-helper.2.3.2.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:57:\"https://ps.w.org/nginx-helper/assets/icon.svg?rev=2360932\";s:3:\"svg\";s:57:\"https://ps.w.org/nginx-helper/assets/icon.svg?rev=2360932\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/nginx-helper/assets/banner-1544x500.png?rev=2360932\";s:2:\"1x\";s:67:\"https://ps.w.org/nginx-helper/assets/banner-772x250.png?rev=2360926\";}s:11:\"banners_rtl\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/nginx-helper/assets/banner-1544x500-rtl.png?rev=2360932\";s:2:\"1x\";s:71:\"https://ps.w.org/nginx-helper/assets/banner-772x250-rtl.png?rev=2360932\";}s:8:\"requires\";s:3:\"3.0\";s:6:\"tested\";s:5:\"6.7.1\";s:12:\"requires_php\";b:0;s:16:\"requires_plugins\";a:0:{}}s:47:\"post-and-page-builder/post-and-page-builder.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:35:\"w.org/plugins/post-and-page-builder\";s:4:\"slug\";s:21:\"post-and-page-builder\";s:6:\"plugin\";s:47:\"post-and-page-builder/post-and-page-builder.php\";s:11:\"new_version\";s:6:\"1.27.6\";s:3:\"url\";s:52:\"https://wordpress.org/plugins/post-and-page-builder/\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/plugin/post-and-page-builder.1.27.6.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:74:\"https://ps.w.org/post-and-page-builder/assets/icon-256x256.png?rev=1768477\";s:2:\"1x\";s:74:\"https://ps.w.org/post-and-page-builder/assets/icon-128x128.png?rev=1768477\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:77:\"https://ps.w.org/post-and-page-builder/assets/banner-1544x500.png?rev=1768477\";s:2:\"1x\";s:76:\"https://ps.w.org/post-and-page-builder/assets/banner-772x250.png?rev=1768477\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.7\";s:6:\"tested\";s:5:\"6.7.1\";s:12:\"requires_php\";s:3:\"5.4\";s:16:\"requires_plugins\";a:0:{}}s:35:\"boldgrid-backup/boldgrid-backup.php\";O:8:\"stdClass\":13:{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.16.8\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/boldgrid-backup/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/boldgrid-backup.1.16.8.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:\"5.0\";s:6:\"tested\";s:5:\"6.7.1\";s:12:\"requires_php\";s:3:\"5.4\";s:16:\"requires_plugins\";a:0:{}}s:19:\"weforms/weforms.php\";O:8:\"stdClass\":13:{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.25\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/weforms/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/plugin/weforms.1.6.25.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:\"6.6.2\";s:12:\"requires_php\";s:3:\"7.2\";s:16:\"requires_plugins\";a:0:{}}s:47:\"boldgrid-inspirations/boldgrid-inspirations.php\";O:8:\"stdClass\":5:{s:4:\"slug\";s:21:\"boldgrid-inspirations\";s:6:\"plugin\";s:47:\"boldgrid-inspirations/boldgrid-inspirations.php\";s:11:\"new_version\";s:5:\"2.9.3\";s:3:\"url\";s:25:\"https://www.boldgrid.com/\";s:7:\"package\";s:150:\"https://wp-assets.boldgrid.com/api/asset/get?key=4762ce765a2d3112d71e13670e9b83d6&id=1300633&installed_plugin_version=2.6.5&installed_wp_version=6.7.1\";}s:29:\"crio-premium/crio-premium.php\";O:8:\"stdClass\":5:{s:4:\"slug\";s:12:\"crio-premium\";s:6:\"plugin\";s:29:\"crio-premium/crio-premium.php\";s:11:\"new_version\";s:6:\"1.10.6\";s:3:\"url\";s:28:\"http://www.boldgrid.com/crio\";s:7:\"package\";s:112:\"https://api.boldgrid.com/api/open/get-asset?id=1300635&installed_plugin_version=1.6.1&installed_wp_version=6.7.1\";}s:63:\"post-and-page-builder-premium/post-and-page-builder-premium.php\";O:8:\"stdClass\":5:{s:4:\"slug\";s:29:\"post-and-page-builder-premium\";s:6:\"plugin\";s:63:\"post-and-page-builder-premium/post-and-page-builder-premium.php\";s:11:\"new_version\";s:5:\"1.2.6\";s:3:\"url\";s:24:\"http://www.boldgrid.com/\";s:7:\"package\";s:112:\"https://api.boldgrid.com/api/open/get-asset?id=1301404&installed_plugin_version=1.0.5&installed_wp_version=6.7.1\";}s:51:\"boldgrid-backup-premium/boldgrid-backup-premium.php\";O:8:\"stdClass\":6:{s:4:\"slug\";s:23:\"boldgrid-backup-premium\";s:6:\"plugin\";s:51:\"boldgrid-backup-premium/boldgrid-backup-premium.php\";s:11:\"new_version\";s:6:\"1.5.12\";s:6:\"tested\";s:3:\"6.7\";s:3:\"url\";s:25:\"https://www.boldgrid.com/\";s:7:\"package\";s:112:\"https://api.boldgrid.com/api/open/get-asset?id=1300634&installed_plugin_version=1.5.9&installed_wp_version=6.7.1\";}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:2:{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.3.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:37:\"boldgrid-connect/boldgrid-connect.php\";O:8:\"stdClass\":5:{s:4:\"slug\";s:16:\"boldgrid-connect\";s:6:\"plugin\";s:37:\"boldgrid-connect/boldgrid-connect.php\";s:11:\"new_version\";s:5:\"1.0.2\";s:3:\"url\";s:25:\"https://www.boldgrid.com/\";s:7:\"package\";s:112:\"https://api.boldgrid.com/api/open/get-asset?id=1026632&installed_plugin_version=1.0.2&installed_wp_version=6.7.1\";}}s:6:\"tested\";s:3:\"6.7\";}','off');
/*!40000 ALTER TABLE `wp_options` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wp_options` with 248 row(s)
--

--
-- Table structure for table `wp_postmeta`
--

DROP TABLE IF EXISTS `wp_postmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_postmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `post_id` (`post_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=637 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `wp_postmeta` WRITE;
/*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */;
INSERT INTO `wp_postmeta` VALUES (306,186,'_wp_attachment_image_alt','Perfect Irrigation System'),(2,3,'_wp_page_template','default'),(3,4,'_wp_page_template','default'),(4,5,'_menu_item_type','custom'),(5,5,'_menu_item_menu_item_parent','0'),(6,5,'_menu_item_object_id','5'),(7,5,'_menu_item_object','custom'),(8,5,'_menu_item_target','_blank'),(9,5,'_menu_item_classes','a:1:{i:0;s:8:\"facebook\";}'),(10,5,'_menu_item_xfn',''),(11,5,'_menu_item_url','//facebook.com'),(12,6,'_menu_item_type','custom'),(13,6,'_menu_item_menu_item_parent','0'),(14,6,'_menu_item_object_id','6'),(15,6,'_menu_item_object','custom'),(16,6,'_menu_item_target','_blank'),(17,6,'_menu_item_classes','a:1:{i:0;s:7:\"twitter\";}'),(18,6,'_menu_item_xfn',''),(19,6,'_menu_item_url','//twitter.com'),(20,7,'_menu_item_type','custom'),(21,7,'_menu_item_menu_item_parent','0'),(22,7,'_menu_item_object_id','7'),(23,7,'_menu_item_object','custom'),(24,7,'_menu_item_target','_blank'),(25,7,'_menu_item_classes','a:1:{i:0;s:6:\"google\";}'),(26,7,'_menu_item_xfn',''),(27,7,'_menu_item_url','//plus.google.com'),(28,8,'_menu_item_type','custom'),(29,8,'_menu_item_menu_item_parent','0'),(30,8,'_menu_item_object_id','8'),(31,8,'_menu_item_object','custom'),(32,8,'_menu_item_target','_blank'),(33,8,'_menu_item_classes','a:1:{i:0;s:8:\"linkedin\";}'),(34,8,'_menu_item_xfn',''),(35,8,'_menu_item_url','//linkedin.com'),(36,9,'_menu_item_type','custom'),(37,9,'_menu_item_menu_item_parent','0'),(38,9,'_menu_item_object_id','9'),(39,9,'_menu_item_object','custom'),(40,9,'_menu_item_target','_blank'),(41,9,'_menu_item_classes','a:1:{i:0;s:7:\"youtube\";}'),(42,9,'_menu_item_xfn',''),(43,9,'_menu_item_url','//youtube.com'),(45,11,'_menu_item_type','custom'),(46,11,'_menu_item_menu_item_parent','0'),(47,11,'_menu_item_object_id','11'),(48,11,'_menu_item_object','custom'),(49,11,'_menu_item_target',''),(50,11,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(51,11,'_menu_item_xfn',''),(52,11,'_menu_item_url','https://'),(53,12,'_menu_item_type','custom'),(54,12,'_menu_item_menu_item_parent','0'),(55,12,'_menu_item_object_id','12'),(56,12,'_menu_item_object','custom'),(57,12,'_menu_item_target',''),(58,12,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(59,12,'_menu_item_xfn',''),(60,12,'_menu_item_url','https://'),(61,13,'wpuf_form_settings','a:49:{s:11:\"redirect_to\";s:4:\"same\";s:7:\"message\";s:64:\"Thanks for contacting us! We will get in touch with you shortly.\";s:7:\"page_id\";s:0:\"\";s:3:\"url\";s:0:\"\";s:11:\"submit_text\";s:12:\"Submit Query\";s:18:\"submit_button_cond\";a:3:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_logic\";s:3:\"any\";s:10:\"conditions\";a:1:{i:0;a:3:{s:4:\"name\";s:0:\"\";s:8:\"operator\";s:1:\"=\";s:6:\"option\";s:0:\"\";}}}s:13:\"schedule_form\";s:5:\"false\";s:14:\"schedule_start\";s:0:\"\";s:12:\"schedule_end\";s:0:\"\";s:18:\"sc_pending_message\";s:39:\"Form submission hasn\'t been started yet\";s:18:\"sc_expired_message\";s:30:\"Form submission is now closed.\";s:13:\"require_login\";s:5:\"false\";s:17:\"req_login_message\";s:36:\"You need to login to submit a query.\";s:13:\"limit_entries\";s:5:\"false\";s:12:\"limit_number\";s:3:\"100\";s:13:\"limit_message\";s:57:\"Sorry, we have reached the maximum number of submissions.\";s:14:\"label_position\";s:5:\"above\";s:13:\"use_theme_css\";s:10:\"wpuf-style\";s:9:\"quiz_form\";s:2:\"no\";s:22:\"shuffle_question_order\";s:2:\"no\";s:13:\"release_grade\";s:16:\"after_submission\";s:18:\"respondent_can_see\";a:3:{i:0;s:16:\"missed_questions\";i:1;s:15:\"correct_answers\";i:2;s:12:\"point_values\";}s:12:\"total_points\";i:0;s:16:\"enable_multistep\";b:0;s:26:\"multistep_progressbar_type\";s:11:\"progressive\";s:21:\"humanpresence_enabled\";b:0;s:21:\"payment_paypal_images\";s:68:\"https://www.paypalobjects.com/webstatic/mktg/logo/AM_mc_vs_dc_ae.jpg\";s:20:\"payment_paypal_label\";s:6:\"PayPal\";s:20:\"payment_stripe_label\";s:11:\"Credit Card\";s:21:\"payment_stripe_images\";a:4:{i:0;s:4:\"visa\";i:1;s:10:\"mastercard\";i:2;s:4:\"amex\";i:3;s:8:\"discover\";}s:25:\"payment_stripe_deactivate\";s:0:\"\";s:11:\"stripe_mode\";s:4:\"live\";s:14:\"stripe_page_id\";s:0:\"\";s:20:\"stripe_override_keys\";s:0:\"\";s:12:\"stripe_email\";s:0:\"\";s:10:\"stripe_key\";s:0:\"\";s:17:\"stripe_secret_key\";s:0:\"\";s:15:\"stripe_key_test\";s:0:\"\";s:22:\"stripe_secret_key_test\";s:0:\"\";s:20:\"stripe_prefill_email\";s:0:\"\";s:23:\"stripe_user_email_field\";s:0:\"\";s:25:\"payment_paypal_deactivate\";s:0:\"\";s:11:\"paypal_mode\";s:4:\"live\";s:11:\"paypal_type\";s:5:\"_cart\";s:15:\"paypal_override\";s:0:\"\";s:12:\"paypal_email\";s:0:\"\";s:14:\"paypal_page_id\";s:0:\"\";s:20:\"paypal_prefill_email\";s:0:\"\";s:23:\"paypal_user_email_field\";s:0:\"\";}'),(62,13,'notifications','a:1:{i:0;a:14:{s:6:\"active\";s:4:\"true\";s:4:\"type\";s:5:\"email\";s:5:\"smsTo\";s:0:\"\";s:7:\"smsText\";s:45:\"[{form_name}] New Form Submission #{entry_id}\";s:4:\"name\";s:18:\"Admin Notification\";s:7:\"subject\";s:45:\"[{form_name}] New Form Submission #{entry_id}\";s:2:\"to\";s:13:\"{admin_email}\";s:7:\"replyTo\";s:13:\"{field:email}\";s:7:\"message\";s:12:\"{all_fields}\";s:8:\"fromName\";s:11:\"{site_name}\";s:11:\"fromAddress\";s:13:\"{admin_email}\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:12:\"weforms_cond\";a:3:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_logic\";s:3:\"any\";s:10:\"conditions\";a:1:{i:0;a:3:{s:4:\"name\";s:0:\"\";s:8:\"operator\";s:1:\"=\";s:6:\"option\";s:0:\"\";}}}}}'),(63,13,'integrations','a:0:{}'),(64,17,'wpuf_form_settings','a:16:{s:11:\"redirect_to\";s:4:\"same\";s:7:\"message\";s:214:\"<span id=\"nf-drawer-content\"><span class=\"nf-setting-groups\"><span class=\"nf-field-settings\">Thank you for getting in touch with us! We will try our best to respond back to you within 24 hours.</span></span></span>\";s:7:\"page_id\";s:5:\"72532\";s:3:\"url\";s:0:\"\";s:11:\"submit_text\";s:6:\"Submit\";s:13:\"schedule_form\";s:5:\"false\";s:14:\"schedule_start\";s:0:\"\";s:12:\"schedule_end\";s:0:\"\";s:18:\"sc_pending_message\";s:44:\"Form submission hasn&#039;t been started yet\";s:18:\"sc_expired_message\";s:30:\"Form submission is now closed.\";s:13:\"require_login\";s:5:\"false\";s:17:\"req_login_message\";s:36:\"You need to login to submit a query.\";s:13:\"limit_entries\";s:5:\"false\";s:12:\"limit_number\";s:4:\"1000\";s:13:\"limit_message\";s:57:\"Sorry, we have reached the maximum number of submissions.\";s:14:\"label_position\";s:5:\"above\";}'),(65,17,'notifications','a:1:{i:0;a:10:{s:6:\"active\";b:1;s:4:\"name\";s:18:\"Admin Notification\";s:7:\"subject\";s:17:\"Form 1 submission\";s:2:\"to\";s:13:\"{admin_email}\";s:7:\"replyTo\";s:0:\"\";s:7:\"message\";s:12:\"{all_fields}\";s:8:\"fromName\";s:0:\"\";s:11:\"fromAddress\";s:13:\"{admin_email}\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";}}'),(66,21,'wpuf_form_settings','a:16:{s:11:\"redirect_to\";s:4:\"same\";s:7:\"message\";s:214:\"<span id=\"nf-drawer-content\"><span class=\"nf-setting-groups\"><span class=\"nf-field-settings\">Thank you for getting in touch with us! We will try our best to respond back to you within 24 hours.</span></span></span>\";s:7:\"page_id\";s:5:\"72532\";s:3:\"url\";s:0:\"\";s:11:\"submit_text\";s:6:\"Submit\";s:13:\"schedule_form\";s:5:\"false\";s:14:\"schedule_start\";s:0:\"\";s:12:\"schedule_end\";s:0:\"\";s:18:\"sc_pending_message\";s:44:\"Form submission hasn&#039;t been started yet\";s:18:\"sc_expired_message\";s:30:\"Form submission is now closed.\";s:13:\"require_login\";s:5:\"false\";s:17:\"req_login_message\";s:36:\"You need to login to submit a query.\";s:13:\"limit_entries\";s:5:\"false\";s:12:\"limit_number\";s:4:\"1000\";s:13:\"limit_message\";s:57:\"Sorry, we have reached the maximum number of submissions.\";s:14:\"label_position\";s:5:\"above\";}'),(67,21,'notifications','a:1:{i:0;a:10:{s:6:\"active\";b:1;s:4:\"name\";s:18:\"Admin Notification\";s:7:\"subject\";s:17:\"Form 2 submission\";s:2:\"to\";s:13:\"{admin_email}\";s:7:\"replyTo\";s:0:\"\";s:7:\"message\";s:12:\"{all_fields}\";s:8:\"fromName\";s:0:\"\";s:11:\"fromAddress\";s:13:\"{admin_email}\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";}}'),(68,33,'wpuf_form_settings','a:16:{s:11:\"redirect_to\";s:4:\"same\";s:7:\"message\";s:214:\"<span id=\"nf-drawer-content\"><span class=\"nf-setting-groups\"><span class=\"nf-field-settings\">Thank you for getting in touch with us! We will try our best to respond back to you within 24 hours.</span></span></span>\";s:7:\"page_id\";s:5:\"72532\";s:3:\"url\";s:0:\"\";s:11:\"submit_text\";s:6:\"Submit\";s:13:\"schedule_form\";s:5:\"false\";s:14:\"schedule_start\";s:0:\"\";s:12:\"schedule_end\";s:0:\"\";s:18:\"sc_pending_message\";s:44:\"Form submission hasn&#039;t been started yet\";s:18:\"sc_expired_message\";s:30:\"Form submission is now closed.\";s:13:\"require_login\";s:5:\"false\";s:17:\"req_login_message\";s:36:\"You need to login to submit a query.\";s:13:\"limit_entries\";s:5:\"false\";s:12:\"limit_number\";s:4:\"1000\";s:13:\"limit_message\";s:57:\"Sorry, we have reached the maximum number of submissions.\";s:14:\"label_position\";s:5:\"above\";}'),(69,33,'notifications','a:1:{i:0;a:10:{s:6:\"active\";b:1;s:4:\"name\";s:18:\"Admin Notification\";s:7:\"subject\";s:17:\"Form 3 submission\";s:2:\"to\";s:13:\"{admin_email}\";s:7:\"replyTo\";s:0:\"\";s:7:\"message\";s:12:\"{all_fields}\";s:8:\"fromName\";s:0:\"\";s:11:\"fromAddress\";s:13:\"{admin_email}\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";}}'),(70,48,'wpuf_form_settings','a:16:{s:11:\"redirect_to\";s:4:\"same\";s:7:\"message\";s:214:\"<span id=\"nf-drawer-content\"><span class=\"nf-setting-groups\"><span class=\"nf-field-settings\">Thank you for getting in touch with us! We will try our best to respond back to you within 24 hours.</span></span></span>\";s:7:\"page_id\";s:5:\"72532\";s:3:\"url\";s:0:\"\";s:11:\"submit_text\";s:6:\"Submit\";s:13:\"schedule_form\";s:5:\"false\";s:14:\"schedule_start\";s:0:\"\";s:12:\"schedule_end\";s:0:\"\";s:18:\"sc_pending_message\";s:44:\"Form submission hasn&#039;t been started yet\";s:18:\"sc_expired_message\";s:30:\"Form submission is now closed.\";s:13:\"require_login\";s:5:\"false\";s:17:\"req_login_message\";s:36:\"You need to login to submit a query.\";s:13:\"limit_entries\";s:5:\"false\";s:12:\"limit_number\";s:4:\"1000\";s:13:\"limit_message\";s:57:\"Sorry, we have reached the maximum number of submissions.\";s:14:\"label_position\";s:5:\"above\";}'),(71,48,'notifications','a:1:{i:0;a:10:{s:6:\"active\";b:1;s:4:\"name\";s:18:\"Admin Notification\";s:7:\"subject\";s:39:\"Address Form (International) submission\";s:2:\"to\";s:13:\"{admin_email}\";s:7:\"replyTo\";s:0:\"\";s:7:\"message\";s:12:\"{all_fields}\";s:8:\"fromName\";s:0:\"\";s:11:\"fromAddress\";s:13:\"{admin_email}\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";}}'),(72,56,'wpuf_form_settings','a:16:{s:11:\"redirect_to\";s:4:\"same\";s:7:\"message\";s:214:\"<span id=\"nf-drawer-content\"><span class=\"nf-setting-groups\"><span class=\"nf-field-settings\">Thank you for getting in touch with us! We will try our best to respond back to you within 24 hours.</span></span></span>\";s:7:\"page_id\";s:5:\"72532\";s:3:\"url\";s:0:\"\";s:11:\"submit_text\";s:6:\"Submit\";s:13:\"schedule_form\";s:5:\"false\";s:14:\"schedule_start\";s:0:\"\";s:12:\"schedule_end\";s:0:\"\";s:18:\"sc_pending_message\";s:44:\"Form submission hasn&#039;t been started yet\";s:18:\"sc_expired_message\";s:30:\"Form submission is now closed.\";s:13:\"require_login\";s:5:\"false\";s:17:\"req_login_message\";s:36:\"You need to login to submit a query.\";s:13:\"limit_entries\";s:5:\"false\";s:12:\"limit_number\";s:4:\"1000\";s:13:\"limit_message\";s:57:\"Sorry, we have reached the maximum number of submissions.\";s:14:\"label_position\";s:5:\"above\";}'),(73,56,'notifications','a:1:{i:0;a:10:{s:6:\"active\";b:1;s:4:\"name\";s:18:\"Admin Notification\";s:7:\"subject\";s:28:\"Address Form (US) submission\";s:2:\"to\";s:13:\"{admin_email}\";s:7:\"replyTo\";s:0:\"\";s:7:\"message\";s:12:\"{all_fields}\";s:8:\"fromName\";s:0:\"\";s:11:\"fromAddress\";s:13:\"{admin_email}\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";}}'),(74,63,'wpuf_form_settings','a:16:{s:11:\"redirect_to\";s:4:\"same\";s:7:\"message\";s:214:\"<span id=\"nf-drawer-content\"><span class=\"nf-setting-groups\"><span class=\"nf-field-settings\">Thank you for getting in touch with us! We will try our best to respond back to you within 24 hours.</span></span></span>\";s:7:\"page_id\";s:5:\"72532\";s:3:\"url\";s:0:\"\";s:11:\"submit_text\";s:6:\"Submit\";s:13:\"schedule_form\";s:5:\"false\";s:14:\"schedule_start\";s:0:\"\";s:12:\"schedule_end\";s:0:\"\";s:18:\"sc_pending_message\";s:44:\"Form submission hasn&#039;t been started yet\";s:18:\"sc_expired_message\";s:30:\"Form submission is now closed.\";s:13:\"require_login\";s:5:\"false\";s:17:\"req_login_message\";s:36:\"You need to login to submit a query.\";s:13:\"limit_entries\";s:5:\"false\";s:12:\"limit_number\";s:4:\"1000\";s:13:\"limit_message\";s:57:\"Sorry, we have reached the maximum number of submissions.\";s:14:\"label_position\";s:5:\"above\";}'),(75,63,'notifications','a:1:{i:0;a:10:{s:6:\"active\";b:1;s:4:\"name\";s:18:\"Admin Notification\";s:7:\"subject\";s:35:\"Email Form (Traditional) submission\";s:2:\"to\";s:13:\"{admin_email}\";s:7:\"replyTo\";s:0:\"\";s:7:\"message\";s:12:\"{all_fields}\";s:8:\"fromName\";s:0:\"\";s:11:\"fromAddress\";s:13:\"{admin_email}\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";}}'),(76,68,'wpuf_form_settings','a:16:{s:11:\"redirect_to\";s:4:\"same\";s:7:\"message\";s:214:\"<span id=\"nf-drawer-content\"><span class=\"nf-setting-groups\"><span class=\"nf-field-settings\">Thank you for getting in touch with us! We will try our best to respond back to you within 24 hours.</span></span></span>\";s:7:\"page_id\";s:5:\"72532\";s:3:\"url\";s:0:\"\";s:11:\"submit_text\";s:8:\"Register\";s:13:\"schedule_form\";s:5:\"false\";s:14:\"schedule_start\";s:0:\"\";s:12:\"schedule_end\";s:0:\"\";s:18:\"sc_pending_message\";s:44:\"Form submission hasn&#039;t been started yet\";s:18:\"sc_expired_message\";s:30:\"Form submission is now closed.\";s:13:\"require_login\";s:5:\"false\";s:17:\"req_login_message\";s:36:\"You need to login to submit a query.\";s:13:\"limit_entries\";s:5:\"false\";s:12:\"limit_number\";s:4:\"1000\";s:13:\"limit_message\";s:57:\"Sorry, we have reached the maximum number of submissions.\";s:14:\"label_position\";s:5:\"above\";}'),(77,68,'notifications','a:1:{i:0;a:10:{s:6:\"active\";b:1;s:4:\"name\";s:18:\"Admin Notification\";s:7:\"subject\";s:50:\"Event Registration Form (Group Support) submission\";s:2:\"to\";s:13:\"{admin_email}\";s:7:\"replyTo\";s:0:\"\";s:7:\"message\";s:12:\"{all_fields}\";s:8:\"fromName\";s:0:\"\";s:11:\"fromAddress\";s:13:\"{admin_email}\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";}}'),(78,72,'wpuf_form_settings','a:16:{s:11:\"redirect_to\";s:4:\"same\";s:7:\"message\";s:214:\"<span id=\"nf-drawer-content\"><span class=\"nf-setting-groups\"><span class=\"nf-field-settings\">Thank you for getting in touch with us! We will try our best to respond back to you within 24 hours.</span></span></span>\";s:7:\"page_id\";s:5:\"72532\";s:3:\"url\";s:0:\"\";s:11:\"submit_text\";s:8:\"Register\";s:13:\"schedule_form\";s:5:\"false\";s:14:\"schedule_start\";s:0:\"\";s:12:\"schedule_end\";s:0:\"\";s:18:\"sc_pending_message\";s:44:\"Form submission hasn&#039;t been started yet\";s:18:\"sc_expired_message\";s:30:\"Form submission is now closed.\";s:13:\"require_login\";s:5:\"false\";s:17:\"req_login_message\";s:36:\"You need to login to submit a query.\";s:13:\"limit_entries\";s:5:\"false\";s:12:\"limit_number\";s:4:\"1000\";s:13:\"limit_message\";s:57:\"Sorry, we have reached the maximum number of submissions.\";s:14:\"label_position\";s:5:\"above\";}'),(79,72,'notifications','a:1:{i:0;a:10:{s:6:\"active\";b:1;s:4:\"name\";s:18:\"Admin Notification\";s:7:\"subject\";s:34:\"Event Registration Form submission\";s:2:\"to\";s:13:\"{admin_email}\";s:7:\"replyTo\";s:0:\"\";s:7:\"message\";s:12:\"{all_fields}\";s:8:\"fromName\";s:0:\"\";s:11:\"fromAddress\";s:13:\"{admin_email}\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";}}'),(80,76,'wpuf_form_settings','a:16:{s:11:\"redirect_to\";s:4:\"same\";s:7:\"message\";s:214:\"<span id=\"nf-drawer-content\"><span class=\"nf-setting-groups\"><span class=\"nf-field-settings\">Thank you for getting in touch with us! We will try our best to respond back to you within 24 hours.</span></span></span>\";s:7:\"page_id\";s:5:\"72532\";s:3:\"url\";s:0:\"\";s:11:\"submit_text\";s:6:\"Submit\";s:13:\"schedule_form\";s:5:\"false\";s:14:\"schedule_start\";s:0:\"\";s:12:\"schedule_end\";s:0:\"\";s:18:\"sc_pending_message\";s:44:\"Form submission hasn&#039;t been started yet\";s:18:\"sc_expired_message\";s:30:\"Form submission is now closed.\";s:13:\"require_login\";s:5:\"false\";s:17:\"req_login_message\";s:36:\"You need to login to submit a query.\";s:13:\"limit_entries\";s:5:\"false\";s:12:\"limit_number\";s:4:\"1000\";s:13:\"limit_message\";s:57:\"Sorry, we have reached the maximum number of submissions.\";s:14:\"label_position\";s:5:\"above\";}'),(81,76,'notifications','a:1:{i:0;a:10:{s:6:\"active\";b:1;s:4:\"name\";s:18:\"Admin Notification\";s:7:\"subject\";s:35:\"Information Request Form submission\";s:2:\"to\";s:13:\"{admin_email}\";s:7:\"replyTo\";s:0:\"\";s:7:\"message\";s:12:\"{all_fields}\";s:8:\"fromName\";s:0:\"\";s:11:\"fromAddress\";s:13:\"{admin_email}\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";}}'),(82,81,'wpuf_form_settings','a:16:{s:11:\"redirect_to\";s:4:\"same\";s:7:\"message\";s:214:\"<span id=\"nf-drawer-content\"><span class=\"nf-setting-groups\"><span class=\"nf-field-settings\">Thank you for getting in touch with us! We will try our best to respond back to you within 24 hours.</span></span></span>\";s:7:\"page_id\";s:5:\"72532\";s:3:\"url\";s:0:\"\";s:11:\"submit_text\";s:6:\"Submit\";s:13:\"schedule_form\";s:5:\"false\";s:14:\"schedule_start\";s:0:\"\";s:12:\"schedule_end\";s:0:\"\";s:18:\"sc_pending_message\";s:44:\"Form submission hasn&#039;t been started yet\";s:18:\"sc_expired_message\";s:30:\"Form submission is now closed.\";s:13:\"require_login\";s:5:\"false\";s:17:\"req_login_message\";s:36:\"You need to login to submit a query.\";s:13:\"limit_entries\";s:5:\"false\";s:12:\"limit_number\";s:4:\"1000\";s:13:\"limit_message\";s:57:\"Sorry, we have reached the maximum number of submissions.\";s:14:\"label_position\";s:5:\"above\";}'),(83,81,'notifications','a:1:{i:0;a:10:{s:6:\"active\";b:1;s:4:\"name\";s:18:\"Admin Notification\";s:7:\"subject\";s:36:\"Shipping Information Form submission\";s:2:\"to\";s:13:\"{admin_email}\";s:7:\"replyTo\";s:0:\"\";s:7:\"message\";s:12:\"{all_fields}\";s:8:\"fromName\";s:0:\"\";s:11:\"fromAddress\";s:13:\"{admin_email}\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";}}'),(84,91,'wpuf_form_settings','a:16:{s:11:\"redirect_to\";s:4:\"same\";s:7:\"message\";s:214:\"<span id=\"nf-drawer-content\"><span class=\"nf-setting-groups\"><span class=\"nf-field-settings\">Thank you for getting in touch with us! We will try our best to respond back to you within 24 hours.</span></span></span>\";s:7:\"page_id\";s:5:\"72532\";s:3:\"url\";s:0:\"\";s:11:\"submit_text\";s:7:\"Sign Up\";s:13:\"schedule_form\";s:5:\"false\";s:14:\"schedule_start\";s:0:\"\";s:12:\"schedule_end\";s:0:\"\";s:18:\"sc_pending_message\";s:44:\"Form submission hasn&#039;t been started yet\";s:18:\"sc_expired_message\";s:30:\"Form submission is now closed.\";s:13:\"require_login\";s:5:\"false\";s:17:\"req_login_message\";s:36:\"You need to login to submit a query.\";s:13:\"limit_entries\";s:5:\"false\";s:12:\"limit_number\";s:4:\"1000\";s:13:\"limit_message\";s:57:\"Sorry, we have reached the maximum number of submissions.\";s:14:\"label_position\";s:5:\"above\";}'),(85,91,'notifications','a:1:{i:0;a:10:{s:6:\"active\";b:1;s:4:\"name\";s:18:\"Admin Notification\";s:7:\"subject\";s:27:\"New Sign Up Form submission\";s:2:\"to\";s:13:\"{admin_email}\";s:7:\"replyTo\";s:0:\"\";s:7:\"message\";s:12:\"{all_fields}\";s:8:\"fromName\";s:0:\"\";s:11:\"fromAddress\";s:13:\"{admin_email}\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";}}'),(86,94,'wpuf_form_settings','a:16:{s:11:\"redirect_to\";s:4:\"same\";s:7:\"message\";s:214:\"<span id=\"nf-drawer-content\"><span class=\"nf-setting-groups\"><span class=\"nf-field-settings\">Thank you for getting in touch with us! We will try our best to respond back to you within 24 hours.</span></span></span>\";s:7:\"page_id\";s:5:\"72532\";s:3:\"url\";s:0:\"\";s:11:\"submit_text\";s:6:\"Submit\";s:13:\"schedule_form\";s:5:\"false\";s:14:\"schedule_start\";s:0:\"\";s:12:\"schedule_end\";s:0:\"\";s:18:\"sc_pending_message\";s:44:\"Form submission hasn&#039;t been started yet\";s:18:\"sc_expired_message\";s:30:\"Form submission is now closed.\";s:13:\"require_login\";s:5:\"false\";s:17:\"req_login_message\";s:36:\"You need to login to submit a query.\";s:13:\"limit_entries\";s:5:\"false\";s:12:\"limit_number\";s:4:\"1000\";s:13:\"limit_message\";s:57:\"Sorry, we have reached the maximum number of submissions.\";s:14:\"label_position\";s:5:\"above\";}'),(87,94,'notifications','a:1:{i:0;a:10:{s:6:\"active\";b:1;s:4:\"name\";s:18:\"Admin Notification\";s:7:\"subject\";s:33:\"Customer Feedback Form submission\";s:2:\"to\";s:13:\"{admin_email}\";s:7:\"replyTo\";s:0:\"\";s:7:\"message\";s:12:\"{all_fields}\";s:8:\"fromName\";s:0:\"\";s:11:\"fromAddress\";s:13:\"{admin_email}\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";}}'),(88,104,'_menu_item_type','post_type'),(89,104,'_menu_item_menu_item_parent','0'),(90,104,'_menu_item_object_id','103'),(91,104,'_menu_item_object','page'),(92,104,'_menu_item_target',''),(93,104,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(94,104,'_menu_item_xfn',''),(95,104,'_menu_item_url',''),(624,103,'boldgrid_hide_page_title','1'),(97,103,'boldgrid_page_id','658'),(98,106,'_menu_item_type','post_type'),(99,106,'_menu_item_menu_item_parent','0'),(100,106,'_menu_item_object_id','105'),(101,106,'_menu_item_object','page'),(102,106,'_menu_item_target',''),(103,106,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(104,106,'_menu_item_xfn',''),(105,106,'_menu_item_url',''),(106,105,'boldgrid_page_id','9'),(107,108,'_menu_item_type','post_type'),(108,108,'_menu_item_menu_item_parent','0'),(109,108,'_menu_item_object_id','107'),(110,108,'_menu_item_object','page'),(111,108,'_menu_item_target',''),(112,108,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(113,108,'_menu_item_xfn',''),(114,108,'_menu_item_url',''),(115,107,'boldgrid_page_id','10'),(307,164,'_wp_attachment_image_alt','Perfect Sprinkler Watering System'),(305,186,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:36:\"cropped-20210313_120201-scaled-1.jpg\";}}'),(123,111,'_wp_attached_file','2022/02/coiWR0gT8Cw-1-imhwpb-91r89phud3kxfaw.jpg'),(124,111,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:48:\"2022/02/coiWR0gT8Cw-1-imhwpb-91r89phud3kxfaw.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"coiWR0gT8Cw-1-imhwpb-91r89phud3kxfaw-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"coiWR0gT8Cw-1-imhwpb-91r89phud3kxfaw-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(125,112,'_wp_attached_file','2022/02/f887dd50-ca4a1125-goodluz110900317.jpg'),(126,112,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:450;s:6:\"height\";i:300;s:4:\"file\";s:46:\"2022/02/f887dd50-ca4a1125-goodluz110900317.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"f887dd50-ca4a1125-goodluz110900317-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"f887dd50-ca4a1125-goodluz110900317-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"boldgrid_deployment_resize\";a:4:{s:4:\"file\";s:46:\"f887dd50-ca4a1125-goodluz110900317-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;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:{}}}'),(127,113,'_wp_attached_file','2022/02/495e2588-23e4182d-fizkes151200039.jpg'),(128,113,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:450;s:6:\"height\";i:300;s:4:\"file\";s:45:\"2022/02/495e2588-23e4182d-fizkes151200039.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"495e2588-23e4182d-fizkes151200039-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"495e2588-23e4182d-fizkes151200039-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"boldgrid_deployment_resize\";a:4:{s:4:\"file\";s:45:\"495e2588-23e4182d-fizkes151200039-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;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:{}}}'),(129,114,'_wp_attached_file','2022/02/917f105d-0e9345b2-fizkes150800140.jpg'),(130,114,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:450;s:6:\"height\";i:300;s:4:\"file\";s:45:\"2022/02/917f105d-0e9345b2-fizkes150800140.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"917f105d-0e9345b2-fizkes150800140-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"917f105d-0e9345b2-fizkes150800140-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"boldgrid_deployment_resize\";a:4:{s:4:\"file\";s:45:\"917f105d-0e9345b2-fizkes150800140-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;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:{}}}'),(131,115,'_wp_attached_file','2022/02/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tLy1yV2p5ZE5oQVR3LzYwMHg0NTA_3D-imhwpb-qi6hj44g334fjqc.jpg'),(132,115,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:450;s:4:\"file\";s:101:\"2022/02/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tLy1yV2p5ZE5oQVR3LzYwMHg0NTA_3D-imhwpb-qi6hj44g334fjqc.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:101:\"aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tLy1yV2p5ZE5oQVR3LzYwMHg0NTA_3D-imhwpb-qi6hj44g334fjqc-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:101:\"aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tLy1yV2p5ZE5oQVR3LzYwMHg0NTA_3D-imhwpb-qi6hj44g334fjqc-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(133,116,'_wp_attached_file','2022/02/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL19QZFpkVzdmaURjLzYwMHg0NTA_3D-imhwpb-24tawnme8snkr6i.jpg'),(134,116,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:450;s:4:\"file\";s:101:\"2022/02/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL19QZFpkVzdmaURjLzYwMHg0NTA_3D-imhwpb-24tawnme8snkr6i.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:101:\"aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL19QZFpkVzdmaURjLzYwMHg0NTA_3D-imhwpb-24tawnme8snkr6i-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:101:\"aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL19QZFpkVzdmaURjLzYwMHg0NTA_3D-imhwpb-24tawnme8snkr6i-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(135,117,'_wp_attached_file','2022/02/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL3ZHUTQ5bDlJNEVFLzYwMHg0NTA_3D-imhwpb-ceho1ljgk9lzazx.jpg'),(136,117,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:450;s:4:\"file\";s:101:\"2022/02/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL3ZHUTQ5bDlJNEVFLzYwMHg0NTA_3D-imhwpb-ceho1ljgk9lzazx.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:101:\"aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL3ZHUTQ5bDlJNEVFLzYwMHg0NTA_3D-imhwpb-ceho1ljgk9lzazx-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:101:\"aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL3ZHUTQ5bDlJNEVFLzYwMHg0NTA_3D-imhwpb-ceho1ljgk9lzazx-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(137,118,'_wp_attached_file','2022/02/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL052VjgtcUZVVjRJLzYwMHgzMDA_3D-imhwpb-by6i1wxava2jjv6.jpg'),(138,118,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:300;s:4:\"file\";s:101:\"2022/02/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL052VjgtcUZVVjRJLzYwMHgzMDA_3D-imhwpb-by6i1wxava2jjv6.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:101:\"aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL052VjgtcUZVVjRJLzYwMHgzMDA_3D-imhwpb-by6i1wxava2jjv6-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:101:\"aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL052VjgtcUZVVjRJLzYwMHgzMDA_3D-imhwpb-by6i1wxava2jjv6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(139,119,'_wp_attached_file','2022/02/tmp_9HI8UJMSdZA-imhwpb-16lt57g6yolmmw5.jpg'),(140,119,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:300;s:4:\"file\";s:50:\"2022/02/tmp_9HI8UJMSdZA-imhwpb-16lt57g6yolmmw5.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:50:\"tmp_9HI8UJMSdZA-imhwpb-16lt57g6yolmmw5-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"tmp_9HI8UJMSdZA-imhwpb-16lt57g6yolmmw5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(141,120,'_wp_attached_file','2022/02/tmp_b2-fBVrfx0o-imhwpb-zba1rzvazi2u1sy.jpg'),(142,120,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:450;s:4:\"file\";s:50:\"2022/02/tmp_b2-fBVrfx0o-imhwpb-zba1rzvazi2u1sy.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:50:\"tmp_b2-fBVrfx0o-imhwpb-zba1rzvazi2u1sy-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"tmp_b2-fBVrfx0o-imhwpb-zba1rzvazi2u1sy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(143,121,'_wp_attached_file','2022/02/tmp_Xv7k95vOFA-imhwpb-5blo5ds381thf3b.jpg'),(144,121,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:450;s:4:\"file\";s:49:\"2022/02/tmp_Xv7k95vOFA-imhwpb-5blo5ds381thf3b.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"tmp_Xv7k95vOFA-imhwpb-5blo5ds381thf3b-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"tmp_Xv7k95vOFA-imhwpb-5blo5ds381thf3b-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(145,122,'_wp_attached_file','2022/02/tmp_78T99kbcp_4-imhwpb-zbik273bhi2omad.jpg'),(146,122,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:450;s:4:\"file\";s:50:\"2022/02/tmp_78T99kbcp_4-imhwpb-zbik273bhi2omad.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:50:\"tmp_78T99kbcp_4-imhwpb-zbik273bhi2omad-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"tmp_78T99kbcp_4-imhwpb-zbik273bhi2omad-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(147,123,'_wp_attached_file','2022/02/tmp_YadCgbsLHcE-imhwpb-kjakgkqww4nb5j2.jpg'),(148,123,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:50:\"2022/02/tmp_YadCgbsLHcE-imhwpb-kjakgkqww4nb5j2.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:50:\"tmp_YadCgbsLHcE-imhwpb-kjakgkqww4nb5j2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"tmp_YadCgbsLHcE-imhwpb-kjakgkqww4nb5j2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(149,124,'_wp_attached_file','2022/02/tmp_s_NxT6Gx-2A-imhwpb-jifkmjomsrquohk.jpg'),(150,124,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:50:\"2022/02/tmp_s_NxT6Gx-2A-imhwpb-jifkmjomsrquohk.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:50:\"tmp_s_NxT6Gx-2A-imhwpb-jifkmjomsrquohk-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"tmp_s_NxT6Gx-2A-imhwpb-jifkmjomsrquohk-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(151,125,'_wp_attached_file','2022/02/tmp_4YX0oj7gf8o-imhwpb-ut5s3lmwf6dg2wc.jpg'),(152,125,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:50:\"2022/02/tmp_4YX0oj7gf8o-imhwpb-ut5s3lmwf6dg2wc.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:50:\"tmp_4YX0oj7gf8o-imhwpb-ut5s3lmwf6dg2wc-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"tmp_4YX0oj7gf8o-imhwpb-ut5s3lmwf6dg2wc-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(153,126,'_wp_attached_file','2022/02/tmp_8tN3flDTQBU-imhwpb-kxmpsoge3h4672l.jpg'),(154,126,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:50:\"2022/02/tmp_8tN3flDTQBU-imhwpb-kxmpsoge3h4672l.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:50:\"tmp_8tN3flDTQBU-imhwpb-kxmpsoge3h4672l-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"tmp_8tN3flDTQBU-imhwpb-kxmpsoge3h4672l-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(155,127,'_wp_attached_file','2022/02/wedge-fitness-imhwpb-kh917lpg3c92iw1.jpg'),(156,127,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:48:\"2022/02/wedge-fitness-imhwpb-kh917lpg3c92iw1.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"wedge-fitness-imhwpb-kh917lpg3c92iw1-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:49:\"wedge-fitness-imhwpb-kh917lpg3c92iw1-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"wedge-fitness-imhwpb-kh917lpg3c92iw1-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:48:\"wedge-fitness-imhwpb-kh917lpg3c92iw1-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:49:\"wedge-fitness-imhwpb-kh917lpg3c92iw1-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;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:{}}}'),(157,105,'_edit_lock','1657913604:1'),(158,107,'_edit_lock','1662484543:1'),(159,135,'_wp_attached_file','2022/02/20201221_152806-scaled.jpg'),(160,135,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:34:\"2022/02/20201221_152806-scaled.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"20201221_152806-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"20201221_152806-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"20201221_152806-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"20201221_152806-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:29:\"20201221_152806-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:29:\"20201221_152806-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-A215U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:5:\"4.047\";s:3:\"iso\";s:3:\"114\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20201221_152806.jpg\";}'),(161,136,'_wp_attached_file','2022/02/received_462634725313575.jpeg'),(162,136,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:864;s:4:\"file\";s:37:\"2022/02/received_462634725313575.jpeg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"received_462634725313575-222x300.jpeg\";s:5:\"width\";i:222;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"received_462634725313575-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"crop-1\";a:4:{s:4:\"file\";s:55:\"0_273_600_300.48465266559_received_462634725313575.jpeg\";s:5:\"width\";d:600;s:6:\"height\";d:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(163,136,'_wp_attachment_image_alt','Meet Naplesirrigation - Your Yard is only as good as your Sprinkler Guy'),(627,107,'boldgrid_hide_page_title','global'),(165,107,'crio-premium-page-header-override','global'),(166,107,'crio-premium-page-header-select','none'),(167,107,'crio-premium-page-header-background',''),(170,103,'_edit_lock','1738002457:1'),(171,138,'_wp_attached_file','2022/02/20210313_120201-scaled.jpg'),(172,138,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:34:\"2022/02/20210313_120201-scaled.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"20210313_120201-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"20210313_120201-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"20210313_120201-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"20210313_120201-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:29:\"20210313_120201-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:29:\"20210313_120201-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-A215U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:5:\"4.047\";s:3:\"iso\";s:3:\"111\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20210313_120201.jpg\";}'),(173,138,'_wp_attachment_image_alt','NAPLES IRRIGATION'),(174,140,'_wp_attached_file','2022/02/20210313_120201-1-scaled.jpg'),(175,140,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:36:\"2022/02/20210313_120201-1-scaled.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"20210313_120201-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"20210313_120201-1-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"20210313_120201-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"20210313_120201-1-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:31:\"20210313_120201-1-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:31:\"20210313_120201-1-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-A215U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:5:\"4.047\";s:3:\"iso\";s:3:\"111\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:21:\"20210313_120201-1.jpg\";}'),(176,141,'_wp_attached_file','2022/02/received_799020637471726.jpeg'),(177,141,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:864;s:4:\"file\";s:37:\"2022/02/received_799020637471726.jpeg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"received_799020637471726-222x300.jpeg\";s:5:\"width\";i:222;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"received_799020637471726-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(178,142,'_wp_attached_file','2022/02/received_631868047814753.jpeg'),(179,142,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:864;s:4:\"file\";s:37:\"2022/02/received_631868047814753.jpeg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"received_631868047814753-222x300.jpeg\";s:5:\"width\";i:222;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"received_631868047814753-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"crop-1\";a:4:{s:4:\"file\";s:45:\"0_0_221.875_300_received_631868047814753.jpeg\";s:5:\"width\";d:222;s:6:\"height\";d:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(180,143,'_wp_attached_file','2022/02/received_1072950093527088.jpeg'),(181,143,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:864;s:4:\"file\";s:38:\"2022/02/received_1072950093527088.jpeg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"received_1072950093527088-222x300.jpeg\";s:5:\"width\";i:222;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"received_1072950093527088-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(182,144,'_wp_attached_file','2022/02/received_416297686606928.jpeg'),(183,144,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:765;s:6:\"height\";i:574;s:4:\"file\";s:37:\"2022/02/received_416297686606928.jpeg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"received_416297686606928-300x225.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"received_416297686606928-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(184,145,'_wp_attached_file','2022/02/20210313_120201-2-scaled.jpg'),(185,145,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:36:\"2022/02/20210313_120201-2-scaled.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"20210313_120201-2-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"20210313_120201-2-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"20210313_120201-2-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:29:\"20210313_120201-2-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:31:\"20210313_120201-2-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:31:\"20210313_120201-2-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-A215U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:5:\"4.047\";s:3:\"iso\";s:3:\"111\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:21:\"20210313_120201-2.jpg\";}'),(186,146,'_wp_attached_file','2022/02/IMG_20211101_150730-scaled.jpg'),(187,146,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:38:\"2022/02/IMG_20211101_150730-scaled.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"IMG_20211101_150730-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"IMG_20211101_150730-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20211101_150730-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:32:\"IMG_20211101_150730-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:33:\"IMG_20211101_150730-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:33:\"IMG_20211101_150730-1536x2048.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-A215U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1635779250\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.05\";s:3:\"iso\";s:3:\"111\";s:13:\"shutter_speed\";s:5:\"0.001\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:23:\"IMG_20211101_150730.jpg\";}'),(188,147,'_wp_attached_file','2022/02/20201217_151926-scaled.jpg'),(189,147,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:34:\"2022/02/20201217_151926-scaled.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"20201217_151926-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"20201217_151926-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"20201217_151926-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:28:\"20201217_151926-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:29:\"20201217_151926-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:29:\"20201217_151926-1536x2048.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-A215U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:5:\"4.047\";s:3:\"iso\";s:3:\"129\";s:13:\"shutter_speed\";s:5:\"0.009\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20201217_151926.jpg\";}'),(190,148,'_wp_attached_file','2022/02/20201217_152016-scaled.jpg'),(191,148,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:34:\"2022/02/20201217_152016-scaled.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"20201217_152016-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"20201217_152016-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"20201217_152016-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:28:\"20201217_152016-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:29:\"20201217_152016-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:29:\"20201217_152016-1536x2048.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"crop-1\";a:4:{s:4:\"file\";s:48:\"9_0_219.7265625_300_20201217_152016-768x1024.jpg\";s:5:\"width\";d:220;s:6:\"height\";d:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-A215U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:5:\"4.047\";s:3:\"iso\";s:3:\"183\";s:13:\"shutter_speed\";s:5:\"0.009\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20201217_152016.jpg\";}'),(192,149,'_wp_attached_file','2022/02/20201217_155729-scaled.jpg'),(193,149,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:34:\"2022/02/20201217_155729-scaled.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"20201217_155729-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"20201217_155729-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"20201217_155729-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:28:\"20201217_155729-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:29:\"20201217_155729-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:29:\"20201217_155729-1536x2048.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-A215U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:5:\"4.047\";s:3:\"iso\";s:3:\"191\";s:13:\"shutter_speed\";s:5:\"0.009\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20201217_155729.jpg\";}'),(194,150,'_wp_attached_file','2022/02/20201221_152619-scaled.jpg'),(195,150,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:34:\"2022/02/20201221_152619-scaled.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"20201221_152619-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"20201221_152619-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"20201221_152619-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:28:\"20201221_152619-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:29:\"20201221_152619-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:29:\"20201221_152619-1536x2048.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-A215U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:5:\"4.047\";s:3:\"iso\";s:3:\"112\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20201221_152619.jpg\";}'),(196,151,'_wp_attached_file','2022/02/20201221_152447-scaled.jpg'),(197,151,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:34:\"2022/02/20201221_152447-scaled.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"20201221_152447-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"20201221_152447-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"20201221_152447-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:28:\"20201221_152447-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:29:\"20201221_152447-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:29:\"20201221_152447-1536x2048.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"crop-1\";a:4:{s:4:\"file\";s:54:\"0_223_400_301.04166666667_20201221_152447-768x1024.jpg\";s:5:\"width\";d:400;s:6:\"height\";d:301;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-A215U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:5:\"4.047\";s:3:\"iso\";s:3:\"111\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20201221_152447.jpg\";}'),(198,152,'_wp_attached_file','2022/02/20201221_152619-1-scaled.jpg'),(199,152,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:36:\"2022/02/20201221_152619-1-scaled.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"20201221_152619-1-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"20201221_152619-1-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"20201221_152619-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"20201221_152619-1-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:31:\"20201221_152619-1-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:31:\"20201221_152619-1-1536x2048.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-A215U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:5:\"4.047\";s:3:\"iso\";s:3:\"112\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:21:\"20201221_152619-1.jpg\";}'),(200,153,'_wp_attached_file','2022/02/20201221_152756-scaled.jpg'),(201,153,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:34:\"2022/02/20201221_152756-scaled.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"20201221_152756-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"20201221_152756-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"20201221_152756-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:28:\"20201221_152756-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:29:\"20201221_152756-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:29:\"20201221_152756-1536x2048.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-A215U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:5:\"4.047\";s:3:\"iso\";s:3:\"111\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20201221_152756.jpg\";}'),(202,154,'_wp_attached_file','2022/02/20201221_152806-1-scaled.jpg'),(203,154,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:36:\"2022/02/20201221_152806-1-scaled.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"20201221_152806-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"20201221_152806-1-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"20201221_152806-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"20201221_152806-1-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:31:\"20201221_152806-1-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:31:\"20201221_152806-1-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-A215U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:5:\"4.047\";s:3:\"iso\";s:3:\"114\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:21:\"20201221_152806-1.jpg\";}'),(204,155,'_wp_attached_file','2022/02/20201221_153230-scaled.jpg'),(205,155,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:34:\"2022/02/20201221_153230-scaled.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"20201221_153230-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"20201221_153230-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"20201221_153230-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:28:\"20201221_153230-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:29:\"20201221_153230-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:29:\"20201221_153230-1536x2048.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"crop-1\";a:4:{s:4:\"file\";s:54:\"0_223_400_301.04166666667_20201221_153230-768x1024.jpg\";s:5:\"width\";d:400;s:6:\"height\";d:301;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-A215U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:5:\"4.047\";s:3:\"iso\";s:3:\"113\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20201221_153230.jpg\";}'),(206,156,'_wp_attached_file','2022/02/20201221_153238-scaled.jpg'),(207,156,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:34:\"2022/02/20201221_153238-scaled.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"20201221_153238-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"20201221_153238-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"20201221_153238-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:28:\"20201221_153238-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:29:\"20201221_153238-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:29:\"20201221_153238-1536x2048.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"crop-1\";a:4:{s:4:\"file\";s:44:\"282_127_486_486_20201221_153238-768x1024.jpg\";s:5:\"width\";d:486;s:6:\"height\";d:486;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"crop-2\";a:4:{s:4:\"file\";s:54:\"0_223_400_301.04166666667_20201221_153238-768x1024.jpg\";s:5:\"width\";d:400;s:6:\"height\";d:301;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-A215U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:5:\"4.047\";s:3:\"iso\";s:3:\"116\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20201221_153238.jpg\";}'),(309,164,'_wp_attachment_backup_sizes','a:2:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:26:\"20210313_120212-scaled.jpg\";}s:18:\"full-1649096858979\";a:3:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:41:\"20210313_120212-scaled-e1649096814422.jpg\";}}'),(215,107,'_edit_last','1'),(216,164,'_wp_attached_file','2022/03/20210313_120212-scaled.jpg'),(217,164,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:34:\"2022/03/20210313_120212-scaled.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-A215U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:5:\"4.047\";s:3:\"iso\";s:3:\"114\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20210313_120212.jpg\";}'),(310,164,'_edit_lock','1649096988:1'),(311,164,'_edit_last','1'),(313,105,'bgseo_robots_index','index'),(314,105,'bgseo_robots_follow','follow'),(418,273,'_wp_attached_file','2022/04/IMG_20220128_155353-scaled.jpg'),(319,104,'_wp_old_date','2022-02-23'),(218,165,'_wp_attached_file','2022/03/NaplesIrrigaiton.jpg'),(219,165,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:698;s:6:\"height\";i:524;s:4:\"file\";s:28:\"2022/03/NaplesIrrigaiton.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"NaplesIrrigaiton-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"NaplesIrrigaiton-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-A215U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:5:\"4.047\";s:3:\"iso\";s:3:\"114\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(220,166,'_wp_attached_file','2022/03/20210313_120201-scaled.jpg'),(221,166,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:34:\"2022/03/20210313_120201-scaled.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"20210313_120201-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"20210313_120201-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"20210313_120201-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"20210313_120201-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:29:\"20210313_120201-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:29:\"20210313_120201-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-A215U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:5:\"4.047\";s:3:\"iso\";s:3:\"111\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20210313_120201.jpg\";}'),(222,168,'_wp_attached_file','2022/03/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops60a27a29c0d5d20f56ffb01369d4d14b.jpg'),(223,168,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:300;s:4:\"file\";s:102:\"2022/03/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops60a27a29c0d5d20f56ffb01369d4d14b.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops60a27a29c0d5d20f56ffb01369d4d14b-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops60a27a29c0d5d20f56ffb01369d4d14b-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(224,168,'_source_url','https://images.unsplash.com/photo-1492632833879-ffead221b059?ixlib=rb-0.3.5&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=400&h=300&fit=crop&s=60a27a29c0d5d20f56ffb01369d4d14b&.png'),(225,169,'_wp_attached_file','2022/03/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops59d6fd3c559c53080e7c298f98ae0afd.jpg'),(226,169,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:300;s:4:\"file\";s:102:\"2022/03/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops59d6fd3c559c53080e7c298f98ae0afd.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops59d6fd3c559c53080e7c298f98ae0afd-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops59d6fd3c559c53080e7c298f98ae0afd-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(227,169,'_source_url','https://images.unsplash.com/photo-1470468969717-61d5d54fd036?ixlib=rb-0.3.5&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=400&h=300&fit=crop&s=59d6fd3c559c53080e7c298f98ae0afd&.png'),(228,170,'_wp_attached_file','2022/03/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops406d0fa0bbefc6c57ef3740e77d689ab.jpg'),(229,170,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:300;s:4:\"file\";s:102:\"2022/03/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops406d0fa0bbefc6c57ef3740e77d689ab.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops406d0fa0bbefc6c57ef3740e77d689ab-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops406d0fa0bbefc6c57ef3740e77d689ab-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(230,170,'_source_url','https://images.unsplash.com/photo-1434596922112-19c563067271?ixlib=rb-0.3.5&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=400&h=300&fit=crop&s=406d0fa0bbefc6c57ef3740e77d689ab&.png'),(231,171,'_wp_attached_file','2022/03/20210313_120201-1-scaled.jpg'),(232,171,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:36:\"2022/03/20210313_120201-1-scaled.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"20210313_120201-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"20210313_120201-1-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"20210313_120201-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"20210313_120201-1-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:31:\"20210313_120201-1-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:31:\"20210313_120201-1-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-A215U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:5:\"4.047\";s:3:\"iso\";s:3:\"111\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:21:\"20210313_120201-1.jpg\";}'),(233,172,'_wp_attached_file','2022/03/20210313_120212-1-scaled.jpg'),(234,172,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:36:\"2022/03/20210313_120212-1-scaled.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"20210313_120212-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"20210313_120212-1-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"20210313_120212-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"20210313_120212-1-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:31:\"20210313_120212-1-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:31:\"20210313_120212-1-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-A215U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:5:\"4.047\";s:3:\"iso\";s:3:\"114\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:21:\"20210313_120212-1.jpg\";}'),(235,103,'_edit_last','1'),(236,103,'_wp_page_template','default'),(237,103,'crio-premium-page-header-override','global'),(238,103,'crio-premium-page-header-select','none'),(239,103,'crio-premium-page-header-background',''),(241,103,'boldgrid_in_page_containers','1'),(242,103,'bgseo_robots_index','index'),(243,103,'bgseo_robots_follow','follow'),(247,177,'_wp_attached_file','2022/03/pumpirigationsupply.jpg'),(248,177,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:480;s:4:\"file\";s:31:\"2022/03/pumpirigationsupply.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"pumpirigationsupply-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"pumpirigationsupply-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"crop-1\";a:4:{s:4:\"file\";s:36:\"80_0_480_480_pumpirigationsupply.jpg\";s:5:\"width\";d:480;s:6:\"height\";d:480;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:{}}}'),(250,179,'_wp_attached_file','2022/03/received_2444269415708471.jpeg'),(251,179,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:560;s:6:\"height\";i:765;s:4:\"file\";s:38:\"2022/03/received_2444269415708471.jpeg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"received_2444269415708471-220x300.jpeg\";s:5:\"width\";i:220;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"received_2444269415708471-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(252,179,'_wp_attachment_image_alt','Renovation design sprinkler irrigation'),(253,180,'_wp_attached_file','2022/03/received_656891985552879.jpeg'),(254,180,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:560;s:6:\"height\";i:765;s:4:\"file\";s:37:\"2022/03/received_656891985552879.jpeg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"received_656891985552879-220x300.jpeg\";s:5:\"width\";i:220;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"received_656891985552879-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"crop-1\";a:4:{s:4:\"file\";s:55:\"0_207_400_250.71428571429_received_656891985552879.jpeg\";s:5:\"width\";d:400;s:6:\"height\";d:251;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:{}}}'),(255,180,'_wp_attachment_image_alt','Repair Sprinkler system irrigaiton'),(258,107,'_wp_page_template','default'),(260,107,'boldgrid_in_page_containers','1'),(261,107,'bgseo_robots_index','index'),(262,107,'bgseo_robots_follow','follow'),(266,186,'_wp_attached_file','2022/02/cropped-20210313_120201-scaled-1-e1649096217790.jpg'),(267,186,'_wp_attachment_context','background-image'),(268,186,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:59:\"2022/02/cropped-20210313_120201-scaled-1-e1649096217790.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"cropped-20210313_120201-scaled-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:45:\"cropped-20210313_120201-scaled-1-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"cropped-20210313_120201-scaled-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:44:\"cropped-20210313_120201-scaled-1-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:46:\"cropped-20210313_120201-scaled-1-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:46:\"cropped-20210313_120201-scaled-1-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-A215U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:5:\"4.047\";s:3:\"iso\";s:3:\"111\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(269,187,'_wp_attached_file','2022/02/cropped-20201221_153230-scaled-1.jpg'),(270,187,'_wp_attachment_context','background-image'),(271,187,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1138;s:6:\"height\";i:2501;s:4:\"file\";s:44:\"2022/02/cropped-20201221_153230-scaled-1.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"cropped-20201221_153230-scaled-1-137x300.jpg\";s:5:\"width\";i:137;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:45:\"cropped-20201221_153230-scaled-1-466x1024.jpg\";s:5:\"width\";i:466;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"cropped-20201221_153230-scaled-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:45:\"cropped-20201221_153230-scaled-1-768x1688.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1688;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:45:\"cropped-20201221_153230-scaled-1-699x1536.jpg\";s:5:\"width\";i:699;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:45:\"cropped-20201221_153230-scaled-1-932x2048.jpg\";s:5:\"width\";i:932;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-A215U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:5:\"4.047\";s:3:\"iso\";s:3:\"113\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(272,188,'_wp_attached_file','2022/02/cropped-wedge-fitness-imhwpb-kh917lpg3c92iw1.jpg'),(273,188,'_wp_attachment_context','background-image'),(274,188,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:56:\"2022/02/cropped-wedge-fitness-imhwpb-kh917lpg3c92iw1.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:56:\"cropped-wedge-fitness-imhwpb-kh917lpg3c92iw1-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:57:\"cropped-wedge-fitness-imhwpb-kh917lpg3c92iw1-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:56:\"cropped-wedge-fitness-imhwpb-kh917lpg3c92iw1-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:56:\"cropped-wedge-fitness-imhwpb-kh917lpg3c92iw1-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:57:\"cropped-wedge-fitness-imhwpb-kh917lpg3c92iw1-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;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:{}}}'),(275,189,'_wp_attached_file','2022/02/cropped-cropped-wedge-fitness-imhwpb-kh917lpg3c92iw1.jpg'),(276,189,'_wp_attachment_context','background-image'),(277,189,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:64:\"2022/02/cropped-cropped-wedge-fitness-imhwpb-kh917lpg3c92iw1.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:64:\"cropped-cropped-wedge-fitness-imhwpb-kh917lpg3c92iw1-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:65:\"cropped-cropped-wedge-fitness-imhwpb-kh917lpg3c92iw1-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:79:\"cropped-cropped-wedge-fitness-imhwpb-kh917lpg3c92iw1-e1646167789541-150x121.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:121;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:64:\"cropped-cropped-wedge-fitness-imhwpb-kh917lpg3c92iw1-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:65:\"cropped-cropped-wedge-fitness-imhwpb-kh917lpg3c92iw1-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;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:{}}}'),(278,190,'_wp_attached_file','2022/02/cropped-cropped-wedge-fitness-imhwpb-kh917lpg3c92iw1-1-e1646168401596.jpg'),(279,190,'_wp_attachment_context','background-image'),(280,190,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:81:\"2022/02/cropped-cropped-wedge-fitness-imhwpb-kh917lpg3c92iw1-1-e1646168401596.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:81:\"cropped-cropped-wedge-fitness-imhwpb-kh917lpg3c92iw1-1-e1646168401596-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:82:\"cropped-cropped-wedge-fitness-imhwpb-kh917lpg3c92iw1-1-e1646168401596-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:81:\"cropped-cropped-wedge-fitness-imhwpb-kh917lpg3c92iw1-1-e1646168401596-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:81:\"cropped-cropped-wedge-fitness-imhwpb-kh917lpg3c92iw1-1-e1646168401596-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:82:\"cropped-cropped-wedge-fitness-imhwpb-kh917lpg3c92iw1-1-e1646168401596-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;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:{}}}'),(281,190,'_edit_lock','1646168563:1'),(282,190,'_wp_attachment_backup_sizes','a:24:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:58:\"cropped-cropped-wedge-fitness-imhwpb-kh917lpg3c92iw1-1.jpg\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:66:\"cropped-cropped-wedge-fitness-imhwpb-kh917lpg3c92iw1-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:66:\"cropped-cropped-wedge-fitness-imhwpb-kh917lpg3c92iw1-1-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"medium_large-orig\";a:4:{s:4:\"file\";s:66:\"cropped-cropped-wedge-fitness-imhwpb-kh917lpg3c92iw1-1-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"large-orig\";a:4:{s:4:\"file\";s:67:\"cropped-cropped-wedge-fitness-imhwpb-kh917lpg3c92iw1-1-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"1536x1536-orig\";a:4:{s:4:\"file\";s:67:\"cropped-cropped-wedge-fitness-imhwpb-kh917lpg3c92iw1-1-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"full-1646168062482\";a:3:{s:5:\"width\";i:1080;s:6:\"height\";i:1920;s:4:\"file\";s:73:\"cropped-cropped-wedge-fitness-imhwpb-kh917lpg3c92iw1-1-e1646167588196.jpg\";}s:23:\"thumbnail-1646168062482\";a:4:{s:4:\"file\";s:81:\"cropped-cropped-wedge-fitness-imhwpb-kh917lpg3c92iw1-1-e1646167588196-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"medium-1646168062482\";a:4:{s:4:\"file\";s:81:\"cropped-cropped-wedge-fitness-imhwpb-kh917lpg3c92iw1-1-e1646167588196-169x300.jpg\";s:5:\"width\";i:169;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"medium_large-1646168062482\";a:4:{s:4:\"file\";s:82:\"cropped-cropped-wedge-fitness-imhwpb-kh917lpg3c92iw1-1-e1646167588196-768x1365.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"large-1646168062482\";a:4:{s:4:\"file\";s:82:\"cropped-cropped-wedge-fitness-imhwpb-kh917lpg3c92iw1-1-e1646167588196-576x1024.jpg\";s:5:\"width\";i:576;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"1536x1536-1646168062482\";a:4:{s:4:\"file\";s:82:\"cropped-cropped-wedge-fitness-imhwpb-kh917lpg3c92iw1-1-e1646167588196-864x1536.jpg\";s:5:\"width\";i:864;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"full-1646168114317\";a:3:{s:5:\"width\";i:1080;s:6:\"height\";i:1920;s:4:\"file\";s:73:\"cropped-cropped-wedge-fitness-imhwpb-kh917lpg3c92iw1-1-e1646168062482.jpg\";}s:23:\"thumbnail-1646168114317\";a:4:{s:4:\"file\";s:81:\"cropped-cropped-wedge-fitness-imhwpb-kh917lpg3c92iw1-1-e1646168062482-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"medium-1646168114317\";a:4:{s:4:\"file\";s:81:\"cropped-cropped-wedge-fitness-imhwpb-kh917lpg3c92iw1-1-e1646168062482-169x300.jpg\";s:5:\"width\";i:169;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"medium_large-1646168114317\";a:4:{s:4:\"file\";s:82:\"cropped-cropped-wedge-fitness-imhwpb-kh917lpg3c92iw1-1-e1646168062482-768x1365.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"large-1646168114317\";a:4:{s:4:\"file\";s:82:\"cropped-cropped-wedge-fitness-imhwpb-kh917lpg3c92iw1-1-e1646168062482-576x1024.jpg\";s:5:\"width\";i:576;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"1536x1536-1646168114317\";a:4:{s:4:\"file\";s:82:\"cropped-cropped-wedge-fitness-imhwpb-kh917lpg3c92iw1-1-e1646168062482-864x1536.jpg\";s:5:\"width\";i:864;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"full-1646168401596\";a:3:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:73:\"cropped-cropped-wedge-fitness-imhwpb-kh917lpg3c92iw1-1-e1646168337970.jpg\";}s:23:\"thumbnail-1646168401596\";a:4:{s:4:\"file\";s:81:\"cropped-cropped-wedge-fitness-imhwpb-kh917lpg3c92iw1-1-e1646168337970-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"medium-1646168401596\";a:4:{s:4:\"file\";s:81:\"cropped-cropped-wedge-fitness-imhwpb-kh917lpg3c92iw1-1-e1646168337970-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"medium_large-1646168401596\";a:4:{s:4:\"file\";s:81:\"cropped-cropped-wedge-fitness-imhwpb-kh917lpg3c92iw1-1-e1646168337970-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"large-1646168401596\";a:4:{s:4:\"file\";s:82:\"cropped-cropped-wedge-fitness-imhwpb-kh917lpg3c92iw1-1-e1646168337970-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"1536x1536-1646168401596\";a:4:{s:4:\"file\";s:82:\"cropped-cropped-wedge-fitness-imhwpb-kh917lpg3c92iw1-1-e1646168337970-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(283,190,'_edit_last','1'),(284,190,'_oembed_b9e7bf92a5f08cacbf27bc23a89338d2','{{unknown}}'),(285,189,'_wp_attachment_backup_sizes','a:1:{s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:64:\"cropped-cropped-wedge-fitness-imhwpb-kh917lpg3c92iw1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(286,192,'_wp_attached_file','2022/03/20200801_150124-scaled.jpg'),(287,192,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:34:\"2022/03/20200801_150124-scaled.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"20200801_150124-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"20200801_150124-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"20200801_150124-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:28:\"20200801_150124-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:29:\"20200801_150124-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:29:\"20200801_150124-1536x2048.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"crop-1\";a:4:{s:4:\"file\";s:54:\"0_223_400_301.04166666667_20200801_150124-768x1024.jpg\";s:5:\"width\";d:400;s:6:\"height\";d:301;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-J727V\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1596294083\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"2.91\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:18:\"0.0010405827263267\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20200801_150124.jpg\";}'),(288,105,'_edit_last','1'),(289,105,'_wp_page_template','default'),(290,105,'crio-premium-page-header-override','global'),(291,105,'crio-premium-page-header-select','none'),(292,105,'crio-premium-page-header-background',''),(625,105,'boldgrid_hide_page_title','global'),(294,105,'boldgrid_in_page_containers','1'),(419,273,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:38:\"2022/04/IMG_20220128_155353-scaled.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"IMG_20220128_155353-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"IMG_20220128_155353-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20220128_155353-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:32:\"IMG_20220128_155353-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:33:\"IMG_20220128_155353-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:33:\"IMG_20220128_155353-1536x2048.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"crop-1\";a:4:{s:4:\"file\";s:52:\"5_0_222.0703125_300_IMG_20220128_155353-768x1024.jpg\";s:5:\"width\";d:222;s:6:\"height\";d:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"crop-2\";a:4:{s:4:\"file\";s:58:\"0_223_400_301.04166666667_IMG_20220128_155353-768x1024.jpg\";s:5:\"width\";d:400;s:6:\"height\";d:301;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"crop-3\";a:4:{s:4:\"file\";s:58:\"0_273_400_248.95833333333_IMG_20220128_155353-768x1024.jpg\";s:5:\"width\";d:400;s:6:\"height\";d:249;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"crop-4\";a:4:{s:4:\"file\";s:58:\"0_271_400_251.04166666667_IMG_20220128_155353-768x1024.jpg\";s:5:\"width\";d:400;s:6:\"height\";d:251;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-A215U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1643385233\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.05\";s:3:\"iso\";s:3:\"112\";s:13:\"shutter_speed\";s:5:\"0.001\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:23:\"IMG_20220128_155353.jpg\";}'),(353,105,'bgseo_custom_keyword',' renovations of an existing system, repair, and replacement '),(360,63,'_weforms_view_count','11395'),(362,103,'bgseo_title','Best Lawn Irrigation Services-Naples Irrigation '),(363,103,'bgseo_custom_keyword','lawn sprinkler repair, installation, valves, pump, '),(365,105,'bgseo_title','renovations of an existing system repair|replace electrical valves,sprinkler heads,clocks, pumps. '),(366,105,'bgseo_description','Specializing in renovations of an existing system, repair, and replacement of electrical valves, sprinkler heads, clocks, and pumps.  Complete adjustment of systems of all types\r\n'),(368,107,'bgseo_title','Best Lawn Irrigation Service contact 239-793-775 Naples FL  '),(369,107,'bgseo_description','Best Lawn Irrigation Services in Naples and the surrounding area established in 1982 call or text  239-793-775\r\nSprinkler maintenance irrigation services reapir update system design '),(370,107,'bgseo_custom_keyword','Contact Naples Irrigation Service  239-793-775'),(608,192,'_wp_attachment_image_alt','Repair Sprinkler system irrigaiton'),(385,241,'wpuf_form_settings','a:49:{s:11:\"redirect_to\";s:4:\"same\";s:7:\"message\";s:64:\"Thanks for contacting us! We will get in touch with you shortly.\";s:7:\"page_id\";s:0:\"\";s:3:\"url\";s:0:\"\";s:11:\"submit_text\";s:12:\"Submit Query\";s:18:\"submit_button_cond\";O:8:\"stdClass\":3:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_logic\";s:3:\"any\";s:10:\"conditions\";a:1:{i:0;O:8:\"stdClass\":3:{s:4:\"name\";s:0:\"\";s:8:\"operator\";s:1:\"=\";s:6:\"option\";s:0:\"\";}}}s:13:\"schedule_form\";s:5:\"false\";s:14:\"schedule_start\";s:0:\"\";s:12:\"schedule_end\";s:0:\"\";s:18:\"sc_pending_message\";s:39:\"Form submission hasn\'t been started yet\";s:18:\"sc_expired_message\";s:30:\"Form submission is now closed.\";s:13:\"require_login\";s:5:\"false\";s:17:\"req_login_message\";s:36:\"You need to login to submit a query.\";s:13:\"limit_entries\";s:5:\"false\";s:12:\"limit_number\";s:3:\"100\";s:13:\"limit_message\";s:57:\"Sorry, we have reached the maximum number of submissions.\";s:14:\"label_position\";s:5:\"above\";s:13:\"use_theme_css\";s:10:\"wpuf-style\";s:9:\"quiz_form\";s:2:\"no\";s:22:\"shuffle_question_order\";s:2:\"no\";s:13:\"release_grade\";s:16:\"after_submission\";s:18:\"respondent_can_see\";a:3:{i:0;s:16:\"missed_questions\";i:1;s:15:\"correct_answers\";i:2;s:12:\"point_values\";}s:12:\"total_points\";i:0;s:16:\"enable_multistep\";b:0;s:26:\"multistep_progressbar_type\";s:11:\"progressive\";s:21:\"humanpresence_enabled\";b:0;s:21:\"payment_paypal_images\";s:68:\"https://www.paypalobjects.com/webstatic/mktg/logo/AM_mc_vs_dc_ae.jpg\";s:20:\"payment_paypal_label\";s:6:\"PayPal\";s:20:\"payment_stripe_label\";s:11:\"Credit Card\";s:21:\"payment_stripe_images\";a:4:{i:0;s:4:\"visa\";i:1;s:10:\"mastercard\";i:2;s:4:\"amex\";i:3;s:8:\"discover\";}s:25:\"payment_stripe_deactivate\";s:0:\"\";s:11:\"stripe_mode\";s:4:\"live\";s:14:\"stripe_page_id\";s:0:\"\";s:20:\"stripe_override_keys\";s:0:\"\";s:12:\"stripe_email\";s:0:\"\";s:10:\"stripe_key\";s:0:\"\";s:17:\"stripe_secret_key\";s:0:\"\";s:15:\"stripe_key_test\";s:0:\"\";s:22:\"stripe_secret_key_test\";s:0:\"\";s:20:\"stripe_prefill_email\";s:0:\"\";s:23:\"stripe_user_email_field\";s:0:\"\";s:25:\"payment_paypal_deactivate\";s:0:\"\";s:11:\"paypal_mode\";s:4:\"live\";s:11:\"paypal_type\";s:5:\"_cart\";s:15:\"paypal_override\";s:0:\"\";s:12:\"paypal_email\";s:0:\"\";s:14:\"paypal_page_id\";s:0:\"\";s:20:\"paypal_prefill_email\";s:0:\"\";s:23:\"paypal_user_email_field\";s:0:\"\";}'),(386,241,'notifications','a:2:{i:0;a:14:{s:6:\"active\";s:4:\"true\";s:4:\"type\";s:5:\"email\";s:5:\"smsTo\";s:0:\"\";s:7:\"smsText\";s:45:\"[{form_name}] New Form Submission #{entry_id}\";s:4:\"name\";s:18:\"Admin Notification\";s:7:\"subject\";s:45:\"[{form_name}] New Form Submission #{entry_id}\";s:2:\"to\";s:13:\"{admin_email}\";s:7:\"replyTo\";s:13:\"{field:email}\";s:7:\"message\";s:19:\"<p>{all_fields}</p>\";s:8:\"fromName\";s:11:\"{site_name}\";s:11:\"fromAddress\";s:13:\"{admin_email}\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:12:\"weforms_cond\";a:3:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_logic\";s:3:\"any\";s:10:\"conditions\";a:1:{i:0;a:3:{s:4:\"name\";s:0:\"\";s:8:\"operator\";s:1:\"=\";s:6:\"option\";s:0:\"\";}}}}i:1;a:14:{s:6:\"active\";s:4:\"true\";s:4:\"type\";s:5:\"email\";s:5:\"smsTo\";s:0:\"\";s:7:\"smsText\";s:45:\"[{form_name}] New Form Submission #{entry_id}\";s:4:\"name\";s:18:\"Admin Notification\";s:7:\"subject\";s:45:\"[{form_name}] New Form Submission #{entry_id}\";s:2:\"to\";s:28:\"{hopperirrigation@gmail.com}\";s:7:\"replyTo\";s:13:\"{field:email}\";s:7:\"message\";s:19:\"<p>{all_fields}</p>\";s:8:\"fromName\";s:11:\"{site_name}\";s:11:\"fromAddress\";s:13:\"{admin_email}\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:12:\"weforms_cond\";a:3:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_logic\";s:3:\"any\";s:10:\"conditions\";a:1:{i:0;a:3:{s:4:\"name\";s:0:\"\";s:8:\"operator\";s:1:\"=\";s:6:\"option\";s:0:\"\";}}}}}'),(387,241,'integrations','a:1:{s:5:\"slack\";O:8:\"stdClass\":2:{s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";}}'),(389,241,'_weforms_view_count','1'),(393,241,'_weforms_version','1.6.12'),(420,273,'_wp_attachment_image_alt',''),(421,135,'_wp_attachment_image_alt','Maintenance irrigation programs'),(437,288,'_wp_attached_file','2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops556b15d44db0d41f468218b66b6f1821.jpg'),(438,288,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:300;s:4:\"file\";s:102:\"2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops556b15d44db0d41f468218b66b6f1821.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops556b15d44db0d41f468218b66b6f1821-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops556b15d44db0d41f468218b66b6f1821-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(439,288,'_source_url','https://images.unsplash.com/photo-1491640870745-e551082208ba?ixlib=rb-0.3.5&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=400&h=300&fit=crop&s=556b15d44db0d41f468218b66b6f1821&.png'),(440,289,'_wp_attached_file','2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops72fd7d0712cef8a21d9275d8bf3c8957.jpg'),(441,289,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:300;s:4:\"file\";s:102:\"2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops72fd7d0712cef8a21d9275d8bf3c8957.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops72fd7d0712cef8a21d9275d8bf3c8957-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops72fd7d0712cef8a21d9275d8bf3c8957-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(442,289,'_source_url','https://images.unsplash.com/photo-1492633085231-363fff99b9a9?ixlib=rb-0.3.5&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=400&h=300&fit=crop&s=72fd7d0712cef8a21d9275d8bf3c8957&.png'),(443,290,'_wp_attached_file','2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops8fe5d3c9969d690788448317e96305c3.jpg'),(444,290,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:300;s:4:\"file\";s:102:\"2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops8fe5d3c9969d690788448317e96305c3.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops8fe5d3c9969d690788448317e96305c3-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops8fe5d3c9969d690788448317e96305c3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(445,290,'_source_url','https://images.unsplash.com/photo-1466761366829-84fd59a22e0b?ixlib=rb-0.3.5&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=400&h=300&fit=crop&s=8fe5d3c9969d690788448317e96305c3&.png'),(446,291,'_wp_attached_file','2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops0285a0633197a89d319729b88d1deb1f.jpg'),(447,291,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:300;s:4:\"file\";s:102:\"2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops0285a0633197a89d319729b88d1deb1f.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops0285a0633197a89d319729b88d1deb1f-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops0285a0633197a89d319729b88d1deb1f-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(448,291,'_source_url','https://images.unsplash.com/photo-1491641166032-dd0fdaedd47d?ixlib=rb-0.3.5&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=400&h=300&fit=crop&s=0285a0633197a89d319729b88d1deb1f&.png'),(449,292,'_wp_attached_file','2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops27ecb31830cd9e08e6c0661f858bbe4b.jpg'),(450,292,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:300;s:4:\"file\";s:102:\"2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops27ecb31830cd9e08e6c0661f858bbe4b.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops27ecb31830cd9e08e6c0661f858bbe4b-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops27ecb31830cd9e08e6c0661f858bbe4b-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(451,292,'_source_url','https://images.unsplash.com/photo-1491641080460-f1ead2440e17?ixlib=rb-0.3.5&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=400&h=300&fit=crop&s=27ecb31830cd9e08e6c0661f858bbe4b&.png'),(452,293,'_wp_attached_file','2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops94e35cc6903e4d4f20fc3586bffb6641.jpg'),(453,293,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:300;s:4:\"file\";s:102:\"2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops94e35cc6903e4d4f20fc3586bffb6641.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops94e35cc6903e4d4f20fc3586bffb6641-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops94e35cc6903e4d4f20fc3586bffb6641-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(454,293,'_source_url','https://images.unsplash.com/photo-1485727749690-d091e8284ef3?ixlib=rb-0.3.5&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=400&h=300&fit=crop&s=94e35cc6903e4d4f20fc3586bffb6641&.png'),(455,294,'_wp_attached_file','2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcropsf5c525191a63a6212c0aa4f791e5c33e.jpg'),(456,294,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:300;s:4:\"file\";s:102:\"2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcropsf5c525191a63a6212c0aa4f791e5c33e.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcropsf5c525191a63a6212c0aa4f791e5c33e-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcropsf5c525191a63a6212c0aa4f791e5c33e-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(457,294,'_source_url','https://images.unsplash.com/photo-1434682881908-b43d0467b798?ixlib=rb-0.3.5&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=400&h=300&fit=crop&s=f5c525191a63a6212c0aa4f791e5c33e&.png'),(458,295,'_wp_attached_file','2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops68c2a012ab21b6861f9b176a9dd7dfa6.jpg'),(459,295,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:300;s:4:\"file\";s:102:\"2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops68c2a012ab21b6861f9b176a9dd7dfa6.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops68c2a012ab21b6861f9b176a9dd7dfa6-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops68c2a012ab21b6861f9b176a9dd7dfa6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(460,295,'_source_url','https://images.unsplash.com/photo-1461896836934-ffe607ba8211?ixlib=rb-0.3.5&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=400&h=300&fit=crop&s=68c2a012ab21b6861f9b176a9dd7dfa6&.png'),(461,296,'_wp_attached_file','2022/04/20210313_120212-scaled.jpg'),(462,296,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:34:\"2022/04/20210313_120212-scaled.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"20210313_120212-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"20210313_120212-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"20210313_120212-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"20210313_120212-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:29:\"20210313_120212-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:29:\"20210313_120212-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-A215U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:5:\"4.047\";s:3:\"iso\";s:3:\"114\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20210313_120212.jpg\";}'),(463,297,'_wp_attached_file','2022/04/20201217_155729-scaled.jpg'),(464,297,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:34:\"2022/04/20201217_155729-scaled.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"20201217_155729-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"20201217_155729-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"20201217_155729-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:28:\"20201217_155729-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:29:\"20201217_155729-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:29:\"20201217_155729-1536x2048.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"crop-1\";a:4:{s:4:\"file\";s:54:\"0_271_400_251.04166666667_20201217_155729-768x1024.jpg\";s:5:\"width\";d:400;s:6:\"height\";d:251;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-A215U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:5:\"4.047\";s:3:\"iso\";s:3:\"191\";s:13:\"shutter_speed\";s:5:\"0.009\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20201217_155729.jpg\";}'),(465,298,'_wp_attached_file','2022/04/20201224_140019-scaled.jpg'),(466,298,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:34:\"2022/04/20201224_140019-scaled.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"20201224_140019-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"20201224_140019-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"20201224_140019-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:28:\"20201224_140019-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:29:\"20201224_140019-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:29:\"20201224_140019-1536x2048.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-A215U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:5:\"4.047\";s:3:\"iso\";s:3:\"112\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20201224_140019.jpg\";}'),(467,299,'_wp_attached_file','2022/04/20201224_140026-scaled.jpg'),(468,299,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:34:\"2022/04/20201224_140026-scaled.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"20201224_140026-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"20201224_140026-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"20201224_140026-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:28:\"20201224_140026-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:29:\"20201224_140026-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:29:\"20201224_140026-1536x2048.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"crop-1\";a:4:{s:4:\"file\";s:54:\"0_271_400_251.04166666667_20201224_140026-768x1024.jpg\";s:5:\"width\";d:400;s:6:\"height\";d:251;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-A215U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:5:\"4.047\";s:3:\"iso\";s:3:\"113\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20201224_140026.jpg\";}'),(469,300,'_wp_attached_file','2022/04/20210106_143559-scaled.jpg'),(470,300,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:34:\"2022/04/20210106_143559-scaled.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"20210106_143559-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"20210106_143559-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"20210106_143559-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:28:\"20210106_143559-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:29:\"20210106_143559-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:29:\"20210106_143559-1536x2048.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"crop-1\";a:4:{s:4:\"file\";s:54:\"0_225_400_298.95833333333_20210106_143559-768x1024.jpg\";s:5:\"width\";d:400;s:6:\"height\";d:299;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"crop-2\";a:4:{s:4:\"file\";s:41:\"2.5_0_220_300_20210106_143559-225x300.jpg\";s:5:\"width\";d:220;s:6:\"height\";d:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"crop-3\";a:4:{s:4:\"file\";s:54:\"0_271_400_251.04166666667_20210106_143559-768x1024.jpg\";s:5:\"width\";d:400;s:6:\"height\";d:251;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-A215U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:5:\"4.047\";s:3:\"iso\";s:3:\"111\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20210106_143559.jpg\";}'),(471,301,'_wp_attached_file','2022/04/NAPLESENGLE-scaled.jpg'),(472,301,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:30:\"2022/04/NAPLESENGLE-scaled.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"NAPLESENGLE-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"NAPLESENGLE-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"NAPLESENGLE-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:24:\"NAPLESENGLE-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:25:\"NAPLESENGLE-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:25:\"NAPLESENGLE-1536x2048.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"crop-1\";a:4:{s:4:\"file\";s:50:\"0_271_400_251.04166666667_NAPLESENGLE-768x1024.jpg\";s:5:\"width\";d:400;s:6:\"height\";d:251;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-A426U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1644853327\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"4.6\";s:3:\"iso\";s:2:\"40\";s:13:\"shutter_speed\";s:19:\"0.00051072522982635\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:15:\"NAPLESENGLE.jpg\";}'),(473,302,'_wp_attached_file','2022/04/20220424_145721-scaled.jpg'),(474,302,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:34:\"2022/04/20220424_145721-scaled.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"20220424_145721-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"20220424_145721-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"20220424_145721-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:28:\"20220424_145721-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:29:\"20220424_145721-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:29:\"20220424_145721-1536x2048.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"crop-1\";a:4:{s:4:\"file\";s:54:\"0_225_400_298.95833333333_20220424_145721-768x1024.jpg\";s:5:\"width\";d:400;s:6:\"height\";d:299;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"crop-2\";a:4:{s:4:\"file\";s:54:\"0_271_400_251.04166666667_20220424_145721-768x1024.jpg\";s:5:\"width\";d:400;s:6:\"height\";d:251;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-A426U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1650812241\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"4.6\";s:3:\"iso\";s:2:\"40\";s:13:\"shutter_speed\";s:18:\"0.0054347826086957\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20220424_145721.jpg\";}'),(475,303,'_wp_attached_file','2022/04/BRADENGLE-scaled.jpg'),(476,303,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:28:\"2022/04/BRADENGLE-scaled.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"BRADENGLE-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"BRADENGLE-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"BRADENGLE-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:22:\"BRADENGLE-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:23:\"BRADENGLE-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:23:\"BRADENGLE-1536x2048.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-A426U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1644853247\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"4.6\";s:3:\"iso\";s:2:\"40\";s:13:\"shutter_speed\";s:19:\"0.00073909830007391\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:13:\"BRADENGLE.jpg\";}'),(477,304,'_wp_attached_file','2022/04/ENGLENAPLES-scaled.jpg'),(478,304,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:30:\"2022/04/ENGLENAPLES-scaled.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"ENGLENAPLES-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"ENGLENAPLES-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"ENGLENAPLES-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:24:\"ENGLENAPLES-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:25:\"ENGLENAPLES-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:25:\"ENGLENAPLES-1536x2048.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"crop-1\";a:4:{s:4:\"file\";s:43:\"0_65.625_225_168.75_ENGLENAPLES-225x300.jpg\";s:5:\"width\";d:225;s:6:\"height\";d:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"crop-2\";a:4:{s:4:\"file\";s:50:\"0_271_400_251.04166666667_ENGLENAPLES-768x1024.jpg\";s:5:\"width\";d:400;s:6:\"height\";d:251;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-A426U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1644853388\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"4.6\";s:3:\"iso\";s:2:\"40\";s:13:\"shutter_speed\";s:19:\"0.00092250922509225\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:15:\"ENGLENAPLES.jpg\";}'),(479,305,'_wp_attached_file','2022/04/received_11063406801070621.jpeg'),(480,305,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:560;s:6:\"height\";i:765;s:4:\"file\";s:39:\"2022/04/received_11063406801070621.jpeg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"received_11063406801070621-220x300.jpeg\";s:5:\"width\";i:220;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"received_11063406801070621-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"crop-1\";a:4:{s:4:\"file\";s:51:\"0_0_220_300_received_11063406801070621-220x300.jpeg\";s:5:\"width\";d:220;s:6:\"height\";d:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(481,306,'_wp_attached_file','2022/04/received_10140475058628011.jpeg'),(482,306,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:765;s:6:\"height\";i:574;s:4:\"file\";s:39:\"2022/04/received_10140475058628011.jpeg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"received_10140475058628011-300x225.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"received_10140475058628011-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(483,307,'_wp_attached_file','2022/04/received_6568919855528791.jpeg'),(484,307,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:560;s:6:\"height\";i:765;s:4:\"file\";s:38:\"2022/04/received_6568919855528791.jpeg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"received_6568919855528791-220x300.jpeg\";s:5:\"width\";i:220;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"received_6568919855528791-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(485,308,'_wp_attached_file','2022/04/received_10140475058628011-1.jpeg'),(486,308,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:765;s:6:\"height\";i:574;s:4:\"file\";s:41:\"2022/04/received_10140475058628011-1.jpeg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"received_10140475058628011-1-300x225.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"received_10140475058628011-1-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"crop-1\";a:4:{s:4:\"file\";s:59:\"0_18.75_300_187.5_received_10140475058628011-1-300x225.jpeg\";s:5:\"width\";d:300;s:6:\"height\";d:188;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:{}}}'),(487,309,'_wp_attached_file','2022/04/received_13189636486235891.jpeg'),(488,309,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:560;s:6:\"height\";i:765;s:4:\"file\";s:39:\"2022/04/received_13189636486235891.jpeg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"received_13189636486235891-220x300.jpeg\";s:5:\"width\";i:220;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"received_13189636486235891-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"crop-1\";a:4:{s:4:\"file\";s:79:\"0_3.333333333333343_220_293.33333333333_received_13189636486235891-220x300.jpeg\";s:5:\"width\";d:220;s:6:\"height\";d:293;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"crop-2\";a:4:{s:4:\"file\";s:51:\"0_187.62_560_389.76_received_13189636486235891.jpeg\";s:5:\"width\";d:560;s:6:\"height\";d:390;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"crop-3\";a:4:{s:4:\"file\";s:57:\"0_208_400_249.28571428571_received_13189636486235891.jpeg\";s:5:\"width\";d:400;s:6:\"height\";d:249;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:{}}}'),(489,310,'_wp_attached_file','2022/04/received_10140475058628011-2.jpeg'),(490,310,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:765;s:6:\"height\";i:574;s:4:\"file\";s:41:\"2022/04/received_10140475058628011-2.jpeg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"received_10140475058628011-2-300x225.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"received_10140475058628011-2-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"crop-1\";a:4:{s:4:\"file\";s:58:\"0_48_400_249.93464052288_received_10140475058628011-2.jpeg\";s:5:\"width\";d:400;s:6:\"height\";d:250;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:{}}}'),(492,311,'_edit_last','1'),(493,311,'_edit_lock','1657821361:1'),(494,312,'_wp_attached_file','2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h400fitcrops1b902cc9b37c149116b8f7fe2c132d1d.jpg'),(495,312,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:400;s:4:\"file\";s:102:\"2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h400fitcrops1b902cc9b37c149116b8f7fe2c132d1d.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h400fitcrops1b902cc9b37c149116b8f7fe2c132d1d-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h400fitcrops1b902cc9b37c149116b8f7fe2c132d1d-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(496,312,'_source_url','https://images.unsplash.com/photo-1472070855221-4dff400df492?ixlib=rb-0.3.5&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=400&h=400&fit=crop&s=1b902cc9b37c149116b8f7fe2c132d1d&.png'),(497,313,'_wp_attached_file','2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h400fitcrops66fb5c7e73e7276b0e34a5eb5fcc3a75.jpg'),(498,313,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:400;s:4:\"file\";s:102:\"2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h400fitcrops66fb5c7e73e7276b0e34a5eb5fcc3a75.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h400fitcrops66fb5c7e73e7276b0e34a5eb5fcc3a75-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h400fitcrops66fb5c7e73e7276b0e34a5eb5fcc3a75-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(499,314,'_wp_attached_file','2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h400fitcrops2b16b8958234cd06fb2a4ed49ae36156.jpg'),(500,314,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:400;s:4:\"file\";s:102:\"2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h400fitcrops2b16b8958234cd06fb2a4ed49ae36156.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h400fitcrops2b16b8958234cd06fb2a4ed49ae36156-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h400fitcrops2b16b8958234cd06fb2a4ed49ae36156-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(501,314,'_source_url','https://images.unsplash.com/photo-1486946255434-2466348c2166?ixlib=rb-0.3.5&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=400&h=400&fit=crop&s=2b16b8958234cd06fb2a4ed49ae36156&.png'),(502,313,'_source_url','https://images.unsplash.com/photo-1513005862547-c6071dd39fa9?ixlib=rb-0.3.5&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=400&h=400&fit=crop&s=66fb5c7e73e7276b0e34a5eb5fcc3a75&.png'),(503,315,'_wp_attached_file','2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h400fitcropsf897af1b88da66550cfcddc921cc7495.jpg'),(504,315,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:400;s:4:\"file\";s:102:\"2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h400fitcropsf897af1b88da66550cfcddc921cc7495.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h400fitcropsf897af1b88da66550cfcddc921cc7495-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h400fitcropsf897af1b88da66550cfcddc921cc7495-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(505,315,'_source_url','https://images.unsplash.com/photo-1461418559055-6f020c5a91e7?ixlib=rb-0.3.5&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=400&h=400&fit=crop&s=f897af1b88da66550cfcddc921cc7495&.png'),(506,316,'_wp_attached_file','2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h400fitcrops97be8f4496dbc78d6e23c9d1b81c5cbe.jpg'),(507,316,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:400;s:4:\"file\";s:102:\"2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h400fitcrops97be8f4496dbc78d6e23c9d1b81c5cbe.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h400fitcrops97be8f4496dbc78d6e23c9d1b81c5cbe-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h400fitcrops97be8f4496dbc78d6e23c9d1b81c5cbe-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(508,316,'_source_url','https://images.unsplash.com/photo-1502005229762-cf1b2da7c5d6?ixlib=rb-0.3.5&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=400&h=400&fit=crop&s=97be8f4496dbc78d6e23c9d1b81c5cbe&.png'),(509,317,'_wp_attached_file','2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h400fitcropse4dbca6829a9948e24ee9e7534a251b6.jpg'),(510,317,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:400;s:4:\"file\";s:102:\"2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h400fitcropse4dbca6829a9948e24ee9e7534a251b6.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h400fitcropse4dbca6829a9948e24ee9e7534a251b6-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h400fitcropse4dbca6829a9948e24ee9e7534a251b6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(511,317,'_source_url','https://images.unsplash.com/photo-1471419890245-7bbd602d2c46?ixlib=rb-0.3.5&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=400&h=400&fit=crop&s=e4dbca6829a9948e24ee9e7534a251b6&.png'),(512,318,'_wp_attached_file','2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h400fitcrops5de07112751c65910f5bc64bd7967f19.jpg'),(513,318,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:400;s:4:\"file\";s:102:\"2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h400fitcrops5de07112751c65910f5bc64bd7967f19.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h400fitcrops5de07112751c65910f5bc64bd7967f19-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h400fitcrops5de07112751c65910f5bc64bd7967f19-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(514,318,'_source_url','https://images.unsplash.com/photo-1465385621528-53653983a38f?ixlib=rb-0.3.5&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=400&h=400&fit=crop&s=5de07112751c65910f5bc64bd7967f19&.png'),(515,319,'_wp_attached_file','2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h400fitcropsd18c648f4d7c341d934407050f2968e0.jpg'),(516,319,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:400;s:4:\"file\";s:102:\"2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h400fitcropsd18c648f4d7c341d934407050f2968e0.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h400fitcropsd18c648f4d7c341d934407050f2968e0-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h400fitcropsd18c648f4d7c341d934407050f2968e0-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(517,319,'_source_url','https://images.unsplash.com/photo-1444201983204-c43cbd584d93?ixlib=rb-0.3.5&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=400&h=400&fit=crop&s=d18c648f4d7c341d934407050f2968e0&.png'),(518,320,'_wp_attached_file','2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h250fitcrops742bf33d678bd5797e91b437b19000bd.jpg'),(519,320,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:250;s:4:\"file\";s:102:\"2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h250fitcrops742bf33d678bd5797e91b437b19000bd.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h250fitcrops742bf33d678bd5797e91b437b19000bd-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h250fitcrops742bf33d678bd5797e91b437b19000bd-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(520,320,'_source_url','https://images.unsplash.com/photo-1505015920881-0f83c2f7c95e?ixlib=rb-0.3.5&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=400&h=250&fit=crop&s=742bf33d678bd5797e91b437b19000bd&.png'),(521,321,'_wp_attached_file','2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h250fitcrops4deea82056b1ecce7bb76a471926aa51.jpg'),(522,321,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:250;s:4:\"file\";s:102:\"2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h250fitcrops4deea82056b1ecce7bb76a471926aa51.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h250fitcrops4deea82056b1ecce7bb76a471926aa51-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h250fitcrops4deea82056b1ecce7bb76a471926aa51-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(523,321,'_source_url','https://images.unsplash.com/photo-1512592990601-6c522134d170?ixlib=rb-0.3.5&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=400&h=250&fit=crop&s=4deea82056b1ecce7bb76a471926aa51&.png'),(524,322,'_wp_attached_file','2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw750h522fitcrops99fe8a9e59bde4078cbc195dcd3ceeb4.jpg'),(525,322,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:750;s:6:\"height\";i:522;s:4:\"file\";s:102:\"2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw750h522fitcrops99fe8a9e59bde4078cbc195dcd3ceeb4.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw750h522fitcrops99fe8a9e59bde4078cbc195dcd3ceeb4-300x209.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:209;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw750h522fitcrops99fe8a9e59bde4078cbc195dcd3ceeb4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(526,322,'_source_url','https://images.unsplash.com/photo-1515213566801-7a5171af5eb4?ixlib=rb-0.3.5&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=750&h=522&fit=crop&s=99fe8a9e59bde4078cbc195dcd3ceeb4&.png'),(527,323,'_wp_attached_file','2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h250fitcropsa7f48c788a9950bf2ebc8873b9017f67.jpg'),(528,323,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:250;s:4:\"file\";s:102:\"2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h250fitcropsa7f48c788a9950bf2ebc8873b9017f67.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h250fitcropsa7f48c788a9950bf2ebc8873b9017f67-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h250fitcropsa7f48c788a9950bf2ebc8873b9017f67-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(529,323,'_source_url','https://images.unsplash.com/photo-1482189996843-3cc22b1728a3?ixlib=rb-0.3.5&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=400&h=250&fit=crop&s=a7f48c788a9950bf2ebc8873b9017f67&.png'),(530,324,'_wp_attached_file','2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h250fitcrops982cef46a934fa45be562222cf0d990a.jpg'),(531,324,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:250;s:4:\"file\";s:102:\"2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h250fitcrops982cef46a934fa45be562222cf0d990a.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h250fitcrops982cef46a934fa45be562222cf0d990a-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h250fitcrops982cef46a934fa45be562222cf0d990a-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(532,324,'_source_url','https://images.unsplash.com/photo-1497366672149-e5e4b4d34eb3?ixlib=rb-0.3.5&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=400&h=250&fit=crop&s=982cef46a934fa45be562222cf0d990a&.png'),(533,325,'_wp_attached_file','2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h250fitcropsc497936e1546a37085dbea5bf870f0d6.jpg'),(534,325,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:250;s:4:\"file\";s:102:\"2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h250fitcropsc497936e1546a37085dbea5bf870f0d6.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h250fitcropsc497936e1546a37085dbea5bf870f0d6-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h250fitcropsc497936e1546a37085dbea5bf870f0d6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(535,325,'_source_url','https://images.unsplash.com/photo-1422480415834-d7d30118ea06?ixlib=rb-0.3.5&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=400&h=250&fit=crop&s=c497936e1546a37085dbea5bf870f0d6&.png'),(536,326,'_wp_attached_file','2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h250fitcropsd527295725e09b3b838d6fd1b76c7e7d.jpg'),(537,326,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:250;s:4:\"file\";s:102:\"2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h250fitcropsd527295725e09b3b838d6fd1b76c7e7d.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h250fitcropsd527295725e09b3b838d6fd1b76c7e7d-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h250fitcropsd527295725e09b3b838d6fd1b76c7e7d-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(538,326,'_source_url','https://images.unsplash.com/photo-1502137983922-433ff9e1b18f?ixlib=rb-0.3.5&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=400&h=250&fit=crop&s=d527295725e09b3b838d6fd1b76c7e7d&.png'),(539,327,'_wp_attached_file','2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h250fitcrops963eccca08a106d49f5f80a1c7babd03.jpg'),(540,327,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:250;s:4:\"file\";s:102:\"2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h250fitcrops963eccca08a106d49f5f80a1c7babd03.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h250fitcrops963eccca08a106d49f5f80a1c7babd03-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h250fitcrops963eccca08a106d49f5f80a1c7babd03-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(541,327,'_source_url','https://images.unsplash.com/photo-1502005229762-cf1b2da7c5d6?ixlib=rb-0.3.5&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=400&h=250&fit=crop&s=963eccca08a106d49f5f80a1c7babd03&.png'),(542,328,'_wp_attached_file','2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h250fitcrops066e43de095ea5f3d1cd72d96455e357.jpg'),(543,328,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:250;s:4:\"file\";s:102:\"2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h250fitcrops066e43de095ea5f3d1cd72d96455e357.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h250fitcrops066e43de095ea5f3d1cd72d96455e357-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h250fitcrops066e43de095ea5f3d1cd72d96455e357-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(544,328,'_source_url','https://images.unsplash.com/photo-1488805990569-3c9e1d76d51c?ixlib=rb-0.3.5&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=400&h=250&fit=crop&s=066e43de095ea5f3d1cd72d96455e357&.png'),(545,311,'_wp_page_template','default'),(546,311,'crio-premium-page-header-override','global'),(547,311,'crio-premium-page-header-select','none'),(548,311,'crio-premium-page-header-background',''),(617,311,'boldgrid_hide_page_title','global'),(550,311,'boldgrid_in_page_containers','1'),(551,311,'bgseo_robots_index','index'),(552,311,'bgseo_robots_follow','follow'),(590,343,'_menu_item_url',''),(589,343,'_menu_item_xfn',''),(588,343,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(587,343,'_menu_item_target',''),(586,343,'_menu_item_object','page'),(585,343,'_menu_item_object_id','311'),(584,343,'_menu_item_menu_item_parent','0'),(583,343,'_menu_item_type','post_type'),(567,311,'bgseo_custom_keyword','Naples Irrigation Gallery '),(569,333,'_wp_attached_file','2022/04/received_540117650841980.jpeg'),(570,333,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:864;s:4:\"file\";s:37:\"2022/04/received_540117650841980.jpeg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"received_540117650841980-222x300.jpeg\";s:5:\"width\";i:222;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"received_540117650841980-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"crop-1\";a:4:{s:4:\"file\";s:53:\"3_0_219.79166666667_300_received_540117650841980.jpeg\";s:5:\"width\";d:220;s:6:\"height\";d:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(571,334,'_wp_attached_file','2022/04/received_1113209649411439.jpeg'),(572,334,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:864;s:4:\"file\";s:38:\"2022/04/received_1113209649411439.jpeg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"received_1113209649411439-222x300.jpeg\";s:5:\"width\";i:222;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"received_1113209649411439-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"crop-1\";a:4:{s:4:\"file\";s:55:\"0_230_400_252.8951486698_received_1113209649411439.jpeg\";s:5:\"width\";d:400;s:6:\"height\";d:253;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"crop-2\";a:4:{s:4:\"file\";s:46:\"0_229.6_400_253_received_1113209649411439.jpeg\";s:5:\"width\";d:400;s:6:\"height\";d:253;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:{}}}'),(573,335,'_wp_attached_file','2022/04/received_540117650841980-1.jpeg'),(574,335,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:864;s:4:\"file\";s:39:\"2022/04/received_540117650841980-1.jpeg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"received_540117650841980-1-222x300.jpeg\";s:5:\"width\";i:222;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"received_540117650841980-1-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"crop-1\";a:4:{s:4:\"file\";s:56:\"0_230_400_252.8951486698_received_540117650841980-1.jpeg\";s:5:\"width\";d:400;s:6:\"height\";d:253;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:{}}}'),(575,336,'_wp_attached_file','2022/04/received_540117650841980-2.jpeg'),(576,336,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:864;s:4:\"file\";s:39:\"2022/04/received_540117650841980-2.jpeg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"received_540117650841980-2-222x300.jpeg\";s:5:\"width\";i:222;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"received_540117650841980-2-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(577,337,'_wp_attached_file','2022/04/received_321726983425382.jpeg'),(578,337,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:560;s:6:\"height\";i:765;s:4:\"file\";s:37:\"2022/04/received_321726983425382.jpeg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"received_321726983425382-220x300.jpeg\";s:5:\"width\";i:220;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"received_321726983425382-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"crop-1\";a:4:{s:4:\"file\";s:55:\"0_205_400_253.57142857143_received_321726983425382.jpeg\";s:5:\"width\";d:400;s:6:\"height\";d:254;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:{}}}'),(628,3,'_edit_lock','1737843450:1'),(629,372,'_edit_lock','1737844171:1'),(630,372,'_wp_trash_meta_status','publish'),(631,372,'_wp_trash_meta_time','1737844215'),(632,373,'_wp_trash_meta_status','publish'),(633,373,'_wp_trash_meta_time','1737844482'),(634,374,'_edit_lock','1737844610:1'),(635,374,'_customize_restore_dismissed','1'),(636,375,'_edit_lock','1738002638:1');
/*!40000 ALTER TABLE `wp_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wp_postmeta` with 436 row(s)
--

--
-- Table structure for table `wp_posts`
--

DROP TABLE IF EXISTS `wp_posts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_posts` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_author` bigint(20) unsigned NOT NULL DEFAULT 0,
  `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content` longtext NOT NULL,
  `post_title` text NOT NULL,
  `post_excerpt` text NOT NULL,
  `post_status` varchar(20) NOT NULL DEFAULT 'publish',
  `comment_status` varchar(20) NOT NULL DEFAULT 'open',
  `ping_status` varchar(20) NOT NULL DEFAULT 'open',
  `post_password` varchar(255) NOT NULL DEFAULT '',
  `post_name` varchar(200) NOT NULL DEFAULT '',
  `to_ping` text NOT NULL,
  `pinged` text NOT NULL,
  `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content_filtered` longtext NOT NULL,
  `post_parent` bigint(20) unsigned NOT NULL DEFAULT 0,
  `guid` varchar(255) NOT NULL DEFAULT '',
  `menu_order` int(11) NOT NULL DEFAULT 0,
  `post_type` varchar(20) NOT NULL DEFAULT 'post',
  `post_mime_type` varchar(100) NOT NULL DEFAULT '',
  `comment_count` bigint(20) NOT NULL DEFAULT 0,
  PRIMARY KEY (`ID`),
  KEY `post_name` (`post_name`(191)),
  KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
  KEY `post_parent` (`post_parent`),
  KEY `post_author` (`post_author`)
) ENGINE=MyISAM AUTO_INCREMENT=376 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `wp_posts` WRITE;
/*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */;
INSERT INTO `wp_posts` VALUES (3,1,'2022-02-23 19:31:11','2022-02-23 19:31:11','<!-- 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://naplesirrigation.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','','','2022-02-23 19:31:11','2022-02-23 19:31:11','',0,'https://naplesirrigation.com/?page_id=3',0,'page','',0),(4,0,'2022-02-23 19:31:12','2022-02-23 19:31:12','<p>This site has been created with the help of many different people and companies.</p><p>In particular, a special thanks goes to the following for content running on this site:</p>\n			<style>\n				.attributed{height:250px;overflow:hidden;}\n				.attributed img{max-height:180px;}\n			</style>\n			<div class=\"row\">\n		<div class=\"col-xs-12 col-sm-3 col-md-3 col-lg-3 attributed\"> <img src=\'https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_4YX0oj7gf8o-imhwpb-ut5s3lmwf6dg2wc-150x150.jpg\' /><br /><strong>Author</strong>: <em>Unknown</em><br /><strong>License</strong>: <em>Unknown license</em> </div><div class=\"col-xs-12 col-sm-3 col-md-3 col-lg-3 attributed\"> <img src=\'https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_8tN3flDTQBU-imhwpb-kxmpsoge3h4672l-150x150.jpg\' /><br /><strong>Author</strong>: <em>Unknown</em><br /><strong>License</strong>: <em>Unknown license</em> </div></div><hr /><p style=\"clear:both\">In addition, this  site was built on a powerful, Inspirations based web builder called <a href=\"http://www.boldgrid.com\" target=\"_blank\">BoldGrid</a>. It is running on <a href=\"http://wordpress.org\" target=\"_blank\">WordPress</a>, the most popular content management software online today. Web hosting support is provided by <a href=\"https://www.inmotionhosting.com/\">InMotion Hosting</a>.</p>','Attribution','','publish','closed','closed','','attribution','','','2025-01-26 14:08:20','2025-01-26 14:08:20','',0,'https://naplesirrigation.com/attribution/',0,'bg_attribution','',0),(5,0,'2022-02-23 19:31:20','2022-02-23 19:31:20','','Facebook','Facebook','publish','closed','closed','','facebook','','','2022-02-23 19:31:20','2022-02-23 19:31:20','',0,'https://naplesirrigation.com/2022/02/23/facebook/',0,'nav_menu_item','',0),(6,0,'2022-02-23 19:31:21','2022-02-23 19:31:21','','Twitter','Twitter','publish','closed','closed','','twitter','','','2022-02-23 19:31:21','2022-02-23 19:31:21','',0,'https://naplesirrigation.com/2022/02/23/twitter/',2,'nav_menu_item','',0),(7,0,'2022-02-23 19:31:21','2022-02-23 19:31:21','','Google Plus','Google Plus','publish','closed','closed','','google-plus','','','2022-02-23 19:31:21','2022-02-23 19:31:21','',0,'https://naplesirrigation.com/2022/02/23/google-plus/',3,'nav_menu_item','',0),(8,0,'2022-02-23 19:31:21','2022-02-23 19:31:21','','LinkedIn','LinkedIn','publish','closed','closed','','linkedin','','','2022-02-23 19:31:21','2022-02-23 19:31:21','',0,'https://naplesirrigation.com/2022/02/23/linkedin/',4,'nav_menu_item','',0),(9,0,'2022-02-23 19:31:21','2022-02-23 19:31:21','','Youtube','Youtube','publish','closed','closed','','youtube','','','2022-02-23 19:31:21','2022-02-23 19:31:21','',0,'https://naplesirrigation.com/2022/02/23/youtube/',5,'nav_menu_item','',0),(11,1,'2022-02-23 19:50:54','2022-02-23 19:50:54','','facebook','','publish','closed','closed','','facebook-2','','','2022-02-23 19:50:54','2022-02-23 19:50:54','',0,'https://naplesirrigation.com/facebook-2/',0,'nav_menu_item','',0),(12,1,'2022-02-23 19:50:54','2022-02-23 19:50:54','','twitter','','publish','closed','closed','','twitter-2','','','2022-02-23 19:50:54','2022-02-23 19:50:54','',0,'https://naplesirrigation.com/twitter-2/',2,'nav_menu_item','',0),(13,1,'2022-02-23 19:50:57','2022-02-23 19:50:57','','Contact Form','','publish','closed','closed','','contact-form','','','2022-02-23 19:50:57','2022-02-23 19:50:57','',0,'https://naplesirrigation.com/?p=13',0,'wpuf_contact_form','',0),(14,1,'2022-02-23 19:50:57','2022-02-23 19:50:57','a:20:{s:8:\"template\";s:10:\"name_field\";s:4:\"name\";s:4:\"name\";s:5:\"label\";s:4:\"Name\";s:8:\"required\";s:3:\"yes\";s:2:\"id\";i:0;s:5:\"width\";s:5:\"large\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";i:40;s:4:\"help\";s:0:\"\";s:7:\"is_meta\";s:3:\"yes\";s:6:\"is_new\";b:1;s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:6:\"format\";s:10:\"first-last\";s:10:\"first_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:5:\"First\";}s:11:\"middle_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:6:\"Middle\";}s:9:\"last_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:4:\"Last\";}s:6:\"inline\";s:3:\"yes\";s:9:\"hide_subs\";b:0;}','','','publish','closed','closed','','14','','','2022-02-23 19:50:57','2022-02-23 19:50:57','',13,'https://naplesirrigation.com/?p=14',0,'wpuf_input','',0),(15,1,'2022-02-23 19:50:57','2022-02-23 19:50:57','a:15:{s:8:\"template\";s:13:\"email_address\";s:4:\"name\";s:5:\"email\";s:5:\"label\";s:13:\"Email Address\";s:8:\"required\";s:3:\"yes\";s:2:\"id\";i:0;s:5:\"width\";s:5:\"large\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";i:40;s:4:\"help\";s:0:\"\";s:7:\"is_meta\";s:3:\"yes\";s:6:\"is_new\";b:1;s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";s:0:\"\";}','','','publish','closed','closed','','15','','','2022-02-23 19:50:57','2022-02-23 19:50:57','',13,'https://naplesirrigation.com/?p=15',1,'wpuf_input','',0),(16,1,'2022-02-23 19:50:57','2022-02-23 19:50:57','a:18:{s:8:\"template\";s:14:\"textarea_field\";s:4:\"name\";s:7:\"message\";s:5:\"label\";s:7:\"Message\";s:8:\"required\";s:3:\"yes\";s:2:\"id\";i:0;s:5:\"width\";s:5:\"large\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";i:40;s:4:\"help\";s:0:\"\";s:7:\"is_meta\";s:3:\"yes\";s:6:\"is_new\";b:1;s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:16:\"word_restriction\";s:0:\"\";s:4:\"rows\";i:5;s:4:\"cols\";i:25;s:4:\"rich\";s:2:\"no\";}','','','publish','closed','closed','','16','','','2022-02-23 19:50:57','2022-02-23 19:50:57','',13,'https://naplesirrigation.com/?p=16',2,'wpuf_input','',0),(17,1,'2022-02-23 19:50:57','2022-02-23 19:50:57','{\"id\":17,\"field_id\":4,\"fields\":{\"1\":{\"id\":\"1\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},\"2\":{\"id\":\"2\",\"type\":\"email\",\"label\":\"Email\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"confirmation_placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"3\":{\"id\":\"3\",\"type\":\"textarea\",\"label\":\"Message\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"css\":\"\"}},\"settings\":{\"form_title\":\"BoldGrid Form 1\",\"form_desc\":\"\",\"hide_title_desc\":\"1\",\"form_class\":\"\",\"submit_text\":\"Submit\",\"submit_text_processing\":\"Sending...\",\"submit_class\":\"\",\"honeypot\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"Form 1 submission\",\"sender_name\":\"\",\"sender_address\":\"{admin_email}\",\"replyto\":\"\",\"message\":\"{all_fields}\"}},\"confirmation_type\":\"message\",\"confirmation_message\":\"<span id=u0022nf-drawer-contentu0022><span class=u0022nf-setting-groupsu0022><span class=u0022nf-field-settingsu0022>Thank you for getting in touch with us! We will try our best to respond back to you within 24 hours.</span></span></span>\",\"confirmation_message_scroll\":\"1\",\"confirmation_page\":\"72532\",\"confirmation_redirect\":\"\"},\"meta\":{\"template\":\"blank\"}}','BoldGrid Form 1','','publish','closed','closed','','boldgrid-form-1','','','2022-02-23 19:50:57','2022-02-23 19:50:57','',0,'https://naplesirrigation.com/?post_type=wpuf_contact_form&#038;p=17',0,'wpuf_contact_form','',0),(18,1,'2022-02-23 19:50:57','2022-02-23 19:50:57','a:14:{s:10:\"input_type\";s:4:\"name\";s:8:\"template\";s:10:\"name_field\";s:8:\"required\";s:2:\"no\";s:5:\"label\";s:4:\"Name\";s:4:\"name\";s:6:\"name_1\";s:7:\"is_meta\";s:3:\"yes\";s:6:\"format\";s:10:\"first-last\";s:10:\"first_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:5:\"First\";}s:11:\"middle_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:6:\"Middle\";}s:9:\"last_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:4:\"Last\";}s:9:\"hide_subs\";b:0;s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}}','','','publish','closed','closed','','18','','','2022-02-23 19:50:57','2022-02-23 19:50:57','',17,'https://naplesirrigation.com/?p=18',0,'wpuf_input','',0),(19,1,'2022-02-23 19:50:57','2022-02-23 19:50:57','a:14:{s:10:\"input_type\";s:5:\"email\";s:8:\"template\";s:13:\"email_address\";s:8:\"required\";s:2:\"no\";s:5:\"label\";s:5:\"Email\";s:4:\"name\";s:7:\"email_2\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";s:0:\"\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";N;}','','','publish','closed','closed','','19','','','2022-02-23 19:50:57','2022-02-23 19:50:57','',17,'https://naplesirrigation.com/?p=19',1,'wpuf_input','',0),(20,1,'2022-02-23 19:50:57','2022-02-23 19:50:57','a:15:{s:10:\"input_type\";s:8:\"textarea\";s:8:\"template\";s:14:\"textarea_field\";s:8:\"required\";s:2:\"no\";s:5:\"label\";s:7:\"Message\";s:4:\"name\";s:10:\"textarea_3\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:4:\"rows\";i:5;s:4:\"cols\";i:25;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"rich\";s:2:\"no\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}}','','','publish','closed','closed','','20','','','2022-02-23 19:50:57','2022-02-23 19:50:57','',17,'https://naplesirrigation.com/?p=20',2,'wpuf_input','',0),(21,1,'2022-02-23 19:50:57','2022-02-23 19:50:57','{\"id\":21,\"field_id\":14,\"fields\":{\"1\":{\"id\":\"1\",\"type\":\"text\",\"label\":\"Subject\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"2\":{\"id\":\"2\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},\"3\":{\"id\":\"3\",\"type\":\"email\",\"label\":\"Email\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"confirmation_placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"4\":{\"id\":\"4\",\"type\":\"text\",\"label\":\"Street Address\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"5\":{\"id\":\"5\",\"type\":\"text\",\"label\":\"Address Line 2\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"6\":{\"id\":\"6\",\"type\":\"text\",\"label\":\"City\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"9\":{\"id\":\"9\",\"type\":\"select\",\"label\":\"State\",\"choices\":{\"1\":{\"default\":\"1\",\"label\":\"Select...\",\"value\":\"\"},\"5\":{\"label\":\"Alabama (AL)\",\"value\":\"AL\"},\"6\":{\"label\":\"Alaska (AK)\",\"value\":\"AK\"},\"7\":{\"label\":\"American Samoa (AS)\",\"value\":\"AS\"},\"8\":{\"label\":\"Arizona (AZ)\",\"value\":\"AZ\"},\"9\":{\"label\":\"Arkansas (AR)\",\"value\":\"AR\"},\"10\":{\"label\":\"California (CA)\",\"value\":\"CA\"},\"11\":{\"label\":\"Colorado (CO)\",\"value\":\"CO\"},\"12\":{\"label\":\"Connecticut (CT)\",\"value\":\"CT\"},\"13\":{\"label\":\"Delaware (DE)\",\"value\":\"DE\"},\"14\":{\"label\":\"Dist. of Columbia (DC)\",\"value\":\"DC\"},\"15\":{\"label\":\"Florida (FL)\",\"value\":\"FL\"},\"16\":{\"label\":\"Georgia (GA)\",\"value\":\"GA\"},\"17\":{\"label\":\"Guam (GU)\",\"value\":\"GU\"},\"18\":{\"label\":\"Hawaii (HI)\",\"value\":\"HI\"},\"19\":{\"label\":\"Idaho (ID)\",\"value\":\"ID\"},\"20\":{\"label\":\"Illinois (IL)\",\"value\":\"IL\"},\"21\":{\"label\":\"Indiana (IN)\",\"value\":\"IN\"},\"22\":{\"label\":\"Iowa (IA)\",\"value\":\"IA\"},\"23\":{\"label\":\"Kansas (KS)\",\"value\":\"KS\"},\"24\":{\"label\":\"Kentucky (KY)\",\"value\":\"KY\"},\"25\":{\"label\":\"Louisiana (LA)\",\"value\":\"LA\"},\"26\":{\"label\":\"Maine (ME)\",\"value\":\"ME\"},\"27\":{\"label\":\"Maryland (MD)\",\"value\":\"MD\"},\"28\":{\"label\":\"Marshall Islands (MH)\",\"value\":\"MH\"},\"29\":{\"label\":\"Massachusetts (MA)\",\"value\":\"MA\"},\"30\":{\"label\":\"Michigan (MI)\",\"value\":\"MI\"},\"31\":{\"label\":\"Micronesia (FM)\",\"value\":\"FM\"},\"32\":{\"label\":\"Minnesota (MN)\",\"value\":\"MN\"},\"33\":{\"label\":\"Mississippi (MS)\",\"value\":\"MS\"},\"34\":{\"label\":\"Missouri (MO)\",\"value\":\"MO\"},\"35\":{\"label\":\"Montana (MT)\",\"value\":\"MT\"},\"36\":{\"label\":\"Nebraska (NE)\",\"value\":\"NE\"},\"37\":{\"label\":\"Nevada (NV)\",\"value\":\"NV\"},\"38\":{\"label\":\"New Hampshire (NH)\",\"value\":\"NH\"},\"39\":{\"label\":\"New Jersey (NJ)\",\"value\":\"NJ\"},\"40\":{\"label\":\"New Mexico (NM)\",\"value\":\"NM\"},\"41\":{\"label\":\"New York (NY)\",\"value\":\"NY\"},\"42\":{\"label\":\"North Carolina (NC)\",\"value\":\"NC\"},\"43\":{\"label\":\"North Dakota (ND)\",\"value\":\"ND\"},\"44\":{\"label\":\"Northern Marianas (MP)\",\"value\":\"MP\"},\"45\":{\"label\":\"Ohio (OH)\",\"value\":\"OH\"},\"46\":{\"label\":\"Oklahoma (OK)\",\"value\":\"OK\"},\"47\":{\"label\":\"Oregon (OR)\",\"value\":\"OR\"},\"48\":{\"label\":\"Palau (PW)\",\"value\":\"PW\"},\"49\":{\"label\":\"Pennsylvania (PA)\",\"value\":\"PA\"},\"50\":{\"label\":\"Puerto Rico (PR)\",\"value\":\"PR\"},\"51\":{\"label\":\"Rhode Island (RI)\",\"value\":\"RI\"},\"52\":{\"label\":\"South Carolina (SC)\",\"value\":\"SC\"},\"53\":{\"label\":\"South Dakota (SD)\",\"value\":\"SD\"},\"54\":{\"label\":\"Tennessee (TN)\",\"value\":\"TN\"},\"55\":{\"label\":\"Texas (TX)\",\"value\":\"TX\"},\"56\":{\"label\":\"Utah (UT)\",\"value\":\"UT\"},\"57\":{\"label\":\"Vermont (VT)\",\"value\":\"VT\"},\"58\":{\"label\":\"Virginia (VA)\",\"value\":\"VA\"},\"59\":{\"label\":\"Virgin Islands (VI)\",\"value\":\"VI\"},\"60\":{\"label\":\"Washington (WA)\",\"value\":\"WA\"},\"61\":{\"label\":\"West Virginia (WV)\",\"value\":\"WV\"},\"62\":{\"label\":\"Wisconsin (WI)\",\"value\":\"WI\"},\"63\":{\"label\":\"Wyoming (WY)\",\"value\":\"WY\"},\"64\":{\"label\":\"Other\",\"value\":\"Other\"}},\"description\":\"\",\"show_values\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"css\":\"\",\"dynamic_choices\":\"\"},\"10\":{\"id\":\"10\",\"type\":\"text\",\"label\":\"ZIP / Postal Code\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"11\":{\"id\":\"11\",\"type\":\"text\",\"label\":\"Country\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"12\":{\"id\":\"12\",\"type\":\"text\",\"label\":\"Phone\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"13\":{\"id\":\"13\",\"type\":\"textarea\",\"label\":\"Message\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"css\":\"\"}},\"settings\":{\"form_title\":\"BoldGrid Form 2\",\"form_desc\":\"\",\"hide_title_desc\":\"1\",\"form_class\":\"\",\"submit_text\":\"Submit\",\"submit_text_processing\":\"Sending...\",\"submit_class\":\"\",\"honeypot\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"Form 2 submission\",\"sender_name\":\"\",\"sender_address\":\"{admin_email}\",\"replyto\":\"\",\"message\":\"{all_fields}\"}},\"confirmation_type\":\"message\",\"confirmation_message\":\"<span id=u0022nf-drawer-contentu0022><span class=u0022nf-setting-groupsu0022><span class=u0022nf-field-settingsu0022>Thank you for getting in touch with us! We will try our best to respond back to you within 24 hours.</span></span></span>\",\"confirmation_message_scroll\":\"1\",\"confirmation_page\":\"72532\",\"confirmation_redirect\":\"\"},\"meta\":{\"template\":\"blank\"}}','BoldGrid Form 2','','publish','closed','closed','','boldgrid-form-2','','','2022-02-23 19:50:57','2022-02-23 19:50:57','',0,'https://naplesirrigation.com/?post_type=wpuf_contact_form&#038;p=21',0,'wpuf_contact_form','',0),(22,1,'2022-02-23 19:50:57','2022-02-23 19:50:57','a:14:{s:10:\"input_type\";s:4:\"text\";s:8:\"template\";s:10:\"text_field\";s:8:\"required\";s:2:\"no\";s:5:\"label\";s:7:\"Subject\";s:4:\"name\";s:6:\"text_1\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";s:0:\"\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";N;}','','','publish','closed','closed','','22','','','2022-02-23 19:50:57','2022-02-23 19:50:57','',21,'https://naplesirrigation.com/?p=22',0,'wpuf_input','',0),(23,1,'2022-02-23 19:50:57','2022-02-23 19:50:57','a:14:{s:10:\"input_type\";s:4:\"name\";s:8:\"template\";s:10:\"name_field\";s:8:\"required\";s:2:\"no\";s:5:\"label\";s:4:\"Name\";s:4:\"name\";s:6:\"name_2\";s:7:\"is_meta\";s:3:\"yes\";s:6:\"format\";s:10:\"first-last\";s:10:\"first_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:5:\"First\";}s:11:\"middle_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:6:\"Middle\";}s:9:\"last_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:4:\"Last\";}s:9:\"hide_subs\";b:0;s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}}','','','publish','closed','closed','','23','','','2022-02-23 19:50:57','2022-02-23 19:50:57','',21,'https://naplesirrigation.com/?p=23',1,'wpuf_input','',0),(24,1,'2022-02-23 19:50:57','2022-02-23 19:50:57','a:14:{s:10:\"input_type\";s:5:\"email\";s:8:\"template\";s:13:\"email_address\";s:8:\"required\";s:2:\"no\";s:5:\"label\";s:5:\"Email\";s:4:\"name\";s:7:\"email_3\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";s:0:\"\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";N;}','','','publish','closed','closed','','24','','','2022-02-23 19:50:57','2022-02-23 19:50:57','',21,'https://naplesirrigation.com/?p=24',2,'wpuf_input','',0),(25,1,'2022-02-23 19:50:57','2022-02-23 19:50:57','a:14:{s:10:\"input_type\";s:4:\"text\";s:8:\"template\";s:10:\"text_field\";s:8:\"required\";s:2:\"no\";s:5:\"label\";s:14:\"Street Address\";s:4:\"name\";s:6:\"text_4\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";s:0:\"\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";N;}','','','publish','closed','closed','','25','','','2022-02-23 19:50:57','2022-02-23 19:50:57','',21,'https://naplesirrigation.com/?p=25',3,'wpuf_input','',0),(26,1,'2022-02-23 19:50:57','2022-02-23 19:50:57','a:14:{s:10:\"input_type\";s:4:\"text\";s:8:\"template\";s:10:\"text_field\";s:8:\"required\";s:2:\"no\";s:5:\"label\";s:14:\"Address Line 2\";s:4:\"name\";s:6:\"text_5\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";s:0:\"\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";N;}','','','publish','closed','closed','','26','','','2022-02-23 19:50:57','2022-02-23 19:50:57','',21,'https://naplesirrigation.com/?p=26',4,'wpuf_input','',0),(27,1,'2022-02-23 19:50:57','2022-02-23 19:50:57','a:14:{s:10:\"input_type\";s:4:\"text\";s:8:\"template\";s:10:\"text_field\";s:8:\"required\";s:2:\"no\";s:5:\"label\";s:4:\"City\";s:4:\"name\";s:6:\"text_6\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";s:0:\"\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";N;}','','','publish','closed','closed','','27','','','2022-02-23 19:50:57','2022-02-23 19:50:57','',21,'https://naplesirrigation.com/?p=27',5,'wpuf_input','',0),(28,1,'2022-02-23 19:50:57','2022-02-23 19:50:57','a:12:{s:10:\"input_type\";s:6:\"select\";s:8:\"template\";s:14:\"dropdown_field\";s:8:\"required\";s:2:\"no\";s:5:\"label\";s:5:\"State\";s:4:\"name\";s:8:\"select_9\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:8:\"selected\";s:0:\"\";s:6:\"inline\";s:2:\"no\";s:7:\"options\";a:61:{s:9:\"Select...\";s:9:\"Select...\";s:12:\"Alabama (AL)\";s:12:\"Alabama (AL)\";s:11:\"Alaska (AK)\";s:11:\"Alaska (AK)\";s:19:\"American Samoa (AS)\";s:19:\"American Samoa (AS)\";s:12:\"Arizona (AZ)\";s:12:\"Arizona (AZ)\";s:13:\"Arkansas (AR)\";s:13:\"Arkansas (AR)\";s:15:\"California (CA)\";s:15:\"California (CA)\";s:13:\"Colorado (CO)\";s:13:\"Colorado (CO)\";s:16:\"Connecticut (CT)\";s:16:\"Connecticut (CT)\";s:13:\"Delaware (DE)\";s:13:\"Delaware (DE)\";s:22:\"Dist. of Columbia (DC)\";s:22:\"Dist. of Columbia (DC)\";s:12:\"Florida (FL)\";s:12:\"Florida (FL)\";s:12:\"Georgia (GA)\";s:12:\"Georgia (GA)\";s:9:\"Guam (GU)\";s:9:\"Guam (GU)\";s:11:\"Hawaii (HI)\";s:11:\"Hawaii (HI)\";s:10:\"Idaho (ID)\";s:10:\"Idaho (ID)\";s:13:\"Illinois (IL)\";s:13:\"Illinois (IL)\";s:12:\"Indiana (IN)\";s:12:\"Indiana (IN)\";s:9:\"Iowa (IA)\";s:9:\"Iowa (IA)\";s:11:\"Kansas (KS)\";s:11:\"Kansas (KS)\";s:13:\"Kentucky (KY)\";s:13:\"Kentucky (KY)\";s:14:\"Louisiana (LA)\";s:14:\"Louisiana (LA)\";s:10:\"Maine (ME)\";s:10:\"Maine (ME)\";s:13:\"Maryland (MD)\";s:13:\"Maryland (MD)\";s:21:\"Marshall Islands (MH)\";s:21:\"Marshall Islands (MH)\";s:18:\"Massachusetts (MA)\";s:18:\"Massachusetts (MA)\";s:13:\"Michigan (MI)\";s:13:\"Michigan (MI)\";s:15:\"Micronesia (FM)\";s:15:\"Micronesia (FM)\";s:14:\"Minnesota (MN)\";s:14:\"Minnesota (MN)\";s:16:\"Mississippi (MS)\";s:16:\"Mississippi (MS)\";s:13:\"Missouri (MO)\";s:13:\"Missouri (MO)\";s:12:\"Montana (MT)\";s:12:\"Montana (MT)\";s:13:\"Nebraska (NE)\";s:13:\"Nebraska (NE)\";s:11:\"Nevada (NV)\";s:11:\"Nevada (NV)\";s:18:\"New Hampshire (NH)\";s:18:\"New Hampshire (NH)\";s:15:\"New Jersey (NJ)\";s:15:\"New Jersey (NJ)\";s:15:\"New Mexico (NM)\";s:15:\"New Mexico (NM)\";s:13:\"New York (NY)\";s:13:\"New York (NY)\";s:19:\"North Carolina (NC)\";s:19:\"North Carolina (NC)\";s:17:\"North Dakota (ND)\";s:17:\"North Dakota (ND)\";s:22:\"Northern Marianas (MP)\";s:22:\"Northern Marianas (MP)\";s:9:\"Ohio (OH)\";s:9:\"Ohio (OH)\";s:13:\"Oklahoma (OK)\";s:13:\"Oklahoma (OK)\";s:11:\"Oregon (OR)\";s:11:\"Oregon (OR)\";s:10:\"Palau (PW)\";s:10:\"Palau (PW)\";s:17:\"Pennsylvania (PA)\";s:17:\"Pennsylvania (PA)\";s:16:\"Puerto Rico (PR)\";s:16:\"Puerto Rico (PR)\";s:17:\"Rhode Island (RI)\";s:17:\"Rhode Island (RI)\";s:19:\"South Carolina (SC)\";s:19:\"South Carolina (SC)\";s:17:\"South Dakota (SD)\";s:17:\"South Dakota (SD)\";s:14:\"Tennessee (TN)\";s:14:\"Tennessee (TN)\";s:10:\"Texas (TX)\";s:10:\"Texas (TX)\";s:9:\"Utah (UT)\";s:9:\"Utah (UT)\";s:12:\"Vermont (VT)\";s:12:\"Vermont (VT)\";s:13:\"Virginia (VA)\";s:13:\"Virginia (VA)\";s:19:\"Virgin Islands (VI)\";s:19:\"Virgin Islands (VI)\";s:15:\"Washington (WA)\";s:15:\"Washington (WA)\";s:18:\"West Virginia (WV)\";s:18:\"West Virginia (WV)\";s:14:\"Wisconsin (WI)\";s:14:\"Wisconsin (WI)\";s:12:\"Wyoming (WY)\";s:12:\"Wyoming (WY)\";s:5:\"Other\";s:5:\"Other\";}s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}}','','','publish','closed','closed','','28','','','2022-02-23 19:50:57','2022-02-23 19:50:57','',21,'https://naplesirrigation.com/?p=28',6,'wpuf_input','',0),(29,1,'2022-02-23 19:50:57','2022-02-23 19:50:57','a:14:{s:10:\"input_type\";s:4:\"text\";s:8:\"template\";s:10:\"text_field\";s:8:\"required\";s:2:\"no\";s:5:\"label\";s:17:\"ZIP / Postal Code\";s:4:\"name\";s:7:\"text_10\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";s:0:\"\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";N;}','','','publish','closed','closed','','29','','','2022-02-23 19:50:57','2022-02-23 19:50:57','',21,'https://naplesirrigation.com/?p=29',7,'wpuf_input','',0),(30,1,'2022-02-23 19:50:57','2022-02-23 19:50:57','a:14:{s:10:\"input_type\";s:4:\"text\";s:8:\"template\";s:10:\"text_field\";s:8:\"required\";s:2:\"no\";s:5:\"label\";s:7:\"Country\";s:4:\"name\";s:7:\"text_11\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";s:0:\"\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";N;}','','','publish','closed','closed','','30','','','2022-02-23 19:50:57','2022-02-23 19:50:57','',21,'https://naplesirrigation.com/?p=30',8,'wpuf_input','',0),(31,1,'2022-02-23 19:50:57','2022-02-23 19:50:57','a:14:{s:10:\"input_type\";s:4:\"text\";s:8:\"template\";s:10:\"text_field\";s:8:\"required\";s:2:\"no\";s:5:\"label\";s:5:\"Phone\";s:4:\"name\";s:7:\"text_12\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";s:0:\"\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";N;}','','','publish','closed','closed','','31','','','2022-02-23 19:50:57','2022-02-23 19:50:57','',21,'https://naplesirrigation.com/?p=31',9,'wpuf_input','',0),(32,1,'2022-02-23 19:50:57','2022-02-23 19:50:57','a:15:{s:10:\"input_type\";s:8:\"textarea\";s:8:\"template\";s:14:\"textarea_field\";s:8:\"required\";s:3:\"yes\";s:5:\"label\";s:7:\"Message\";s:4:\"name\";s:11:\"textarea_13\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:4:\"rows\";i:5;s:4:\"cols\";i:25;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"rich\";s:2:\"no\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}}','','','publish','closed','closed','','32','','','2022-02-23 19:50:57','2022-02-23 19:50:57','',21,'https://naplesirrigation.com/?p=32',10,'wpuf_input','',0),(33,1,'2022-02-23 19:50:57','2022-02-23 19:50:57','{\"id\":33,\"field_id\":17,\"fields\":{\"1\":{\"id\":\"1\",\"type\":\"text\",\"label\":\"Subject\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"2\":{\"id\":\"2\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},\"3\":{\"id\":\"3\",\"type\":\"email\",\"label\":\"Email\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"confirmation_placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"4\":{\"id\":\"4\",\"type\":\"text\",\"label\":\"Street Address\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"5\":{\"id\":\"5\",\"type\":\"text\",\"label\":\"Address Line 2\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"6\":{\"id\":\"6\",\"type\":\"text\",\"label\":\"City\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"9\":{\"id\":\"9\",\"type\":\"select\",\"label\":\"State\",\"choices\":{\"1\":{\"default\":\"1\",\"label\":\"Select...\",\"value\":\"\"},\"5\":{\"label\":\"Alabama (AL)\",\"value\":\"AL\"},\"6\":{\"label\":\"Alaska (AK)\",\"value\":\"AK\"},\"7\":{\"label\":\"American Samoa (AS)\",\"value\":\"AS\"},\"8\":{\"label\":\"Arizona (AZ)\",\"value\":\"AZ\"},\"9\":{\"label\":\"Arkansas (AR)\",\"value\":\"AR\"},\"10\":{\"label\":\"California (CA)\",\"value\":\"CA\"},\"11\":{\"label\":\"Colorado (CO)\",\"value\":\"CO\"},\"12\":{\"label\":\"Connecticut (CT)\",\"value\":\"CT\"},\"13\":{\"label\":\"Delaware (DE)\",\"value\":\"DE\"},\"14\":{\"label\":\"Dist. of Columbia (DC)\",\"value\":\"DC\"},\"15\":{\"label\":\"Florida (FL)\",\"value\":\"FL\"},\"16\":{\"label\":\"Georgia (GA)\",\"value\":\"GA\"},\"17\":{\"label\":\"Guam (GU)\",\"value\":\"GU\"},\"18\":{\"label\":\"Hawaii (HI)\",\"value\":\"HI\"},\"19\":{\"label\":\"Idaho (ID)\",\"value\":\"ID\"},\"20\":{\"label\":\"Illinois (IL)\",\"value\":\"IL\"},\"21\":{\"label\":\"Indiana (IN)\",\"value\":\"IN\"},\"22\":{\"label\":\"Iowa (IA)\",\"value\":\"IA\"},\"23\":{\"label\":\"Kansas (KS)\",\"value\":\"KS\"},\"24\":{\"label\":\"Kentucky (KY)\",\"value\":\"KY\"},\"25\":{\"label\":\"Louisiana (LA)\",\"value\":\"LA\"},\"26\":{\"label\":\"Maine (ME)\",\"value\":\"ME\"},\"27\":{\"label\":\"Maryland (MD)\",\"value\":\"MD\"},\"28\":{\"label\":\"Marshall Islands (MH)\",\"value\":\"MH\"},\"29\":{\"label\":\"Massachusetts (MA)\",\"value\":\"MA\"},\"30\":{\"label\":\"Michigan (MI)\",\"value\":\"MI\"},\"31\":{\"label\":\"Micronesia (FM)\",\"value\":\"FM\"},\"32\":{\"label\":\"Minnesota (MN)\",\"value\":\"MN\"},\"33\":{\"label\":\"Mississippi (MS)\",\"value\":\"MS\"},\"34\":{\"label\":\"Missouri (MO)\",\"value\":\"MO\"},\"35\":{\"label\":\"Montana (MT)\",\"value\":\"MT\"},\"36\":{\"label\":\"Nebraska (NE)\",\"value\":\"NE\"},\"37\":{\"label\":\"Nevada (NV)\",\"value\":\"NV\"},\"38\":{\"label\":\"New Hampshire (NH)\",\"value\":\"NH\"},\"39\":{\"label\":\"New Jersey (NJ)\",\"value\":\"NJ\"},\"40\":{\"label\":\"New Mexico (NM)\",\"value\":\"NM\"},\"41\":{\"label\":\"New York (NY)\",\"value\":\"NY\"},\"42\":{\"label\":\"North Carolina (NC)\",\"value\":\"NC\"},\"43\":{\"label\":\"North Dakota (ND)\",\"value\":\"ND\"},\"44\":{\"label\":\"Northern Marianas (MP)\",\"value\":\"MP\"},\"45\":{\"label\":\"Ohio (OH)\",\"value\":\"OH\"},\"46\":{\"label\":\"Oklahoma (OK)\",\"value\":\"OK\"},\"47\":{\"label\":\"Oregon (OR)\",\"value\":\"OR\"},\"48\":{\"label\":\"Palau (PW)\",\"value\":\"PW\"},\"49\":{\"label\":\"Pennsylvania (PA)\",\"value\":\"PA\"},\"50\":{\"label\":\"Puerto Rico (PR)\",\"value\":\"PR\"},\"51\":{\"label\":\"Rhode Island (RI)\",\"value\":\"RI\"},\"52\":{\"label\":\"South Carolina (SC)\",\"value\":\"SC\"},\"53\":{\"label\":\"South Dakota (SD)\",\"value\":\"SD\"},\"54\":{\"label\":\"Tennessee (TN)\",\"value\":\"TN\"},\"55\":{\"label\":\"Texas (TX)\",\"value\":\"TX\"},\"56\":{\"label\":\"Utah (UT)\",\"value\":\"UT\"},\"57\":{\"label\":\"Vermont (VT)\",\"value\":\"VT\"},\"58\":{\"label\":\"Virginia (VA)\",\"value\":\"VA\"},\"59\":{\"label\":\"Virgin Islands (VI)\",\"value\":\"VI\"},\"60\":{\"label\":\"Washington (WA)\",\"value\":\"WA\"},\"61\":{\"label\":\"West Virginia (WV)\",\"value\":\"WV\"},\"62\":{\"label\":\"Wisconsin (WI)\",\"value\":\"WI\"},\"63\":{\"label\":\"Wyoming (WY)\",\"value\":\"WY\"},\"64\":{\"label\":\"Other\",\"value\":\"Other\"}},\"description\":\"\",\"show_values\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"css\":\"\",\"dynamic_choices\":\"\"},\"10\":{\"id\":\"10\",\"type\":\"text\",\"label\":\"ZIP / Postal Code\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"11\":{\"id\":\"11\",\"type\":\"text\",\"label\":\"Country\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"12\":{\"id\":\"12\",\"type\":\"text\",\"label\":\"Phone\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"14\":{\"id\":\"14\",\"type\":\"text\",\"label\":\"Alternate Phone\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"15\":{\"id\":\"15\",\"type\":\"radio\",\"label\":\"When is the best time to contact you?\",\"choices\":{\"1\":{\"label\":\"Morning\",\"value\":\"Morning\"},\"2\":{\"label\":\"Afternoon\",\"value\":\"Afternoon\"},\"3\":{\"label\":\"Evening\",\"value\":\"Evening\"}},\"description\":\"\",\"show_values\":\"1\",\"input_columns\":\"\",\"css\":\"\",\"dynamic_choices\":\"\"},\"16\":{\"id\":\"16\",\"type\":\"radio\",\"label\":\"What is the best way to contact you?\",\"choices\":{\"1\":{\"label\":\"Phone\",\"value\":\"Phone\"},\"2\":{\"label\":\"Email\",\"value\":\"Email\"}},\"description\":\"\",\"show_values\":\"1\",\"input_columns\":\"\",\"css\":\"\",\"dynamic_choices\":\"\"},\"13\":{\"id\":\"13\",\"type\":\"textarea\",\"label\":\"Message\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"css\":\"\"}},\"settings\":{\"form_title\":\"BoldGrid Form 3\",\"form_desc\":\"\",\"hide_title_desc\":\"1\",\"form_class\":\"\",\"submit_text\":\"Submit\",\"submit_text_processing\":\"Sending...\",\"submit_class\":\"\",\"honeypot\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"Form 3 submission\",\"sender_name\":\"\",\"sender_address\":\"{admin_email}\",\"replyto\":\"\",\"message\":\"{all_fields}\"}},\"confirmation_type\":\"message\",\"confirmation_message\":\"<span id=u0022nf-drawer-contentu0022><span class=u0022nf-setting-groupsu0022><span class=u0022nf-field-settingsu0022>Thank you for getting in touch with us! We will try our best to respond back to you within 24 hours.</span></span></span>\",\"confirmation_message_scroll\":\"1\",\"confirmation_page\":\"72532\",\"confirmation_redirect\":\"\"},\"meta\":{\"template\":\"blank\"}}','BoldGrid Form 3','','publish','closed','closed','','boldgrid-form-3','','','2022-02-23 19:50:57','2022-02-23 19:50:57','',0,'https://naplesirrigation.com/?post_type=wpuf_contact_form&#038;p=33',0,'wpuf_contact_form','',0),(34,1,'2022-02-23 19:50:57','2022-02-23 19:50:57','a:14:{s:10:\"input_type\";s:4:\"text\";s:8:\"template\";s:10:\"text_field\";s:8:\"required\";s:2:\"no\";s:5:\"label\";s:7:\"Subject\";s:4:\"name\";s:6:\"text_1\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";s:0:\"\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";N;}','','','publish','closed','closed','','34','','','2022-02-23 19:50:57','2022-02-23 19:50:57','',33,'https://naplesirrigation.com/?p=34',0,'wpuf_input','',0),(35,1,'2022-02-23 19:50:57','2022-02-23 19:50:57','a:14:{s:10:\"input_type\";s:4:\"name\";s:8:\"template\";s:10:\"name_field\";s:8:\"required\";s:2:\"no\";s:5:\"label\";s:4:\"Name\";s:4:\"name\";s:6:\"name_2\";s:7:\"is_meta\";s:3:\"yes\";s:6:\"format\";s:10:\"first-last\";s:10:\"first_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:5:\"First\";}s:11:\"middle_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:6:\"Middle\";}s:9:\"last_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:4:\"Last\";}s:9:\"hide_subs\";b:0;s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}}','','','publish','closed','closed','','35','','','2022-02-23 19:50:57','2022-02-23 19:50:57','',33,'https://naplesirrigation.com/?p=35',1,'wpuf_input','',0),(36,1,'2022-02-23 19:50:57','2022-02-23 19:50:57','a:14:{s:10:\"input_type\";s:5:\"email\";s:8:\"template\";s:13:\"email_address\";s:8:\"required\";s:2:\"no\";s:5:\"label\";s:5:\"Email\";s:4:\"name\";s:7:\"email_3\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";s:0:\"\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";N;}','','','publish','closed','closed','','36','','','2022-02-23 19:50:57','2022-02-23 19:50:57','',33,'https://naplesirrigation.com/?p=36',2,'wpuf_input','',0),(37,1,'2022-02-23 19:50:57','2022-02-23 19:50:57','a:14:{s:10:\"input_type\";s:4:\"text\";s:8:\"template\";s:10:\"text_field\";s:8:\"required\";s:2:\"no\";s:5:\"label\";s:14:\"Street Address\";s:4:\"name\";s:6:\"text_4\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";s:0:\"\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";N;}','','','publish','closed','closed','','37','','','2022-02-23 19:50:57','2022-02-23 19:50:57','',33,'https://naplesirrigation.com/?p=37',3,'wpuf_input','',0),(38,1,'2022-02-23 19:50:57','2022-02-23 19:50:57','a:14:{s:10:\"input_type\";s:4:\"text\";s:8:\"template\";s:10:\"text_field\";s:8:\"required\";s:2:\"no\";s:5:\"label\";s:14:\"Address Line 2\";s:4:\"name\";s:6:\"text_5\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";s:0:\"\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";N;}','','','publish','closed','closed','','38','','','2022-02-23 19:50:57','2022-02-23 19:50:57','',33,'https://naplesirrigation.com/?p=38',4,'wpuf_input','',0),(39,1,'2022-02-23 19:50:57','2022-02-23 19:50:57','a:14:{s:10:\"input_type\";s:4:\"text\";s:8:\"template\";s:10:\"text_field\";s:8:\"required\";s:2:\"no\";s:5:\"label\";s:4:\"City\";s:4:\"name\";s:6:\"text_6\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";s:0:\"\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";N;}','','','publish','closed','closed','','39','','','2022-02-23 19:50:57','2022-02-23 19:50:57','',33,'https://naplesirrigation.com/?p=39',5,'wpuf_input','',0),(40,1,'2022-02-23 19:50:57','2022-02-23 19:50:57','a:12:{s:10:\"input_type\";s:6:\"select\";s:8:\"template\";s:14:\"dropdown_field\";s:8:\"required\";s:2:\"no\";s:5:\"label\";s:5:\"State\";s:4:\"name\";s:8:\"select_9\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:8:\"selected\";s:0:\"\";s:6:\"inline\";s:2:\"no\";s:7:\"options\";a:61:{s:9:\"Select...\";s:9:\"Select...\";s:12:\"Alabama (AL)\";s:12:\"Alabama (AL)\";s:11:\"Alaska (AK)\";s:11:\"Alaska (AK)\";s:19:\"American Samoa (AS)\";s:19:\"American Samoa (AS)\";s:12:\"Arizona (AZ)\";s:12:\"Arizona (AZ)\";s:13:\"Arkansas (AR)\";s:13:\"Arkansas (AR)\";s:15:\"California (CA)\";s:15:\"California (CA)\";s:13:\"Colorado (CO)\";s:13:\"Colorado (CO)\";s:16:\"Connecticut (CT)\";s:16:\"Connecticut (CT)\";s:13:\"Delaware (DE)\";s:13:\"Delaware (DE)\";s:22:\"Dist. of Columbia (DC)\";s:22:\"Dist. of Columbia (DC)\";s:12:\"Florida (FL)\";s:12:\"Florida (FL)\";s:12:\"Georgia (GA)\";s:12:\"Georgia (GA)\";s:9:\"Guam (GU)\";s:9:\"Guam (GU)\";s:11:\"Hawaii (HI)\";s:11:\"Hawaii (HI)\";s:10:\"Idaho (ID)\";s:10:\"Idaho (ID)\";s:13:\"Illinois (IL)\";s:13:\"Illinois (IL)\";s:12:\"Indiana (IN)\";s:12:\"Indiana (IN)\";s:9:\"Iowa (IA)\";s:9:\"Iowa (IA)\";s:11:\"Kansas (KS)\";s:11:\"Kansas (KS)\";s:13:\"Kentucky (KY)\";s:13:\"Kentucky (KY)\";s:14:\"Louisiana (LA)\";s:14:\"Louisiana (LA)\";s:10:\"Maine (ME)\";s:10:\"Maine (ME)\";s:13:\"Maryland (MD)\";s:13:\"Maryland (MD)\";s:21:\"Marshall Islands (MH)\";s:21:\"Marshall Islands (MH)\";s:18:\"Massachusetts (MA)\";s:18:\"Massachusetts (MA)\";s:13:\"Michigan (MI)\";s:13:\"Michigan (MI)\";s:15:\"Micronesia (FM)\";s:15:\"Micronesia (FM)\";s:14:\"Minnesota (MN)\";s:14:\"Minnesota (MN)\";s:16:\"Mississippi (MS)\";s:16:\"Mississippi (MS)\";s:13:\"Missouri (MO)\";s:13:\"Missouri (MO)\";s:12:\"Montana (MT)\";s:12:\"Montana (MT)\";s:13:\"Nebraska (NE)\";s:13:\"Nebraska (NE)\";s:11:\"Nevada (NV)\";s:11:\"Nevada (NV)\";s:18:\"New Hampshire (NH)\";s:18:\"New Hampshire (NH)\";s:15:\"New Jersey (NJ)\";s:15:\"New Jersey (NJ)\";s:15:\"New Mexico (NM)\";s:15:\"New Mexico (NM)\";s:13:\"New York (NY)\";s:13:\"New York (NY)\";s:19:\"North Carolina (NC)\";s:19:\"North Carolina (NC)\";s:17:\"North Dakota (ND)\";s:17:\"North Dakota (ND)\";s:22:\"Northern Marianas (MP)\";s:22:\"Northern Marianas (MP)\";s:9:\"Ohio (OH)\";s:9:\"Ohio (OH)\";s:13:\"Oklahoma (OK)\";s:13:\"Oklahoma (OK)\";s:11:\"Oregon (OR)\";s:11:\"Oregon (OR)\";s:10:\"Palau (PW)\";s:10:\"Palau (PW)\";s:17:\"Pennsylvania (PA)\";s:17:\"Pennsylvania (PA)\";s:16:\"Puerto Rico (PR)\";s:16:\"Puerto Rico (PR)\";s:17:\"Rhode Island (RI)\";s:17:\"Rhode Island (RI)\";s:19:\"South Carolina (SC)\";s:19:\"South Carolina (SC)\";s:17:\"South Dakota (SD)\";s:17:\"South Dakota (SD)\";s:14:\"Tennessee (TN)\";s:14:\"Tennessee (TN)\";s:10:\"Texas (TX)\";s:10:\"Texas (TX)\";s:9:\"Utah (UT)\";s:9:\"Utah (UT)\";s:12:\"Vermont (VT)\";s:12:\"Vermont (VT)\";s:13:\"Virginia (VA)\";s:13:\"Virginia (VA)\";s:19:\"Virgin Islands (VI)\";s:19:\"Virgin Islands (VI)\";s:15:\"Washington (WA)\";s:15:\"Washington (WA)\";s:18:\"West Virginia (WV)\";s:18:\"West Virginia (WV)\";s:14:\"Wisconsin (WI)\";s:14:\"Wisconsin (WI)\";s:12:\"Wyoming (WY)\";s:12:\"Wyoming (WY)\";s:5:\"Other\";s:5:\"Other\";}s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}}','','','publish','closed','closed','','40','','','2022-02-23 19:50:57','2022-02-23 19:50:57','',33,'https://naplesirrigation.com/?p=40',6,'wpuf_input','',0),(41,1,'2022-02-23 19:50:57','2022-02-23 19:50:57','a:14:{s:10:\"input_type\";s:4:\"text\";s:8:\"template\";s:10:\"text_field\";s:8:\"required\";s:2:\"no\";s:5:\"label\";s:17:\"ZIP / Postal Code\";s:4:\"name\";s:7:\"text_10\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";s:0:\"\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";N;}','','','publish','closed','closed','','41','','','2022-02-23 19:50:57','2022-02-23 19:50:57','',33,'https://naplesirrigation.com/?p=41',7,'wpuf_input','',0),(42,1,'2022-02-23 19:50:57','2022-02-23 19:50:57','a:14:{s:10:\"input_type\";s:4:\"text\";s:8:\"template\";s:10:\"text_field\";s:8:\"required\";s:2:\"no\";s:5:\"label\";s:7:\"Country\";s:4:\"name\";s:7:\"text_11\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";s:0:\"\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";N;}','','','publish','closed','closed','','42','','','2022-02-23 19:50:57','2022-02-23 19:50:57','',33,'https://naplesirrigation.com/?p=42',8,'wpuf_input','',0),(43,1,'2022-02-23 19:50:57','2022-02-23 19:50:57','a:14:{s:10:\"input_type\";s:4:\"text\";s:8:\"template\";s:10:\"text_field\";s:8:\"required\";s:2:\"no\";s:5:\"label\";s:5:\"Phone\";s:4:\"name\";s:7:\"text_12\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";s:0:\"\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";N;}','','','publish','closed','closed','','43','','','2022-02-23 19:50:57','2022-02-23 19:50:57','',33,'https://naplesirrigation.com/?p=43',9,'wpuf_input','',0),(44,1,'2022-02-23 19:50:57','2022-02-23 19:50:57','a:14:{s:10:\"input_type\";s:4:\"text\";s:8:\"template\";s:10:\"text_field\";s:8:\"required\";s:2:\"no\";s:5:\"label\";s:15:\"Alternate Phone\";s:4:\"name\";s:7:\"text_14\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";s:0:\"\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";N;}','','','publish','closed','closed','','44','','','2022-02-23 19:50:57','2022-02-23 19:50:57','',33,'https://naplesirrigation.com/?p=44',10,'wpuf_input','',0),(45,1,'2022-02-23 19:50:57','2022-02-23 19:50:57','a:12:{s:10:\"input_type\";s:5:\"radio\";s:8:\"template\";s:11:\"radio_field\";s:8:\"required\";s:2:\"no\";s:5:\"label\";s:37:\"When is the best time to contact you?\";s:4:\"name\";s:8:\"radio_15\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:8:\"selected\";s:0:\"\";s:6:\"inline\";s:2:\"no\";s:7:\"options\";a:3:{s:7:\"Morning\";s:7:\"Morning\";s:9:\"Afternoon\";s:9:\"Afternoon\";s:7:\"Evening\";s:7:\"Evening\";}s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}}','','','publish','closed','closed','','45','','','2022-02-23 19:50:57','2022-02-23 19:50:57','',33,'https://naplesirrigation.com/?p=45',11,'wpuf_input','',0),(46,1,'2022-02-23 19:50:57','2022-02-23 19:50:57','a:12:{s:10:\"input_type\";s:5:\"radio\";s:8:\"template\";s:11:\"radio_field\";s:8:\"required\";s:2:\"no\";s:5:\"label\";s:36:\"What is the best way to contact you?\";s:4:\"name\";s:8:\"radio_16\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:8:\"selected\";s:0:\"\";s:6:\"inline\";s:2:\"no\";s:7:\"options\";a:2:{s:5:\"Phone\";s:5:\"Phone\";s:5:\"Email\";s:5:\"Email\";}s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}}','','','publish','closed','closed','','46','','','2022-02-23 19:50:57','2022-02-23 19:50:57','',33,'https://naplesirrigation.com/?p=46',12,'wpuf_input','',0),(47,1,'2022-02-23 19:50:57','2022-02-23 19:50:57','a:15:{s:10:\"input_type\";s:8:\"textarea\";s:8:\"template\";s:14:\"textarea_field\";s:8:\"required\";s:3:\"yes\";s:5:\"label\";s:7:\"Message\";s:4:\"name\";s:11:\"textarea_13\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:4:\"rows\";i:5;s:4:\"cols\";i:25;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"rich\";s:2:\"no\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}}','','','publish','closed','closed','','47','','','2022-02-23 19:50:57','2022-02-23 19:50:57','',33,'https://naplesirrigation.com/?p=47',13,'wpuf_input','',0),(48,1,'2022-02-23 19:50:57','2022-02-23 19:50:57','{\"id\":48,\"field_id\":14,\"fields\":{\"2\":{\"id\":\"2\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},\"4\":{\"id\":\"4\",\"type\":\"text\",\"label\":\"Street Address\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"5\":{\"id\":\"5\",\"type\":\"text\",\"label\":\"Address Line 2\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"6\":{\"id\":\"6\",\"type\":\"text\",\"label\":\"City / Town\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"9\":{\"id\":\"9\",\"type\":\"select\",\"label\":\"State / Province\",\"choices\":{\"1\":{\"default\":\"1\",\"label\":\"Select...\",\"value\":\"\"},\"5\":{\"label\":\"Alabama (AL)\",\"value\":\"AL\"},\"6\":{\"label\":\"Alaska (AK)\",\"value\":\"AK\"},\"7\":{\"label\":\"American Samoa (AS)\",\"value\":\"AS\"},\"8\":{\"label\":\"Arizona (AZ)\",\"value\":\"AZ\"},\"9\":{\"label\":\"Arkansas (AR)\",\"value\":\"AR\"},\"10\":{\"label\":\"California (CA)\",\"value\":\"CA\"},\"11\":{\"label\":\"Colorado (CO)\",\"value\":\"CO\"},\"12\":{\"label\":\"Connecticut (CT)\",\"value\":\"CT\"},\"13\":{\"label\":\"Delaware (DE)\",\"value\":\"DE\"},\"14\":{\"label\":\"Dist. of Columbia (DC)\",\"value\":\"DC\"},\"15\":{\"label\":\"Florida (FL)\",\"value\":\"FL\"},\"16\":{\"label\":\"Georgia (GA)\",\"value\":\"GA\"},\"17\":{\"label\":\"Guam (GU)\",\"value\":\"GU\"},\"18\":{\"label\":\"Hawaii (HI)\",\"value\":\"HI\"},\"19\":{\"label\":\"Idaho (ID)\",\"value\":\"ID\"},\"20\":{\"label\":\"Illinois (IL)\",\"value\":\"IL\"},\"21\":{\"label\":\"Indiana (IN)\",\"value\":\"IN\"},\"22\":{\"label\":\"Iowa (IA)\",\"value\":\"IA\"},\"23\":{\"label\":\"Kansas (KS)\",\"value\":\"KS\"},\"24\":{\"label\":\"Kentucky (KY)\",\"value\":\"KY\"},\"25\":{\"label\":\"Louisiana (LA)\",\"value\":\"LA\"},\"26\":{\"label\":\"Maine (ME)\",\"value\":\"ME\"},\"27\":{\"label\":\"Maryland (MD)\",\"value\":\"MD\"},\"28\":{\"label\":\"Marshall Islands (MH)\",\"value\":\"MH\"},\"29\":{\"label\":\"Massachusetts (MA)\",\"value\":\"MA\"},\"30\":{\"label\":\"Michigan (MI)\",\"value\":\"MI\"},\"31\":{\"label\":\"Micronesia (FM)\",\"value\":\"FM\"},\"32\":{\"label\":\"Minnesota (MN)\",\"value\":\"MN\"},\"33\":{\"label\":\"Mississippi (MS)\",\"value\":\"MS\"},\"34\":{\"label\":\"Missouri (MO)\",\"value\":\"MO\"},\"35\":{\"label\":\"Montana (MT)\",\"value\":\"MT\"},\"36\":{\"label\":\"Nebraska (NE)\",\"value\":\"NE\"},\"37\":{\"label\":\"Nevada (NV)\",\"value\":\"NV\"},\"38\":{\"label\":\"New Hampshire (NH)\",\"value\":\"NH\"},\"39\":{\"label\":\"New Jersey (NJ)\",\"value\":\"NJ\"},\"40\":{\"label\":\"New Mexico (NM)\",\"value\":\"NM\"},\"41\":{\"label\":\"New York (NY)\",\"value\":\"NY\"},\"42\":{\"label\":\"North Carolina (NC)\",\"value\":\"NC\"},\"43\":{\"label\":\"North Dakota (ND)\",\"value\":\"ND\"},\"44\":{\"label\":\"Northern Marianas (MP)\",\"value\":\"MP\"},\"45\":{\"label\":\"Ohio (OH)\",\"value\":\"OH\"},\"46\":{\"label\":\"Oklahoma (OK)\",\"value\":\"OK\"},\"47\":{\"label\":\"Oregon (OR)\",\"value\":\"OR\"},\"48\":{\"label\":\"Palau (PW)\",\"value\":\"PW\"},\"49\":{\"label\":\"Pennsylvania (PA)\",\"value\":\"PA\"},\"50\":{\"label\":\"Puerto Rico (PR)\",\"value\":\"PR\"},\"51\":{\"label\":\"Rhode Island (RI)\",\"value\":\"RI\"},\"52\":{\"label\":\"South Carolina (SC)\",\"value\":\"SC\"},\"53\":{\"label\":\"South Dakota (SD)\",\"value\":\"SD\"},\"54\":{\"label\":\"Tennessee (TN)\",\"value\":\"TN\"},\"55\":{\"label\":\"Texas (TX)\",\"value\":\"TX\"},\"56\":{\"label\":\"Utah (UT)\",\"value\":\"UT\"},\"57\":{\"label\":\"Vermont (VT)\",\"value\":\"VT\"},\"58\":{\"label\":\"Virginia (VA)\",\"value\":\"VA\"},\"59\":{\"label\":\"Virgin Islands (VI)\",\"value\":\"VI\"},\"60\":{\"label\":\"Washington (WA)\",\"value\":\"WA\"},\"61\":{\"label\":\"West Virginia (WV)\",\"value\":\"WV\"},\"62\":{\"label\":\"Wisconsin (WI)\",\"value\":\"WI\"},\"63\":{\"label\":\"Wyoming (WY)\",\"value\":\"WY\"},\"64\":{\"label\":\"Other\",\"value\":\"Other\"}},\"description\":\"\",\"required\":\"1\",\"show_values\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"css\":\"\",\"dynamic_choices\":\"\"},\"10\":{\"id\":\"10\",\"type\":\"text\",\"label\":\"ZIP / Postal Code\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"11\":{\"id\":\"11\",\"type\":\"text\",\"label\":\"Country\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"}},\"settings\":{\"form_title\":\"Address Form (International)\",\"form_desc\":\"\",\"form_class\":\"\",\"submit_text\":\"Submit\",\"submit_text_processing\":\"Sending...\",\"submit_class\":\"\",\"honeypot\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"Address Form (International) submission\",\"sender_name\":\"\",\"sender_address\":\"{admin_email}\",\"replyto\":\"\",\"message\":\"{all_fields}\"}},\"confirmation_type\":\"message\",\"confirmation_message\":\"<span id=u0022nf-drawer-contentu0022><span class=u0022nf-setting-groupsu0022><span class=u0022nf-field-settingsu0022>Thank you for getting in touch with us! We will try our best to respond back to you within 24 hours.</span></span></span>\",\"confirmation_message_scroll\":\"1\",\"confirmation_page\":\"72532\",\"confirmation_redirect\":\"\"},\"meta\":{\"template\":\"blank\"}}','Address Form (International)','','publish','closed','closed','','address-form-international','','','2022-02-23 19:50:57','2022-02-23 19:50:57','',0,'https://naplesirrigation.com/?post_type=wpuf_contact_form&#038;p=48',0,'wpuf_contact_form','',0),(49,1,'2022-02-23 19:50:57','2022-02-23 19:50:57','a:14:{s:10:\"input_type\";s:4:\"name\";s:8:\"template\";s:10:\"name_field\";s:8:\"required\";s:3:\"yes\";s:5:\"label\";s:4:\"Name\";s:4:\"name\";s:6:\"name_2\";s:7:\"is_meta\";s:3:\"yes\";s:6:\"format\";s:10:\"first-last\";s:10:\"first_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:5:\"First\";}s:11:\"middle_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:6:\"Middle\";}s:9:\"last_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:4:\"Last\";}s:9:\"hide_subs\";b:0;s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}}','','','publish','closed','closed','','49','','','2022-02-23 19:50:57','2022-02-23 19:50:57','',48,'https://naplesirrigation.com/?p=49',0,'wpuf_input','',0),(50,1,'2022-02-23 19:50:57','2022-02-23 19:50:57','a:14:{s:10:\"input_type\";s:4:\"text\";s:8:\"template\";s:10:\"text_field\";s:8:\"required\";s:3:\"yes\";s:5:\"label\";s:14:\"Street Address\";s:4:\"name\";s:6:\"text_4\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";s:0:\"\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";N;}','','','publish','closed','closed','','50','','','2022-02-23 19:50:57','2022-02-23 19:50:57','',48,'https://naplesirrigation.com/?p=50',1,'wpuf_input','',0),(51,1,'2022-02-23 19:50:57','2022-02-23 19:50:57','a:14:{s:10:\"input_type\";s:4:\"text\";s:8:\"template\";s:10:\"text_field\";s:8:\"required\";s:2:\"no\";s:5:\"label\";s:14:\"Address Line 2\";s:4:\"name\";s:6:\"text_5\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";s:0:\"\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";N;}','','','publish','closed','closed','','51','','','2022-02-23 19:50:57','2022-02-23 19:50:57','',48,'https://naplesirrigation.com/?p=51',2,'wpuf_input','',0),(52,1,'2022-02-23 19:50:57','2022-02-23 19:50:57','a:14:{s:10:\"input_type\";s:4:\"text\";s:8:\"template\";s:10:\"text_field\";s:8:\"required\";s:3:\"yes\";s:5:\"label\";s:11:\"City / Town\";s:4:\"name\";s:6:\"text_6\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";s:0:\"\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";N;}','','','publish','closed','closed','','52','','','2022-02-23 19:50:57','2022-02-23 19:50:57','',48,'https://naplesirrigation.com/?p=52',3,'wpuf_input','',0),(53,1,'2022-02-23 19:50:57','2022-02-23 19:50:57','a:12:{s:10:\"input_type\";s:6:\"select\";s:8:\"template\";s:14:\"dropdown_field\";s:8:\"required\";s:3:\"yes\";s:5:\"label\";s:16:\"State / Province\";s:4:\"name\";s:8:\"select_9\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:8:\"selected\";s:0:\"\";s:6:\"inline\";s:2:\"no\";s:7:\"options\";a:61:{s:9:\"Select...\";s:9:\"Select...\";s:12:\"Alabama (AL)\";s:12:\"Alabama (AL)\";s:11:\"Alaska (AK)\";s:11:\"Alaska (AK)\";s:19:\"American Samoa (AS)\";s:19:\"American Samoa (AS)\";s:12:\"Arizona (AZ)\";s:12:\"Arizona (AZ)\";s:13:\"Arkansas (AR)\";s:13:\"Arkansas (AR)\";s:15:\"California (CA)\";s:15:\"California (CA)\";s:13:\"Colorado (CO)\";s:13:\"Colorado (CO)\";s:16:\"Connecticut (CT)\";s:16:\"Connecticut (CT)\";s:13:\"Delaware (DE)\";s:13:\"Delaware (DE)\";s:22:\"Dist. of Columbia (DC)\";s:22:\"Dist. of Columbia (DC)\";s:12:\"Florida (FL)\";s:12:\"Florida (FL)\";s:12:\"Georgia (GA)\";s:12:\"Georgia (GA)\";s:9:\"Guam (GU)\";s:9:\"Guam (GU)\";s:11:\"Hawaii (HI)\";s:11:\"Hawaii (HI)\";s:10:\"Idaho (ID)\";s:10:\"Idaho (ID)\";s:13:\"Illinois (IL)\";s:13:\"Illinois (IL)\";s:12:\"Indiana (IN)\";s:12:\"Indiana (IN)\";s:9:\"Iowa (IA)\";s:9:\"Iowa (IA)\";s:11:\"Kansas (KS)\";s:11:\"Kansas (KS)\";s:13:\"Kentucky (KY)\";s:13:\"Kentucky (KY)\";s:14:\"Louisiana (LA)\";s:14:\"Louisiana (LA)\";s:10:\"Maine (ME)\";s:10:\"Maine (ME)\";s:13:\"Maryland (MD)\";s:13:\"Maryland (MD)\";s:21:\"Marshall Islands (MH)\";s:21:\"Marshall Islands (MH)\";s:18:\"Massachusetts (MA)\";s:18:\"Massachusetts (MA)\";s:13:\"Michigan (MI)\";s:13:\"Michigan (MI)\";s:15:\"Micronesia (FM)\";s:15:\"Micronesia (FM)\";s:14:\"Minnesota (MN)\";s:14:\"Minnesota (MN)\";s:16:\"Mississippi (MS)\";s:16:\"Mississippi (MS)\";s:13:\"Missouri (MO)\";s:13:\"Missouri (MO)\";s:12:\"Montana (MT)\";s:12:\"Montana (MT)\";s:13:\"Nebraska (NE)\";s:13:\"Nebraska (NE)\";s:11:\"Nevada (NV)\";s:11:\"Nevada (NV)\";s:18:\"New Hampshire (NH)\";s:18:\"New Hampshire (NH)\";s:15:\"New Jersey (NJ)\";s:15:\"New Jersey (NJ)\";s:15:\"New Mexico (NM)\";s:15:\"New Mexico (NM)\";s:13:\"New York (NY)\";s:13:\"New York (NY)\";s:19:\"North Carolina (NC)\";s:19:\"North Carolina (NC)\";s:17:\"North Dakota (ND)\";s:17:\"North Dakota (ND)\";s:22:\"Northern Marianas (MP)\";s:22:\"Northern Marianas (MP)\";s:9:\"Ohio (OH)\";s:9:\"Ohio (OH)\";s:13:\"Oklahoma (OK)\";s:13:\"Oklahoma (OK)\";s:11:\"Oregon (OR)\";s:11:\"Oregon (OR)\";s:10:\"Palau (PW)\";s:10:\"Palau (PW)\";s:17:\"Pennsylvania (PA)\";s:17:\"Pennsylvania (PA)\";s:16:\"Puerto Rico (PR)\";s:16:\"Puerto Rico (PR)\";s:17:\"Rhode Island (RI)\";s:17:\"Rhode Island (RI)\";s:19:\"South Carolina (SC)\";s:19:\"South Carolina (SC)\";s:17:\"South Dakota (SD)\";s:17:\"South Dakota (SD)\";s:14:\"Tennessee (TN)\";s:14:\"Tennessee (TN)\";s:10:\"Texas (TX)\";s:10:\"Texas (TX)\";s:9:\"Utah (UT)\";s:9:\"Utah (UT)\";s:12:\"Vermont (VT)\";s:12:\"Vermont (VT)\";s:13:\"Virginia (VA)\";s:13:\"Virginia (VA)\";s:19:\"Virgin Islands (VI)\";s:19:\"Virgin Islands (VI)\";s:15:\"Washington (WA)\";s:15:\"Washington (WA)\";s:18:\"West Virginia (WV)\";s:18:\"West Virginia (WV)\";s:14:\"Wisconsin (WI)\";s:14:\"Wisconsin (WI)\";s:12:\"Wyoming (WY)\";s:12:\"Wyoming (WY)\";s:5:\"Other\";s:5:\"Other\";}s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}}','','','publish','closed','closed','','53','','','2022-02-23 19:50:57','2022-02-23 19:50:57','',48,'https://naplesirrigation.com/?p=53',4,'wpuf_input','',0),(54,1,'2022-02-23 19:50:57','2022-02-23 19:50:57','a:14:{s:10:\"input_type\";s:4:\"text\";s:8:\"template\";s:10:\"text_field\";s:8:\"required\";s:2:\"no\";s:5:\"label\";s:17:\"ZIP / Postal Code\";s:4:\"name\";s:7:\"text_10\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";s:0:\"\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";N;}','','','publish','closed','closed','','54','','','2022-02-23 19:50:57','2022-02-23 19:50:57','',48,'https://naplesirrigation.com/?p=54',5,'wpuf_input','',0),(55,1,'2022-02-23 19:50:57','2022-02-23 19:50:57','a:14:{s:10:\"input_type\";s:4:\"text\";s:8:\"template\";s:10:\"text_field\";s:8:\"required\";s:3:\"yes\";s:5:\"label\";s:7:\"Country\";s:4:\"name\";s:7:\"text_11\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";s:0:\"\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";N;}','','','publish','closed','closed','','55','','','2022-02-23 19:50:57','2022-02-23 19:50:57','',48,'https://naplesirrigation.com/?p=55',6,'wpuf_input','',0),(56,1,'2022-02-23 19:50:57','2022-02-23 19:50:57','{\"id\":56,\"field_id\":14,\"fields\":{\"2\":{\"id\":\"2\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},\"4\":{\"id\":\"4\",\"type\":\"text\",\"label\":\"Street Address\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"5\":{\"id\":\"5\",\"type\":\"text\",\"label\":\"Address Line 2\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"6\":{\"id\":\"6\",\"type\":\"text\",\"label\":\"City / Town\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"9\":{\"id\":\"9\",\"type\":\"select\",\"label\":\"State\",\"choices\":{\"1\":{\"default\":\"1\",\"label\":\"Select...\",\"value\":\"\"},\"5\":{\"label\":\"Alabama (AL)\",\"value\":\"AL\"},\"6\":{\"label\":\"Alaska (AK)\",\"value\":\"AK\"},\"7\":{\"label\":\"American Samoa (AS)\",\"value\":\"AS\"},\"8\":{\"label\":\"Arizona (AZ)\",\"value\":\"AZ\"},\"9\":{\"label\":\"Arkansas (AR)\",\"value\":\"AR\"},\"10\":{\"label\":\"California (CA)\",\"value\":\"CA\"},\"11\":{\"label\":\"Colorado (CO)\",\"value\":\"CO\"},\"12\":{\"label\":\"Connecticut (CT)\",\"value\":\"CT\"},\"13\":{\"label\":\"Delaware (DE)\",\"value\":\"DE\"},\"14\":{\"label\":\"Dist. of Columbia (DC)\",\"value\":\"DC\"},\"15\":{\"label\":\"Florida (FL)\",\"value\":\"FL\"},\"16\":{\"label\":\"Georgia (GA)\",\"value\":\"GA\"},\"17\":{\"label\":\"Guam (GU)\",\"value\":\"GU\"},\"18\":{\"label\":\"Hawaii (HI)\",\"value\":\"HI\"},\"19\":{\"label\":\"Idaho (ID)\",\"value\":\"ID\"},\"20\":{\"label\":\"Illinois (IL)\",\"value\":\"IL\"},\"21\":{\"label\":\"Indiana (IN)\",\"value\":\"IN\"},\"22\":{\"label\":\"Iowa (IA)\",\"value\":\"IA\"},\"23\":{\"label\":\"Kansas (KS)\",\"value\":\"KS\"},\"24\":{\"label\":\"Kentucky (KY)\",\"value\":\"KY\"},\"25\":{\"label\":\"Louisiana (LA)\",\"value\":\"LA\"},\"26\":{\"label\":\"Maine (ME)\",\"value\":\"ME\"},\"27\":{\"label\":\"Maryland (MD)\",\"value\":\"MD\"},\"28\":{\"label\":\"Marshall Islands (MH)\",\"value\":\"MH\"},\"29\":{\"label\":\"Massachusetts (MA)\",\"value\":\"MA\"},\"30\":{\"label\":\"Michigan (MI)\",\"value\":\"MI\"},\"31\":{\"label\":\"Micronesia (FM)\",\"value\":\"FM\"},\"32\":{\"label\":\"Minnesota (MN)\",\"value\":\"MN\"},\"33\":{\"label\":\"Mississippi (MS)\",\"value\":\"MS\"},\"34\":{\"label\":\"Missouri (MO)\",\"value\":\"MO\"},\"35\":{\"label\":\"Montana (MT)\",\"value\":\"MT\"},\"36\":{\"label\":\"Nebraska (NE)\",\"value\":\"NE\"},\"37\":{\"label\":\"Nevada (NV)\",\"value\":\"NV\"},\"38\":{\"label\":\"New Hampshire (NH)\",\"value\":\"NH\"},\"39\":{\"label\":\"New Jersey (NJ)\",\"value\":\"NJ\"},\"40\":{\"label\":\"New Mexico (NM)\",\"value\":\"NM\"},\"41\":{\"label\":\"New York (NY)\",\"value\":\"NY\"},\"42\":{\"label\":\"North Carolina (NC)\",\"value\":\"NC\"},\"43\":{\"label\":\"North Dakota (ND)\",\"value\":\"ND\"},\"44\":{\"label\":\"Northern Marianas (MP)\",\"value\":\"MP\"},\"45\":{\"label\":\"Ohio (OH)\",\"value\":\"OH\"},\"46\":{\"label\":\"Oklahoma (OK)\",\"value\":\"OK\"},\"47\":{\"label\":\"Oregon (OR)\",\"value\":\"OR\"},\"48\":{\"label\":\"Palau (PW)\",\"value\":\"PW\"},\"49\":{\"label\":\"Pennsylvania (PA)\",\"value\":\"PA\"},\"50\":{\"label\":\"Puerto Rico (PR)\",\"value\":\"PR\"},\"51\":{\"label\":\"Rhode Island (RI)\",\"value\":\"RI\"},\"52\":{\"label\":\"South Carolina (SC)\",\"value\":\"SC\"},\"53\":{\"label\":\"South Dakota (SD)\",\"value\":\"SD\"},\"54\":{\"label\":\"Tennessee (TN)\",\"value\":\"TN\"},\"55\":{\"label\":\"Texas (TX)\",\"value\":\"TX\"},\"56\":{\"label\":\"Utah (UT)\",\"value\":\"UT\"},\"57\":{\"label\":\"Vermont (VT)\",\"value\":\"VT\"},\"58\":{\"label\":\"Virginia (VA)\",\"value\":\"VA\"},\"59\":{\"label\":\"Virgin Islands (VI)\",\"value\":\"VI\"},\"60\":{\"label\":\"Washington (WA)\",\"value\":\"WA\"},\"61\":{\"label\":\"West Virginia (WV)\",\"value\":\"WV\"},\"62\":{\"label\":\"Wisconsin (WI)\",\"value\":\"WI\"},\"63\":{\"label\":\"Wyoming (WY)\",\"value\":\"WY\"},\"64\":{\"label\":\"Other\",\"value\":\"Other\"}},\"description\":\"\",\"required\":\"1\",\"show_values\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"css\":\"\",\"dynamic_choices\":\"\"},\"10\":{\"id\":\"10\",\"type\":\"text\",\"label\":\"ZIP / Postal Code\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"}},\"settings\":{\"form_title\":\"Address Form (US)\",\"form_desc\":\"\",\"form_class\":\"\",\"submit_text\":\"Submit\",\"submit_text_processing\":\"Sending...\",\"submit_class\":\"\",\"honeypot\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"Address Form (US) submission\",\"sender_name\":\"\",\"sender_address\":\"{admin_email}\",\"replyto\":\"\",\"message\":\"{all_fields}\"}},\"confirmation_type\":\"message\",\"confirmation_message\":\"<span id=u0022nf-drawer-contentu0022><span class=u0022nf-setting-groupsu0022><span class=u0022nf-field-settingsu0022>Thank you for getting in touch with us! We will try our best to respond back to you within 24 hours.</span></span></span>\",\"confirmation_message_scroll\":\"1\",\"confirmation_page\":\"72532\",\"confirmation_redirect\":\"\"},\"meta\":{\"template\":\"blank\"}}','Address Form (US)','','publish','closed','closed','','address-form-us','','','2022-02-23 19:50:57','2022-02-23 19:50:57','',0,'https://naplesirrigation.com/?post_type=wpuf_contact_form&#038;p=56',0,'wpuf_contact_form','',0),(57,1,'2022-02-23 19:50:57','2022-02-23 19:50:57','a:14:{s:10:\"input_type\";s:4:\"name\";s:8:\"template\";s:10:\"name_field\";s:8:\"required\";s:3:\"yes\";s:5:\"label\";s:4:\"Name\";s:4:\"name\";s:6:\"name_2\";s:7:\"is_meta\";s:3:\"yes\";s:6:\"format\";s:10:\"first-last\";s:10:\"first_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:5:\"First\";}s:11:\"middle_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:6:\"Middle\";}s:9:\"last_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:4:\"Last\";}s:9:\"hide_subs\";b:0;s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}}','','','publish','closed','closed','','57','','','2022-02-23 19:50:57','2022-02-23 19:50:57','',56,'https://naplesirrigation.com/?p=57',0,'wpuf_input','',0),(58,1,'2022-02-23 19:50:58','2022-02-23 19:50:58','a:14:{s:10:\"input_type\";s:4:\"text\";s:8:\"template\";s:10:\"text_field\";s:8:\"required\";s:3:\"yes\";s:5:\"label\";s:14:\"Street Address\";s:4:\"name\";s:6:\"text_4\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";s:0:\"\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";N;}','','','publish','closed','closed','','58','','','2022-02-23 19:50:58','2022-02-23 19:50:58','',56,'https://naplesirrigation.com/?p=58',1,'wpuf_input','',0),(59,1,'2022-02-23 19:50:58','2022-02-23 19:50:58','a:14:{s:10:\"input_type\";s:4:\"text\";s:8:\"template\";s:10:\"text_field\";s:8:\"required\";s:2:\"no\";s:5:\"label\";s:14:\"Address Line 2\";s:4:\"name\";s:6:\"text_5\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";s:0:\"\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";N;}','','','publish','closed','closed','','59','','','2022-02-23 19:50:58','2022-02-23 19:50:58','',56,'https://naplesirrigation.com/?p=59',2,'wpuf_input','',0),(60,1,'2022-02-23 19:50:58','2022-02-23 19:50:58','a:14:{s:10:\"input_type\";s:4:\"text\";s:8:\"template\";s:10:\"text_field\";s:8:\"required\";s:3:\"yes\";s:5:\"label\";s:11:\"City / Town\";s:4:\"name\";s:6:\"text_6\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";s:0:\"\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";N;}','','','publish','closed','closed','','60','','','2022-02-23 19:50:58','2022-02-23 19:50:58','',56,'https://naplesirrigation.com/?p=60',3,'wpuf_input','',0),(61,1,'2022-02-23 19:50:58','2022-02-23 19:50:58','a:12:{s:10:\"input_type\";s:6:\"select\";s:8:\"template\";s:14:\"dropdown_field\";s:8:\"required\";s:3:\"yes\";s:5:\"label\";s:5:\"State\";s:4:\"name\";s:8:\"select_9\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:8:\"selected\";s:0:\"\";s:6:\"inline\";s:2:\"no\";s:7:\"options\";a:61:{s:9:\"Select...\";s:9:\"Select...\";s:12:\"Alabama (AL)\";s:12:\"Alabama (AL)\";s:11:\"Alaska (AK)\";s:11:\"Alaska (AK)\";s:19:\"American Samoa (AS)\";s:19:\"American Samoa (AS)\";s:12:\"Arizona (AZ)\";s:12:\"Arizona (AZ)\";s:13:\"Arkansas (AR)\";s:13:\"Arkansas (AR)\";s:15:\"California (CA)\";s:15:\"California (CA)\";s:13:\"Colorado (CO)\";s:13:\"Colorado (CO)\";s:16:\"Connecticut (CT)\";s:16:\"Connecticut (CT)\";s:13:\"Delaware (DE)\";s:13:\"Delaware (DE)\";s:22:\"Dist. of Columbia (DC)\";s:22:\"Dist. of Columbia (DC)\";s:12:\"Florida (FL)\";s:12:\"Florida (FL)\";s:12:\"Georgia (GA)\";s:12:\"Georgia (GA)\";s:9:\"Guam (GU)\";s:9:\"Guam (GU)\";s:11:\"Hawaii (HI)\";s:11:\"Hawaii (HI)\";s:10:\"Idaho (ID)\";s:10:\"Idaho (ID)\";s:13:\"Illinois (IL)\";s:13:\"Illinois (IL)\";s:12:\"Indiana (IN)\";s:12:\"Indiana (IN)\";s:9:\"Iowa (IA)\";s:9:\"Iowa (IA)\";s:11:\"Kansas (KS)\";s:11:\"Kansas (KS)\";s:13:\"Kentucky (KY)\";s:13:\"Kentucky (KY)\";s:14:\"Louisiana (LA)\";s:14:\"Louisiana (LA)\";s:10:\"Maine (ME)\";s:10:\"Maine (ME)\";s:13:\"Maryland (MD)\";s:13:\"Maryland (MD)\";s:21:\"Marshall Islands (MH)\";s:21:\"Marshall Islands (MH)\";s:18:\"Massachusetts (MA)\";s:18:\"Massachusetts (MA)\";s:13:\"Michigan (MI)\";s:13:\"Michigan (MI)\";s:15:\"Micronesia (FM)\";s:15:\"Micronesia (FM)\";s:14:\"Minnesota (MN)\";s:14:\"Minnesota (MN)\";s:16:\"Mississippi (MS)\";s:16:\"Mississippi (MS)\";s:13:\"Missouri (MO)\";s:13:\"Missouri (MO)\";s:12:\"Montana (MT)\";s:12:\"Montana (MT)\";s:13:\"Nebraska (NE)\";s:13:\"Nebraska (NE)\";s:11:\"Nevada (NV)\";s:11:\"Nevada (NV)\";s:18:\"New Hampshire (NH)\";s:18:\"New Hampshire (NH)\";s:15:\"New Jersey (NJ)\";s:15:\"New Jersey (NJ)\";s:15:\"New Mexico (NM)\";s:15:\"New Mexico (NM)\";s:13:\"New York (NY)\";s:13:\"New York (NY)\";s:19:\"North Carolina (NC)\";s:19:\"North Carolina (NC)\";s:17:\"North Dakota (ND)\";s:17:\"North Dakota (ND)\";s:22:\"Northern Marianas (MP)\";s:22:\"Northern Marianas (MP)\";s:9:\"Ohio (OH)\";s:9:\"Ohio (OH)\";s:13:\"Oklahoma (OK)\";s:13:\"Oklahoma (OK)\";s:11:\"Oregon (OR)\";s:11:\"Oregon (OR)\";s:10:\"Palau (PW)\";s:10:\"Palau (PW)\";s:17:\"Pennsylvania (PA)\";s:17:\"Pennsylvania (PA)\";s:16:\"Puerto Rico (PR)\";s:16:\"Puerto Rico (PR)\";s:17:\"Rhode Island (RI)\";s:17:\"Rhode Island (RI)\";s:19:\"South Carolina (SC)\";s:19:\"South Carolina (SC)\";s:17:\"South Dakota (SD)\";s:17:\"South Dakota (SD)\";s:14:\"Tennessee (TN)\";s:14:\"Tennessee (TN)\";s:10:\"Texas (TX)\";s:10:\"Texas (TX)\";s:9:\"Utah (UT)\";s:9:\"Utah (UT)\";s:12:\"Vermont (VT)\";s:12:\"Vermont (VT)\";s:13:\"Virginia (VA)\";s:13:\"Virginia (VA)\";s:19:\"Virgin Islands (VI)\";s:19:\"Virgin Islands (VI)\";s:15:\"Washington (WA)\";s:15:\"Washington (WA)\";s:18:\"West Virginia (WV)\";s:18:\"West Virginia (WV)\";s:14:\"Wisconsin (WI)\";s:14:\"Wisconsin (WI)\";s:12:\"Wyoming (WY)\";s:12:\"Wyoming (WY)\";s:5:\"Other\";s:5:\"Other\";}s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}}','','','publish','closed','closed','','61','','','2022-02-23 19:50:58','2022-02-23 19:50:58','',56,'https://naplesirrigation.com/?p=61',4,'wpuf_input','',0),(62,1,'2022-02-23 19:50:58','2022-02-23 19:50:58','a:14:{s:10:\"input_type\";s:4:\"text\";s:8:\"template\";s:10:\"text_field\";s:8:\"required\";s:3:\"yes\";s:5:\"label\";s:17:\"ZIP / Postal Code\";s:4:\"name\";s:7:\"text_10\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";s:0:\"\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";N;}','','','publish','closed','closed','','62','','','2022-02-23 19:50:58','2022-02-23 19:50:58','',56,'https://naplesirrigation.com/?p=62',5,'wpuf_input','',0),(63,1,'2022-02-23 19:50:58','2022-02-23 19:50:58','{\"id\":63,\"field_id\":5,\"fields\":{\"1\":{\"id\":\"1\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},\"2\":{\"id\":\"2\",\"type\":\"email\",\"label\":\"Email\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"confirmation_placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"3\":{\"id\":\"3\",\"type\":\"text\",\"label\":\"Subject\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"4\":{\"id\":\"4\",\"type\":\"textarea\",\"label\":\"Body\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"css\":\"\"}},\"settings\":{\"form_title\":\"Email Form (Traditional)\",\"form_desc\":\"\",\"form_class\":\"\",\"submit_text\":\"Submit\",\"submit_text_processing\":\"Sending...\",\"submit_class\":\"\",\"honeypot\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"Email Form (Traditional) submission\",\"sender_name\":\"\",\"sender_address\":\"{admin_email}\",\"replyto\":\"\",\"message\":\"{all_fields}\"}},\"confirmation_type\":\"message\",\"confirmation_message\":\"<span id=u0022nf-drawer-contentu0022><span class=u0022nf-setting-groupsu0022><span class=u0022nf-field-settingsu0022>Thank you for getting in touch with us! We will try our best to respond back to you within 24 hours.</span></span></span>\",\"confirmation_message_scroll\":\"1\",\"confirmation_page\":\"72532\",\"confirmation_redirect\":\"\"},\"meta\":{\"template\":\"blank\"}}','Email Form (Traditional)','','publish','closed','closed','','email-form-traditional','','','2022-02-23 19:50:58','2022-02-23 19:50:58','',0,'https://naplesirrigation.com/?post_type=wpuf_contact_form&#038;p=63',0,'wpuf_contact_form','',0),(64,1,'2022-02-23 19:50:58','2022-02-23 19:50:58','a:14:{s:10:\"input_type\";s:4:\"name\";s:8:\"template\";s:10:\"name_field\";s:8:\"required\";s:2:\"no\";s:5:\"label\";s:4:\"Name\";s:4:\"name\";s:6:\"name_1\";s:7:\"is_meta\";s:3:\"yes\";s:6:\"format\";s:10:\"first-last\";s:10:\"first_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:5:\"First\";}s:11:\"middle_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:6:\"Middle\";}s:9:\"last_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:4:\"Last\";}s:9:\"hide_subs\";b:0;s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}}','','','publish','closed','closed','','64','','','2022-02-23 19:50:58','2022-02-23 19:50:58','',63,'https://naplesirrigation.com/?p=64',0,'wpuf_input','',0),(65,1,'2022-02-23 19:50:58','2022-02-23 19:50:58','a:14:{s:10:\"input_type\";s:5:\"email\";s:8:\"template\";s:13:\"email_address\";s:8:\"required\";s:3:\"yes\";s:5:\"label\";s:5:\"Email\";s:4:\"name\";s:7:\"email_2\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";s:0:\"\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";N;}','','','publish','closed','closed','','65','','','2022-02-23 19:50:58','2022-02-23 19:50:58','',63,'https://naplesirrigation.com/?p=65',1,'wpuf_input','',0),(66,1,'2022-02-23 19:50:58','2022-02-23 19:50:58','a:14:{s:10:\"input_type\";s:4:\"text\";s:8:\"template\";s:10:\"text_field\";s:8:\"required\";s:2:\"no\";s:5:\"label\";s:7:\"Subject\";s:4:\"name\";s:6:\"text_3\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";s:0:\"\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";N;}','','','publish','closed','closed','','66','','','2022-02-23 19:50:58','2022-02-23 19:50:58','',63,'https://naplesirrigation.com/?p=66',2,'wpuf_input','',0),(67,1,'2022-02-23 19:50:58','2022-02-23 19:50:58','a:15:{s:10:\"input_type\";s:8:\"textarea\";s:8:\"template\";s:14:\"textarea_field\";s:8:\"required\";s:3:\"yes\";s:5:\"label\";s:4:\"Body\";s:4:\"name\";s:10:\"textarea_4\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:4:\"rows\";i:5;s:4:\"cols\";i:25;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"rich\";s:2:\"no\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}}','','','publish','closed','closed','','67','','','2022-02-23 19:50:58','2022-02-23 19:50:58','',63,'https://naplesirrigation.com/?p=67',3,'wpuf_input','',0),(68,1,'2022-02-23 19:50:58','2022-02-23 19:50:58','{\"id\":68,\"field_id\":5,\"fields\":{\"1\":{\"id\":\"1\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},\"2\":{\"id\":\"2\",\"type\":\"email\",\"label\":\"Email\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"confirmation_placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"3\":{\"id\":\"3\",\"type\":\"number\",\"label\":\"Group Size\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"4\":{\"id\":\"4\",\"type\":\"textarea\",\"label\":\"Special Instructions\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"css\":\"\"}},\"settings\":{\"form_title\":\"Event Registration Form (Group Support)\",\"form_desc\":\"\",\"form_class\":\"\",\"submit_text\":\"Register\",\"submit_text_processing\":\"Sending...\",\"submit_class\":\"\",\"honeypot\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"Event Registration Form (Group Support) submission\",\"sender_name\":\"\",\"sender_address\":\"{admin_email}\",\"replyto\":\"\",\"message\":\"{all_fields}\"}},\"confirmation_type\":\"message\",\"confirmation_message\":\"<span id=u0022nf-drawer-contentu0022><span class=u0022nf-setting-groupsu0022><span class=u0022nf-field-settingsu0022>Thank you for getting in touch with us! We will try our best to respond back to you within 24 hours.</span></span></span>\",\"confirmation_message_scroll\":\"1\",\"confirmation_page\":\"72532\",\"confirmation_redirect\":\"\"},\"meta\":{\"template\":\"blank\"}}','Event Registration Form (Group Support)','','publish','closed','closed','','event-registration-form-group-support','','','2022-02-23 19:50:58','2022-02-23 19:50:58','',0,'https://naplesirrigation.com/?post_type=wpuf_contact_form&#038;p=68',0,'wpuf_contact_form','',0),(69,1,'2022-02-23 19:50:58','2022-02-23 19:50:58','a:14:{s:10:\"input_type\";s:4:\"name\";s:8:\"template\";s:10:\"name_field\";s:8:\"required\";s:3:\"yes\";s:5:\"label\";s:4:\"Name\";s:4:\"name\";s:6:\"name_1\";s:7:\"is_meta\";s:3:\"yes\";s:6:\"format\";s:10:\"first-last\";s:10:\"first_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:5:\"First\";}s:11:\"middle_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:6:\"Middle\";}s:9:\"last_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:4:\"Last\";}s:9:\"hide_subs\";b:0;s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}}','','','publish','closed','closed','','69','','','2022-02-23 19:50:58','2022-02-23 19:50:58','',68,'https://naplesirrigation.com/?p=69',0,'wpuf_input','',0),(70,1,'2022-02-23 19:50:58','2022-02-23 19:50:58','a:14:{s:10:\"input_type\";s:5:\"email\";s:8:\"template\";s:13:\"email_address\";s:8:\"required\";s:3:\"yes\";s:5:\"label\";s:5:\"Email\";s:4:\"name\";s:7:\"email_2\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";s:0:\"\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";N;}','','','publish','closed','closed','','70','','','2022-02-23 19:50:58','2022-02-23 19:50:58','',68,'https://naplesirrigation.com/?p=70',1,'wpuf_input','',0),(71,1,'2022-02-23 19:50:58','2022-02-23 19:50:58','a:15:{s:10:\"input_type\";s:8:\"textarea\";s:8:\"template\";s:14:\"textarea_field\";s:8:\"required\";s:2:\"no\";s:5:\"label\";s:20:\"Special Instructions\";s:4:\"name\";s:10:\"textarea_4\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:4:\"rows\";i:5;s:4:\"cols\";i:25;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"rich\";s:2:\"no\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}}','','','publish','closed','closed','','71','','','2022-02-23 19:50:58','2022-02-23 19:50:58','',68,'https://naplesirrigation.com/?p=71',2,'wpuf_input','',0),(72,1,'2022-02-23 19:50:58','2022-02-23 19:50:58','{\"id\":72,\"field_id\":4,\"fields\":{\"1\":{\"id\":\"1\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},\"2\":{\"id\":\"2\",\"type\":\"email\",\"label\":\"Email\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"confirmation_placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"3\":{\"id\":\"3\",\"type\":\"textarea\",\"label\":\"Special Instructions\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"css\":\"\"}},\"settings\":{\"form_title\":\"Event Registration Form\",\"form_desc\":\"\",\"form_class\":\"\",\"submit_text\":\"Register\",\"submit_text_processing\":\"Sending...\",\"submit_class\":\"\",\"honeypot\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"Event Registration Form submission\",\"sender_name\":\"\",\"sender_address\":\"{admin_email}\",\"replyto\":\"\",\"message\":\"{all_fields}\"}},\"confirmation_type\":\"message\",\"confirmation_message\":\"<span id=u0022nf-drawer-contentu0022><span class=u0022nf-setting-groupsu0022><span class=u0022nf-field-settingsu0022>Thank you for getting in touch with us! We will try our best to respond back to you within 24 hours.</span></span></span>\",\"confirmation_message_scroll\":\"1\",\"confirmation_page\":\"72532\",\"confirmation_redirect\":\"\"},\"meta\":{\"template\":\"blank\"}}','Event Registration Form','','publish','closed','closed','','event-registration-form','','','2022-02-23 19:50:58','2022-02-23 19:50:58','',0,'https://naplesirrigation.com/?post_type=wpuf_contact_form&#038;p=72',0,'wpuf_contact_form','',0),(73,1,'2022-02-23 19:50:58','2022-02-23 19:50:58','a:14:{s:10:\"input_type\";s:4:\"name\";s:8:\"template\";s:10:\"name_field\";s:8:\"required\";s:3:\"yes\";s:5:\"label\";s:4:\"Name\";s:4:\"name\";s:6:\"name_1\";s:7:\"is_meta\";s:3:\"yes\";s:6:\"format\";s:10:\"first-last\";s:10:\"first_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:5:\"First\";}s:11:\"middle_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:6:\"Middle\";}s:9:\"last_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:4:\"Last\";}s:9:\"hide_subs\";b:0;s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}}','','','publish','closed','closed','','73','','','2022-02-23 19:50:58','2022-02-23 19:50:58','',72,'https://naplesirrigation.com/?p=73',0,'wpuf_input','',0),(74,1,'2022-02-23 19:50:58','2022-02-23 19:50:58','a:14:{s:10:\"input_type\";s:5:\"email\";s:8:\"template\";s:13:\"email_address\";s:8:\"required\";s:3:\"yes\";s:5:\"label\";s:5:\"Email\";s:4:\"name\";s:7:\"email_2\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";s:0:\"\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";N;}','','','publish','closed','closed','','74','','','2022-02-23 19:50:58','2022-02-23 19:50:58','',72,'https://naplesirrigation.com/?p=74',1,'wpuf_input','',0),(75,1,'2022-02-23 19:50:58','2022-02-23 19:50:58','a:15:{s:10:\"input_type\";s:8:\"textarea\";s:8:\"template\";s:14:\"textarea_field\";s:8:\"required\";s:2:\"no\";s:5:\"label\";s:20:\"Special Instructions\";s:4:\"name\";s:10:\"textarea_3\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:4:\"rows\";i:5;s:4:\"cols\";i:25;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"rich\";s:2:\"no\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}}','','','publish','closed','closed','','75','','','2022-02-23 19:50:58','2022-02-23 19:50:58','',72,'https://naplesirrigation.com/?p=75',2,'wpuf_input','',0),(76,1,'2022-02-23 19:50:58','2022-02-23 19:50:58','{\"id\":76,\"field_id\":5,\"fields\":{\"1\":{\"id\":\"1\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},\"2\":{\"id\":\"2\",\"type\":\"text\",\"label\":\"ZIP / Postal Code\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"3\":{\"id\":\"3\",\"type\":\"email\",\"label\":\"Email\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"confirmation_placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"4\":{\"id\":\"4\",\"type\":\"text\",\"label\":\"Phone\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"}},\"settings\":{\"form_title\":\"Information Request Form\",\"form_desc\":\"\",\"form_class\":\"\",\"submit_text\":\"Submit\",\"submit_text_processing\":\"Sending...\",\"submit_class\":\"\",\"honeypot\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"Information Request Form submission\",\"sender_name\":\"\",\"sender_address\":\"{admin_email}\",\"replyto\":\"\",\"message\":\"{all_fields}\"}},\"confirmation_type\":\"message\",\"confirmation_message\":\"<span id=u0022nf-drawer-contentu0022><span class=u0022nf-setting-groupsu0022><span class=u0022nf-field-settingsu0022>Thank you for getting in touch with us! We will try our best to respond back to you within 24 hours.</span></span></span>\",\"confirmation_message_scroll\":\"1\",\"confirmation_page\":\"72532\",\"confirmation_redirect\":\"\"},\"meta\":{\"template\":\"blank\"}}','Information Request Form','','publish','closed','closed','','information-request-form','','','2022-02-23 19:50:58','2022-02-23 19:50:58','',0,'https://naplesirrigation.com/?post_type=wpuf_contact_form&#038;p=76',0,'wpuf_contact_form','',0),(77,1,'2022-02-23 19:50:58','2022-02-23 19:50:58','a:14:{s:10:\"input_type\";s:4:\"name\";s:8:\"template\";s:10:\"name_field\";s:8:\"required\";s:3:\"yes\";s:5:\"label\";s:4:\"Name\";s:4:\"name\";s:6:\"name_1\";s:7:\"is_meta\";s:3:\"yes\";s:6:\"format\";s:10:\"first-last\";s:10:\"first_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:5:\"First\";}s:11:\"middle_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:6:\"Middle\";}s:9:\"last_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:4:\"Last\";}s:9:\"hide_subs\";b:0;s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}}','','','publish','closed','closed','','77','','','2022-02-23 19:50:58','2022-02-23 19:50:58','',76,'https://naplesirrigation.com/?p=77',0,'wpuf_input','',0),(78,1,'2022-02-23 19:50:58','2022-02-23 19:50:58','a:14:{s:10:\"input_type\";s:4:\"text\";s:8:\"template\";s:10:\"text_field\";s:8:\"required\";s:3:\"yes\";s:5:\"label\";s:17:\"ZIP / Postal Code\";s:4:\"name\";s:6:\"text_2\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";s:0:\"\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";N;}','','','publish','closed','closed','','78','','','2022-02-23 19:50:58','2022-02-23 19:50:58','',76,'https://naplesirrigation.com/?p=78',1,'wpuf_input','',0),(79,1,'2022-02-23 19:50:58','2022-02-23 19:50:58','a:14:{s:10:\"input_type\";s:5:\"email\";s:8:\"template\";s:13:\"email_address\";s:8:\"required\";s:3:\"yes\";s:5:\"label\";s:5:\"Email\";s:4:\"name\";s:7:\"email_3\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";s:0:\"\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";N;}','','','publish','closed','closed','','79','','','2022-02-23 19:50:58','2022-02-23 19:50:58','',76,'https://naplesirrigation.com/?p=79',2,'wpuf_input','',0),(80,1,'2022-02-23 19:50:58','2022-02-23 19:50:58','a:14:{s:10:\"input_type\";s:4:\"text\";s:8:\"template\";s:10:\"text_field\";s:8:\"required\";s:2:\"no\";s:5:\"label\";s:5:\"Phone\";s:4:\"name\";s:6:\"text_4\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";s:0:\"\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";N;}','','','publish','closed','closed','','80','','','2022-02-23 19:50:58','2022-02-23 19:50:58','',76,'https://naplesirrigation.com/?p=80',3,'wpuf_input','',0),(81,1,'2022-02-23 19:50:58','2022-02-23 19:50:58','{\"id\":81,\"field_id\":17,\"fields\":{\"2\":{\"id\":\"2\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},\"14\":{\"id\":\"14\",\"type\":\"text\",\"label\":\"Company Name\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"4\":{\"id\":\"4\",\"type\":\"text\",\"label\":\"Street Address\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"5\":{\"id\":\"5\",\"type\":\"text\",\"label\":\"Address Line 2\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"6\":{\"id\":\"6\",\"type\":\"text\",\"label\":\"City / Town\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"9\":{\"id\":\"9\",\"type\":\"select\",\"label\":\"State\",\"choices\":{\"1\":{\"default\":\"1\",\"label\":\"Select...\",\"value\":\"\"},\"5\":{\"label\":\"Alabama (AL)\",\"value\":\"AL\"},\"6\":{\"label\":\"Alaska (AK)\",\"value\":\"AK\"},\"7\":{\"label\":\"American Samoa (AS)\",\"value\":\"AS\"},\"8\":{\"label\":\"Arizona (AZ)\",\"value\":\"AZ\"},\"9\":{\"label\":\"Arkansas (AR)\",\"value\":\"AR\"},\"10\":{\"label\":\"California (CA)\",\"value\":\"CA\"},\"11\":{\"label\":\"Colorado (CO)\",\"value\":\"CO\"},\"12\":{\"label\":\"Connecticut (CT)\",\"value\":\"CT\"},\"13\":{\"label\":\"Delaware (DE)\",\"value\":\"DE\"},\"14\":{\"label\":\"Dist. of Columbia (DC)\",\"value\":\"DC\"},\"15\":{\"label\":\"Florida (FL)\",\"value\":\"FL\"},\"16\":{\"label\":\"Georgia (GA)\",\"value\":\"GA\"},\"17\":{\"label\":\"Guam (GU)\",\"value\":\"GU\"},\"18\":{\"label\":\"Hawaii (HI)\",\"value\":\"HI\"},\"19\":{\"label\":\"Idaho (ID)\",\"value\":\"ID\"},\"20\":{\"label\":\"Illinois (IL)\",\"value\":\"IL\"},\"21\":{\"label\":\"Indiana (IN)\",\"value\":\"IN\"},\"22\":{\"label\":\"Iowa (IA)\",\"value\":\"IA\"},\"23\":{\"label\":\"Kansas (KS)\",\"value\":\"KS\"},\"24\":{\"label\":\"Kentucky (KY)\",\"value\":\"KY\"},\"25\":{\"label\":\"Louisiana (LA)\",\"value\":\"LA\"},\"26\":{\"label\":\"Maine (ME)\",\"value\":\"ME\"},\"27\":{\"label\":\"Maryland (MD)\",\"value\":\"MD\"},\"28\":{\"label\":\"Marshall Islands (MH)\",\"value\":\"MH\"},\"29\":{\"label\":\"Massachusetts (MA)\",\"value\":\"MA\"},\"30\":{\"label\":\"Michigan (MI)\",\"value\":\"MI\"},\"31\":{\"label\":\"Micronesia (FM)\",\"value\":\"FM\"},\"32\":{\"label\":\"Minnesota (MN)\",\"value\":\"MN\"},\"33\":{\"label\":\"Mississippi (MS)\",\"value\":\"MS\"},\"34\":{\"label\":\"Missouri (MO)\",\"value\":\"MO\"},\"35\":{\"label\":\"Montana (MT)\",\"value\":\"MT\"},\"36\":{\"label\":\"Nebraska (NE)\",\"value\":\"NE\"},\"37\":{\"label\":\"Nevada (NV)\",\"value\":\"NV\"},\"38\":{\"label\":\"New Hampshire (NH)\",\"value\":\"NH\"},\"39\":{\"label\":\"New Jersey (NJ)\",\"value\":\"NJ\"},\"40\":{\"label\":\"New Mexico (NM)\",\"value\":\"NM\"},\"41\":{\"label\":\"New York (NY)\",\"value\":\"NY\"},\"42\":{\"label\":\"North Carolina (NC)\",\"value\":\"NC\"},\"43\":{\"label\":\"North Dakota (ND)\",\"value\":\"ND\"},\"44\":{\"label\":\"Northern Marianas (MP)\",\"value\":\"MP\"},\"45\":{\"label\":\"Ohio (OH)\",\"value\":\"OH\"},\"46\":{\"label\":\"Oklahoma (OK)\",\"value\":\"OK\"},\"47\":{\"label\":\"Oregon (OR)\",\"value\":\"OR\"},\"48\":{\"label\":\"Palau (PW)\",\"value\":\"PW\"},\"49\":{\"label\":\"Pennsylvania (PA)\",\"value\":\"PA\"},\"50\":{\"label\":\"Puerto Rico (PR)\",\"value\":\"PR\"},\"51\":{\"label\":\"Rhode Island (RI)\",\"value\":\"RI\"},\"52\":{\"label\":\"South Carolina (SC)\",\"value\":\"SC\"},\"53\":{\"label\":\"South Dakota (SD)\",\"value\":\"SD\"},\"54\":{\"label\":\"Tennessee (TN)\",\"value\":\"TN\"},\"55\":{\"label\":\"Texas (TX)\",\"value\":\"TX\"},\"56\":{\"label\":\"Utah (UT)\",\"value\":\"UT\"},\"57\":{\"label\":\"Vermont (VT)\",\"value\":\"VT\"},\"58\":{\"label\":\"Virginia (VA)\",\"value\":\"VA\"},\"59\":{\"label\":\"Virgin Islands (VI)\",\"value\":\"VI\"},\"60\":{\"label\":\"Washington (WA)\",\"value\":\"WA\"},\"61\":{\"label\":\"West Virginia (WV)\",\"value\":\"WV\"},\"62\":{\"label\":\"Wisconsin (WI)\",\"value\":\"WI\"},\"63\":{\"label\":\"Wyoming (WY)\",\"value\":\"WY\"},\"64\":{\"label\":\"Other\",\"value\":\"Other\"}},\"description\":\"\",\"required\":\"1\",\"show_values\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"css\":\"\",\"dynamic_choices\":\"\"},\"10\":{\"id\":\"10\",\"type\":\"text\",\"label\":\"ZIP / Postal Code\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"15\":{\"id\":\"15\",\"type\":\"text\",\"label\":\"Country\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"16\":{\"id\":\"16\",\"type\":\"text\",\"label\":\"Phone\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"}},\"settings\":{\"form_title\":\"Shipping Information Form\",\"form_desc\":\"\",\"form_class\":\"\",\"submit_text\":\"Submit\",\"submit_text_processing\":\"Sending...\",\"submit_class\":\"\",\"honeypot\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"Shipping Information Form submission\",\"sender_name\":\"\",\"sender_address\":\"{admin_email}\",\"replyto\":\"\",\"message\":\"{all_fields}\"}},\"confirmation_type\":\"message\",\"confirmation_message\":\"<span id=u0022nf-drawer-contentu0022><span class=u0022nf-setting-groupsu0022><span class=u0022nf-field-settingsu0022>Thank you for getting in touch with us! We will try our best to respond back to you within 24 hours.</span></span></span>\",\"confirmation_message_scroll\":\"1\",\"confirmation_page\":\"72532\",\"confirmation_redirect\":\"\"},\"meta\":{\"template\":\"blank\"}}','Shipping Information Form','','publish','closed','closed','','shipping-information-form','','','2022-02-23 19:50:58','2022-02-23 19:50:58','',0,'https://naplesirrigation.com/?post_type=wpuf_contact_form&#038;p=81',0,'wpuf_contact_form','',0),(82,1,'2022-02-23 19:50:58','2022-02-23 19:50:58','a:14:{s:10:\"input_type\";s:4:\"name\";s:8:\"template\";s:10:\"name_field\";s:8:\"required\";s:3:\"yes\";s:5:\"label\";s:4:\"Name\";s:4:\"name\";s:6:\"name_2\";s:7:\"is_meta\";s:3:\"yes\";s:6:\"format\";s:10:\"first-last\";s:10:\"first_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:5:\"First\";}s:11:\"middle_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:6:\"Middle\";}s:9:\"last_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:4:\"Last\";}s:9:\"hide_subs\";b:0;s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}}','','','publish','closed','closed','','82','','','2022-02-23 19:50:58','2022-02-23 19:50:58','',81,'https://naplesirrigation.com/?p=82',0,'wpuf_input','',0),(83,1,'2022-02-23 19:50:58','2022-02-23 19:50:58','a:14:{s:10:\"input_type\";s:4:\"text\";s:8:\"template\";s:10:\"text_field\";s:8:\"required\";s:2:\"no\";s:5:\"label\";s:12:\"Company Name\";s:4:\"name\";s:7:\"text_14\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";s:0:\"\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";N;}','','','publish','closed','closed','','83','','','2022-02-23 19:50:58','2022-02-23 19:50:58','',81,'https://naplesirrigation.com/?p=83',1,'wpuf_input','',0),(84,1,'2022-02-23 19:50:58','2022-02-23 19:50:58','a:14:{s:10:\"input_type\";s:4:\"text\";s:8:\"template\";s:10:\"text_field\";s:8:\"required\";s:3:\"yes\";s:5:\"label\";s:14:\"Street Address\";s:4:\"name\";s:6:\"text_4\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";s:0:\"\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";N;}','','','publish','closed','closed','','84','','','2022-02-23 19:50:58','2022-02-23 19:50:58','',81,'https://naplesirrigation.com/?p=84',2,'wpuf_input','',0),(85,1,'2022-02-23 19:50:58','2022-02-23 19:50:58','a:14:{s:10:\"input_type\";s:4:\"text\";s:8:\"template\";s:10:\"text_field\";s:8:\"required\";s:2:\"no\";s:5:\"label\";s:14:\"Address Line 2\";s:4:\"name\";s:6:\"text_5\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";s:0:\"\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";N;}','','','publish','closed','closed','','85','','','2022-02-23 19:50:58','2022-02-23 19:50:58','',81,'https://naplesirrigation.com/?p=85',3,'wpuf_input','',0),(86,1,'2022-02-23 19:50:58','2022-02-23 19:50:58','a:14:{s:10:\"input_type\";s:4:\"text\";s:8:\"template\";s:10:\"text_field\";s:8:\"required\";s:3:\"yes\";s:5:\"label\";s:11:\"City / Town\";s:4:\"name\";s:6:\"text_6\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";s:0:\"\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";N;}','','','publish','closed','closed','','86','','','2022-02-23 19:50:58','2022-02-23 19:50:58','',81,'https://naplesirrigation.com/?p=86',4,'wpuf_input','',0),(87,1,'2022-02-23 19:50:58','2022-02-23 19:50:58','a:12:{s:10:\"input_type\";s:6:\"select\";s:8:\"template\";s:14:\"dropdown_field\";s:8:\"required\";s:3:\"yes\";s:5:\"label\";s:5:\"State\";s:4:\"name\";s:8:\"select_9\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:8:\"selected\";s:0:\"\";s:6:\"inline\";s:2:\"no\";s:7:\"options\";a:61:{s:9:\"Select...\";s:9:\"Select...\";s:12:\"Alabama (AL)\";s:12:\"Alabama (AL)\";s:11:\"Alaska (AK)\";s:11:\"Alaska (AK)\";s:19:\"American Samoa (AS)\";s:19:\"American Samoa (AS)\";s:12:\"Arizona (AZ)\";s:12:\"Arizona (AZ)\";s:13:\"Arkansas (AR)\";s:13:\"Arkansas (AR)\";s:15:\"California (CA)\";s:15:\"California (CA)\";s:13:\"Colorado (CO)\";s:13:\"Colorado (CO)\";s:16:\"Connecticut (CT)\";s:16:\"Connecticut (CT)\";s:13:\"Delaware (DE)\";s:13:\"Delaware (DE)\";s:22:\"Dist. of Columbia (DC)\";s:22:\"Dist. of Columbia (DC)\";s:12:\"Florida (FL)\";s:12:\"Florida (FL)\";s:12:\"Georgia (GA)\";s:12:\"Georgia (GA)\";s:9:\"Guam (GU)\";s:9:\"Guam (GU)\";s:11:\"Hawaii (HI)\";s:11:\"Hawaii (HI)\";s:10:\"Idaho (ID)\";s:10:\"Idaho (ID)\";s:13:\"Illinois (IL)\";s:13:\"Illinois (IL)\";s:12:\"Indiana (IN)\";s:12:\"Indiana (IN)\";s:9:\"Iowa (IA)\";s:9:\"Iowa (IA)\";s:11:\"Kansas (KS)\";s:11:\"Kansas (KS)\";s:13:\"Kentucky (KY)\";s:13:\"Kentucky (KY)\";s:14:\"Louisiana (LA)\";s:14:\"Louisiana (LA)\";s:10:\"Maine (ME)\";s:10:\"Maine (ME)\";s:13:\"Maryland (MD)\";s:13:\"Maryland (MD)\";s:21:\"Marshall Islands (MH)\";s:21:\"Marshall Islands (MH)\";s:18:\"Massachusetts (MA)\";s:18:\"Massachusetts (MA)\";s:13:\"Michigan (MI)\";s:13:\"Michigan (MI)\";s:15:\"Micronesia (FM)\";s:15:\"Micronesia (FM)\";s:14:\"Minnesota (MN)\";s:14:\"Minnesota (MN)\";s:16:\"Mississippi (MS)\";s:16:\"Mississippi (MS)\";s:13:\"Missouri (MO)\";s:13:\"Missouri (MO)\";s:12:\"Montana (MT)\";s:12:\"Montana (MT)\";s:13:\"Nebraska (NE)\";s:13:\"Nebraska (NE)\";s:11:\"Nevada (NV)\";s:11:\"Nevada (NV)\";s:18:\"New Hampshire (NH)\";s:18:\"New Hampshire (NH)\";s:15:\"New Jersey (NJ)\";s:15:\"New Jersey (NJ)\";s:15:\"New Mexico (NM)\";s:15:\"New Mexico (NM)\";s:13:\"New York (NY)\";s:13:\"New York (NY)\";s:19:\"North Carolina (NC)\";s:19:\"North Carolina (NC)\";s:17:\"North Dakota (ND)\";s:17:\"North Dakota (ND)\";s:22:\"Northern Marianas (MP)\";s:22:\"Northern Marianas (MP)\";s:9:\"Ohio (OH)\";s:9:\"Ohio (OH)\";s:13:\"Oklahoma (OK)\";s:13:\"Oklahoma (OK)\";s:11:\"Oregon (OR)\";s:11:\"Oregon (OR)\";s:10:\"Palau (PW)\";s:10:\"Palau (PW)\";s:17:\"Pennsylvania (PA)\";s:17:\"Pennsylvania (PA)\";s:16:\"Puerto Rico (PR)\";s:16:\"Puerto Rico (PR)\";s:17:\"Rhode Island (RI)\";s:17:\"Rhode Island (RI)\";s:19:\"South Carolina (SC)\";s:19:\"South Carolina (SC)\";s:17:\"South Dakota (SD)\";s:17:\"South Dakota (SD)\";s:14:\"Tennessee (TN)\";s:14:\"Tennessee (TN)\";s:10:\"Texas (TX)\";s:10:\"Texas (TX)\";s:9:\"Utah (UT)\";s:9:\"Utah (UT)\";s:12:\"Vermont (VT)\";s:12:\"Vermont (VT)\";s:13:\"Virginia (VA)\";s:13:\"Virginia (VA)\";s:19:\"Virgin Islands (VI)\";s:19:\"Virgin Islands (VI)\";s:15:\"Washington (WA)\";s:15:\"Washington (WA)\";s:18:\"West Virginia (WV)\";s:18:\"West Virginia (WV)\";s:14:\"Wisconsin (WI)\";s:14:\"Wisconsin (WI)\";s:12:\"Wyoming (WY)\";s:12:\"Wyoming (WY)\";s:5:\"Other\";s:5:\"Other\";}s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}}','','','publish','closed','closed','','87','','','2022-02-23 19:50:58','2022-02-23 19:50:58','',81,'https://naplesirrigation.com/?p=87',5,'wpuf_input','',0),(88,1,'2022-02-23 19:50:58','2022-02-23 19:50:58','a:14:{s:10:\"input_type\";s:4:\"text\";s:8:\"template\";s:10:\"text_field\";s:8:\"required\";s:3:\"yes\";s:5:\"label\";s:17:\"ZIP / Postal Code\";s:4:\"name\";s:7:\"text_10\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";s:0:\"\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";N;}','','','publish','closed','closed','','88','','','2022-02-23 19:50:58','2022-02-23 19:50:58','',81,'https://naplesirrigation.com/?p=88',6,'wpuf_input','',0),(89,1,'2022-02-23 19:50:58','2022-02-23 19:50:58','a:14:{s:10:\"input_type\";s:4:\"text\";s:8:\"template\";s:10:\"text_field\";s:8:\"required\";s:3:\"yes\";s:5:\"label\";s:7:\"Country\";s:4:\"name\";s:7:\"text_15\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";s:0:\"\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";N;}','','','publish','closed','closed','','89','','','2022-02-23 19:50:58','2022-02-23 19:50:58','',81,'https://naplesirrigation.com/?p=89',7,'wpuf_input','',0),(90,1,'2022-02-23 19:50:58','2022-02-23 19:50:58','a:14:{s:10:\"input_type\";s:4:\"text\";s:8:\"template\";s:10:\"text_field\";s:8:\"required\";s:3:\"yes\";s:5:\"label\";s:5:\"Phone\";s:4:\"name\";s:7:\"text_16\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";s:0:\"\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";N;}','','','publish','closed','closed','','90','','','2022-02-23 19:50:58','2022-02-23 19:50:58','',81,'https://naplesirrigation.com/?p=90',8,'wpuf_input','',0),(91,1,'2022-02-23 19:50:58','2022-02-23 19:50:58','{\"id\":91,\"field_id\":3,\"fields\":{\"1\":{\"id\":\"1\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},\"2\":{\"id\":\"2\",\"type\":\"email\",\"label\":\"Email\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"confirmation_placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"}},\"settings\":{\"form_title\":\"Sign Up Form\",\"form_desc\":\"\",\"form_class\":\"\",\"submit_text\":\"Sign Up\",\"submit_text_processing\":\"Sending...\",\"submit_class\":\"\",\"honeypot\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"New Sign Up Form submission\",\"sender_name\":\"\",\"sender_address\":\"{admin_email}\",\"replyto\":\"\",\"message\":\"{all_fields}\"}},\"confirmation_type\":\"message\",\"confirmation_message\":\"<span id=u0022nf-drawer-contentu0022><span class=u0022nf-setting-groupsu0022><span class=u0022nf-field-settingsu0022>Thank you for getting in touch with us! We will try our best to respond back to you within 24 hours.</span></span></span>\",\"confirmation_message_scroll\":\"1\",\"confirmation_page\":\"72532\",\"confirmation_redirect\":\"\"},\"meta\":{\"template\":\"blank\"}}','Sign Up Form','','publish','closed','closed','','sign-up-form','','','2022-02-23 19:50:58','2022-02-23 19:50:58','',0,'https://naplesirrigation.com/?post_type=wpuf_contact_form&#038;p=91',0,'wpuf_contact_form','',0),(92,1,'2022-02-23 19:50:58','2022-02-23 19:50:58','a:14:{s:10:\"input_type\";s:4:\"name\";s:8:\"template\";s:10:\"name_field\";s:8:\"required\";s:3:\"yes\";s:5:\"label\";s:4:\"Name\";s:4:\"name\";s:6:\"name_1\";s:7:\"is_meta\";s:3:\"yes\";s:6:\"format\";s:10:\"first-last\";s:10:\"first_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:5:\"First\";}s:11:\"middle_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:6:\"Middle\";}s:9:\"last_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:4:\"Last\";}s:9:\"hide_subs\";b:0;s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}}','','','publish','closed','closed','','92','','','2022-02-23 19:50:58','2022-02-23 19:50:58','',91,'https://naplesirrigation.com/?p=92',0,'wpuf_input','',0),(93,1,'2022-02-23 19:50:58','2022-02-23 19:50:58','a:14:{s:10:\"input_type\";s:5:\"email\";s:8:\"template\";s:13:\"email_address\";s:8:\"required\";s:3:\"yes\";s:5:\"label\";s:5:\"Email\";s:4:\"name\";s:7:\"email_2\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";s:0:\"\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";N;}','','','publish','closed','closed','','93','','','2022-02-23 19:50:58','2022-02-23 19:50:58','',91,'https://naplesirrigation.com/?p=93',1,'wpuf_input','',0),(94,1,'2022-02-23 19:50:58','2022-02-23 19:50:58','{\"id\":94,\"field_id\":9,\"fields\":{\"1\":{\"id\":\"1\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},\"2\":{\"id\":\"2\",\"type\":\"email\",\"label\":\"Email\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"confirmation_placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"3\":{\"id\":\"3\",\"type\":\"radio\",\"label\":\"On a scale of 1 to 5, how would you rate your experience with our product / service?\",\"choices\":{\"1\":{\"label\":\"1 (poor)\",\"value\":\"1\"},\"2\":{\"label\":\"2 (mediocre)\",\"value\":\"2\"},\"3\":{\"label\":\"3 (average)\",\"value\":\"3\"},\"4\":{\"label\":\"4 (fair)\",\"value\":\"4\"},\"5\":{\"label\":\"5 (excellent)\",\"value\":\"5\"}},\"description\":\"\",\"show_values\":\"1\",\"input_columns\":\"\",\"css\":\"\",\"dynamic_choices\":\"\"},\"4\":{\"id\":\"4\",\"type\":\"radio\",\"label\":\"How likely are you to recommend our product / service to people you know?\",\"choices\":{\"1\":{\"label\":\"Likely\",\"value\":\"Likely\"},\"2\":{\"label\":\"Somewhat Likely\",\"value\":\"Somewhat Likely\"},\"3\":{\"label\":\"Somewhat Unlikely\",\"value\":\"Somewhat Unlikely\"},\"4\":{\"label\":\"Unlikely\",\"value\":\"Unlikely\"}},\"description\":\"\",\"show_values\":\"1\",\"input_columns\":\"\",\"css\":\"\",\"dynamic_choices\":\"\"},\"5\":{\"id\":\"5\",\"type\":\"radio\",\"label\":\"Would you use our product / service in the future?\",\"choices\":{\"1\":{\"label\":\"Yes\",\"value\":\"Yes\"},\"2\":{\"label\":\"No\",\"value\":\"No\"}},\"description\":\"\",\"show_values\":\"1\",\"input_columns\":\"\",\"css\":\"\",\"dynamic_choices\":\"\"},\"6\":{\"id\":\"6\",\"type\":\"select\",\"label\":\"How long have you used our product / service?\",\"choices\":{\"1\":{\"label\":\"Select...\",\"value\":\"\"},\"6\":{\"label\":\"Less than a month\",\"value\":\"Less than a month\"},\"2\":{\"label\":\"1 Month - 11 Months\",\"value\":\"1 Month - 11 Months\"},\"3\":{\"label\":\"1 Year - 2 Years\",\"value\":\"1 Year - 2 Years\"},\"5\":{\"label\":\"3 Years - 5 Years\",\"value\":\"3 Years - 5 Years\"},\"4\":{\"label\":\"Over 5 Years\",\"value\":\"Over 5 Years\"}},\"description\":\"\",\"show_values\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"css\":\"\",\"dynamic_choices\":\"\"},\"7\":{\"id\":\"7\",\"type\":\"textarea\",\"label\":\"Please tell us what you liked or disliked about our product / service\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"css\":\"\"},\"8\":{\"id\":\"8\",\"type\":\"textarea\",\"label\":\"Additional Comments\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"css\":\"\"}},\"settings\":{\"form_title\":\"Customer Feedback Form\",\"form_desc\":\"\",\"form_class\":\"\",\"submit_text\":\"Submit\",\"submit_text_processing\":\"Sending...\",\"submit_class\":\"\",\"honeypot\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"Customer Feedback Form submission\",\"sender_name\":\"\",\"sender_address\":\"{admin_email}\",\"replyto\":\"\",\"message\":\"{all_fields}\"}},\"confirmation_type\":\"message\",\"confirmation_message\":\"<span id=u0022nf-drawer-contentu0022><span class=u0022nf-setting-groupsu0022><span class=u0022nf-field-settingsu0022>Thank you for getting in touch with us! We will try our best to respond back to you within 24 hours.</span></span></span>\",\"confirmation_message_scroll\":\"1\",\"confirmation_page\":\"72532\",\"confirmation_redirect\":\"\"},\"meta\":{\"template\":\"blank\"}}','Customer Feedback Form','','publish','closed','closed','','customer-feedback-form','','','2022-02-23 19:50:58','2022-02-23 19:50:58','',0,'https://naplesirrigation.com/?post_type=wpuf_contact_form&#038;p=94',0,'wpuf_contact_form','',0),(95,1,'2022-02-23 19:50:58','2022-02-23 19:50:58','a:14:{s:10:\"input_type\";s:4:\"name\";s:8:\"template\";s:10:\"name_field\";s:8:\"required\";s:3:\"yes\";s:5:\"label\";s:4:\"Name\";s:4:\"name\";s:6:\"name_1\";s:7:\"is_meta\";s:3:\"yes\";s:6:\"format\";s:10:\"first-last\";s:10:\"first_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:5:\"First\";}s:11:\"middle_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:6:\"Middle\";}s:9:\"last_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:4:\"Last\";}s:9:\"hide_subs\";b:0;s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}}','','','publish','closed','closed','','95','','','2022-02-23 19:50:58','2022-02-23 19:50:58','',94,'https://naplesirrigation.com/?p=95',0,'wpuf_input','',0),(96,1,'2022-02-23 19:50:58','2022-02-23 19:50:58','a:14:{s:10:\"input_type\";s:5:\"email\";s:8:\"template\";s:13:\"email_address\";s:8:\"required\";s:3:\"yes\";s:5:\"label\";s:5:\"Email\";s:4:\"name\";s:7:\"email_2\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";s:0:\"\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";N;}','','','publish','closed','closed','','96','','','2022-02-23 19:50:58','2022-02-23 19:50:58','',94,'https://naplesirrigation.com/?p=96',1,'wpuf_input','',0),(97,1,'2022-02-23 19:50:58','2022-02-23 19:50:58','a:12:{s:10:\"input_type\";s:5:\"radio\";s:8:\"template\";s:11:\"radio_field\";s:8:\"required\";s:2:\"no\";s:5:\"label\";s:84:\"On a scale of 1 to 5, how would you rate your experience with our product / service?\";s:4:\"name\";s:7:\"radio_3\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:8:\"selected\";s:0:\"\";s:6:\"inline\";s:2:\"no\";s:7:\"options\";a:5:{s:8:\"1 (poor)\";s:8:\"1 (poor)\";s:12:\"2 (mediocre)\";s:12:\"2 (mediocre)\";s:11:\"3 (average)\";s:11:\"3 (average)\";s:8:\"4 (fair)\";s:8:\"4 (fair)\";s:13:\"5 (excellent)\";s:13:\"5 (excellent)\";}s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}}','','','publish','closed','closed','','97','','','2022-02-23 19:50:58','2022-02-23 19:50:58','',94,'https://naplesirrigation.com/?p=97',2,'wpuf_input','',0),(98,1,'2022-02-23 19:50:58','2022-02-23 19:50:58','a:12:{s:10:\"input_type\";s:5:\"radio\";s:8:\"template\";s:11:\"radio_field\";s:8:\"required\";s:2:\"no\";s:5:\"label\";s:73:\"How likely are you to recommend our product / service to people you know?\";s:4:\"name\";s:7:\"radio_4\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:8:\"selected\";s:0:\"\";s:6:\"inline\";s:2:\"no\";s:7:\"options\";a:4:{s:6:\"Likely\";s:6:\"Likely\";s:15:\"Somewhat Likely\";s:15:\"Somewhat Likely\";s:17:\"Somewhat Unlikely\";s:17:\"Somewhat Unlikely\";s:8:\"Unlikely\";s:8:\"Unlikely\";}s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}}','','','publish','closed','closed','','98','','','2022-02-23 19:50:58','2022-02-23 19:50:58','',94,'https://naplesirrigation.com/?p=98',3,'wpuf_input','',0),(99,1,'2022-02-23 19:50:58','2022-02-23 19:50:58','a:12:{s:10:\"input_type\";s:5:\"radio\";s:8:\"template\";s:11:\"radio_field\";s:8:\"required\";s:2:\"no\";s:5:\"label\";s:50:\"Would you use our product / service in the future?\";s:4:\"name\";s:7:\"radio_5\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:8:\"selected\";s:0:\"\";s:6:\"inline\";s:2:\"no\";s:7:\"options\";a:2:{s:3:\"Yes\";s:3:\"Yes\";s:2:\"No\";s:2:\"No\";}s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}}','','','publish','closed','closed','','99','','','2022-02-23 19:50:58','2022-02-23 19:50:58','',94,'https://naplesirrigation.com/?p=99',4,'wpuf_input','',0),(100,1,'2022-02-23 19:50:58','2022-02-23 19:50:58','a:12:{s:10:\"input_type\";s:6:\"select\";s:8:\"template\";s:14:\"dropdown_field\";s:8:\"required\";s:2:\"no\";s:5:\"label\";s:45:\"How long have you used our product / service?\";s:4:\"name\";s:8:\"select_6\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:8:\"selected\";s:0:\"\";s:6:\"inline\";s:2:\"no\";s:7:\"options\";a:6:{s:9:\"Select...\";s:9:\"Select...\";s:17:\"Less than a month\";s:17:\"Less than a month\";s:19:\"1 Month - 11 Months\";s:19:\"1 Month - 11 Months\";s:16:\"1 Year - 2 Years\";s:16:\"1 Year - 2 Years\";s:17:\"3 Years - 5 Years\";s:17:\"3 Years - 5 Years\";s:12:\"Over 5 Years\";s:12:\"Over 5 Years\";}s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}}','','','publish','closed','closed','','100','','','2022-02-23 19:50:58','2022-02-23 19:50:58','',94,'https://naplesirrigation.com/?p=100',5,'wpuf_input','',0),(101,1,'2022-02-23 19:50:58','2022-02-23 19:50:58','a:15:{s:10:\"input_type\";s:8:\"textarea\";s:8:\"template\";s:14:\"textarea_field\";s:8:\"required\";s:2:\"no\";s:5:\"label\";s:69:\"Please tell us what you liked or disliked about our product / service\";s:4:\"name\";s:10:\"textarea_7\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:4:\"rows\";i:5;s:4:\"cols\";i:25;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"rich\";s:2:\"no\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}}','','','publish','closed','closed','','101','','','2022-02-23 19:50:58','2022-02-23 19:50:58','',94,'https://naplesirrigation.com/?p=101',6,'wpuf_input','',0),(102,1,'2022-02-23 19:50:58','2022-02-23 19:50:58','a:15:{s:10:\"input_type\";s:8:\"textarea\";s:8:\"template\";s:14:\"textarea_field\";s:8:\"required\";s:2:\"no\";s:5:\"label\";s:19:\"Additional Comments\";s:4:\"name\";s:10:\"textarea_8\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:4:\"rows\";i:5;s:4:\"cols\";i:25;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"rich\";s:2:\"no\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}}','','','publish','closed','closed','','102','','','2022-02-23 19:50:58','2022-02-23 19:50:58','',94,'https://naplesirrigation.com/?p=102',7,'wpuf_input','',0),(103,1,'2022-04-04 17:00:58','2022-04-04 17:00:58','<div class=\"boldgrid-section\" style=\"color: #000000; background-image: url(\'https://source.unsplash.com/MqJX_8EaStM/1920x1080\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"1175055\" data-image-url=\"https://source.unsplash.com/MqJX_8EaStM/1920x1080\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 120px; padding-bottom: 140px;\">\r\n<div class=\"col-md-7 col-sm-4 col-xs-12 col-lg-7\">\r\n<div class=\"\">\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p class=\"\"><img class=\"wp-image-186 alignnone\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/cropped-20210313_120201-scaled-1-e1649096217790.jpg\" alt=\"Perfect Irrigation System\" width=\"667\" height=\"500\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-5 col-sm-8 col-xs-12 wedge-cta col-lg-5\" custom-classes=\"wedge-cta\">\r\n<h2 class=\"\">NAPLES IRRIGATION, d/ba/Hooper Irrigaiton, LLC</h2>\r\n<h2 class=\"\">lET US BRING YOUR YARD BACK TO LIFE</h2>\r\n<p class=\"\" style=\"font-size: 14px;\">BEST LAWN&nbsp; SPRINKLER REPAIR, MAINTENANCE , DESIGN&nbsp; SYSTEM&nbsp;</p>\r\n\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-16\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\"><a class=\"button-secondary btn btn-color-2 btn btn-border-color-1\" href=\"https://naplesirrigation.com/contact-us/\">CONTACT US TODAY</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color3-background-color color-3-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-12 col-lg-12\">\r\n<h2 class=\"\" style=\"text-align: center; font-size: 21px;\">Naples Irrigation d/b/a Hooper Irrigation is owned and operated by Brad Hooper who is a fully licensed and insured Irrigation expert in the Naples area for 40 years.</h2>\r\n<h2 class=\"\" style=\"text-align: center; font-size: 21px;\">What we offer to all our Customers:</h2>\r\n<h2 class=\"\" style=\"text-align: center; font-size: 21px;\">Innovative Designs to ensure the best irrigation system is installed for your individual yard or business and price range.</h2>\r\n<h2 class=\"\" style=\"text-align: center; font-size: 21px;\">Repair and Maintenance of all components including irrigation pumps, timers (clocks), valves, manifolds, and sprinkler heads. We suggest monthly maintenance to prevent any mishaps or issues but can offer a flexible schedule based on your needs.</h2>\r\n<h2 class=\"\" style=\"text-align: center; font-size: 21px;\">Renovation of existing irrigation systems that may be outdated, broken or damaged.</h2>\r\n<h2 class=\"\" style=\"text-align: center;\">See What We Can Offer</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-2 color1-color\" style=\"width: 65%;\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 90px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-4 col-lg-4\">\r\n<p class=\"\"><img class=\"bg-img bg-img-1 wp-image-273 aligncenter\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/IMG_20220128_155353-225x300.jpg\" alt=\"Renovation\" width=\"226\" height=\"301\" data-imhwpb-asset-id=\"695399\"></p>\r\n<p class=\"\">&nbsp;</p>\r\n&nbsp;\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Sprinkler Repair</h3>\r\n<p class=\"\" style=\"font-size: 14px;\">Sprinkler repair Iirrigation pumps, clocks, valves manifolds and heads</p>\r\n\r\n</div>\r\n<div class=\"col-xs-12 col-sm-6 col-md-4 col-lg-4\">\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Design &amp;</h3>\r\n<p class=\"\"><img class=\"bg-img bg-img-1 alignnone wp-image-135 size-medium\" style=\"color: #333333;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/20201221_152806-300x225.jpg\" alt=\"Maintenance irrigation programs \" width=\"300\" height=\"225\" data-imhwpb-asset-id=\"695400\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">&nbsp;Monthly Maintenance&nbsp;</h3>\r\n<p class=\"\" style=\"font-size: 14px;\">Fully licensed and insured.&nbsp; We take pride in our work and are deemed the best in Naples.&nbsp; &nbsp;Maintenance reduces costly mishaps</p>\r\n\r\n</div>\r\n<div class=\"col-xs-12 col-sm-6 col-md-4 col-lg-4\">\r\n<p class=\"\"><img class=\"bg-img bg-img-1 wp-image-180 size-medium\" title=\"Renovation irrigation services \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/received_656891985552879-220x300.jpeg\" alt=\"Repair Sprinkler system irrigaiton\" width=\"220\" height=\"300\" data-imhwpb-asset-id=\"695401\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Renovation</h3>\r\n<p class=\"\" style=\"font-size: 14px;\">If you want to experience the benefits of a customized Renovation our team is experienced 40 years in Naples</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color2-background-color color-2-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-12 col-lg-12\">\r\n<h2 class=\"\" style=\"text-align: center;\">Customer Testimonials</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-2 color1-color\" style=\"width: 65%;\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 40px;\">\r\n<div class=\"col-sm-6 col-md-3 col-xs-12 col-lg-3\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle wp-image-177 aligncenter\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/pumpirigationsupply-300x225.jpg\" alt=\"\" width=\"216\" height=\"162\" data-imhwpb-asset-id=\"695402\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\"><strong>Pump SUPPLY HOUSE of Naples</strong></p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\" style=\"font-size: 14px;\">Naples Irrigation , Brad Hooper is one of the best companies in the business to work with.&nbsp;&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12 col-lg-3\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-156 \" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/282_127_486_486_20201221_153238-768x1024.jpg\" alt=\"\" width=\"179\" height=\"179\" data-imhwpb-asset-id=\"695403\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\">Engle Denistry</p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\" style=\"font-size: 14px;\">Owner Brad Engle recommends, Naples Irrigation,&nbsp; Brad Hooper for your business\' irrigation needs.&nbsp; &nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12 col-lg-3\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-125\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_4YX0oj7gf8o-imhwpb-ut5s3lmwf6dg2wc.jpg\" alt=\"\" width=\"150\" height=\"150\" data-imhwpb-asset-id=\"695404\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\"><strong>Direct Industrial Supply</strong></p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\" style=\"font-size: 14px;\">Brad Hooper of Naples Irrigation is one of our best sprinkler designers and Installer. Highly recommend his services.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12 col-lg-3\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-126\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_8tN3flDTQBU-imhwpb-kxmpsoge3h4672l.jpg\" alt=\"\" width=\"169\" height=\"169\" data-imhwpb-asset-id=\"695405\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\">&nbsp;</p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\" style=\"font-size: 14px;\">I was so pleased with the sprinkler system Brad Hooper customized and designed for my flower garden.&nbsp; Now my landscaping looks beautiful every day.&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Welcome','','publish','closed','closed','','home','','','2022-07-14 18:53:11','2022-07-14 18:53:11','',0,'https://naplesirrigation.com/home/',0,'page','',0),(104,1,'2022-04-04 19:28:33','2022-02-23 19:50:58','','Welcome','','publish','closed','closed','','104','','','2022-04-04 19:28:33','2022-04-04 19:28:33','',0,'https://naplesirrigation.com/104/',1,'nav_menu_item','',0),(105,1,'2022-04-06 17:20:59','2022-04-06 17:20:59','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 42px;\">\r\n<div class=\"col-md-5 col-xs-12 col-sm-12 col-lg-5\">\r\n<h4 class=\"\">About Naples Irrigation</h4>\r\n<h4 class=\"\">d/b/a Hooper IRRIGATION</h4>\r\n<p class=\"\" style=\"font-size: 14px;\">About the Owner:&nbsp; &nbsp;Brad Hooper, a formal graduate of the University of Evansville, Indiana began his 40 year career in the Naples, Florida area with the formation of Hooper Irrigation in 1982.&nbsp; &nbsp; &nbsp;</p>\r\n<p class=\"\" style=\"font-size: 14px;\">The company offers a full complement of services to residential and multifamily homes, as well as, small commercial businesses in Naples and nearby communitiies.&nbsp;&nbsp;</p>\r\n<p class=\"\" style=\"font-size: 14px;\">&nbsp;Brad Hooper offers new innovative designed systems that fit his customer\'s landscaping and lawn requirements and at a price range tailored to his customer\'s needs.&nbsp; &nbsp;His designs are geared toward the prevention of the mishaps experienced with badly designed systems.&nbsp; &nbsp;</p>\r\n<p class=\"\" style=\"font-size: 14px;\">In addition to new installations, Hooper Irrigation specializes in renovations of existing systems, repair,&nbsp; and replacements of all components such as sprinkler heads, electrical valves, clocks and pumps to ensure a flawless customer experience.&nbsp;</p>\r\n<p class=\"\" style=\"font-size: 14px;\">To maintain a beautiful lawn or landscape for your home or business, Hooper Irrigation will provide personalized maintenance programs to fit your needs: monthly, bi-monthly, or quarterly programs are available to support your project.</p>\r\n<p class=\"\" style=\"font-size: 14px;\">Maintenance programs are one of the most important services we offer to prevent high water bills, broken sprinkler heads, oversprays, pipes, pump damage, valve, or even simply resetting clocks due to any State water regulations.</p>\r\n<p class=\"\" style=\"font-size: 14px;\">Hooper Irrigation has installed over 4,000 new systems and has serviced thousands of systems whether installed by Hooper Irrigation or not. Owner Brad Hooper guarantees his work and is well recognized and recommended in the industry.</p>\r\n<p class=\"\" style=\"font-size: 14px;\">We hope you will allow us the opportunity to help you with all your irrigation needs.</p>\r\n<p class=\"\" style=\"font-size: 14px;\">To learn more about how to sign up for our Maintenace Program.&nbsp; Please contact us today at 239-793-775.&nbsp;&nbsp;</p>\r\n<p class=\"\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" style=\"font-size: 14px;\" href=\"https://naplesirrigation.com/contact-us/\" target=\"_blank\" rel=\"noopener\">Contact Us</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-xs-12 col-sm-12 col-lg-6\">\r\n\r\n[caption id=\"attachment_179\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-179\" title=\"renovation of existing system \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/received_2444269415708471-220x300.jpeg\" alt=\"Renovations of existing system \" width=\"300\" height=\"410\" data-imhwpb-asset-id=\"789476\"> Renovations for a beautiful yard[/caption]\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12 col-lg-1\">\r\n<p class=\"mod-reset\"><img class=\"alignnone wp-image-146 size-thumbnail\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/IMG_20211101_150730-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\"></p>\r\n\r\n<div class=\"\">\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\"></div>\r\n</div>','About Us','','publish','closed','closed','','about-us','','','2022-07-15 19:35:43','2022-07-15 19:35:43','',0,'https://naplesirrigation.com/about-us-2/',0,'page','',0),(106,1,'2022-02-23 19:50:59','2022-02-23 19:50:59',' ','','','publish','closed','closed','','106','','','2022-02-23 19:50:59','2022-02-23 19:50:59','',0,'https://naplesirrigation.com/106/',2,'nav_menu_item','',0),(107,1,'2022-04-07 01:50:59','2022-04-07 01:50:59','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-bottom: 0px; padding-top: 0px;\">\r\n<div class=\"col-md-6 col-xs-12 col-sm-12 col-lg-6\">\r\n<div class=\"image-gallery\">\r\n\r\n[caption id=\"attachment_136\" align=\"alignnone\" width=\"316\"]<img class=\"wp-image-136\" title=\"Owner, Brad Hooper \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/received_462634725313575-222x300.jpeg\" alt=\"Meet Naplesirrigation - Your Yard is only as good as your Sprinkler Guy\" width=\"316\" height=\"427\" data-imhwpb-asset-id=\"780395\"> Brad Hooper. Owner of Naples Irrigation &amp; Hooper Irrigation since 1982. - Your Yard is only as good as your Sprinkler Installer[/caption]\r\n\r\n</div>\r\n<p class=\"\" style=\"font-size: 15px;\">&nbsp; Licensed and Insured&nbsp;&nbsp;</p>\r\n\r\n<h3 class=\"\"><i class=\"fa fa-1x fa-envelope-o\"><!-- icon --></i> Email</h3>\r\n<p class=\"\"><a href=\"mailto:hooperirrigation@gmail.com\">hooperirrigation@gmail.com</a></p>\r\n\r\n<h3 class=\"\"><i class=\"fa fa-1x fa-phone\"><!-- icon --></i> Phone</h3>\r\n<p class=\"\">239-793-7755 or 239-250-5265 (text or call)&nbsp; we strive to call by 7 PM same day</p>\r\n\r\n<h3 class=\"\"><i class=\"fa fa-1x fa-map-marker\"><!-- icon --></i> Address</h3>\r\nPO Box 2857, Naples FL 34106\r\n<p class=\"boldgrid-google-maps\" style=\"width: 100%; height: 200px;\"><iframe style=\"width: 100%; height: 100%;\" src=\"https://maps.google.com/maps?q=PO+Box+2857%2C+Naples+FL+34106&amp;t=m&amp;z=16&amp;output=embed\" frameborder=\"0\"></iframe></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-xs-12 col-sm-12 col-lg-6\">\r\n<div class=\"\">\r\n<p class=\"\">We are here to answer any questions you may have. Reach out to us and we\'ll respond as soon as we can.&nbsp; &nbsp;Feel free to leave your phone number for a callback</p>\r\n<p class=\"\">&nbsp;No charge for system checks/evaluations.&nbsp; &nbsp;&nbsp;</p>\r\n<p class=\"\">Thank You Bradford Hooper&nbsp; Phone: 239-793-7755&nbsp;</p>\r\n[weforms id=\"63\"]\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Contact Us  - Brad Hooper','','publish','closed','closed','','contact-us','','','2022-09-06 17:17:58','2022-09-06 17:17:58','',0,'https://naplesirrigation.com/contact-us/',0,'page','',0),(108,1,'2022-02-23 19:50:59','2022-02-23 19:50:59',' ','','','publish','closed','closed','','108','','','2022-02-23 19:50:59','2022-02-23 19:50:59','',0,'https://naplesirrigation.com/108/',3,'nav_menu_item','',0),(111,1,'2022-02-23 19:51:00','2022-02-23 19:51:00','','coiWR0gT8Cw','','inherit','open','closed','','coiwr0gt8cw','','','2022-02-23 19:51:00','2022-02-23 19:51:00','',105,'https://naplesirrigation.com/wp-content/uploads/2022/02/coiWR0gT8Cw-1-imhwpb-91r89phud3kxfaw.jpg',0,'attachment','image/jpeg',0),(112,1,'2022-02-23 19:51:00','2022-02-23 19:51:00','','','','inherit','open','closed','','112','','','2022-02-23 19:51:00','2022-02-23 19:51:00','',105,'https://naplesirrigation.com/wp-content/uploads/2022/02/f887dd50-ca4a1125-goodluz110900317.jpg',0,'attachment','image/jpeg',0),(113,1,'2022-02-23 19:51:00','2022-02-23 19:51:00','','','','inherit','open','closed','','113','','','2022-02-23 19:51:00','2022-02-23 19:51:00','',105,'https://naplesirrigation.com/wp-content/uploads/2022/02/495e2588-23e4182d-fizkes151200039.jpg',0,'attachment','image/jpeg',0),(114,1,'2022-02-23 19:51:00','2022-02-23 19:51:00','','','','inherit','open','closed','','114','','','2022-02-23 19:51:00','2022-02-23 19:51:00','',105,'https://naplesirrigation.com/wp-content/uploads/2022/02/917f105d-0e9345b2-fizkes150800140.jpg',0,'attachment','image/jpeg',0),(115,1,'2022-02-23 19:51:00','2022-02-23 19:51:00','','','','inherit','open','closed','','115','','','2022-02-23 19:51:00','2022-02-23 19:51:00','',105,'https://naplesirrigation.com/wp-content/uploads/2022/02/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tLy1yV2p5ZE5oQVR3LzYwMHg0NTA_3D-imhwpb-qi6hj44g334fjqc.jpg',0,'attachment','image/jpeg',0),(116,1,'2022-02-23 19:51:00','2022-02-23 19:51:00','','','','inherit','open','closed','','116','','','2022-02-23 19:51:00','2022-02-23 19:51:00','',105,'https://naplesirrigation.com/wp-content/uploads/2022/02/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL19QZFpkVzdmaURjLzYwMHg0NTA_3D-imhwpb-24tawnme8snkr6i.jpg',0,'attachment','image/jpeg',0),(117,1,'2022-02-23 19:51:00','2022-02-23 19:51:00','','','','inherit','open','closed','','117','','','2022-02-23 19:51:00','2022-02-23 19:51:00','',105,'https://naplesirrigation.com/wp-content/uploads/2022/02/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL3ZHUTQ5bDlJNEVFLzYwMHg0NTA_3D-imhwpb-ceho1ljgk9lzazx.jpg',0,'attachment','image/jpeg',0),(118,1,'2022-02-23 19:51:00','2022-02-23 19:51:00','','','','inherit','open','closed','','118','','','2022-02-23 19:51:00','2022-02-23 19:51:00','',107,'https://naplesirrigation.com/wp-content/uploads/2022/02/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL052VjgtcUZVVjRJLzYwMHgzMDA_3D-imhwpb-by6i1wxava2jjv6.jpg',0,'attachment','image/jpeg',0),(119,1,'2022-02-23 19:51:01','2022-02-23 19:51:01','','9hi8ujmsdza','','inherit','open','closed','','9hi8ujmsdza','','','2022-02-23 19:51:01','2022-02-23 19:51:01','',103,'https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_9HI8UJMSdZA-imhwpb-16lt57g6yolmmw5.jpg',0,'attachment','image/jpeg',0),(120,1,'2022-02-23 19:51:01','2022-02-23 19:51:01','','b2-fbvrfx0o','','inherit','open','closed','','b2-fbvrfx0o','','','2022-02-23 19:51:01','2022-02-23 19:51:01','',103,'https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_b2-fBVrfx0o-imhwpb-zba1rzvazi2u1sy.jpg',0,'attachment','image/jpeg',0),(121,1,'2022-02-23 19:51:01','2022-02-23 19:51:01','','xv7k95vofa','','inherit','open','closed','','xv7k95vofa','','','2022-02-23 19:51:01','2022-02-23 19:51:01','',103,'https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_Xv7k95vOFA-imhwpb-5blo5ds381thf3b.jpg',0,'attachment','image/jpeg',0),(122,1,'2022-02-23 19:51:01','2022-02-23 19:51:01','','78t99kbcp_4','','inherit','open','closed','','78t99kbcp_4','','','2022-02-23 19:51:01','2022-02-23 19:51:01','',103,'https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_78T99kbcp_4-imhwpb-zbik273bhi2omad.jpg',0,'attachment','image/jpeg',0),(123,1,'2022-02-23 19:51:01','2022-02-23 19:51:01','','yadcgbslhce','','inherit','open','closed','','yadcgbslhce','','','2022-02-23 19:51:01','2022-02-23 19:51:01','',103,'https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_YadCgbsLHcE-imhwpb-kjakgkqww4nb5j2.jpg',0,'attachment','image/jpeg',0),(124,1,'2022-02-23 19:51:01','2022-02-23 19:51:01','','s_nxt6gx-2a','','inherit','open','closed','','s_nxt6gx-2a','','','2022-02-23 19:51:01','2022-02-23 19:51:01','',103,'https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_s_NxT6Gx-2A-imhwpb-jifkmjomsrquohk.jpg',0,'attachment','image/jpeg',0),(125,1,'2022-02-23 19:51:01','2022-02-23 19:51:01','','4yx0oj7gf8o','','inherit','open','closed','','4yx0oj7gf8o','','','2022-02-23 19:51:01','2022-02-23 19:51:01','',103,'https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_4YX0oj7gf8o-imhwpb-ut5s3lmwf6dg2wc.jpg',0,'attachment','image/jpeg',0),(126,1,'2022-02-23 19:51:01','2022-02-23 19:51:01','','8tn3fldtqbu','','inherit','open','closed','','8tn3fldtqbu','','','2022-02-23 19:51:01','2022-02-23 19:51:01','',103,'https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_8tN3flDTQBU-imhwpb-kxmpsoge3h4672l.jpg',0,'attachment','image/jpeg',0),(127,1,'2022-02-23 19:51:01','2022-02-23 19:51:01','','','','inherit','open','closed','','127','','','2022-02-23 19:51:01','2022-02-23 19:51:01','',103,'https://naplesirrigation.com/wp-content/uploads/2022/02/wedge-fitness-imhwpb-kh917lpg3c92iw1.jpg',0,'attachment','image/jpeg',0),(128,1,'2022-02-23 19:51:02','2022-02-23 19:51:02','\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 42px;\">\r\n<div class=\"col-md-5 col-xs-12 col-sm-12\">\r\n<h1>Four Pillars of Fitness</h1>\r\n<h4>A Well-rounded Program for Well-rounded Results</h4>\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr></div>\r\n</div>\r\n</div>\r\n</div>\r\nOur health and fitness program has been designed to help you develop the four core areas of fitness: cardiovascular exercise, flexibility, nutrition, and strength training. Developing these four core areas can help you improve your health and your physique. Whether you are interested in toning and tightening, worried about weight management, or just want to get into a weekly workout routine, our team of professional fitness experts are here to help.\r\n\r\nWe offer personalized training sessions, group workout classes, and Do-It-Yourself access to top of the line fitness equipment. Our goal is to help you achieve the healthy physique that is best suited to your personal goals and lifestyle. We offer a dedicated, professional, and friendly environment that is designed to support your every need.\r\n\r\nTo learn more about how you can join today we invite you to contact us today. We look forward to helping you start your fitness journey.\r\n<p class=\"\"><a class=\"button-primary\" href=\"#\">Contact Us</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n<p class=\"mod-img\"><img class=\"aligncenter size-full wp-image-111\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/coiWR0gT8Cw-1-imhwpb-91r89phud3kxfaw.jpg\" height=\"600\" width=\"600\" data-imhwpb-asset-id=\"789476\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\">\r\n<p class=\"mod-img\"><img src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/f887dd50-ca4a1125-goodluz110900317-200x200.jpg\" alt=\"\" data-imhwpb-built-photo-search=\"68|any\" width=\"200\" class=\"wp-image-112\"></p>\r\n<p class=\"mod-img\"><img src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/495e2588-23e4182d-fizkes151200039-200x200.jpg\" alt=\"\" data-imhwpb-built-photo-search=\"68|any\" width=\"200\" class=\"wp-image-113\"></p>\r\n<p class=\"mod-img\"><img src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/917f105d-0e9345b2-fizkes150800140-200x200.jpg\" alt=\"\" data-imhwpb-built-photo-search=\"68|any\" width=\"200\" class=\"wp-image-114\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-12\">\r\n<p class=\"mod-img\"><img class=\"aligncenter size-full wp-image-115\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tLy1yV2p5ZE5oQVR3LzYwMHg0NTA_3D-imhwpb-qi6hj44g334fjqc.jpg\" alt=\"\" data-imhwpb-asset-id=\"780386\" height=\"450\" width=\"600\"></p>\r\n\r\n<h2 style=\"text-align: center;\">Dedication to Fitness</h2>\r\nWe are dedicated to everything fitness! From cardiovascular to medicine balls to resistance training, we offer a wide-variety of services and equipment that are designed to help you reach your fitness goals.\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12\">\r\n<p class=\"mod-img\"><img class=\"aligncenter size-full wp-image-116\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL19QZFpkVzdmaURjLzYwMHg0NTA_3D-imhwpb-24tawnme8snkr6i.jpg\" alt=\"\" data-imhwpb-asset-id=\"780387\" height=\"450\" width=\"600\"></p>\r\n\r\n<h2 style=\"text-align: center;\">Personal Training</h2>\r\nDo you need help staying motivated and reaching your fitness goals? Check out our personal training services. We will design a customized program to help you on your fitness journey.\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12\">\r\n<p class=\"mod-img\"><img class=\"aligncenter size-full wp-image-117\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL3ZHUTQ5bDlJNEVFLzYwMHg0NTA_3D-imhwpb-ceho1ljgk9lzazx.jpg\" alt=\"\" data-imhwpb-asset-id=\"780388\" height=\"450\" width=\"600\"></p>\r\n\r\n<h2 style=\"text-align: center;\">Helping Customers Focus on Health</h2>\r\nOur services are designed to help our customers focus on health. Whether you are worried about weight management or simply want to learn more about the effects of a healthy diet and fitness regime, we can help you to achieve a balanced lifestyle.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n\n\n','About Us','','inherit','closed','closed','','105-revision-v1','','','2022-02-23 19:51:02','2022-02-23 19:51:02','',105,'https://naplesirrigation.com/?p=128',0,'revision','',0),(129,1,'2022-02-23 19:51:02','2022-02-23 19:51:02','\n<div class=\"boldgrid-section\">\n<div class=\"container\">\n<div class=\"row\">\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\n<div class=\"image-gallery\">\n<p class=\"mod-reset\"><img class=\"alignnone size-full wp-image-118\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL052VjgtcUZVVjRJLzYwMHgzMDA_3D-imhwpb-by6i1wxava2jjv6.jpg\" alt=\"\" width=\"600\" height=\"300\" data-imhwpb-asset-id=\"780395\"></p>\n\n</div>\nOur Office is located at the intersection of Grid Blvd. and Bold Way. If you have trouble finding us, please contact us for more information and hours.\n\n<h3><i class=\"fa fa-1x fa-envelope-o\"><!-- icon --></i> Email</h3>\n<p><a href=\"mailto:hooperirrigation@gmail.com\">hooperirrigation@gmail.com</a></p>\n\n<h3><i class=\"fa fa-1x fa-phone\"><!-- icon --></i> Phone</h3>\n<p>239-793-7755 or 239-250-5265</p>\n\n<h3><i class=\"fa fa-1x fa-map-marker\"><!-- icon --></i> Address</h3>\n<p>PO Box 2857, Naples FL 34106</p>\n<p class=\"boldgrid-google-maps\" style=\"width:100%;height:200px;\"><iframe style=\"width:100%;height:100%;\" src=\"https://maps.google.com/maps?q=PO+Box+2857%2C+Naples+FL+34106&amp;t=m&amp;z=16&amp;output=embed\" frameborder=\"0\"></iframe></p>\n\n</div>\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\n<h3>Get in Touch</h3>\nWe are here to answer any questions you may have. Reach out to us and we\'ll respond as soon as we can.\n\n[weforms id=\"63\"]\n\n</div>\n</div>\n</div>\n</div>\n\n','Contact Us','','inherit','closed','closed','','107-revision-v1','','','2022-02-23 19:51:02','2022-02-23 19:51:02','',107,'https://naplesirrigation.com/?p=129',0,'revision','',0),(174,1,'2022-03-01 03:56:20','2022-03-01 03:56:20','<div class=\"boldgrid-section\" style=\"color: #000000; background-image: url(\'https://source.unsplash.com/MqJX_8EaStM/1920x1080\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"1175055\" data-image-url=\"https://source.unsplash.com/MqJX_8EaStM/1920x1080\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 120px; padding-bottom: 140px;\">\r\n<div class=\"col-md-7 col-sm-4 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\"><img class=\"wp-image-164 \" style=\"font-weight: bold;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/20210313_120212-300x225.jpg\" alt=\"\" width=\"683\" height=\"512\"></p>\r\n\r\nYour yard is only as lovely as your Sprinkler System Guy&nbsp;</div>\r\n</div>\r\n<div class=\"col-md-5 col-sm-8 col-xs-12 wedge-cta\" custom-classes=\"wedge-cta\">\r\n<h2 class=\"\">NAPLES IRRIGATION lET US BRING YOUR YARD BACK TO LIFE</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-16\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\" style=\"margin-top: 20px; margin-bottom: 30px;\">&nbsp;</p>\r\n<p class=\"\"><a class=\"button-secondary btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1\" href=\"https://naplesirrigation.com/\">CONTACT US TODAY</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color3-background-color color-3-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-12\">\r\n<h2 class=\"\" style=\"text-align: center;\">See What We Can Offer</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-2 color1-color\" style=\"width: 65%;\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 90px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-4\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-1 aligncenter wp-image-143 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/received_1072950093527088-222x300.jpeg\" alt=\"\" width=\"192\" height=\"259\" data-imhwpb-asset-id=\"695399\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Renovation</h3>\r\n<p class=\"\">If you want to experience the benefits of a customized Renovation our team is experienced 40 years in Naples&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-xs-12 col-sm-6 col-md-4\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-1 aligncenter wp-image-135 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/20201221_152806-300x225.jpg\" alt=\"\" width=\"338\" height=\"253\" data-imhwpb-asset-id=\"695400\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Design &amp; Monthly Maintenance&nbsp;</h3>\r\n<p class=\"\">Fully licensed and insured.&nbsp; We take pride in our work and are deemed the best in Naples.&nbsp;&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-xs-12 col-sm-6 col-md-4\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-1 aligncenter wp-image-149 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/20201217_155729-225x300.jpg\" alt=\"\" width=\"195\" height=\"260\" data-imhwpb-asset-id=\"695401\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Springkler Repair</h3>\r\n<p class=\"\">New Pumps, Time Clocks, Sprinkler heads, adjustments, and testing we will make your yard beautiful.&nbsp;&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color2-background-color color-2-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-12\">\r\n<h2 class=\"\" style=\"text-align: center;\">Customer Testimonials</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-2 color1-color\" style=\"width: 65%;\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 40px;\">\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-123\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_YadCgbsLHcE-imhwpb-kjakgkqww4nb5j2.jpg\" alt=\"\" width=\"150\" height=\"150\" data-imhwpb-asset-id=\"695402\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\"><strong>Derek Jamison</strong></p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">\"</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-124\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_s_NxT6Gx-2A-imhwpb-jifkmjomsrquohk.jpg\" alt=\"\" width=\"150\" height=\"150\" data-imhwpb-asset-id=\"695403\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\"><strong>Caroline Keller</strong></p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">\"</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-125\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_4YX0oj7gf8o-imhwpb-ut5s3lmwf6dg2wc.jpg\" alt=\"\" width=\"150\" height=\"150\" data-imhwpb-asset-id=\"695404\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\"><strong>Janet Clarke</strong></p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-126\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_8tN3flDTQBU-imhwpb-kxmpsoge3h4672l.jpg\" alt=\"\" width=\"150\" height=\"150\" data-imhwpb-asset-id=\"695405\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\"><strong>Matt Davis</strong></p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Home','','inherit','closed','closed','','103-revision-v1','','','2022-03-01 03:56:20','2022-03-01 03:56:20','',103,'https://naplesirrigation.com/?p=174',0,'revision','',0),(173,1,'2022-03-01 03:26:27','2022-03-01 03:26:27','<div class=\"boldgrid-section\" style=\"color: #000000;\" data-imhwpb-asset-id=\"1175055\">\n<div class=\"container\">\n<div class=\"row\" style=\"padding-top: 120px; padding-bottom: 140px;\">\n<div class=\"col-md-7 col-sm-4 col-xs-12\">\n<p class=\"\">&nbsp;</p>\n\n\n[caption id=\"attachment_164\" align=\"alignright\" width=\"376\"]<img class=\"wp-image-164 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/20210313_120212-300x225.jpg\" alt=\"\" width=\"376\" height=\"282\"> Your yard is only as lovely as your sprinkler S[/caption]\n\n</div>\n<div class=\"col-md-5 col-sm-8 col-xs-12 wedge-cta\" custom-classes=\"wedge-cta\">\n<h2 class=\"\">NAPLES IRRIGATION&nbsp;</h2>\n<div class=\"row bg-editor-hr-wrap\">\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\n<div>\n<div class=\"bg-hr bg-hr-16\"></div>\n</div>\n</div>\n</div>\n<p class=\"\" style=\"margin-top: 20px; margin-bottom: 30px;\">Welcome to our full-service&nbsp; . When you sign-up, you will be introduced to a personalized trainer, a nutritionist, and a motivational coach. Achieving fitness goals is about more than losing weight and toning your physique. It is about finding a good balance in life.</p>\n<p class=\"\"><a class=\"button-secondary btn btn-color-2 btn btn-border-color-1\" href=\"contact-us\">CONTACT US TODAY</a></p>\n\n</div>\n</div>\n</div>\n</div>\n<div class=\"boldgrid-section\">\n<div class=\"container\">\n<div class=\"row\" style=\"padding-bottom: 90px; padding-top: 90px;\">\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\n<div class=\"row\">\n<div class=\"col-xs-12 col-sm-6 col-md-6\">\n<div>\n<h2 class=\"\">About Our Company</h2>\n<div class=\"row bg-editor-hr-wrap\">\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\n<div class=\"bg-hr bg-hr-2 color1-color\"></div>\n</div>\n</div>\n</div>\n</div>\n</div>\n<div class=\"row\" style=\"padding-top: 25px;\">\n<div class=\"col-xs-12 col-sm-6 col-md-6\">\n<p class=\"\">For anyone who simply wants to workout on top of the line fitness equipment, our full-service fitness center is for you. Free weights, ellipticals, bikes, treadmills, and a multitude of other workout equipment are waiting for you.</p>\n\n</div>\n<div class=\"col-xs-12 col-sm-6 col-md-6\">\n<div>\n<p class=\"\">From continuing education classes, to learning the art of personalized training tactics, our entire staff is ready to help you meet and exceed your fitness goals. It is our firm belief that fitness goals can be used to help people achieve a healthier, more balanced life.</p>\n\n</div>\n</div>\n</div>\n</div>\n<div class=\"col-md-1 col-xs-12 col-sm-12\"></div>\n<div class=\"col-md-5 col-xs-12 col-sm-12 align-column-center\">\n<p class=\"mod-img\"><img class=\"size-full aligncenter bg-img bg-img-1 wp-image-119\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_9HI8UJMSdZA-imhwpb-16lt57g6yolmmw5.jpg\" alt=\"\" width=\"600\" height=\"300\" data-imhwpb-asset-id=\"695398\"></p>\n\n</div>\n</div>\n</div>\n</div>\n<div class=\"boldgrid-section color3-background-color color-3-text-contrast bg-background-color\">\n<div class=\"container\">\n<div class=\"row\" style=\"padding-top: 80px;\">\n<div class=\"col-xs-12 col-sm-12 col-md-12\">\n<h2 class=\"\" style=\"text-align: center;\">See What We Can Offer</h2>\n<div class=\"row bg-editor-hr-wrap\">\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\n<div>\n<div class=\"bg-hr bg-hr-2 color1-color\" style=\"width: 65%;\"></div>\n</div>\n</div>\n</div>\n</div>\n</div>\n<div class=\"row\" style=\"padding-bottom: 90px;\">\n<div class=\"col-xs-12 col-sm-12 col-md-4\">\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"size-full aligncenter bg-img bg-img-1 wp-image-120\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_b2-fBVrfx0o-imhwpb-zba1rzvazi2u1sy.jpg\" alt=\"\" width=\"400\" height=\"300\" data-imhwpb-asset-id=\"695399\"></p>\n\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Personalized Training Classes</h3>\n<p class=\"\">If you want to experience the benefits of a customized workout program that focuses on your core areas, then try one of our personalized training classes. You’ll be hooked in five minutes!</p>\n\n</div>\n<div class=\"col-xs-12 col-sm-6 col-md-4\">\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"size-full aligncenter bg-img bg-img-1 wp-image-121\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_Xv7k95vOFA-imhwpb-5blo5ds381thf3b.jpg\" alt=\"\" width=\"400\" height=\"300\" data-imhwpb-asset-id=\"695400\"></p>\n\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Group Workout Classes</h3>\n<p class=\"\">Sometimes we all need a little motivation to make it to the gym every week. These group workout classes will get you pumped (literally) for the gym!</p>\n\n</div>\n<div class=\"col-xs-12 col-sm-6 col-md-4\">\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"size-full aligncenter bg-img bg-img-1 wp-image-122\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_78T99kbcp_4-imhwpb-zbik273bhi2omad.jpg\" alt=\"\" width=\"400\" height=\"300\" data-imhwpb-asset-id=\"695401\"></p>\n\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Yoga &amp; Health Wellness Classes</h3>\n<p class=\"\">Achieving a better physique is about more than simply shedding the pounds and improving muscle tones. Our yoga and health wellness classes will help you to focus on both your mental and physical well-being.</p>\n\n</div>\n</div>\n</div>\n</div>\n<div class=\"boldgrid-section color2-background-color color-2-text-contrast bg-background-color\">\n<div class=\"container\">\n<div class=\"row\" style=\"padding-top: 80px;\">\n<div class=\"col-xs-12 col-sm-12 col-md-12\">\n<h2 class=\"\" style=\"text-align: center;\">Customer Testimonials</h2>\n<div class=\"row bg-editor-hr-wrap\">\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\n<div>\n<div class=\"bg-hr bg-hr-2 color1-color\" style=\"width: 65%;\"></div>\n</div>\n</div>\n</div>\n</div>\n</div>\n<div class=\"row\" style=\"padding-bottom: 40px;\">\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\n<div class=\"\">\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-123\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_YadCgbsLHcE-imhwpb-kjakgkqww4nb5j2.jpg\" alt=\"\" width=\"150\" height=\"150\" data-imhwpb-asset-id=\"695402\"></p>\n<p class=\"h5\" style=\"text-align: center;\"><strong>Derek Jamison</strong></p>\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\n\n<div class=\"row\">\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\n<p class=\"\">\"The fitness-center is the best that I’ve ever seen. After a great workout I can head to the steam showers to give my muscles the relaxation that they need.\"</p>\n\n</div>\n</div>\n</div>\n</div>\n</div>\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\n<div class=\"\">\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-124\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_s_NxT6Gx-2A-imhwpb-jifkmjomsrquohk.jpg\" alt=\"\" width=\"150\" height=\"150\" data-imhwpb-asset-id=\"695403\"></p>\n<p class=\"h5\" style=\"text-align: center;\"><strong>Caroline Keller</strong></p>\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\n\n<div class=\"row\">\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\n<p class=\"\">\"I was nervous about getting ready for my wedding day. I wanted to lose weight and was yo-yo dieting. The yoga classes really helped me find my Zen and lose the weight.\"</p>\n\n</div>\n</div>\n</div>\n</div>\n</div>\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\n<div class=\"\">\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-125\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_4YX0oj7gf8o-imhwpb-ut5s3lmwf6dg2wc.jpg\" alt=\"\" width=\"150\" height=\"150\" data-imhwpb-asset-id=\"695404\"></p>\n<p class=\"h5\" style=\"text-align: center;\"><strong>Janet Clarke</strong></p>\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\n\n<div class=\"row\">\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\n<p class=\"\">\"My husband and I actually like coming to the gym… together! And it’s all thanks to the group fitness classes.\"</p>\n\n</div>\n</div>\n</div>\n</div>\n</div>\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\n<div class=\"\">\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-126\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_8tN3flDTQBU-imhwpb-kxmpsoge3h4672l.jpg\" alt=\"\" width=\"150\" height=\"150\" data-imhwpb-asset-id=\"695405\"></p>\n<p class=\"h5\" style=\"text-align: center;\"><strong>Matt Davis</strong></p>\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\n\n<div class=\"row\">\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\n<p class=\"\">\"The staff is incredibly friendly. The trainers are amazing. Thanks for giving me the body I’ve always wanted.\"</p>\n\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>','Home','','inherit','closed','closed','','103-revision-v1','','','2022-03-01 03:26:27','2022-03-01 03:26:27','',103,'https://naplesirrigation.com/?p=173',0,'revision','',0),(130,1,'2022-02-23 19:51:02','2022-02-23 19:51:02','\n<div class=\"boldgrid-section\" style=\"color: #000; background-image: url(\'https://naplesirrigation.com/wp-content/uploads/2022/02/wedge-fitness-imhwpb-kh917lpg3c92iw1.jpg\'); background-size: cover; background-position: 50% 70%;\" data-image-url=\"https://naplesirrigation.com/wp-content/uploads/2022/02/wedge-fitness-imhwpb-kh917lpg3c92iw1.jpg\" data-imhwpb-asset-id=\"1175055\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 120px; padding-bottom: 140px;\">\r\n<div class=\"col-md-7 col-sm-4 col-xs-12\"></div>\r\n<div class=\"col-md-5 col-sm-8 col-xs-12 wedge-cta\" custom-classes=\"wedge-cta\">\r\n<h2 class=\"\">Let Us Expand Your Horizons</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-16\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\" style=\"margin-top: 20px; margin-bottom: 30px;\">Welcome to our full-service fitness center that focuses on more than just your body. When you sign-up, you will be introduced to a personalized trainer, a nutritionist, and a motivational coach. Achieving fitness goals is about more than losing weight and toning your physique. It is about finding a good balance in life.</p>\r\n<p class=\"\"><a class=\"button-secondary\" href=\"contact-us\">CONTACT US TODAY</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-bottom: 90px; padding-top: 90px;\">\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n<div class=\"row\">\r\n<div class=\"col-xs-12 col-sm-6 col-md-6\">\r\n<div>\r\n<h2 class=\"\">About Our Company</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"bg-hr bg-hr-2 color1-color\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-top: 25px;\">\r\n<div class=\"col-xs-12 col-sm-6 col-md-6\">\r\n<p class=\"\">For anyone who simply wants to workout on top of the line fitness equipment, our full-service fitness center is for you. Free weights, ellipticals, bikes, treadmills, and a multitude of other workout equipment are waiting for you.</p>\r\n\r\n</div>\r\n<div class=\"col-xs-12 col-sm-6 col-md-6\">\r\n<div>\r\n<p class=\"\">From continuing education classes, to learning the art of personalized training tactics, our entire staff is ready to help you meet and exceed your fitness goals. It is our firm belief that fitness goals can be used to help people achieve a healthier, more balanced life.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-1 col-xs-12 col-sm-12\"></div>\r\n<div class=\"col-md-5 col-xs-12 col-sm-12 align-column-center\">\r\n<p class=\"mod-img\"><img class=\"size-full aligncenter bg-img bg-img-1 wp-image-119\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_9HI8UJMSdZA-imhwpb-16lt57g6yolmmw5.jpg\" alt=\"\" data-imhwpb-asset-id=\"695398\" width=\"600\" height=\"300\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color3-background-color color-3-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-12\">\r\n<h2 class=\"\" style=\"text-align: center;\">See What We Can Offer</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-2 color1-color\" style=\"width: 65%;\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 90px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-4\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"size-full aligncenter bg-img bg-img-1 wp-image-120\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_b2-fBVrfx0o-imhwpb-zba1rzvazi2u1sy.jpg\" alt=\"\" data-imhwpb-asset-id=\"695399\" width=\"400\" height=\"300\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Personalized Training Classes</h3>\r\n<p class=\"\">If you want to experience the benefits of a customized workout program that focuses on your core areas, then try one of our personalized training classes. You&rsquo;ll be hooked in five minutes!</p>\r\n\r\n</div>\r\n<div class=\"col-xs-12 col-sm-6 col-md-4\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"size-full aligncenter bg-img bg-img-1 wp-image-121\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_Xv7k95vOFA-imhwpb-5blo5ds381thf3b.jpg\" alt=\"\" data-imhwpb-asset-id=\"695400\" width=\"400\" height=\"300\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Group Workout Classes</h3>\r\n<p class=\"\">Sometimes we all need a little motivation to make it to the gym every week. These group workout classes will get you pumped (literally) for the gym!</p>\r\n\r\n</div>\r\n<div class=\"col-xs-12 col-sm-6 col-md-4\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"size-full aligncenter bg-img bg-img-1 wp-image-122\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_78T99kbcp_4-imhwpb-zbik273bhi2omad.jpg\" alt=\"\" data-imhwpb-asset-id=\"695401\" width=\"400\" height=\"300\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Yoga &amp; Health Wellness Classes</h3>\r\n<p class=\"\">Achieving a better physique is about more than simply shedding the pounds and improving muscle tones. Our yoga and health wellness classes will help you to focus on both your mental and physical well-being.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color2-background-color color-2-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-12\">\r\n<h2 class=\"\" style=\"text-align: center;\">Customer Testimonials</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-2 color1-color\" style=\"width: 65%;\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 40px;\">\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-123\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_YadCgbsLHcE-imhwpb-kjakgkqww4nb5j2.jpg\" alt=\"\" data-imhwpb-asset-id=\"695402\" width=\"150\" height=\"150\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\"><strong>Derek Jamison</strong></p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">\"The fitness-center is the best that I&rsquo;ve ever seen. After a great workout I can head to the steam showers to give my muscles the relaxation that they need.\"</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-124\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_s_NxT6Gx-2A-imhwpb-jifkmjomsrquohk.jpg\" alt=\"\" data-imhwpb-asset-id=\"695403\" width=\"150\" height=\"150\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\"><strong>Caroline Keller</strong></p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">\"I was nervous about getting ready for my wedding day. I wanted to lose weight and was yo-yo dieting. The yoga classes really helped me find my Zen and lose the weight.\"</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-125\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_4YX0oj7gf8o-imhwpb-ut5s3lmwf6dg2wc.jpg\" alt=\"\" data-imhwpb-asset-id=\"695404\" width=\"150\" height=\"150\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\"><strong>Janet Clarke</strong></p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">\"My husband and I actually like coming to the gym&hellip; together! And it&rsquo;s all thanks to the group fitness classes.\"</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-126\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_8tN3flDTQBU-imhwpb-kxmpsoge3h4672l.jpg\" alt=\"\" data-imhwpb-asset-id=\"695405\" width=\"150\" height=\"150\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\"><strong>Matt Davis</strong></p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">\"The staff is incredibly friendly. The trainers are amazing. Thanks for giving me the body I&rsquo;ve always wanted.\"</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\n\n\n','Home','','inherit','closed','closed','','103-revision-v1','','','2022-02-23 19:51:02','2022-02-23 19:51:02','',103,'https://naplesirrigation.com/?p=130',0,'revision','',0),(131,1,'2022-02-28 21:07:14','0000-00-00 00:00:00','','Block Preview Page','','draft','closed','closed','','','','','2022-02-28 21:07:14','2022-02-28 21:07:14','',0,'https://naplesirrigation.com/?page_id=131',0,'page','',0),(134,1,'2022-04-07 21:10:27','2022-04-07 21:10:27','<div class=\"boldgrid-section\">\n<div class=\"container\">\n<div class=\"row\" style=\"padding-bottom: 0px; padding-top: 0px;\">\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\n<div class=\"image-gallery\">\n\n[caption id=\"attachment_136\" align=\"alignnone\" width=\"316\"]<img class=\"wp-image-136\" title=\"Owner, Brad Hooper \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/received_462634725313575-222x300.jpeg\" alt=\"Meet Naplesirrigation - Your Yard is only as good as your Sprinkler Guy\" width=\"316\" height=\"427\" data-imhwpb-asset-id=\"780395\"> Brad Hooper. Owner of Naples Irrigation &amp; Hooper Irrigation since 1982. - Your Yard is only as good as your Sprinkler Installer[/caption]\n\n</div>\n<p class=\"\" style=\"font-size: 15px;\">&nbsp; Licensed and Insured&nbsp;&nbsp;</p>\n\n<h3 class=\"\"><i class=\"fa fa-1x fa-envelope-o\"><!-- icon --></i> Email</h3>\n<p class=\"\"><a href=\"mailto:hooperirrigation@gmail.com\">hooperirrigation@gmail.com</a></p>\n\n<h3 class=\"\"><i class=\"fa fa-1x fa-phone\"><!-- icon --></i> Phone</h3>\n<p class=\"\">239-793-7755 or 239-250-5265 (text or call)&nbsp; we strive to call by 7 PM same day</p>\n\n<h3 class=\"\"><i class=\"fa fa-1x fa-map-marker\"><!-- icon --></i> Address</h3>\nPO Box 2857, Naples FL 34106\n<p class=\"boldgrid-google-maps\" style=\"width: 100%; height: 200px;\"><iframe style=\"width: 100%; height: 100%;\" src=\"https://maps.google.com/maps?q=PO+Box+2857%2C+Naples+FL+34106&amp;t=m&amp;z=16&amp;output=embed\" frameborder=\"0\"></iframe></p>\n\n</div>\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\n<div class=\"\">\n<h3 class=\"\">Get in Touch[weforms id=\"241\"]</h3>\n<p class=\"\">We are here to answer any questions you may have. Reach out to us and we\'ll respond as soon as we can.&nbsp; &nbsp;Feel free to leave your phone number for a callback</p>\n<p class=\"\">&nbsp;No charge for system checks/evaluations.&nbsp; &nbsp;&nbsp;</p>\n<p class=\"\">Thank You Bradford Hooper&nbsp; Phone: 239-793-7755&nbsp;</p>\n<p class=\"\">[weforms id=\"63\"]</p>\n\n</div>\n</div>\n</div>\n</div>\n</div>','Contact Us Naples Irrigation - Brad Hooper','','inherit','closed','closed','','107-autosave-v1','','','2022-04-07 21:10:27','2022-04-07 21:10:27','',107,'https://naplesirrigation.com/?p=134',0,'revision','',0),(135,1,'2022-02-28 19:40:28','2022-02-28 19:40:28','Irrigation Maintenance Services taking care of your yard ','20201221_152806','','inherit','open','closed','','20201221_152806','','','2022-04-13 15:46:20','2022-04-13 15:46:20','',107,'https://naplesirrigation.com/wp-content/uploads/2022/02/20201221_152806.jpg',0,'attachment','image/jpeg',0),(136,1,'2022-02-28 19:43:10','2022-02-28 19:43:10','Call us today for your free sprinkler system check.    ','received_462634725313575','Brad Hooper . Owner of Naples Irrigation & Hooper Irrigation since 1989 .  ','inherit','open','closed','','received_462634725313575','','','2022-02-28 19:46:01','2022-02-28 19:46:01','',107,'https://naplesirrigation.com/wp-content/uploads/2022/02/received_462634725313575.jpeg',0,'attachment','image/jpeg',0),(138,1,'2022-02-28 20:01:37','2022-02-28 20:01:37','','20210313_120201','','inherit','open','closed','','20210313_120201','','','2022-02-28 20:02:51','2022-02-28 20:02:51','',103,'https://naplesirrigation.com/wp-content/uploads/2022/02/20210313_120201.jpg',0,'attachment','image/jpeg',0),(274,1,'2022-04-13 15:49:40','2022-04-13 15:49:40','<div class=\"boldgrid-section\" style=\"color: #000000; background-image: url(\'https://source.unsplash.com/MqJX_8EaStM/1920x1080\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"1175055\" data-image-url=\"https://source.unsplash.com/MqJX_8EaStM/1920x1080\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 120px; padding-bottom: 140px;\">\r\n<div class=\"col-md-7 col-sm-4 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\"><img class=\"wp-image-186 alignnone\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/cropped-20210313_120201-scaled-1-e1649096217790.jpg\" alt=\"Perfect Irrigation System\" width=\"667\" height=\"500\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-5 col-sm-8 col-xs-12 wedge-cta\" custom-classes=\"wedge-cta\">\r\n<h2 class=\"\">NAPLES IRRIGATION lET US BRING YOUR YARD BACK TO LIFE</h2>\r\n<p class=\"\">BEST LAWN&nbsp; SPRINKLER REPAIR, MAINTENANCE , DESIGN&nbsp; SYSTEM&nbsp;</p>\r\n\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-16\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\"><a class=\"button-secondary btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1\" href=\"https://naplesirrigation.com/contact-us/\">CONTACT US TODAY</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color3-background-color color-3-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-12\">\r\n<h2 class=\"\" style=\"text-align: center;\">See What We Can Offer</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-2 color1-color\" style=\"width: 65%;\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 90px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-4\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-1 aligncenter wp-image-143 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/received_1072950093527088-222x300.jpeg\" alt=\"\" width=\"192\" height=\"259\" data-imhwpb-asset-id=\"695399\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Sprinkler Repair</h3>\r\n<p class=\"\">Sprinkler repair|irrigation pumps, clocks, valves manifolds and heads</p>\r\n\r\n</div>\r\n<div class=\"col-xs-12 col-sm-6 col-md-4\">\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Design &amp;</h3>\r\n<img class=\"bg-img bg-img-1 alignnone wp-image-135 size-medium\" style=\"color: #333333;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/20201221_152806-300x225.jpg\" alt=\"Maintenance irrigation programs \" width=\"300\" height=\"225\" data-imhwpb-asset-id=\"695400\">\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">&nbsp;Monthly Maintenance&nbsp;</h3>\r\n<p class=\"\">Fully licensed and insured.&nbsp; We take pride in our work and are deemed the best in Naples.&nbsp; &nbsp;Maintenance reduces costly mishaps</p>\r\n\r\n</div>\r\n<div class=\"col-xs-12 col-sm-6 col-md-4\">\r\n<p class=\"\"><img class=\"bg-img bg-img-1 wp-image-273 size-medium aligncenter\" title=\"Renovation irrigation services \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/IMG_20220128_155353-225x300.jpg\" alt=\"Renovation \" width=\"225\" height=\"300\" data-imhwpb-asset-id=\"695401\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Renovation</h3>\r\n<p class=\"\">If you want to experience the benefits of a customized Renovation our team is experienced 40 years in Naple&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color2-background-color color-2-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-12\">\r\n<h2 class=\"\" style=\"text-align: center;\">Customer Testimonials</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-2 color1-color\" style=\"width: 65%;\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 40px;\">\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle alignnone wp-image-177 \" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/pumpirigationsupply-300x225.jpg\" alt=\"\" width=\"216\" height=\"162\" data-imhwpb-asset-id=\"695402\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\"><strong>Pump SUPPLY HOUSE of Naples</strong></p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Visit us today, highly recommend as one of our strongest customers in the industry today\"</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-156 \" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/282_127_486_486_20201221_153238-768x1024.jpg\" alt=\"\" width=\"179\" height=\"179\" data-imhwpb-asset-id=\"695403\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\">Engle Denistry</p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Brad Engle recommends Brad Hooper to his customers\" Best in Naples&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-125\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_4YX0oj7gf8o-imhwpb-ut5s3lmwf6dg2wc.jpg\" alt=\"\" width=\"150\" height=\"150\" data-imhwpb-asset-id=\"695404\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\"><strong>Direct Industrial Supply</strong></p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Brad Hooper of Naples Irrigation and Hooper Irrigation is one of our best maintenance Sprinkler designers and Installer. Highly recommend his services.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-126\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_8tN3flDTQBU-imhwpb-kxmpsoge3h4672l.jpg\" alt=\"\" width=\"169\" height=\"169\" data-imhwpb-asset-id=\"695405\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\">&nbsp;</p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Brad Hooper is one of the best-known sprinkler companies I know highly sought out.&nbsp; Our renovations have never looked better.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Welcome','','inherit','closed','closed','','103-revision-v1','','','2022-04-13 15:49:40','2022-04-13 15:49:40','',103,'https://naplesirrigation.com/?p=274',0,'revision','',0),(139,1,'2025-01-27 18:29:42','2025-01-27 18:29:42','<div class=\"boldgrid-section\" style=\"color: #000000; background-image: url(\'https://source.unsplash.com/MqJX_8EaStM/1920x1080\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"1175055\" data-image-url=\"https://source.unsplash.com/MqJX_8EaStM/1920x1080\">\n<div class=\"container\">\n<div class=\"row\" style=\"padding-top: 120px; padding-bottom: 140px;\">\n<div class=\"col-md-7 col-sm-4 col-xs-12 col-lg-7\">\n<div class=\"\">\n\n&nbsp;\n\n&nbsp;\n<p class=\"\"><img class=\"wp-image-186 alignnone\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/cropped-20210313_120201-scaled-1-e1649096217790.jpg\" alt=\"Perfect Irrigation System\" width=\"667\" height=\"500\"></p>\n\n</div>\n</div>\n<div class=\"col-md-5 col-sm-8 col-xs-12 wedge-cta col-lg-5\" custom-classes=\"wedge-cta\">\n<h2 class=\"\">NAPLES IRRIGATION, d/ba/Hooper IrrigaTIon, LLC</h2>\n<h2 class=\"\">lET US BRING YOUR YARD BACK TO LIFE</h2>\n<p class=\"\" style=\"font-size: 14px;\">BEST LAWN SPRINKLER REPAIR, MAINTENANCE, DESIGN SYSTEMS&nbsp;</p>\n\n<div class=\"row bg-editor-hr-wrap\">\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\">\n<div>\n<div class=\"bg-hr bg-hr-16\"></div>\n</div>\n</div>\n</div>\n<p class=\"\"><a class=\"button-secondary btn btn-color-2 btn btn-border-color-1\" href=\"https://naplesirrigation.com/contact-us/\">CONTACT US TODAY</a></p>\n\n</div>\n</div>\n</div>\n</div>\n<div class=\"boldgrid-section color3-background-color color-3-text-contrast bg-background-color\">\n<div class=\"container\">\n<div class=\"row\" style=\"padding-top: 80px;\">\n<div class=\"col-xs-12 col-sm-12 col-md-12 col-lg-12\">\n<h2 class=\"\" style=\"text-align: center; font-size: 21px;\">Naples Irrigation d/b/a Hooper Irrigation is owned and operated by Brad Hooper who is a fully licensed and insured Irrigation expert in the Naples area for 40 years.</h2>\n<h2 class=\"\" style=\"text-align: center; font-size: 21px;\">What we offer to all our Customers:</h2>\n<h2 class=\"\" style=\"text-align: center; font-size: 21px;\">Innovative Designs to ensure the best irrigation system is installed for your individual yard or business and price range.</h2>\n<h2 class=\"\" style=\"text-align: center; font-size: 21px;\">Repair and Maintenance of all components including irrigation pumps, timers (clocks), valves, manifolds, and sprinkler heads. We suggest monthly maintenance to prevent any mishaps or issues but can offer a flexible schedule based on your needs.</h2>\n<h2 class=\"\" style=\"text-align: center; font-size: 21px;\">Renovation of existing irrigation systems that may be outdated, broken or damaged.</h2>\n<h2 class=\"\" style=\"text-align: center;\">See What We Can Offer</h2>\n<div class=\"row bg-editor-hr-wrap\">\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\">\n<div>\n<div class=\"bg-hr bg-hr-2 color1-color\" style=\"width: 65%;\"></div>\n</div>\n</div>\n</div>\n</div>\n</div>\n<div class=\"row\" style=\"padding-bottom: 90px;\">\n<div class=\"col-xs-12 col-sm-12 col-md-4 col-lg-4\">\n<p class=\"\"><img class=\"bg-img bg-img-1 wp-image-273 aligncenter\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/IMG_20220128_155353-225x300.jpg\" alt=\"Renovation\" width=\"226\" height=\"301\" data-imhwpb-asset-id=\"695399\"></p>\n<p class=\"\">&nbsp;</p>\n&nbsp;\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Sprinkler Repair</h3>\n<p class=\"\" style=\"font-size: 14px;\">Sprinkler repair Iirrigation pumps, clocks, valves manifolds and heads</p>\n\n</div>\n<div class=\"col-xs-12 col-sm-6 col-md-4 col-lg-4\">\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Design &amp;</h3>\n<p class=\"\"><img class=\"bg-img bg-img-1 alignnone wp-image-135 size-medium\" style=\"color: #333333;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/20201221_152806-300x225.jpg\" alt=\"Maintenance irrigation programs \" width=\"300\" height=\"225\" data-imhwpb-asset-id=\"695400\"></p>\n\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">&nbsp;Monthly Maintenance&nbsp;</h3>\n<p class=\"\" style=\"font-size: 14px;\">Fully licensed and insured.&nbsp; We take pride in our work and are deemed the best in Naples.&nbsp; &nbsp;Maintenance reduces costly mishaps</p>\n\n</div>\n<div class=\"col-xs-12 col-sm-6 col-md-4 col-lg-4\">\n<p class=\"\"><img class=\"bg-img bg-img-1 wp-image-180 size-medium\" title=\"Renovation irrigation services \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/received_656891985552879-220x300.jpeg\" alt=\"Repair Sprinkler system irrigaiton\" width=\"220\" height=\"300\" data-imhwpb-asset-id=\"695401\"></p>\n\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Renovation</h3>\n<p class=\"\" style=\"font-size: 14px;\">If you want to experience the benefits of a customized Renovation our team is experienced 40 years in Naples</p>\n\n</div>\n</div>\n</div>\n</div>\n<div class=\"boldgrid-section color2-background-color color-2-text-contrast bg-background-color\">\n<div class=\"container\">\n<div class=\"row\" style=\"padding-top: 80px;\">\n<div class=\"col-xs-12 col-sm-12 col-md-12 col-lg-12\">\n<h2 class=\"\" style=\"text-align: center;\">Customer Testimonials</h2>\n<div class=\"row bg-editor-hr-wrap\">\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\">\n<div>\n<div class=\"bg-hr bg-hr-2 color1-color\" style=\"width: 65%;\"></div>\n</div>\n</div>\n</div>\n</div>\n</div>\n<div class=\"row\" style=\"padding-bottom: 40px;\">\n<div class=\"col-sm-6 col-md-3 col-xs-12 col-lg-3\">\n<div class=\"\">\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle wp-image-177 aligncenter\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/pumpirigationsupply-300x225.jpg\" alt=\"\" width=\"216\" height=\"162\" data-imhwpb-asset-id=\"695402\"></p>\n<p class=\"h5\" style=\"text-align: center;\"><strong>Pump SUPPLY HOUSE of Naples</strong></p>\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\n\n<div class=\"row\">\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\">\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\n<p class=\"\" style=\"font-size: 14px;\">Naples Irrigation , Brad Hooper is one of the best companies in the business to work with.&nbsp;&nbsp;</p>\n\n</div>\n</div>\n</div>\n</div>\n</div>\n<div class=\"col-sm-6 col-md-3 col-xs-12 col-lg-3\">\n<div class=\"\">\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-156 \" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/282_127_486_486_20201221_153238-768x1024.jpg\" alt=\"\" width=\"179\" height=\"179\" data-imhwpb-asset-id=\"695403\"></p>\n<p class=\"h5\" style=\"text-align: center;\">Engle Denistry</p>\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\n\n<div class=\"row\">\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\">\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\n<p class=\"\" style=\"font-size: 14px;\">Owner Brad Engle recommends, Naples Irrigation,&nbsp; Brad Hooper for your business\' irrigation needs.&nbsp; &nbsp;</p>\n\n</div>\n</div>\n</div>\n</div>\n</div>\n<div class=\"col-sm-6 col-md-3 col-xs-12 col-lg-3\">\n<div class=\"\">\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-125\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_4YX0oj7gf8o-imhwpb-ut5s3lmwf6dg2wc.jpg\" alt=\"\" width=\"150\" height=\"150\" data-imhwpb-asset-id=\"695404\"></p>\n<p class=\"h5\" style=\"text-align: center;\"><strong>Direct Industrial Supply</strong></p>\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\n\n<div class=\"row\">\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\">\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\n<p class=\"\" style=\"font-size: 14px;\">Brad Hooper of Naples Irrigation is one of our best sprinkler designers and Installer. Highly recommend his services.</p>\n\n</div>\n</div>\n</div>\n</div>\n</div>\n<div class=\"col-sm-6 col-md-3 col-xs-12 col-lg-3\">\n<div class=\"\">\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-126\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_8tN3flDTQBU-imhwpb-kxmpsoge3h4672l.jpg\" alt=\"\" width=\"169\" height=\"169\" data-imhwpb-asset-id=\"695405\"></p>\n<p class=\"h5\" style=\"text-align: center;\">&nbsp;</p>\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\n\n<div class=\"row\">\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\">\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\n<p class=\"\" style=\"font-size: 14px;\">I was so pleased with the sprinkler system Brad Hooper customized and designed for my flower garden.&nbsp; Now my landscaping looks beautiful every day.&nbsp;</p>\n\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>','Welcome','','inherit','closed','closed','','103-autosave-v1','','','2025-01-27 18:29:42','2025-01-27 18:29:42','',103,'https://naplesirrigation.com/?p=139',0,'revision','',0),(365,1,'2022-07-14 18:53:11','2022-07-14 18:53:11','<div class=\"boldgrid-section\" style=\"color: #000000; background-image: url(\'https://source.unsplash.com/MqJX_8EaStM/1920x1080\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"1175055\" data-image-url=\"https://source.unsplash.com/MqJX_8EaStM/1920x1080\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 120px; padding-bottom: 140px;\">\r\n<div class=\"col-md-7 col-sm-4 col-xs-12 col-lg-7\">\r\n<div class=\"\">\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p class=\"\"><img class=\"wp-image-186 alignnone\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/cropped-20210313_120201-scaled-1-e1649096217790.jpg\" alt=\"Perfect Irrigation System\" width=\"667\" height=\"500\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-5 col-sm-8 col-xs-12 wedge-cta col-lg-5\" custom-classes=\"wedge-cta\">\r\n<h2 class=\"\">NAPLES IRRIGATION, d/ba/Hooper Irrigaiton, LLC</h2>\r\n<h2 class=\"\">lET US BRING YOUR YARD BACK TO LIFE</h2>\r\n<p class=\"\" style=\"font-size: 14px;\">BEST LAWN&nbsp; SPRINKLER REPAIR, MAINTENANCE , DESIGN&nbsp; SYSTEM&nbsp;</p>\r\n\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-16\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\"><a class=\"button-secondary btn btn-color-2 btn btn-border-color-1\" href=\"https://naplesirrigation.com/contact-us/\">CONTACT US TODAY</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color3-background-color color-3-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-12 col-lg-12\">\r\n<h2 class=\"\" style=\"text-align: center; font-size: 21px;\">Naples Irrigation d/b/a Hooper Irrigation is owned and operated by Brad Hooper who is a fully licensed and insured Irrigation expert in the Naples area for 40 years.</h2>\r\n<h2 class=\"\" style=\"text-align: center; font-size: 21px;\">What we offer to all our Customers:</h2>\r\n<h2 class=\"\" style=\"text-align: center; font-size: 21px;\">Innovative Designs to ensure the best irrigation system is installed for your individual yard or business and price range.</h2>\r\n<h2 class=\"\" style=\"text-align: center; font-size: 21px;\">Repair and Maintenance of all components including irrigation pumps, timers (clocks), valves, manifolds, and sprinkler heads. We suggest monthly maintenance to prevent any mishaps or issues but can offer a flexible schedule based on your needs.</h2>\r\n<h2 class=\"\" style=\"text-align: center; font-size: 21px;\">Renovation of existing irrigation systems that may be outdated, broken or damaged.</h2>\r\n<h2 class=\"\" style=\"text-align: center;\">See What We Can Offer</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-2 color1-color\" style=\"width: 65%;\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 90px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-4 col-lg-4\">\r\n<p class=\"\"><img class=\"bg-img bg-img-1 wp-image-273 aligncenter\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/IMG_20220128_155353-225x300.jpg\" alt=\"Renovation\" width=\"226\" height=\"301\" data-imhwpb-asset-id=\"695399\"></p>\r\n<p class=\"\">&nbsp;</p>\r\n&nbsp;\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Sprinkler Repair</h3>\r\n<p class=\"\" style=\"font-size: 14px;\">Sprinkler repair Iirrigation pumps, clocks, valves manifolds and heads</p>\r\n\r\n</div>\r\n<div class=\"col-xs-12 col-sm-6 col-md-4 col-lg-4\">\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Design &amp;</h3>\r\n<p class=\"\"><img class=\"bg-img bg-img-1 alignnone wp-image-135 size-medium\" style=\"color: #333333;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/20201221_152806-300x225.jpg\" alt=\"Maintenance irrigation programs \" width=\"300\" height=\"225\" data-imhwpb-asset-id=\"695400\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">&nbsp;Monthly Maintenance&nbsp;</h3>\r\n<p class=\"\" style=\"font-size: 14px;\">Fully licensed and insured.&nbsp; We take pride in our work and are deemed the best in Naples.&nbsp; &nbsp;Maintenance reduces costly mishaps</p>\r\n\r\n</div>\r\n<div class=\"col-xs-12 col-sm-6 col-md-4 col-lg-4\">\r\n<p class=\"\"><img class=\"bg-img bg-img-1 wp-image-180 size-medium\" title=\"Renovation irrigation services \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/received_656891985552879-220x300.jpeg\" alt=\"Repair Sprinkler system irrigaiton\" width=\"220\" height=\"300\" data-imhwpb-asset-id=\"695401\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Renovation</h3>\r\n<p class=\"\" style=\"font-size: 14px;\">If you want to experience the benefits of a customized Renovation our team is experienced 40 years in Naples</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color2-background-color color-2-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-12 col-lg-12\">\r\n<h2 class=\"\" style=\"text-align: center;\">Customer Testimonials</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-2 color1-color\" style=\"width: 65%;\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 40px;\">\r\n<div class=\"col-sm-6 col-md-3 col-xs-12 col-lg-3\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle wp-image-177 aligncenter\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/pumpirigationsupply-300x225.jpg\" alt=\"\" width=\"216\" height=\"162\" data-imhwpb-asset-id=\"695402\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\"><strong>Pump SUPPLY HOUSE of Naples</strong></p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\" style=\"font-size: 14px;\">Naples Irrigation , Brad Hooper is one of the best companies in the business to work with.&nbsp;&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12 col-lg-3\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-156 \" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/282_127_486_486_20201221_153238-768x1024.jpg\" alt=\"\" width=\"179\" height=\"179\" data-imhwpb-asset-id=\"695403\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\">Engle Denistry</p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\" style=\"font-size: 14px;\">Owner Brad Engle recommends, Naples Irrigation,&nbsp; Brad Hooper for your business\' irrigation needs.&nbsp; &nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12 col-lg-3\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-125\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_4YX0oj7gf8o-imhwpb-ut5s3lmwf6dg2wc.jpg\" alt=\"\" width=\"150\" height=\"150\" data-imhwpb-asset-id=\"695404\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\"><strong>Direct Industrial Supply</strong></p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\" style=\"font-size: 14px;\">Brad Hooper of Naples Irrigation is one of our best sprinkler designers and Installer. Highly recommend his services.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12 col-lg-3\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-126\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_8tN3flDTQBU-imhwpb-kxmpsoge3h4672l.jpg\" alt=\"\" width=\"169\" height=\"169\" data-imhwpb-asset-id=\"695405\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\">&nbsp;</p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\" style=\"font-size: 14px;\">I was so pleased with the sprinkler system Brad Hooper customized and designed for my flower garden.&nbsp; Now my landscaping looks beautiful every day.&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Welcome','','inherit','closed','closed','','103-revision-v1','','','2022-07-14 18:53:11','2022-07-14 18:53:11','',103,'https://naplesirrigation.com/?p=365',0,'revision','',0),(142,1,'2022-02-28 20:24:17','2022-02-28 20:24:17','','received_631868047814753','','inherit','open','closed','','received_631868047814753','','','2022-02-28 20:24:17','2022-02-28 20:24:17','',103,'https://naplesirrigation.com/wp-content/uploads/2022/02/received_631868047814753.jpeg',0,'attachment','image/jpeg',0),(140,1,'2022-02-28 20:17:26','2022-02-28 20:17:26','','20210313_120201','','inherit','open','closed','','20210313_120201-2','','','2022-02-28 20:17:26','2022-02-28 20:17:26','',103,'https://naplesirrigation.com/wp-content/uploads/2022/02/20210313_120201-1.jpg',0,'attachment','image/jpeg',0),(141,1,'2022-02-28 20:21:53','2022-02-28 20:21:53','','received_799020637471726','','inherit','open','closed','','received_799020637471726','','','2022-02-28 20:21:53','2022-02-28 20:21:53','',103,'https://naplesirrigation.com/wp-content/uploads/2022/02/received_799020637471726.jpeg',0,'attachment','image/jpeg',0),(144,1,'2022-02-28 20:34:40','2022-02-28 20:34:40','','received_416297686606928','','inherit','open','closed','','received_416297686606928','','','2022-02-28 20:34:40','2022-02-28 20:34:40','',103,'https://naplesirrigation.com/wp-content/uploads/2022/02/received_416297686606928.jpeg',0,'attachment','image/jpeg',0),(143,1,'2022-02-28 20:29:33','2022-02-28 20:29:33','','received_1072950093527088','','inherit','open','closed','','received_1072950093527088','','','2022-02-28 20:29:33','2022-02-28 20:29:33','',103,'https://naplesirrigation.com/wp-content/uploads/2022/02/received_1072950093527088.jpeg',0,'attachment','image/jpeg',0),(146,1,'2022-02-28 20:39:46','2022-02-28 20:39:46','','IMG_20211101_150730','','inherit','open','closed','','img_20211101_150730','','','2022-02-28 20:39:46','2022-02-28 20:39:46','',103,'https://naplesirrigation.com/wp-content/uploads/2022/02/IMG_20211101_150730.jpg',0,'attachment','image/jpeg',0),(145,1,'2022-02-28 20:35:26','2022-02-28 20:35:26','','20210313_120201','','inherit','open','closed','','20210313_120201-3','','','2022-02-28 20:35:26','2022-02-28 20:35:26','',103,'https://naplesirrigation.com/wp-content/uploads/2022/02/20210313_120201-2.jpg',0,'attachment','image/jpeg',0),(147,1,'2022-02-28 20:40:27','2022-02-28 20:40:27','','20201217_151926','','inherit','open','closed','','20201217_151926','','','2022-02-28 20:40:27','2022-02-28 20:40:27','',103,'https://naplesirrigation.com/wp-content/uploads/2022/02/20201217_151926.jpg',0,'attachment','image/jpeg',0),(148,1,'2022-02-28 20:40:40','2022-02-28 20:40:40','','20201217_152016','','inherit','open','closed','','20201217_152016','','','2022-02-28 20:40:40','2022-02-28 20:40:40','',103,'https://naplesirrigation.com/wp-content/uploads/2022/02/20201217_152016.jpg',0,'attachment','image/jpeg',0),(149,1,'2022-02-28 20:40:52','2022-02-28 20:40:52','','20201217_155729','','inherit','open','closed','','20201217_155729','','','2022-02-28 20:40:52','2022-02-28 20:40:52','',103,'https://naplesirrigation.com/wp-content/uploads/2022/02/20201217_155729.jpg',0,'attachment','image/jpeg',0),(150,1,'2022-02-28 20:41:05','2022-02-28 20:41:05','','20201221_152619','','inherit','open','closed','','20201221_152619','','','2022-02-28 20:41:05','2022-02-28 20:41:05','',103,'https://naplesirrigation.com/wp-content/uploads/2022/02/20201221_152619.jpg',0,'attachment','image/jpeg',0),(151,1,'2022-02-28 20:41:59','2022-02-28 20:41:59','','20201221_152447','','inherit','open','closed','','20201221_152447','','','2022-02-28 20:41:59','2022-02-28 20:41:59','',103,'https://naplesirrigation.com/wp-content/uploads/2022/02/20201221_152447.jpg',0,'attachment','image/jpeg',0),(152,1,'2022-02-28 20:42:12','2022-02-28 20:42:12','','20201221_152619','','inherit','open','closed','','20201221_152619-2','','','2022-02-28 20:42:12','2022-02-28 20:42:12','',103,'https://naplesirrigation.com/wp-content/uploads/2022/02/20201221_152619-1.jpg',0,'attachment','image/jpeg',0),(153,1,'2022-02-28 20:42:32','2022-02-28 20:42:32','','20201221_152756','','inherit','open','closed','','20201221_152756','','','2022-02-28 20:42:32','2022-02-28 20:42:32','',103,'https://naplesirrigation.com/wp-content/uploads/2022/02/20201221_152756.jpg',0,'attachment','image/jpeg',0),(154,1,'2022-02-28 20:42:46','2022-02-28 20:42:46','','20201221_152806','','inherit','open','closed','','20201221_152806-2','','','2022-02-28 20:42:46','2022-02-28 20:42:46','',103,'https://naplesirrigation.com/wp-content/uploads/2022/02/20201221_152806-1.jpg',0,'attachment','image/jpeg',0),(155,1,'2022-02-28 20:43:01','2022-02-28 20:43:01','','20201221_153230','','inherit','open','closed','','20201221_153230','','','2022-02-28 20:43:01','2022-02-28 20:43:01','',103,'https://naplesirrigation.com/wp-content/uploads/2022/02/20201221_153230.jpg',0,'attachment','image/jpeg',0),(156,1,'2022-02-28 20:43:14','2022-02-28 20:43:14','','Design','','inherit','open','closed','','20201221_153238','','','2022-04-25 19:10:05','2022-04-25 19:10:05','',103,'https://naplesirrigation.com/wp-content/uploads/2022/02/20201221_153238.jpg',0,'attachment','image/jpeg',0),(158,1,'2022-02-28 21:01:21','2022-02-28 21:01:21','','Block Preview Page','','inherit','closed','closed','','131-revision-v1','','','2022-02-28 21:01:21','2022-02-28 21:01:21','',131,'https://naplesirrigation.com/?p=158',0,'revision','',0),(163,1,'2022-03-01 00:33:08','2022-03-01 00:33:08','<div class=\"boldgrid-section\">\n<div class=\"container\">\n<div class=\"row\">\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\n<div class=\"image-gallery\">\n\n[caption id=\"attachment_136\" align=\"alignnone\" width=\"222\"]<img class=\"wp-image-136 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/received_462634725313575-222x300.jpeg\" alt=\"Meet Naplesirrigation - Your Yard is only as good as your Sprinkler Guy\" width=\"222\" height=\"300\" data-imhwpb-asset-id=\"780395\"> Brad Hooper . Owner of Naples Irrigation &amp; Hooper Irrigation since 1989 .[/caption]\n\n</div>\n<p class=\"\">Established in 1984,&nbsp; Licensed and Insured&nbsp;&nbsp;</p>\n\n<h3 class=\"\"><i class=\"fa fa-1x fa-envelope-o\"><!-- icon --></i> Email</h3>\n<p class=\"\"><a href=\"mailto:hooperirrigation@gmail.com\">hooperirrigation@gmail.com</a></p>\n\n<h3 class=\"\"><i class=\"fa fa-1x fa-phone\"><!-- icon --></i> Phone</h3>\n<p class=\"\">239-793-7755 or 239-250-5265</p>\n\n<h3><i class=\"fa fa-1x fa-map-marker\"><!-- icon --></i> Address</h3>\nPO Box 2857, Naples FL 34106\n<p class=\"boldgrid-google-maps\" style=\"width: 100%; height: 200px;\"><iframe style=\"width: 100%; height: 100%;\" src=\"https://maps.google.com/maps?q=PO+Box+2857%2C+Naples+FL+34106&amp;t=m&amp;z=16&amp;output=embed\" frameborder=\"0\"></iframe></p>\n\n</div>\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\n<h3>Get in Touch</h3>\n<p class=\"\">We are here to answer any questions you may have. Reach out to us and we\'ll respond as soon as we can.&nbsp;</p>\n<p class=\"\">&nbsp;No charge for system checks/evaluations.&nbsp; &nbsp;&nbsp;</p>\nThank You Bradford Hooper&nbsp;\n<p class=\"\">[weforms id=\"63\"]</p>\n\n</div>\n</div>\n</div>\n</div>','Contact Us','','inherit','closed','closed','','107-revision-v1','','','2022-03-01 00:33:08','2022-03-01 00:33:08','',107,'https://naplesirrigation.com/?p=163',0,'revision','',0),(167,1,'2022-03-01 03:08:10','2022-03-01 03:08:10','<iframe title=\"City at Night\" width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/5LxGNTTxPis?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>','','','publish','closed','closed','','1ad0fe5f0d83c4490e038e6c19bd9e3f','','','2022-03-01 03:08:10','2022-03-01 03:08:10','',0,'https://naplesirrigation.com/1ad0fe5f0d83c4490e038e6c19bd9e3f/',0,'oembed_cache','',0),(164,1,'2022-03-01 02:36:45','2022-03-01 02:36:45','','Naples Sprinkler Services','Your yard is only as lovely as your sprinkler service.  Monthly Maintenance to avoid costly mishaps.\r\n','inherit','open','closed','','20210313_120212','','','2022-04-04 18:31:34','2022-04-04 18:31:34','',103,'https://naplesirrigation.com/wp-content/uploads/2022/03/20210313_120212.jpg',0,'attachment','image/jpeg',0),(166,1,'2022-03-01 03:01:43','2022-03-01 03:01:43','Design Installation Monthy Maintenace ','20210313_120201','','inherit','open','closed','','20210313_120201-4','','','2022-03-01 03:02:29','2022-03-01 03:02:29','',103,'https://naplesirrigation.com/wp-content/uploads/2022/03/20210313_120201.jpg',0,'attachment','image/jpeg',0),(165,1,'2022-03-01 02:55:48','2022-03-01 02:55:48','','NaplesIrrigaiton','','inherit','open','closed','','naplesirrigaiton','','','2022-03-01 02:55:48','2022-03-01 02:55:48','',103,'https://naplesirrigation.com/wp-content/uploads/2022/03/NaplesIrrigaiton.jpg',0,'attachment','image/jpeg',0),(168,1,'2022-03-01 03:09:49','2022-03-01 03:09:49','','ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops60a27a29c0d5d20f56ffb01369d4d14b','','inherit','open','closed','','ixlibrb-0-3-5q80fmjpgcropentropycstinysrgbw400h300fitcrops60a27a29c0d5d20f56ffb01369d4d14b','','','2022-03-01 03:09:49','2022-03-01 03:09:49','',0,'https://naplesirrigation.com/wp-content/uploads/2022/03/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops60a27a29c0d5d20f56ffb01369d4d14b.jpg',0,'attachment','image/jpeg',0),(169,1,'2022-03-01 03:09:49','2022-03-01 03:09:49','','ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops59d6fd3c559c53080e7c298f98ae0afd','','inherit','open','closed','','ixlibrb-0-3-5q80fmjpgcropentropycstinysrgbw400h300fitcrops59d6fd3c559c53080e7c298f98ae0afd','','','2022-03-01 03:09:49','2022-03-01 03:09:49','',0,'https://naplesirrigation.com/wp-content/uploads/2022/03/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops59d6fd3c559c53080e7c298f98ae0afd.jpg',0,'attachment','image/jpeg',0),(170,1,'2022-03-01 03:09:50','2022-03-01 03:09:50','','ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops406d0fa0bbefc6c57ef3740e77d689ab','','inherit','open','closed','','ixlibrb-0-3-5q80fmjpgcropentropycstinysrgbw400h300fitcrops406d0fa0bbefc6c57ef3740e77d689ab','','','2022-03-01 03:09:50','2022-03-01 03:09:50','',0,'https://naplesirrigation.com/wp-content/uploads/2022/03/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops406d0fa0bbefc6c57ef3740e77d689ab.jpg',0,'attachment','image/jpeg',0),(171,1,'2022-03-01 03:17:07','2022-03-01 03:17:07','','20210313_120201','','inherit','open','closed','','20210313_120201-5','','','2022-03-01 03:17:07','2022-03-01 03:17:07','',103,'https://naplesirrigation.com/wp-content/uploads/2022/03/20210313_120201-1.jpg',0,'attachment','image/jpeg',0),(172,1,'2022-03-01 03:17:57','2022-03-01 03:17:57','','20210313_120212','','inherit','open','closed','','20210313_120212-2','','','2022-03-01 03:17:57','2022-03-01 03:17:57','',103,'https://naplesirrigation.com/wp-content/uploads/2022/03/20210313_120212-1.jpg',0,'attachment','image/jpeg',0),(175,1,'2022-03-01 04:00:33','2022-03-01 04:00:33','<div class=\"boldgrid-section\" style=\"color: #000000; background-image: url(\'https://source.unsplash.com/MqJX_8EaStM/1920x1080\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"1175055\" data-image-url=\"https://source.unsplash.com/MqJX_8EaStM/1920x1080\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 120px; padding-bottom: 140px;\">\r\n<div class=\"col-md-7 col-sm-4 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\"><img class=\"wp-image-164 \" style=\"font-weight: bold;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/20210313_120212-300x225.jpg\" alt=\"\" width=\"683\" height=\"512\"></p>\r\nYour yard is only as lovely as your Sprinkler System Guy&nbsp;\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-5 col-sm-8 col-xs-12 wedge-cta\" custom-classes=\"wedge-cta\">\r\n<h2 class=\"\">NAPLES IRRIGATION lET US BRING YOUR YARD BACK TO LIFE</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-16\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\" style=\"margin-top: 20px; margin-bottom: 30px;\">&nbsp;</p>\r\n<p class=\"\"><a class=\"button-secondary btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1\" href=\"https://naplesirrigation.com/\">CONTACT US TODAY</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color3-background-color color-3-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-12\">\r\n<h2 class=\"\" style=\"text-align: center;\">See What We Can Offer</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-2 color1-color\" style=\"width: 65%;\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 90px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-4\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-1 aligncenter wp-image-143 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/received_1072950093527088-222x300.jpeg\" alt=\"\" width=\"192\" height=\"259\" data-imhwpb-asset-id=\"695399\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Renovation</h3>\r\n<p class=\"\">If you want to experience the benefits of a customized Renovation our team is experienced 40 years in Naples&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-xs-12 col-sm-6 col-md-4\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-1 aligncenter wp-image-135 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/20201221_152806-300x225.jpg\" alt=\"\" width=\"338\" height=\"253\" data-imhwpb-asset-id=\"695400\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Design &amp; Monthly Maintenance&nbsp;</h3>\r\n<p class=\"\">Fully licensed and insured.&nbsp; We take pride in our work and are deemed the best in Naples.&nbsp;&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-xs-12 col-sm-6 col-md-4\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-1 aligncenter wp-image-149 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/20201217_155729-225x300.jpg\" alt=\"\" width=\"195\" height=\"260\" data-imhwpb-asset-id=\"695401\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Springkler Repair</h3>\r\n<p class=\"\">New Pumps, Time Clocks, Sprinkler heads, adjustments, and testing we will make your yard beautiful.&nbsp;&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color2-background-color color-2-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-12\">\r\n<h2 class=\"\" style=\"text-align: center;\">Customer Testimonials</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-2 color1-color\" style=\"width: 65%;\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 40px;\">\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-123\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_YadCgbsLHcE-imhwpb-kjakgkqww4nb5j2.jpg\" alt=\"\" width=\"150\" height=\"150\" data-imhwpb-asset-id=\"695402\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\"><strong>SUPPLY HOUSE </strong></p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">\"</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-124\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_s_NxT6Gx-2A-imhwpb-jifkmjomsrquohk.jpg\" alt=\"\" width=\"150\" height=\"150\" data-imhwpb-asset-id=\"695403\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\">&nbsp;</p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">\"</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-125\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_4YX0oj7gf8o-imhwpb-ut5s3lmwf6dg2wc.jpg\" alt=\"\" width=\"150\" height=\"150\" data-imhwpb-asset-id=\"695404\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\"><strong>Janet Clarke</strong></p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-126\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_8tN3flDTQBU-imhwpb-kxmpsoge3h4672l.jpg\" alt=\"\" width=\"150\" height=\"150\" data-imhwpb-asset-id=\"695405\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\"><strong>bRAD eNGLE dENSITRY</strong></p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Home','','inherit','closed','closed','','103-revision-v1','','','2022-03-01 04:00:33','2022-03-01 04:00:33','',103,'https://naplesirrigation.com/?p=175',0,'revision','',0),(176,1,'2022-03-01 04:02:20','2022-03-01 04:02:20','<div class=\"boldgrid-section\" style=\"color: #000000; background-image: url(\'https://source.unsplash.com/MqJX_8EaStM/1920x1080\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"1175055\" data-image-url=\"https://source.unsplash.com/MqJX_8EaStM/1920x1080\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 120px; padding-bottom: 140px;\">\r\n<div class=\"col-md-7 col-sm-4 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\"><img class=\"wp-image-164 \" style=\"font-weight: bold;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/20210313_120212-300x225.jpg\" alt=\"\" width=\"683\" height=\"512\"></p>\r\nYour yard is only as lovely as your Sprinkler System Guy&nbsp;\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-5 col-sm-8 col-xs-12 wedge-cta\" custom-classes=\"wedge-cta\">\r\n<h2 class=\"\">NAPLES IRRIGATION lET US BRING YOUR YARD BACK TO LIFE</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-16\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\" style=\"margin-top: 20px; margin-bottom: 30px;\">&nbsp;</p>\r\n<p class=\"\"><a class=\"button-secondary btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1\" href=\"https://naplesirrigation.com/\">CONTACT US TODAY</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color3-background-color color-3-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-12\">\r\n<h2 class=\"\" style=\"text-align: center;\">See What We Can Offer</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-2 color1-color\" style=\"width: 65%;\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 90px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-4\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-1 aligncenter wp-image-143 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/received_1072950093527088-222x300.jpeg\" alt=\"\" width=\"192\" height=\"259\" data-imhwpb-asset-id=\"695399\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Renovation</h3>\r\n<p class=\"\">If you want to experience the benefits of a customized Renovation our team is experienced 40 years in Naples&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-xs-12 col-sm-6 col-md-4\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-1 aligncenter wp-image-135 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/20201221_152806-300x225.jpg\" alt=\"\" width=\"338\" height=\"253\" data-imhwpb-asset-id=\"695400\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Design &amp; Monthly Maintenance&nbsp;</h3>\r\n<p class=\"\">Fully licensed and insured.&nbsp; We take pride in our work and are deemed the best in Naples.&nbsp;&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-xs-12 col-sm-6 col-md-4\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-1 aligncenter wp-image-149 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/20201217_155729-225x300.jpg\" alt=\"\" width=\"195\" height=\"260\" data-imhwpb-asset-id=\"695401\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Springkler Repair</h3>\r\n<p class=\"\">New Pumps, Time Clocks, Sprinkler heads, adjustments, and testing we will make your yard beautiful.&nbsp;&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color2-background-color color-2-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-12\">\r\n<h2 class=\"\" style=\"text-align: center;\">Customer Testimonials</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-2 color1-color\" style=\"width: 65%;\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 40px;\">\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-123\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_YadCgbsLHcE-imhwpb-kjakgkqww4nb5j2.jpg\" alt=\"\" width=\"150\" height=\"150\" data-imhwpb-asset-id=\"695402\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\"><strong>SUPPLY HOUSE </strong></p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">\"</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-124\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_s_NxT6Gx-2A-imhwpb-jifkmjomsrquohk.jpg\" alt=\"\" width=\"150\" height=\"150\" data-imhwpb-asset-id=\"695403\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\">&nbsp;</p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">\"</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-125\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_4YX0oj7gf8o-imhwpb-ut5s3lmwf6dg2wc.jpg\" alt=\"\" width=\"150\" height=\"150\" data-imhwpb-asset-id=\"695404\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\"><strong>Janet Clarke</strong></p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-126\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_8tN3flDTQBU-imhwpb-kxmpsoge3h4672l.jpg\" alt=\"\" width=\"150\" height=\"150\" data-imhwpb-asset-id=\"695405\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\"><strong>bRAD eNGLE dENSITRY</strong></p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Home','','inherit','closed','closed','','103-revision-v1','','','2022-03-01 04:02:20','2022-03-01 04:02:20','',103,'https://naplesirrigation.com/?p=176',0,'revision','',0),(177,1,'2022-03-01 19:15:09','2022-03-01 19:15:09','','pumpirigationsupply','','inherit','open','closed','','pumpirigationsupply','','','2022-03-01 19:15:09','2022-03-01 19:15:09','',103,'https://naplesirrigation.com/wp-content/uploads/2022/03/pumpirigationsupply.jpg',0,'attachment','image/jpeg',0),(178,1,'2022-03-01 19:28:44','2022-03-01 19:28:44','<div class=\"boldgrid-section\" style=\"color: #000000; background-image: url(\'https://source.unsplash.com/MqJX_8EaStM/1920x1080\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"1175055\" data-image-url=\"https://source.unsplash.com/MqJX_8EaStM/1920x1080\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 120px; padding-bottom: 140px;\">\r\n<div class=\"col-md-7 col-sm-4 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\"><img class=\"wp-image-164 \" style=\"font-weight: bold;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/20210313_120212-300x225.jpg\" alt=\"\" width=\"680\" height=\"510\"></p>\r\nYour yard is only as lovely as your Sprinkler System Guy&nbsp;\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-5 col-sm-8 col-xs-12 wedge-cta\" custom-classes=\"wedge-cta\">\r\n<h2 class=\"\">NAPLES IRRIGATION lET US BRING YOUR YARD BACK TO LIFE</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-16\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\" style=\"margin-top: 20px; margin-bottom: 30px;\">&nbsp;</p>\r\n<p class=\"\"><a class=\"button-secondary btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1\" href=\"https://naplesirrigation.com/\">CONTACT US TODAY</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color3-background-color color-3-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-12\">\r\n<h2 class=\"\" style=\"text-align: center;\">See What We Can Offer</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-2 color1-color\" style=\"width: 65%;\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 90px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-4\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-1 aligncenter wp-image-143 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/received_1072950093527088-222x300.jpeg\" alt=\"\" width=\"192\" height=\"259\" data-imhwpb-asset-id=\"695399\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Renovation</h3>\r\n<p class=\"\">If you want to experience the benefits of a customized Renovation our team is experienced 40 years in Naples&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-xs-12 col-sm-6 col-md-4\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-1 aligncenter wp-image-135 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/20201221_152806-300x225.jpg\" alt=\"\" width=\"338\" height=\"253\" data-imhwpb-asset-id=\"695400\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Design &amp; Monthly Maintenance&nbsp;</h3>\r\n<p class=\"\">Fully licensed and insured.&nbsp; We take pride in our work and are deemed the best in Naples.&nbsp;&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-xs-12 col-sm-6 col-md-4\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-1 aligncenter wp-image-149 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/20201217_155729-225x300.jpg\" alt=\"\" width=\"195\" height=\"260\" data-imhwpb-asset-id=\"695401\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Sprinkler Repair</h3>\r\n<p class=\"\">New Pumps, Time Clocks, Sprinkler heads, adjustments, and testing we will make your yard beautiful.&nbsp;&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color2-background-color color-2-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-12\">\r\n<h2 class=\"\" style=\"text-align: center;\">Customer Testimonials</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-2 color1-color\" style=\"width: 65%;\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 40px;\">\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle  alignnone wp-image-177 \" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/pumpirigationsupply-300x225.jpg\" alt=\"\" width=\"216\" height=\"162\" data-imhwpb-asset-id=\"695402\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\"><strong>Pump SUPPLY HOUSE of Naples</strong></p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Visit us today, highly recommend as one of our strongest customers in the industry today\"</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-156 \" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/282_127_486_486_20201221_153238-768x1024.jpg\" alt=\"\" width=\"179\" height=\"179\" data-imhwpb-asset-id=\"695403\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\">Engle Denistry</p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Brad Engle recommends Brad Hooper to his customers\" Best in Naples&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-125\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_4YX0oj7gf8o-imhwpb-ut5s3lmwf6dg2wc.jpg\" alt=\"\" width=\"150\" height=\"150\" data-imhwpb-asset-id=\"695404\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\"><strong>Direct Industrial Supply</strong></p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Brad Hooper of Naples Irrigation and Hooper Irrigation is one of our best maintenance Sprinkler Man. Highly recommend his services</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-126\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_8tN3flDTQBU-imhwpb-kxmpsoge3h4672l.jpg\" alt=\"\" width=\"158\" height=\"158\" data-imhwpb-asset-id=\"695405\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\">&nbsp;</p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Brad Hooper is one of the best-known sprinkler companies I know highly sought out.&nbsp; Our renovations have never looked better.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Home','','inherit','closed','closed','','103-revision-v1','','','2022-03-01 19:28:44','2022-03-01 19:28:44','',103,'https://naplesirrigation.com/?p=178',0,'revision','',0),(179,1,'2022-03-01 19:44:12','2022-03-01 19:44:12','','received_2444269415708471','Renovations for a beautiful yard ','inherit','open','closed','','received_2444269415708471','','','2022-03-01 21:07:12','2022-03-01 21:07:12','',103,'https://naplesirrigation.com/wp-content/uploads/2022/03/received_2444269415708471.jpeg',0,'attachment','image/jpeg',0),(180,1,'2022-03-01 19:45:37','2022-03-01 19:45:37','','received_656891985552879','Sprinkler repair\n','inherit','open','closed','','received_656891985552879','','','2022-03-01 19:46:08','2022-03-01 19:46:08','',103,'https://naplesirrigation.com/wp-content/uploads/2022/03/received_656891985552879.jpeg',0,'attachment','image/jpeg',0),(181,1,'2022-03-01 19:46:51','2022-03-01 19:46:51','<div class=\"boldgrid-section\" style=\"color: #000000; background-image: url(\'https://source.unsplash.com/MqJX_8EaStM/1920x1080\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"1175055\" data-image-url=\"https://source.unsplash.com/MqJX_8EaStM/1920x1080\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 120px; padding-bottom: 140px;\">\r\n<div class=\"col-md-7 col-sm-4 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\"><img class=\"wp-image-164 \" style=\"font-weight: bold;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/20210313_120212-300x225.jpg\" alt=\"\" width=\"680\" height=\"510\"></p>\r\nYour yard is only as lovely as your Sprinkler System Guy&nbsp;\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-5 col-sm-8 col-xs-12 wedge-cta\" custom-classes=\"wedge-cta\">\r\n<h2 class=\"\">NAPLES IRRIGATION lET US BRING YOUR YARD BACK TO LIFE</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-16\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\" style=\"margin-top: 20px; margin-bottom: 30px;\">&nbsp;</p>\r\n<p class=\"\"><a class=\"button-secondary btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1\" href=\"https://naplesirrigation.com/\">CONTACT US TODAY</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color3-background-color color-3-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-12\">\r\n<h2 class=\"\" style=\"text-align: center;\">See What We Can Offer</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-2 color1-color\" style=\"width: 65%;\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 90px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-4\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-1 aligncenter wp-image-143 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/received_1072950093527088-222x300.jpeg\" alt=\"\" width=\"192\" height=\"259\" data-imhwpb-asset-id=\"695399\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Renovation</h3>\r\n<p class=\"\">If you want to experience the benefits of a customized Renovation our team is experienced 40 years in Naples&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-xs-12 col-sm-6 col-md-4\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-1 aligncenter wp-image-135 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/20201221_152806-300x225.jpg\" alt=\"\" width=\"338\" height=\"253\" data-imhwpb-asset-id=\"695400\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Design &amp; Monthly Maintenance&nbsp;</h3>\r\n<p class=\"\">Fully licensed and insured.&nbsp; We take pride in our work and are deemed the best in Naples.&nbsp;&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-xs-12 col-sm-6 col-md-4\">\r\n\r\n<img class=\"bg-img bg-img-1  wp-image-180 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/received_656891985552879-220x300.jpeg\" alt=\"Repair Sprinkler system irrigaiton\" width=\"207\" height=\"282\" data-imhwpb-asset-id=\"695401\">\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Sprinkler Repair</h3>\r\n<p class=\"\">New Pumps, Time Clocks, Sprinkler heads, adjustments, and testing we will make your yard beautiful.&nbsp;&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color2-background-color color-2-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-12\">\r\n<h2 class=\"\" style=\"text-align: center;\">Customer Testimonials</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-2 color1-color\" style=\"width: 65%;\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 40px;\">\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle alignnone wp-image-177 \" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/pumpirigationsupply-300x225.jpg\" alt=\"\" width=\"216\" height=\"162\" data-imhwpb-asset-id=\"695402\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\"><strong>Pump SUPPLY HOUSE of Naples</strong></p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Visit us today, highly recommend as one of our strongest customers in the industry today\"</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-156 \" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/282_127_486_486_20201221_153238-768x1024.jpg\" alt=\"\" width=\"179\" height=\"179\" data-imhwpb-asset-id=\"695403\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\">Engle Denistry</p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Brad Engle recommends Brad Hooper to his customers\" Best in Naples&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-125\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_4YX0oj7gf8o-imhwpb-ut5s3lmwf6dg2wc.jpg\" alt=\"\" width=\"150\" height=\"150\" data-imhwpb-asset-id=\"695404\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\"><strong>Direct Industrial Supply</strong></p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Brad Hooper of Naples Irrigation and Hooper Irrigation is one of our best maintenance Sprinkler Man. Highly recommend his services</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-126\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_8tN3flDTQBU-imhwpb-kxmpsoge3h4672l.jpg\" alt=\"\" width=\"158\" height=\"158\" data-imhwpb-asset-id=\"695405\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\">&nbsp;</p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Brad Hooper is one of the best-known sprinkler companies I know highly sought out.&nbsp; Our renovations have never looked better.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Home','','inherit','closed','closed','','103-revision-v1','','','2022-03-01 19:46:51','2022-03-01 19:46:51','',103,'https://naplesirrigation.com/?p=181',0,'revision','',0),(182,1,'2022-03-01 19:47:34','2022-03-01 19:47:34','<div class=\"boldgrid-section\" style=\"color: #000000; background-image: url(\'https://source.unsplash.com/MqJX_8EaStM/1920x1080\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"1175055\" data-image-url=\"https://source.unsplash.com/MqJX_8EaStM/1920x1080\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 120px; padding-bottom: 140px;\">\r\n<div class=\"col-md-7 col-sm-4 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\"><img class=\"wp-image-164 \" style=\"font-weight: bold;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/20210313_120212-300x225.jpg\" alt=\"\" width=\"680\" height=\"510\"></p>\r\nYour yard is only as lovely as your Sprinkler System Guy&nbsp;\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-5 col-sm-8 col-xs-12 wedge-cta\" custom-classes=\"wedge-cta\">\r\n<h2 class=\"\">NAPLES IRRIGATION lET US BRING YOUR YARD BACK TO LIFE</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-16\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\" style=\"margin-top: 20px; margin-bottom: 30px;\">&nbsp;</p>\r\n<p class=\"\"><a class=\"button-secondary btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1\" href=\"https://naplesirrigation.com/\">CONTACT US TODAY</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color3-background-color color-3-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-12\">\r\n<h2 class=\"\" style=\"text-align: center;\">See What We Can Offer</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-2 color1-color\" style=\"width: 65%;\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 90px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-4\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-1 aligncenter wp-image-143 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/received_1072950093527088-222x300.jpeg\" alt=\"\" width=\"192\" height=\"259\" data-imhwpb-asset-id=\"695399\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Renovation</h3>\r\n<p class=\"\">If you want to experience the benefits of a customized Renovation our team is experienced 40 years in Naples&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-xs-12 col-sm-6 col-md-4\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-1 aligncenter wp-image-135 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/20201221_152806-300x225.jpg\" alt=\"\" width=\"338\" height=\"253\" data-imhwpb-asset-id=\"695400\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Design &amp; Monthly Maintenance&nbsp;</h3>\r\n<p class=\"\">Fully licensed and insured.&nbsp; We take pride in our work and are deemed the best in Naples.&nbsp;&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-xs-12 col-sm-6 col-md-4\">\r\n\r\n<img class=\"bg-img bg-img-1 wp-image-180 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/received_656891985552879-220x300.jpeg\" alt=\"Repair Sprinkler system irrigaiton\" width=\"207\" height=\"282\" data-imhwpb-asset-id=\"695401\">\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Sprinkler Repair</h3>\r\n<p class=\"\">New Pumps, Time Clocks, Sprinkler heads, adjustments, and testing we will make your yard beautiful.&nbsp;&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color2-background-color color-2-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-12\">\r\n<h2 class=\"\" style=\"text-align: center;\">Customer Testimonials</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-2 color1-color\" style=\"width: 65%;\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 40px;\">\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle alignnone wp-image-177 \" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/pumpirigationsupply-300x225.jpg\" alt=\"\" width=\"216\" height=\"162\" data-imhwpb-asset-id=\"695402\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\"><strong>Pump SUPPLY HOUSE of Naples</strong></p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Visit us today, highly recommend as one of our strongest customers in the industry today\"</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-156 \" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/282_127_486_486_20201221_153238-768x1024.jpg\" alt=\"\" width=\"179\" height=\"179\" data-imhwpb-asset-id=\"695403\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\">Engle Denistry</p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Brad Engle recommends Brad Hooper to his customers\" Best in Naples&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-125\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_4YX0oj7gf8o-imhwpb-ut5s3lmwf6dg2wc.jpg\" alt=\"\" width=\"150\" height=\"150\" data-imhwpb-asset-id=\"695404\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\"><strong>Direct Industrial Supply</strong></p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Brad Hooper of Naples Irrigation and Hooper Irrigation is one of our best maintenance Sprinkler Man. Highly recommend his services</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-126\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_8tN3flDTQBU-imhwpb-kxmpsoge3h4672l.jpg\" alt=\"\" width=\"169\" height=\"169\" data-imhwpb-asset-id=\"695405\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\">&nbsp;</p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Brad Hooper is one of the best-known sprinkler companies I know highly sought out.&nbsp; Our renovations have never looked better.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Home','','inherit','closed','closed','','103-revision-v1','','','2022-03-01 19:47:34','2022-03-01 19:47:34','',103,'https://naplesirrigation.com/?p=182',0,'revision','',0),(183,1,'2022-03-01 19:57:47','2022-03-01 19:57:47','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-bottom: 0px;\">\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n<div class=\"image-gallery\">\r\n\r\n[caption id=\"attachment_136\" align=\"alignnone\" width=\"250\"]<img class=\"wp-image-136 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/received_462634725313575-222x300.jpeg\" alt=\"Meet Naplesirrigation - Your Yard is only as good as your Sprinkler Guy\" width=\"250\" height=\"338\" data-imhwpb-asset-id=\"780395\"> Brad Hooper . Owner of Naples Irrigation &amp; Hooper Irrigation since 1984&nbsp;[/caption]\r\n\r\n</div>\r\n<p class=\"\" style=\"font-size: 15px;\">Established in 1984,&nbsp; Licensed and Insured&nbsp;&nbsp;</p>\r\n\r\n<h3 class=\"\"><i class=\"fa fa-1x fa-envelope-o\"><!-- icon --></i> Email</h3>\r\n<p class=\"\"><a href=\"mailto:hooperirrigation@gmail.com\">hooperirrigation@gmail.com</a></p>\r\n\r\n<h3 class=\"\"><i class=\"fa fa-1x fa-phone\"><!-- icon --></i> Phone</h3>\r\n<p class=\"\">239-793-7755 or 239-250-5265</p>\r\n\r\n<h3><i class=\"fa fa-1x fa-map-marker\"><!-- icon --></i> Address</h3>\r\nPO Box 2857, Naples FL 34106\r\n<p class=\"boldgrid-google-maps\" style=\"width: 100%; height: 200px;\"><iframe style=\"width: 100%; height: 100%;\" src=\"https://maps.google.com/maps?q=PO+Box+2857%2C+Naples+FL+34106&amp;t=m&amp;z=16&amp;output=embed\" frameborder=\"0\"></iframe></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n<h3>Get in Touch</h3>\r\n<p class=\"\">We are here to answer any questions you may have. Reach out to us and we\'ll respond as soon as we can.&nbsp; &nbsp;Feel free to leave phone number for a call back</p>\r\n<p class=\"\">&nbsp;No charge for system checks/evaluations.&nbsp; &nbsp;&nbsp;</p>\r\nThank You Bradford Hooper&nbsp;\r\n<p class=\"\">[weforms id=\"63\"]</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Contact Us','','inherit','closed','closed','','107-revision-v1','','','2022-03-01 19:57:47','2022-03-01 19:57:47','',107,'https://naplesirrigation.com/?p=183',0,'revision','',0),(184,1,'2022-03-01 19:59:07','2022-03-01 19:59:07','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-bottom: 0px;\">\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n<div class=\"image-gallery\">\r\n\r\n[caption id=\"attachment_136\" align=\"alignnone\" width=\"250\"]<img class=\"wp-image-136 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/received_462634725313575-222x300.jpeg\" alt=\"Meet Naplesirrigation - Your Yard is only as good as your Sprinkler Guy\" width=\"250\" height=\"338\" data-imhwpb-asset-id=\"780395\"> Brad Hooper . Owner of Naples Irrigation &amp; Hooper Irrigation since 1984&nbsp;[/caption]\r\n\r\n</div>\r\n<p class=\"\" style=\"font-size: 15px;\">Established in 1984,&nbsp; Licensed and Insured&nbsp;&nbsp;</p>\r\n\r\n<h3 class=\"\"><i class=\"fa fa-1x fa-envelope-o\"><!-- icon --></i> Email</h3>\r\n<p class=\"\"><a href=\"mailto:hooperirrigation@gmail.com\">hooperirrigation@gmail.com</a></p>\r\n\r\n<h3 class=\"\"><i class=\"fa fa-1x fa-phone\"><!-- icon --></i> Phone</h3>\r\n<p class=\"\">239-793-7755 or 239-250-5265</p>\r\n\r\n<h3><i class=\"fa fa-1x fa-map-marker\"><!-- icon --></i> Address</h3>\r\nPO Box 2857, Naples FL 34106\r\n<p class=\"boldgrid-google-maps\" style=\"width: 100%; height: 200px;\"><iframe style=\"width: 100%; height: 100%;\" src=\"https://maps.google.com/maps?q=PO+Box+2857%2C+Naples+FL+34106&amp;t=m&amp;z=16&amp;output=embed\" frameborder=\"0\"></iframe></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n<h3 class=\"\">Get in Touch</h3>\r\n<p class=\"\">We are here to answer any questions you may have. Reach out to us and we\'ll respond as soon as we can.&nbsp; &nbsp;Feel free to leave the phone number for a callback</p>\r\n<p class=\"\">&nbsp;No charge for system checks/evaluations.&nbsp; &nbsp;&nbsp;</p>\r\n<p class=\"\">Thank You Bradford Hooper&nbsp;</p>\r\n<p class=\"\">[weforms id=\"63\"]</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Contact Us Naples Irrigation - Brad Hooper','','inherit','closed','closed','','107-revision-v1','','','2022-03-01 19:59:07','2022-03-01 19:59:07','',107,'https://naplesirrigation.com/?p=184',0,'revision','',0),(347,1,'2022-07-06 20:41:55','2022-07-06 20:41:55','<div class=\"boldgrid-section\" style=\"color: #000000; background-image: url(\'https://source.unsplash.com/MqJX_8EaStM/1920x1080\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"1175055\" data-image-url=\"https://source.unsplash.com/MqJX_8EaStM/1920x1080\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 120px; padding-bottom: 140px;\">\r\n<div class=\"col-md-7 col-sm-4 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\"><img class=\"wp-image-186 alignnone\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/cropped-20210313_120201-scaled-1-e1649096217790.jpg\" alt=\"Perfect Irrigation System\" width=\"667\" height=\"500\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-5 col-sm-8 col-xs-12 wedge-cta\" custom-classes=\"wedge-cta\">\r\n<h2 class=\"\">NAPLES IRRIGATION lET US BRING YOUR YARD BACK TO LIFE</h2>\r\n<p class=\"\" style=\"font-size: 14px;\">BEST LAWN&nbsp; SPRINKLER REPAIR, MAINTENANCE , DESIGN&nbsp; SYSTEM&nbsp;</p>\r\n\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-16\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\"><a class=\"button-secondary btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1\" href=\"https://naplesirrigation.com/contact-us/\">CONTACT US TODAY</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color3-background-color color-3-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-12\">\r\n<h2 class=\"\" style=\"text-align: center; font-size: 21px;\">Naples Irrigation d/b/a Hooper Irrigation is owned and operated by Brad Hooper who is a fully licensed and insured Irrigation expert in the Naples area for 40 years.</h2>\r\n<h2 class=\"\" style=\"text-align: center; font-size: 21px;\">What we offer to all our Customers:</h2>\r\n<h2 class=\"\" style=\"text-align: center; font-size: 21px;\">Innovative Designs to ensure the best irrigation system is installed for your individual yard or business and price range.</h2>\r\n<h2 class=\"\" style=\"text-align: center; font-size: 21px;\">Repair and Maintenance of all components including irrigation pumps, timers (clocks), valves, manifolds and sprinkler heads. We suggest monthly maintenance to prevent any mishaps or issues but can offer a flexible schedule based on your needs.</h2>\r\n<h2 class=\"\" style=\"text-align: center; font-size: 21px;\">Renovation of existing irrigation systems that may be outdated, broken or damaged.</h2>\r\n<h2 class=\"\" style=\"text-align: center;\">See What We Can Offer</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-2 color1-color\" style=\"width: 65%;\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 90px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-4\">\r\n<p class=\"\"><img class=\"bg-img bg-img-1 wp-image-273 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/IMG_20220128_155353-225x300.jpg\" alt=\"Renovation\" width=\"225\" height=\"300\" data-imhwpb-asset-id=\"695399\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Sprinkler Repair</h3>\r\n<p class=\"\" style=\"font-size: 14px;\">Sprinkler repair|irrigation pumps, clocks, valves manifolds and heads</p>\r\n\r\n</div>\r\n<div class=\"col-xs-12 col-sm-6 col-md-4\">\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Design &amp;</h3>\r\n<p class=\"\"><img class=\"bg-img bg-img-1 alignnone wp-image-135 size-medium\" style=\"color: #333333;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/20201221_152806-300x225.jpg\" alt=\"Maintenance irrigation programs \" width=\"300\" height=\"225\" data-imhwpb-asset-id=\"695400\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">&nbsp;Monthly Maintenance&nbsp;</h3>\r\n<p class=\"\" style=\"font-size: 14px;\">Fully licensed and insured.&nbsp; We take pride in our work and are deemed the best in Naples.&nbsp; &nbsp;Maintenance reduces costly mishaps</p>\r\n\r\n</div>\r\n<div class=\"col-xs-12 col-sm-6 col-md-4\">\r\n<p class=\"\"><img class=\"bg-img bg-img-1 wp-image-180 size-medium\" title=\"Renovation irrigation services \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/received_656891985552879-220x300.jpeg\" alt=\"Repair Sprinkler system irrigaiton\" width=\"220\" height=\"300\" data-imhwpb-asset-id=\"695401\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Renovation</h3>\r\n<p class=\"\" style=\"font-size: 14px;\">If you want to experience the benefits of a customized Renovation our team is experienced 40 years in Naples</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color2-background-color color-2-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-12\">\r\n<h2 class=\"\" style=\"text-align: center;\">Customer Testimonials</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-2 color1-color\" style=\"width: 65%;\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 40px;\">\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle alignnone wp-image-177 \" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/pumpirigationsupply-300x225.jpg\" alt=\"\" width=\"216\" height=\"162\" data-imhwpb-asset-id=\"695402\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\"><strong>Pump SUPPLY HOUSE of Naples</strong></p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\" style=\"font-size: 14px;\">Naples Irrigation , Brad Hooper is one of the best companies in the business to work with.&nbsp;&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-156 \" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/282_127_486_486_20201221_153238-768x1024.jpg\" alt=\"\" width=\"179\" height=\"179\" data-imhwpb-asset-id=\"695403\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\">Engle Denistry</p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\" style=\"font-size: 14px;\">Owner Brad Engle recommends, Naples Irrigation,&nbsp; Brad Hooper for your business\' irrigation needs.&nbsp; &nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-125\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_4YX0oj7gf8o-imhwpb-ut5s3lmwf6dg2wc.jpg\" alt=\"\" width=\"150\" height=\"150\" data-imhwpb-asset-id=\"695404\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\"><strong>Direct Industrial Supply</strong></p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\" style=\"font-size: 14px;\">Brad Hooper of Naples Irrigation is one of our best sprinkler designers and Installer. Highly recommend his services.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-126\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_8tN3flDTQBU-imhwpb-kxmpsoge3h4672l.jpg\" alt=\"\" width=\"169\" height=\"169\" data-imhwpb-asset-id=\"695405\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\">&nbsp;</p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\" style=\"font-size: 14px;\">I was so pleased with the sprinkler system Brad Hooper customized and designed for my flower garden.&nbsp; Now my landscaping looks beautiful every day.&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Welcome','','inherit','closed','closed','','103-revision-v1','','','2022-07-06 20:41:55','2022-07-06 20:41:55','',103,'https://naplesirrigation.com/?p=347',0,'revision','',0),(186,1,'2022-03-01 20:30:34','2022-03-01 20:30:34','https://naplesirrigation.com/wp-content/uploads/2022/02/cropped-20210313_120201-scaled-1.jpg','','','inherit','open','closed','','cropped-20210313_120201-scaled-1-jpg','','','2022-04-04 19:58:57','2022-04-04 19:58:57','',103,'https://naplesirrigation.com/wp-content/uploads/2022/02/cropped-20210313_120201-scaled-1.jpg',0,'attachment','image/jpeg',0),(187,1,'2022-03-01 20:31:59','2022-03-01 20:31:59','https://naplesirrigation.com/wp-content/uploads/2022/02/cropped-20201221_153230-scaled-1.jpg','cropped-20201221_153230-scaled-1.jpg','','inherit','open','closed','','cropped-20201221_153230-scaled-1-jpg','','','2022-03-01 20:31:59','2022-03-01 20:31:59','',0,'https://naplesirrigation.com/wp-content/uploads/2022/02/cropped-20201221_153230-scaled-1.jpg',0,'attachment','image/jpeg',0),(188,1,'2022-03-01 20:35:42','2022-03-01 20:35:42','https://naplesirrigation.com/wp-content/uploads/2022/02/cropped-wedge-fitness-imhwpb-kh917lpg3c92iw1.jpg','About Naples Irrigation | Hooper Irrigation','','inherit','open','closed','','cropped-wedge-fitness-imhwpb-kh917lpg3c92iw1-jpg','','','2022-03-01 20:38:00','2022-03-01 20:38:00','',0,'https://naplesirrigation.com/wp-content/uploads/2022/02/cropped-wedge-fitness-imhwpb-kh917lpg3c92iw1.jpg',0,'attachment','image/jpeg',0),(189,1,'2022-03-01 20:36:05','2022-03-01 20:36:05','https://naplesirrigation.com/wp-content/uploads/2022/02/cropped-cropped-wedge-fitness-imhwpb-kh917lpg3c92iw1.jpg','cropped-cropped-wedge-fitness-imhwpb-kh917lpg3c92iw1.jpg','','inherit','open','closed','','cropped-cropped-wedge-fitness-imhwpb-kh917lpg3c92iw1-jpg','','','2022-03-01 20:36:05','2022-03-01 20:36:05','',0,'https://naplesirrigation.com/wp-content/uploads/2022/02/cropped-cropped-wedge-fitness-imhwpb-kh917lpg3c92iw1.jpg',0,'attachment','image/jpeg',0),(190,1,'2022-03-01 20:38:08','2022-03-01 20:38:08','https://naplesirrigation.com/wp-content/uploads/2022/02/cropped-cropped-wedge-fitness-imhwpb-kh917lpg3c92iw1-1.jpg','cropped-cropped-wedge-fitness-imhwpb-kh917lpg3c92iw1-1.jpg','','inherit','open','closed','','cropped-cropped-wedge-fitness-imhwpb-kh917lpg3c92iw1-1-jpg','','','2022-03-01 21:04:55','2022-03-01 21:04:55','',0,'https://naplesirrigation.com/wp-content/uploads/2022/02/cropped-cropped-wedge-fitness-imhwpb-kh917lpg3c92iw1-1.jpg',0,'attachment','image/jpeg',0),(191,1,'2022-07-14 18:01:46','2022-07-14 18:01:46','<div class=\"boldgrid-section\">\n<div class=\"container\">\n<div class=\"row\" style=\"padding-top: 42px;\">\n<div class=\"col-md-5 col-xs-12 col-sm-12 col-lg-5\">\n<h4 class=\"\">About Naples Irrigation</h4>\n<h4 class=\"\">d/b/a Hooper IRRIGATION</h4>\n<p class=\"\" style=\"font-size: 14px;\">About the Owner:&nbsp; &nbsp;Brad Hooper, a formal graduate of the University of Evansville, Indiana began his 40 year career in the Naples, Florida area with the formation of Hooper Irrigation in 1982.&nbsp; &nbsp; &nbsp;</p>\n<p class=\"\" style=\"font-size: 14px;\">The company offers a full complement of services to residential and multifamily homes, as well as, small commercial businesses in Naples and nearby communities.&nbsp;&nbsp;</p>\n<p class=\"\" style=\"font-size: 14px;\">&nbsp;Brad Hooper offers new innovative designed systems that fit his customer\'s landscaping and lawn requirements and at a price range tailored to his customer\'s needs.&nbsp; &nbsp;His designs are geared toward the prevention of the mishaps experienced with badly designed systems.&nbsp; &nbsp;</p>\n<p class=\"\" style=\"font-size: 14px;\">In addition to new installations, Hooper Irrigation specializes in renovations of existing systems, repair,&nbsp; and replacements of all components such as sprinkler heads, electrical valves, clocks and pumps to ensure a flawless customer experience.&nbsp;</p>\n<p class=\"\" style=\"font-size: 14px;\">To maintain a beautiful lawn or landscape for your home or business, Hooper Irrigation will provide personalized maintenance programs to fit your needs: monthly, bi-monthly, or quarterly programs are available to support your project.</p>\n<p class=\"\" style=\"font-size: 14px;\">Maintenance programs are one of the most important services we offer to prevent high water bills, broken sprinkler heads, oversprays, pipes, pump damage, valve, or even simply resetting clocks due to any State water regulations.</p>\n<p class=\"\" style=\"font-size: 14px;\">Hooper Irrigation has installed over 4,000 new systems and has serviced thousands of systems whether installed by Hooper Irrigation or not. Owner Brad Hooper guarantees his work and is well recognized and recommended in the industry.</p>\n<p class=\"\" style=\"font-size: 14px;\">We hope you will allow us the opportunity to help you with all your irrigation needs.</p>\n<p class=\"\" style=\"font-size: 14px;\">To learn more about how to sign up for our Maintenace Program.&nbsp; Please contact us today at 239-793-775.&nbsp;&nbsp;</p>\n<p class=\"\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" style=\"font-size: 14px;\" href=\"https://naplesirrigation.com/contact-us/\" target=\"_blank\" rel=\"noopener\">Contact Us</a></p>\n\n</div>\n<div class=\"col-md-6 col-xs-12 col-sm-12 col-lg-6\">\n\n[caption id=\"attachment_179\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-179\" title=\"renovation of existing system \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/received_2444269415708471-220x300.jpeg\" alt=\"Renovations of existing system \" width=\"300\" height=\"410\" data-imhwpb-asset-id=\"789476\"> Renovations for a beautiful yard[/caption]\n<p class=\"\">&nbsp;</p>\n\n</div>\n<div class=\"col-md-1 col-sm-12 col-xs-12 col-lg-1\">\n<p class=\"mod-reset\"><img class=\"alignnone wp-image-146 size-thumbnail\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/IMG_20211101_150730-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\"></p>\n\n<div class=\"\">\n<p class=\"\">&nbsp;</p>\n<p class=\"\">&nbsp;</p>\n\n</div>\n</div>\n</div>\n</div>\n</div>\n<div class=\"boldgrid-section\">\n<div class=\"container\">\n<div class=\"row\">\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\n</div>\n</div>\n</div>\n<div class=\"boldgrid-section\">\n<div class=\"container\">\n<div class=\"row\">\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\n</div>\n</div>\n</div>\n<div class=\"boldgrid-section\">\n<div class=\"container\">\n<div class=\"row\">\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\n</div>\n</div>\n</div>\n<div class=\"boldgrid-section\">\n<div class=\"container\"></div>\n</div>','About Us','','inherit','closed','closed','','105-autosave-v1','','','2022-07-14 18:01:46','2022-07-14 18:01:46','',105,'https://naplesirrigation.com/?p=191',0,'revision','',0),(192,1,'2022-03-01 21:13:14','2022-03-01 21:13:14','','20200801_150124','','inherit','open','closed','','20200801_150124','','','2022-07-07 13:50:49','2022-07-07 13:50:49','',105,'https://naplesirrigation.com/wp-content/uploads/2022/03/20200801_150124.jpg',0,'attachment','image/jpeg',0),(193,1,'2022-03-02 15:06:55','2022-03-02 15:06:55','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 42px;\">\r\n<div class=\"col-md-5 col-xs-12 col-sm-12\">\r\n<h1 class=\"\">About</h1>\r\n<h4 class=\"\">A Well-roundeults</h4>\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n\r\n<hr>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\nOur health and fitness program has been designed to help you develop the four core areas of fitness: cardiovascular exercise, flexibility, nutrition, and strength training. Developin\r\n<h4 class=\"\">D PROGRAM FOR WELL-ROUNDED RES</h4>\r\ng these four core areas can help you improve your health and your physique. Whether you are interested in toning and tightening, worried about weight management, or just want to get into a weekly workout routine, our team of professional fitness experts are here to help.\r\n\r\nWe offer personalized training sessions, group workout classes, and Do-It-Yourself access to top of the line fitness equipment. Our goal is to help you achieve the healthy physique that is best suited to your personal goals and lifestyle. We offer a dedicated, professional, and friendly environment that is designed to support your every need.\r\n\r\nTo learn more about how you can join today we invite you to contact us today. We look forward to helping you start your fitness journey.\r\n<p class=\"\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"#\">Contact Us</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n\r\n[caption id=\"attachment_179\" align=\"alignnone\" width=\"560\"]<img class=\"wp-image-179 size-full\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/received_2444269415708471.jpeg\" alt=\"Renovation design sprinkler irrigation\" width=\"560\" height=\"765\" data-imhwpb-asset-id=\"789476\"> Renovations for a beautiful yard[/caption]\r\n\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\">\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-151 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/20201221_152447-225x300.jpg\" alt=\"\" width=\"225\" height=\"300\" data-imhwpb-built-photo-search=\"68|any\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-146 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/IMG_20211101_150730-225x300.jpg\" alt=\"\" width=\"225\" height=\"300\" data-imhwpb-built-photo-search=\"68|any\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-192 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/20200801_150124-225x300.jpg\" alt=\"\" width=\"225\" height=\"300\" data-imhwpb-built-photo-search=\"68|any\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-12\">\r\n<p class=\"mod-img\"><img class=\"aligncenter size-full wp-image-115\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tLy1yV2p5ZE5oQVR3LzYwMHg0NTA_3D-imhwpb-qi6hj44g334fjqc.jpg\" alt=\"\" width=\"600\" height=\"450\" data-imhwpb-asset-id=\"780386\"></p>\r\n\r\n<h2 style=\"text-align: center;\">Dedication to Fitness</h2>\r\nWe are dedicated to everything fitness! From cardiovascular to medicine balls to resistance training, we offer a wide-variety of services and equipment that are designed to help you reach your fitness goals.\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12\">\r\n<p class=\"mod-img\"><img class=\"aligncenter size-full wp-image-116\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL19QZFpkVzdmaURjLzYwMHg0NTA_3D-imhwpb-24tawnme8snkr6i.jpg\" alt=\"\" width=\"600\" height=\"450\" data-imhwpb-asset-id=\"780387\"></p>\r\n\r\n<h2 style=\"text-align: center;\">Personal Training</h2>\r\nDo you need help staying motivated and reaching your fitness goals? Check out our personal training services. We will design a customized program to help you on your fitness journey.\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12\">\r\n<p class=\"mod-img\"><img class=\"aligncenter size-full wp-image-117\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL3ZHUTQ5bDlJNEVFLzYwMHg0NTA_3D-imhwpb-ceho1ljgk9lzazx.jpg\" alt=\"\" width=\"600\" height=\"450\" data-imhwpb-asset-id=\"780388\"></p>\r\n\r\n<h2 style=\"text-align: center;\">Helping Customers Focus on Health</h2>\r\nOur services are designed to help our customers focus on health. Whether you are worried about weight management or simply want to learn more about the effects of a healthy diet and fitness regime, we can help you to achieve a balanced lifestyle.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','About Us','','inherit','closed','closed','','105-revision-v1','','','2022-03-02 15:06:55','2022-03-02 15:06:55','',105,'https://naplesirrigation.com/?p=193',0,'revision','',0),(222,1,'2022-04-04 19:55:26','2022-04-04 19:55:26','<div class=\"boldgrid-section\" style=\"color: #000000; background-image: url(\'https://source.unsplash.com/MqJX_8EaStM/1920x1080\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"1175055\" data-image-url=\"https://source.unsplash.com/MqJX_8EaStM/1920x1080\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 120px; padding-bottom: 140px;\">\r\n<div class=\"col-md-7 col-sm-4 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\">14</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-5 col-sm-8 col-xs-12 wedge-cta\" custom-classes=\"wedge-cta\">\r\n<h2 class=\"\">NAPLES IRRIGATION lET US BRING YOUR YARD BACK TO LIFE</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-16\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\" style=\"margin-top: 20px; margin-bottom: 30px;\">&nbsp;</p>\r\n<p class=\"\"><a class=\"button-secondary btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1\" href=\"https://naplesirrigation.com/\">CONTACT US TODAY</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color3-background-color color-3-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-12\">\r\n<h2 class=\"\" style=\"text-align: center;\">See What We Can Offer</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-2 color1-color\" style=\"width: 65%;\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 90px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-4\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-1 aligncenter wp-image-143 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/received_1072950093527088-222x300.jpeg\" alt=\"\" width=\"192\" height=\"259\" data-imhwpb-asset-id=\"695399\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Renovation</h3>\r\n<p class=\"\">If you want to experience the benefits of a customized Renovation our team is experienced 40 years in Naples&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-xs-12 col-sm-6 col-md-4\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-1 aligncenter wp-image-135 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/20201221_152806-300x225.jpg\" alt=\"\" width=\"338\" height=\"253\" data-imhwpb-asset-id=\"695400\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Design &amp; Monthly Maintenance&nbsp;</h3>\r\n<p class=\"\">Fully licensed and insured.&nbsp; We take pride in our work and are deemed the best in Naples.&nbsp;&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-xs-12 col-sm-6 col-md-4\">\r\n\r\n<img class=\"bg-img bg-img-1 wp-image-180 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/received_656891985552879-220x300.jpeg\" alt=\"Repair Sprinkler system irrigaiton\" width=\"207\" height=\"282\" data-imhwpb-asset-id=\"695401\">\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Sprinkler Repair</h3>\r\n<p class=\"\">New Pumps, Time Clocks, Sprinkler heads, adjustments, and testing we will make your yard beautiful.&nbsp;&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color2-background-color color-2-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-12\">\r\n<h2 class=\"\" style=\"text-align: center;\">Customer Testimonials</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-2 color1-color\" style=\"width: 65%;\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 40px;\">\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle alignnone wp-image-177 \" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/pumpirigationsupply-300x225.jpg\" alt=\"\" width=\"216\" height=\"162\" data-imhwpb-asset-id=\"695402\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\"><strong>Pump SUPPLY HOUSE of Naples</strong></p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Visit us today, highly recommend as one of our strongest customers in the industry today\"</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-156 \" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/282_127_486_486_20201221_153238-768x1024.jpg\" alt=\"\" width=\"179\" height=\"179\" data-imhwpb-asset-id=\"695403\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\">Engle Denistry</p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Brad Engle recommends Brad Hooper to his customers\" Best in Naples&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-125\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_4YX0oj7gf8o-imhwpb-ut5s3lmwf6dg2wc.jpg\" alt=\"\" width=\"150\" height=\"150\" data-imhwpb-asset-id=\"695404\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\"><strong>Direct Industrial Supply</strong></p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Brad Hooper of Naples Irrigation and Hooper Irrigation is one of our best maintenance Sprinkler Man. Highly recommend his services</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-126\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_8tN3flDTQBU-imhwpb-kxmpsoge3h4672l.jpg\" alt=\"\" width=\"169\" height=\"169\" data-imhwpb-asset-id=\"695405\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\">&nbsp;</p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Brad Hooper is one of the best-known sprinkler companies I know highly sought out.&nbsp; Our renovations have never looked better.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Home','','inherit','closed','closed','','103-revision-v1','','','2022-04-04 19:55:26','2022-04-04 19:55:26','',103,'https://naplesirrigation.com/?p=222',0,'revision','',0),(197,1,'2022-04-04 18:00:15','2022-04-04 18:00:15','<div class=\"boldgrid-section\" style=\"color: #000000; background-image: url(\'https://source.unsplash.com/MqJX_8EaStM/1920x1080\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"1175055\" data-image-url=\"https://source.unsplash.com/MqJX_8EaStM/1920x1080\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 120px; padding-bottom: 140px;\">\r\n<div class=\"col-md-7 col-sm-4 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\"><img class=\"wp-image-164  aligncenter\" style=\"font-weight: bold;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/20210313_120212-300x225.jpg\" alt=\"\" width=\"538\" height=\"403\"></p>\r\n<p class=\"\">Your yard is only as lovely as your Sprinkler System Guy&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-5 col-sm-8 col-xs-12 wedge-cta\" custom-classes=\"wedge-cta\">\r\n<h2 class=\"\">NAPLES IRRIGATION lET US BRING YOUR YARD BACK TO LIFE</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-16\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\" style=\"margin-top: 20px; margin-bottom: 30px;\">&nbsp;</p>\r\n<p class=\"\"><a class=\"button-secondary btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1\" href=\"https://naplesirrigation.com/\">CONTACT US TODAY</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color3-background-color color-3-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-12\">\r\n<h2 class=\"\" style=\"text-align: center;\">See What We Can Offer</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-2 color1-color\" style=\"width: 65%;\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 90px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-4\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-1 aligncenter wp-image-143 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/received_1072950093527088-222x300.jpeg\" alt=\"\" width=\"192\" height=\"259\" data-imhwpb-asset-id=\"695399\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Renovation</h3>\r\n<p class=\"\">If you want to experience the benefits of a customized Renovation our team is experienced 40 years in Naples&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-xs-12 col-sm-6 col-md-4\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-1 aligncenter wp-image-135 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/20201221_152806-300x225.jpg\" alt=\"\" width=\"338\" height=\"253\" data-imhwpb-asset-id=\"695400\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Design &amp; Monthly Maintenance&nbsp;</h3>\r\n<p class=\"\">Fully licensed and insured.&nbsp; We take pride in our work and are deemed the best in Naples.&nbsp;&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-xs-12 col-sm-6 col-md-4 align-column-center\">\r\n<p class=\"\"><img class=\"bg-img bg-img-1 wp-image-180  aligncenter\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/received_656891985552879-220x300.jpeg\" alt=\"Repair Sprinkler system irrigaiton\" width=\"207\" height=\"282\" data-imhwpb-asset-id=\"695401\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Sprinkler Repair</h3>\r\n<p class=\"\">New Pumps, Time Clocks, Sprinkler heads, adjustments, and testing we will make your yard beautiful.&nbsp;&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color2-background-color color-2-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-12\">\r\n<h2 class=\"\" style=\"text-align: center;\">Customer Testimonials</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-2 color1-color\" style=\"width: 65%;\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 40px;\">\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle wp-image-177  aligncenter\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/pumpirigationsupply-300x225.jpg\" alt=\"\" width=\"216\" height=\"162\" data-imhwpb-asset-id=\"695402\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\"><strong>Pump SUPPLY HOUSE of Naples</strong></p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Visit us today, highly recommend as one of our strongest customers in the industry today\"</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-156 \" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/282_127_486_486_20201221_153238-768x1024.jpg\" alt=\"\" width=\"179\" height=\"179\" data-imhwpb-asset-id=\"695403\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\">Engle Denistry</p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Brad Engle recommends Brad Hooper to his customers\" Best in Naples&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-125\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_4YX0oj7gf8o-imhwpb-ut5s3lmwf6dg2wc.jpg\" alt=\"\" width=\"150\" height=\"150\" data-imhwpb-asset-id=\"695404\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\"><strong>Direct Industrial Supply</strong></p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Brad Hooper of Naples Irrigation and Hooper Irrigation is one of our best maintenance Sprinkler Man. Highly recommend his services</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-126\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_8tN3flDTQBU-imhwpb-kxmpsoge3h4672l.jpg\" alt=\"\" width=\"169\" height=\"169\" data-imhwpb-asset-id=\"695405\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\">&nbsp;</p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Brad Hooper is one of the best-known sprinkler companies I know highly sought out.&nbsp; Our renovations have never looked better.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Home','','inherit','closed','closed','','103-revision-v1','','','2022-04-04 18:00:15','2022-04-04 18:00:15','',103,'https://naplesirrigation.com/?p=197',0,'revision','',0),(283,1,'2022-04-26 19:53:59','2022-04-26 19:53:59','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 42px;\">\r\n<div class=\"col-md-5 col-xs-12 col-sm-12\">\r\n<h4 class=\"\">About Naples Irrigation dba Hooper IRRIGATION BeGAN IN 1982.&nbsp; wE ARE licensed and insured.&nbsp;</h4>\r\n<p class=\"\" style=\"font-size: 14px;\">Graduating from the University of Evansville,&nbsp; Bradford Hooper the owner of Naples Irrigation dba-Hooper Irrigation began his career servicing all residential homes, multi-family, and small commercial businesses buildings, and the Hooper Irrigation design touch which we are truly noted for.&nbsp; Poor design is a large problem in the Irrigation Industry.&nbsp;&nbsp;</p>\r\n<p class=\"\" style=\"font-size: 14px;\">Specializing in renovations of an existing system, repair, and replacement of electrical valves, sprinkler heads, clocks, and pumps.&nbsp; Complete adjustment of systems of all types.&nbsp;&nbsp;</p>\r\n<p class=\"\" style=\"font-size: 14px;\">Naples Irrigation can design your system for a beautiful yard.</p>\r\n<p class=\"\" style=\"font-size: 14px;\">We offer a personalized maintenance program to fit your needs:&nbsp; monthly, bi-monthly, or quarterly programs available to support your yard&nbsp;</p>\r\n<p class=\"\" style=\"font-size: 14px;\">&nbsp;Maintenance programs are an important part of our business as it prevents high water bills, broken sprinkler heads, oversprays, pipes, pump damage, valve, or just resetting clocks due to the country\'s regulations - dry months and proper times to water.&nbsp;&nbsp;</p>\r\n<p class=\"\" style=\"font-size: 14px;\">If your sprinkler system is not getting enough pressure, you need a service call for an evaluation.&nbsp;&nbsp;</p>\r\n<p class=\"\" style=\"font-size: 14px;\">Over 4000 new systems were installed, and tens of thousands of repairs.&nbsp; We celebrate 40 YEARS OF SERVICE.&nbsp; &nbsp; Hope you allow us the opportunity to help you with your sprinkler!&nbsp;&nbsp;</p>\r\n<p class=\"\" style=\"font-size: 14px;\">To learn more about how you can sign up today for your Maintenace Program.&nbsp; Please contact us today</p>\r\n<p class=\"\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" style=\"font-size: 14px;\" href=\"https://naplesirrigation.com/contact-us/\" target=\"_blank\" rel=\"noopener\">Contact Us</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n\r\n[caption id=\"attachment_179\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-179\" title=\"renovation of existing system \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/received_2444269415708471-220x300.jpeg\" alt=\"Renovations of existing system \" width=\"300\" height=\"410\" data-imhwpb-asset-id=\"789476\"> Renovations for a beautiful yard[/caption]\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\"></div>\r\n</div>','About Us','','inherit','closed','closed','','105-revision-v1','','','2022-04-26 19:53:59','2022-04-26 19:53:59','',105,'https://naplesirrigation.com/?p=283',0,'revision','',0),(280,1,'2022-04-25 19:12:07','2022-04-25 19:12:07','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 42px;\">\r\n<div class=\"col-md-5 col-xs-12 col-sm-12\">\r\n<h4 class=\"\">About Naples Irrigation dba Hooper IRRIGATION BeGAN IN 1982.&nbsp; wE ARE licensed and insured.&nbsp;</h4>\r\n<p class=\"\">Graduating from the University of Evansville,&nbsp; Bradford Hooper the owner of Naples Irrigation dba-Hooper Irrigation began his career servicing all residential homes, multi-family, and small commercial businesses buildings, and the Hooper Irrigation design touch which we are truly noted for.&nbsp; Poor design is a large problem in the Irrigation Industry.&nbsp;&nbsp;</p>\r\n<p class=\"\">Specializing in renovations of an existing system, repair, and replacement of electrical valves, sprinkler heads, clocks, and pumps.&nbsp; Complete adjustment of systems of all types.&nbsp;&nbsp;</p>\r\n<p class=\"\">Naples Irrigation can design your system for a beautiful yard.</p>\r\n<p class=\"\">We offer a personalized maintenance program to fit your needs:&nbsp; monthly, bi-monthly, or quarterly programs available to support your yard&nbsp;</p>\r\n<p class=\"\">&nbsp;Maintenance programs are an important part of our business as it prevents high water bills, broken sprinkler heads, oversprays, pipes, pump damage, valve, or just resetting clocks due to the country\'s regulations - dry months and proper times to water.&nbsp;&nbsp;</p>\r\n<p class=\"\">If your sprinkler system is not getting enough pressure, you need a service call for an evaluation.&nbsp;&nbsp;</p>\r\n<p class=\"\">Over 4000 new systems were installed, and tens of thousands of repairs.&nbsp; We celebrate 40 YEARS OF SERVICE.&nbsp; &nbsp; Hope you allow us the opportunity to help you with your sprinkler!&nbsp;&nbsp;</p>\r\n<p class=\"\">To learn more about how you can sign up today for your Maintenace Program.&nbsp; Please contact us today</p>\r\n<p class=\"\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"https://naplesirrigation.com/contact-us/\" target=\"_blank\" rel=\"noopener\">Contact Us</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n\r\n[caption id=\"attachment_179\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-179\" title=\"renovation of existing system \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/received_2444269415708471-220x300.jpeg\" alt=\"Renovations of existing system \" width=\"300\" height=\"410\" data-imhwpb-asset-id=\"789476\"> Renovations for a beautiful yard[/caption]\r\n\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\">\r\n<div class=\"\">\r\n\r\n<img class=\"wp-image-151\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/20201221_152447-225x300.jpg\" alt=\"Renovation design sprinkler irrigation\" width=\"300\" height=\"400\" data-imhwpb-built-photo-search=\"68|any\">\r\n\r\n<img class=\"wp-image-146\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/IMG_20211101_150730-225x300.jpg\" alt=\"renovations of existing system shown \" width=\"300\" height=\"400\" data-imhwpb-built-photo-search=\"68|any\">\r\n\r\n[caption id=\"attachment_192\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-192\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/20200801_150124-225x300.jpg\" alt=\"repair, replacement of electric valves sprinkler heads, clocks pump\" width=\"300\" height=\"400\" data-imhwpb-built-photo-search=\"68|any\"> Let us bring your yeard back to life[/caption]\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\"></div>\r\n</div>','About Us','','inherit','closed','closed','','105-revision-v1','','','2022-04-25 19:12:07','2022-04-25 19:12:07','',105,'https://naplesirrigation.com/?p=280',0,'revision','',0),(281,1,'2022-04-26 19:44:15','2022-04-26 19:44:15','<div class=\"boldgrid-section\" style=\"color: #000000; background-image: url(\'https://source.unsplash.com/MqJX_8EaStM/1920x1080\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"1175055\" data-image-url=\"https://source.unsplash.com/MqJX_8EaStM/1920x1080\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 120px; padding-bottom: 140px;\">\r\n<div class=\"col-md-7 col-sm-4 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\"><img class=\"wp-image-186 alignnone\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/cropped-20210313_120201-scaled-1-e1649096217790.jpg\" alt=\"Perfect Irrigation System\" width=\"667\" height=\"500\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-5 col-sm-8 col-xs-12 wedge-cta\" custom-classes=\"wedge-cta\">\r\n<h2 class=\"\">NAPLES IRRIGATION lET US BRING YOUR YARD BACK TO LIFE</h2>\r\n<p class=\"\" style=\"font-size: 14px;\">BEST LAWN&nbsp; SPRINKLER REPAIR, MAINTENANCE , DESIGN&nbsp; SYSTEM&nbsp;</p>\r\n\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-16\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\"><a class=\"button-secondary btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1\" href=\"https://naplesirrigation.com/contact-us/\">CONTACT US TODAY</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color3-background-color color-3-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-12\">\r\n<h2 class=\"\" style=\"text-align: center;\">See What We Can Offer</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-2 color1-color\" style=\"width: 65%;\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 90px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-4\">\r\n\r\n<img class=\"bg-img bg-img-1 wp-image-273 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/IMG_20220128_155353-225x300.jpg\" alt=\"Renovation\" width=\"225\" height=\"300\" data-imhwpb-asset-id=\"695399\">\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Sprinkler Repair</h3>\r\n<p class=\"\" style=\"font-size: 14px;\">Sprinkler repair|irrigation pumps, clocks, valves manifolds and heads</p>\r\n\r\n</div>\r\n<div class=\"col-xs-12 col-sm-6 col-md-4\">\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Design &amp;</h3>\r\n<img class=\"bg-img bg-img-1 alignnone wp-image-135 size-medium\" style=\"color: #333333;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/20201221_152806-300x225.jpg\" alt=\"Maintenance irrigation programs \" width=\"300\" height=\"225\" data-imhwpb-asset-id=\"695400\">\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">&nbsp;Monthly Maintenance&nbsp;</h3>\r\n<p class=\"\" style=\"font-size: 14px;\">Fully licensed and insured.&nbsp; We take pride in our work and are deemed the best in Naples.&nbsp; &nbsp;Maintenance reduces costly mishaps</p>\r\n\r\n</div>\r\n<div class=\"col-xs-12 col-sm-6 col-md-4\">\r\n<p class=\"\"><img class=\"bg-img bg-img-1 wp-image-180 size-medium\" title=\"Renovation irrigation services \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/received_656891985552879-220x300.jpeg\" alt=\"Repair Sprinkler system irrigaiton\" width=\"220\" height=\"300\" data-imhwpb-asset-id=\"695401\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Renovation</h3>\r\n<p class=\"\" style=\"font-size: 14px;\">If you want to experience the benefits of a customized Renovation our team is experienced 40 years in Naples</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color2-background-color color-2-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-12\">\r\n<h2 class=\"\" style=\"text-align: center;\">Customer Testimonials</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-2 color1-color\" style=\"width: 65%;\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 40px;\">\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle alignnone wp-image-177 \" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/pumpirigationsupply-300x225.jpg\" alt=\"\" width=\"216\" height=\"162\" data-imhwpb-asset-id=\"695402\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\"><strong>Pump SUPPLY HOUSE of Naples</strong></p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\" style=\"font-size: 14px;\">Visit us today, highly recommend one of our strongest customers in the industry today\"</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-156 \" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/282_127_486_486_20201221_153238-768x1024.jpg\" alt=\"\" width=\"179\" height=\"179\" data-imhwpb-asset-id=\"695403\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\">Engle Denistry</p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\" style=\"font-size: 14px;\">Brad Engle recommends Brad Hooper to his customers\" Best in Naples&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-125\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_4YX0oj7gf8o-imhwpb-ut5s3lmwf6dg2wc.jpg\" alt=\"\" width=\"150\" height=\"150\" data-imhwpb-asset-id=\"695404\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\"><strong>Direct Industrial Supply</strong></p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\" style=\"font-size: 14px;\">Brad Hooper of Naples Irrigation and Hooper Irrigation is one of our best maintenance sprinkler designers and Installer. Highly recommend his services.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-126\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_8tN3flDTQBU-imhwpb-kxmpsoge3h4672l.jpg\" alt=\"\" width=\"169\" height=\"169\" data-imhwpb-asset-id=\"695405\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\">&nbsp;</p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\" style=\"font-size: 14px;\">Brad Hooper is one of the best-known sprinkler companies I know highly sought out.&nbsp; Our renovations have never looked better.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Welcome','','inherit','closed','closed','','103-revision-v1','','','2022-04-26 19:44:15','2022-04-26 19:44:15','',103,'https://naplesirrigation.com/?p=281',0,'revision','',0),(282,1,'2022-04-26 19:44:39','2022-04-26 19:44:39','<div class=\"boldgrid-section\" style=\"color: #000000; background-image: url(\'https://source.unsplash.com/MqJX_8EaStM/1920x1080\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"1175055\" data-image-url=\"https://source.unsplash.com/MqJX_8EaStM/1920x1080\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 120px; padding-bottom: 140px;\">\r\n<div class=\"col-md-7 col-sm-4 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\"><img class=\"wp-image-186 alignnone\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/cropped-20210313_120201-scaled-1-e1649096217790.jpg\" alt=\"Perfect Irrigation System\" width=\"667\" height=\"500\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-5 col-sm-8 col-xs-12 wedge-cta\" custom-classes=\"wedge-cta\">\r\n<h2 class=\"\">NAPLES IRRIGATION lET US BRING YOUR YARD BACK TO LIFE</h2>\r\n<p class=\"\" style=\"font-size: 14px;\">BEST LAWN&nbsp; SPRINKLER REPAIR, MAINTENANCE , DESIGN&nbsp; SYSTEM&nbsp;</p>\r\n\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-16\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\"><a class=\"button-secondary btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1\" href=\"https://naplesirrigation.com/contact-us/\">CONTACT US TODAY</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color3-background-color color-3-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-12\">\r\n<h2 class=\"\" style=\"text-align: center;\">See What We Can Offer</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-2 color1-color\" style=\"width: 65%;\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 90px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-4\">\r\n\r\n<img class=\"bg-img bg-img-1 wp-image-273 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/IMG_20220128_155353-225x300.jpg\" alt=\"Renovation\" width=\"225\" height=\"300\" data-imhwpb-asset-id=\"695399\">\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Sprinkler Repair</h3>\r\n<p class=\"\" style=\"font-size: 14px;\">Sprinkler repair|irrigation pumps, clocks, valves manifolds and heads</p>\r\n\r\n</div>\r\n<div class=\"col-xs-12 col-sm-6 col-md-4\">\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Design &amp;</h3>\r\n<img class=\"bg-img bg-img-1 alignnone wp-image-135 size-medium\" style=\"color: #333333;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/20201221_152806-300x225.jpg\" alt=\"Maintenance irrigation programs \" width=\"300\" height=\"225\" data-imhwpb-asset-id=\"695400\">\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">&nbsp;Monthly Maintenance&nbsp;</h3>\r\n<p class=\"\" style=\"font-size: 14px;\">Fully licensed and insured.&nbsp; We take pride in our work and are deemed the best in Naples.&nbsp; &nbsp;Maintenance reduces costly mishaps</p>\r\n\r\n</div>\r\n<div class=\"col-xs-12 col-sm-6 col-md-4\">\r\n<p class=\"\"><img class=\"bg-img bg-img-1 wp-image-180 size-medium\" title=\"Renovation irrigation services \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/received_656891985552879-220x300.jpeg\" alt=\"Repair Sprinkler system irrigaiton\" width=\"220\" height=\"300\" data-imhwpb-asset-id=\"695401\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Renovation</h3>\r\n<p class=\"\" style=\"font-size: 14px;\">If you want to experience the benefits of a customized Renovation our team is experienced 40 years in Naples</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color2-background-color color-2-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-12\">\r\n<h2 class=\"\" style=\"text-align: center;\">Customer Testimonials</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-2 color1-color\" style=\"width: 65%;\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 40px;\">\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle alignnone wp-image-177 \" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/pumpirigationsupply-300x225.jpg\" alt=\"\" width=\"216\" height=\"162\" data-imhwpb-asset-id=\"695402\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\"><strong>Pump SUPPLY HOUSE of Naples</strong></p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\" style=\"font-size: 14px;\">Visit us today, highly recommend one of our strongest customers in the industry today\"</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-156 \" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/282_127_486_486_20201221_153238-768x1024.jpg\" alt=\"\" width=\"179\" height=\"179\" data-imhwpb-asset-id=\"695403\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\">Engle Denistry</p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\" style=\"font-size: 14px;\">Brad Engle recommends Brad Hooper to his customers\" Best in Naples&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-125\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_4YX0oj7gf8o-imhwpb-ut5s3lmwf6dg2wc.jpg\" alt=\"\" width=\"150\" height=\"150\" data-imhwpb-asset-id=\"695404\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\"><strong>Direct Industrial Supply</strong></p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\" style=\"font-size: 14px;\">Brad Hooper of Naples Irrigation and Hooper Irrigation is one of our best maintenance sprinkler designers and Installer. Highly recommend his services.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-126\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_8tN3flDTQBU-imhwpb-kxmpsoge3h4672l.jpg\" alt=\"\" width=\"169\" height=\"169\" data-imhwpb-asset-id=\"695405\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\">&nbsp;</p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\" style=\"font-size: 14px;\">Brad Hooper is one of the best-known sprinkler companies I know highly sought out.&nbsp; Our renovations have never looked better.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Welcome','','inherit','closed','closed','','103-revision-v1','','','2022-04-26 19:44:39','2022-04-26 19:44:39','',103,'https://naplesirrigation.com/?p=282',0,'revision','',0),(284,1,'2022-04-26 19:56:03','2022-04-26 19:56:03','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 42px;\">\r\n<div class=\"col-md-5 col-xs-12 col-sm-12\">\r\n<h4 class=\"\">About Naples Irrigation dba Hooper IRRIGATION BeGAN IN 1982.&nbsp; wE ARE licensed and insured.&nbsp;</h4>\r\n<p class=\"\" style=\"font-size: 14px;\">Graduating from the University of Evansville,&nbsp; Bradford Hooper the owner of Naples Irrigation dba-Hooper Irrigation began his career servicing all residential homes, multi-family, and small commercial businesses buildings, and the Hooper Irrigation design touch which we are truly noted for.&nbsp; Poor design is a large problem in the Irrigation Industry.&nbsp;&nbsp;</p>\r\n<p class=\"\" style=\"font-size: 14px;\">Specializing in renovations of an existing system, repair, and replacement of electrical valves, sprinkler heads, clocks, and pumps.&nbsp; Complete adjustment of systems of all types.&nbsp;&nbsp;</p>\r\n<p class=\"\" style=\"font-size: 14px;\">Naples Irrigation can design your system for a beautiful yard.</p>\r\n<p class=\"\" style=\"font-size: 14px;\">We offer a personalized maintenance program to fit your needs:&nbsp; monthly, bi-monthly, or quarterly programs available to support your yard&nbsp;</p>\r\n<p class=\"\" style=\"font-size: 14px;\">&nbsp;Maintenance programs are an important part of our business as it prevents high water bills, broken sprinkler heads, oversprays, pipes, pump damage, valve, or just resetting clocks due to the country\'s regulations - dry months and proper times to water.&nbsp;&nbsp;</p>\r\n<p class=\"\" style=\"font-size: 14px;\">If your sprinkler system is not getting enough pressure, you need a service call for an evaluation.&nbsp;&nbsp;</p>\r\n<p class=\"\" style=\"font-size: 14px;\">Over 4000 new systems were installed, and tens of thousands of repairs.&nbsp; We celebrate 40 YEARS OF SERVICE.&nbsp; &nbsp; Hope you allow us the opportunity to help you with your sprinkler!&nbsp;&nbsp;</p>\r\n<p class=\"\" style=\"font-size: 14px;\">To learn more about how you can sign up today for your Maintenace Program.&nbsp; Please contact us today</p>\r\n<p class=\"\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" style=\"font-size: 14px;\" href=\"https://naplesirrigation.com/contact-us/\" target=\"_blank\" rel=\"noopener\">Contact Us</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n\r\n[caption id=\"attachment_179\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-179\" title=\"renovation of existing system \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/received_2444269415708471-220x300.jpeg\" alt=\"Renovations of existing system \" width=\"300\" height=\"410\" data-imhwpb-asset-id=\"789476\"> Renovations for a beautiful yard[/caption]\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\">\r\n<p class=\"mod-reset\"><img class=\"alignnone size-medium wp-image-146\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/IMG_20211101_150730-225x300.jpg\" alt=\"\" width=\"225\" height=\"300\"></p>\r\n\r\n<div class=\"\">\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\"></div>\r\n</div>','About Us','','inherit','closed','closed','','105-revision-v1','','','2022-04-26 19:56:03','2022-04-26 19:56:03','',105,'https://naplesirrigation.com/?p=284',0,'revision','',0),(285,1,'2022-04-26 19:57:42','2022-04-26 19:57:42','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 42px;\">\r\n<div class=\"col-md-5 col-xs-12 col-sm-12\">\r\n<h4 class=\"\">About Naples Irrigation dba Hooper IRRIGATION BeGAN IN 1982.&nbsp; wE ARE licensed and insured.&nbsp;</h4>\r\n<p class=\"\" style=\"font-size: 14px;\">Graduating from the University of Evansville,&nbsp; Bradford Hooper the owner of Naples Irrigation dba-Hooper Irrigation began his career servicing all residential homes, multi-family, and small commercial businesses buildings, and the Hooper Irrigation design touch which we are truly noted for.&nbsp; Poor design is a large problem in the Irrigation Industry.&nbsp;&nbsp;</p>\r\n<p class=\"\" style=\"font-size: 14px;\">Specializing in renovations of an existing system, repair, and replacement of electrical valves, sprinkler heads, clocks, and pumps.&nbsp; Complete adjustment of systems of all types.&nbsp;&nbsp;</p>\r\n<p class=\"\" style=\"font-size: 14px;\">Naples Irrigation can design your system for a beautiful yard.</p>\r\n<p class=\"\" style=\"font-size: 14px;\">We offer a personalized maintenance program to fit your needs:&nbsp; monthly, bi-monthly, or quarterly programs available to support your yard&nbsp;</p>\r\n<p class=\"\" style=\"font-size: 14px;\">&nbsp;Maintenance programs are an important part of our business as it prevents high water bills, broken sprinkler heads, oversprays, pipes, pump damage, valve, or just resetting clocks due to the country\'s regulations - dry months and proper times to water.&nbsp;&nbsp;</p>\r\n<p class=\"\" style=\"font-size: 14px;\">If your sprinkler system is not getting enough pressure, you need a service call for an evaluation.&nbsp;&nbsp;</p>\r\n<p class=\"\" style=\"font-size: 14px;\">Over 4000 new systems were installed, and tens of thousands of repairs.&nbsp; We celebrate 40 YEARS OF SERVICE.&nbsp; &nbsp; Hope you allow us the opportunity to help you with your sprinkler!&nbsp;&nbsp;</p>\r\n<p class=\"\" style=\"font-size: 14px;\">To learn more about how you can sign up today for your Maintenace Program.&nbsp; Please contact us today</p>\r\n<p class=\"\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" style=\"font-size: 14px;\" href=\"https://naplesirrigation.com/contact-us/\" target=\"_blank\" rel=\"noopener\">Contact Us</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n\r\n[caption id=\"attachment_179\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-179\" title=\"renovation of existing system \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/received_2444269415708471-220x300.jpeg\" alt=\"Renovations of existing system \" width=\"300\" height=\"410\" data-imhwpb-asset-id=\"789476\"> Renovations for a beautiful yard[/caption]\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\">\r\n<p class=\"mod-reset\"><img class=\"alignnone wp-image-146 size-thumbnail\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/IMG_20211101_150730-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\"></p>\r\n\r\n<div class=\"\">\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\"></div>\r\n</div>','About Us','','inherit','closed','closed','','105-revision-v1','','','2022-04-26 19:57:42','2022-04-26 19:57:42','',105,'https://naplesirrigation.com/?p=285',0,'revision','',0),(286,1,'2022-04-26 20:01:52','2022-04-26 20:01:52','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 42px;\">\r\n<div class=\"col-md-5 col-xs-12 col-sm-12\">\r\n<h4 class=\"\">About Naples Irrigation dba Hooper IRRIGATION BeGAN IN 1982.&nbsp; wE ARE licensed and insured.&nbsp;</h4>\r\n<p class=\"\" style=\"font-size: 14px;\">Graduating from the University of Evansville,&nbsp; Bradford Hooper the owner of Naples Irrigation dba-Hooper Irrigation began his career servicing all residential homes, multi-family, and small commercial businesses buildings, and the Hooper Irrigation design touch which we are truly noted for.&nbsp; Poor design is a large problem in the Irrigation Industry.&nbsp;&nbsp;</p>\r\n<p class=\"\" style=\"font-size: 14px;\">Specializing in renovations of an existing system, repair, and replacement of electrical valves, sprinkler heads, clocks, and pumps.&nbsp; Complete adjustment of systems of all types.&nbsp;&nbsp;</p>\r\n<p class=\"\" style=\"font-size: 14px;\">Naples Irrigation can design your system for a beautiful yard.</p>\r\n<p class=\"\" style=\"font-size: 14px;\">We offer a personalized maintenance program to fit your needs:&nbsp; monthly, bi-monthly, or quarterly programs available to support your yard&nbsp;</p>\r\n<p class=\"\" style=\"font-size: 14px;\">&nbsp;Maintenance programs are an important part of our business as it prevents high water bills, broken sprinkler heads, oversprays, pipes, pump damage, valve, or just resetting clocks due to the country\'s regulations - dry months and proper times to water.&nbsp;&nbsp;</p>\r\n<p class=\"\" style=\"font-size: 14px;\">If your sprinkler system is not getting enough pressure, you need a service call for an evaluation.&nbsp;&nbsp;</p>\r\n<p class=\"\" style=\"font-size: 14px;\">Over 4000 new systems were installed, and tens of thousands of repairs.&nbsp; We celebrate 40 YEARS OF SERVICE.&nbsp; &nbsp; Hope you allow us the opportunity to help you with your sprinkler!&nbsp;&nbsp;</p>\r\n<p class=\"\" style=\"font-size: 14px;\">To learn more about how you can sign up today for your Maintenace Program.&nbsp; Please contact us today</p>\r\n<p class=\"\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" style=\"font-size: 14px;\" href=\"https://naplesirrigation.com/contact-us/\" target=\"_blank\" rel=\"noopener\">Contact Us</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n\r\n[caption id=\"attachment_179\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-179\" title=\"renovation of existing system \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/received_2444269415708471-220x300.jpeg\" alt=\"Renovations of existing system \" width=\"300\" height=\"410\" data-imhwpb-asset-id=\"789476\"> Renovations for a beautiful yard[/caption]\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\">\r\n<p class=\"mod-reset\"><img class=\"alignnone wp-image-146 size-thumbnail\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/IMG_20211101_150730-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\"></p>\r\n\r\n<div class=\"\">\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\"></div>\r\n</div>','About Us','','inherit','closed','closed','','105-revision-v1','','','2022-04-26 20:01:52','2022-04-26 20:01:52','',105,'https://naplesirrigation.com/?p=286',0,'revision','',0),(287,1,'2022-04-26 20:02:54','2022-04-26 20:02:54','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 42px;\">\r\n<div class=\"col-md-5 col-xs-12 col-sm-12\">\r\n<h4 class=\"\">About Naples Irrigation dba Hooper IRRIGATION BeGAN IN 1982.&nbsp; wE ARE licensed and insured.&nbsp;</h4>\r\n<p class=\"\" style=\"font-size: 14px;\">Graduating from the University of Evansville,&nbsp; Bradford Hooper the owner of Naples Irrigation dba-Hooper Irrigation began his career servicing all residential homes, multi-family, and small commercial businesses buildings, and the Hooper Irrigation design touch which we are truly noted for.&nbsp; Poor design is a large problem in the Irrigation Industry.&nbsp;&nbsp;</p>\r\n<p class=\"\" style=\"font-size: 14px;\">Specializing in renovations of an existing system, repair, and replacement of electrical valves, sprinkler heads, clocks, and pumps.&nbsp; Complete adjustment of systems of all types.&nbsp;&nbsp;</p>\r\n<p class=\"\" style=\"font-size: 14px;\">Naples Irrigation can design your system for a beautiful yard.</p>\r\n<p class=\"\" style=\"font-size: 14px;\">We offer a personalized maintenance program to fit your needs:&nbsp; monthly, bi-monthly, or quarterly programs available to support your yard&nbsp;</p>\r\n<p class=\"\" style=\"font-size: 14px;\">&nbsp;Maintenance programs are an important part of our business as it prevents high water bills, broken sprinkler heads, oversprays, pipes, pump damage, valve, or just resetting clocks due to the country\'s regulations - dry months and proper times to water.&nbsp;&nbsp;</p>\r\n<p class=\"\" style=\"font-size: 14px;\">If your sprinkler system is not getting enough pressure, you need a service call for an evaluation.&nbsp;&nbsp;</p>\r\n<p class=\"\" style=\"font-size: 14px;\">Over 4000 new systems were installed, and tens of thousands of repairs.&nbsp; We celebrate 40 YEARS OF SERVICE.&nbsp; &nbsp; Hope you allow us the opportunity to help you with your sprinkler!&nbsp;&nbsp;</p>\r\n<p class=\"\" style=\"font-size: 14px;\">To learn more about how you can sign up today for your Maintenace Program.&nbsp; Please contact us today</p>\r\n<p class=\"\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" style=\"font-size: 14px;\" href=\"https://naplesirrigation.com/contact-us/\" target=\"_blank\" rel=\"noopener\">Contact Us</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n\r\n[caption id=\"attachment_179\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-179\" title=\"renovation of existing system \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/received_2444269415708471-220x300.jpeg\" alt=\"Renovations of existing system \" width=\"300\" height=\"410\" data-imhwpb-asset-id=\"789476\"> Renovations for a beautiful yard[/caption]\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\">\r\n<p class=\"mod-reset\"><img class=\"alignnone wp-image-146 size-thumbnail\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/IMG_20211101_150730-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\"></p>\r\n\r\n<div class=\"\">\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\"></div>\r\n</div>','About Us','','inherit','closed','closed','','105-revision-v1','','','2022-04-26 20:02:54','2022-04-26 20:02:54','',105,'https://naplesirrigation.com/?p=287',0,'revision','',0),(288,1,'2022-04-26 20:07:57','2022-04-26 20:07:57','','ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops556b15d44db0d41f468218b66b6f1821','','inherit','open','closed','','ixlibrb-0-3-5q80fmjpgcropentropycstinysrgbw400h300fitcrops556b15d44db0d41f468218b66b6f1821','','','2022-04-26 20:07:57','2022-04-26 20:07:57','',0,'https://naplesirrigation.com/wp-content/uploads/2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops556b15d44db0d41f468218b66b6f1821.jpg',0,'attachment','image/jpeg',0),(289,1,'2022-04-26 20:07:58','2022-04-26 20:07:58','','ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops72fd7d0712cef8a21d9275d8bf3c8957','','inherit','open','closed','','ixlibrb-0-3-5q80fmjpgcropentropycstinysrgbw400h300fitcrops72fd7d0712cef8a21d9275d8bf3c8957','','','2022-04-26 20:07:58','2022-04-26 20:07:58','',0,'https://naplesirrigation.com/wp-content/uploads/2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops72fd7d0712cef8a21d9275d8bf3c8957.jpg',0,'attachment','image/jpeg',0),(290,1,'2022-04-26 20:07:59','2022-04-26 20:07:59','','ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops8fe5d3c9969d690788448317e96305c3','','inherit','open','closed','','ixlibrb-0-3-5q80fmjpgcropentropycstinysrgbw400h300fitcrops8fe5d3c9969d690788448317e96305c3','','','2022-04-26 20:07:59','2022-04-26 20:07:59','',0,'https://naplesirrigation.com/wp-content/uploads/2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops8fe5d3c9969d690788448317e96305c3.jpg',0,'attachment','image/jpeg',0),(291,1,'2022-04-26 20:07:59','2022-04-26 20:07:59','','ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops0285a0633197a89d319729b88d1deb1f','','inherit','open','closed','','ixlibrb-0-3-5q80fmjpgcropentropycstinysrgbw400h300fitcrops0285a0633197a89d319729b88d1deb1f','','','2022-04-26 20:07:59','2022-04-26 20:07:59','',0,'https://naplesirrigation.com/wp-content/uploads/2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops0285a0633197a89d319729b88d1deb1f.jpg',0,'attachment','image/jpeg',0),(292,1,'2022-04-26 20:07:59','2022-04-26 20:07:59','','ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops27ecb31830cd9e08e6c0661f858bbe4b','','inherit','open','closed','','ixlibrb-0-3-5q80fmjpgcropentropycstinysrgbw400h300fitcrops27ecb31830cd9e08e6c0661f858bbe4b','','','2022-04-26 20:07:59','2022-04-26 20:07:59','',0,'https://naplesirrigation.com/wp-content/uploads/2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops27ecb31830cd9e08e6c0661f858bbe4b.jpg',0,'attachment','image/jpeg',0),(293,1,'2022-04-26 20:08:00','2022-04-26 20:08:00','','ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops94e35cc6903e4d4f20fc3586bffb6641','','inherit','open','closed','','ixlibrb-0-3-5q80fmjpgcropentropycstinysrgbw400h300fitcrops94e35cc6903e4d4f20fc3586bffb6641','','','2022-04-26 20:08:00','2022-04-26 20:08:00','',0,'https://naplesirrigation.com/wp-content/uploads/2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops94e35cc6903e4d4f20fc3586bffb6641.jpg',0,'attachment','image/jpeg',0),(294,1,'2022-04-26 20:08:00','2022-04-26 20:08:00','','ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcropsf5c525191a63a6212c0aa4f791e5c33e','','inherit','open','closed','','ixlibrb-0-3-5q80fmjpgcropentropycstinysrgbw400h300fitcropsf5c525191a63a6212c0aa4f791e5c33e','','','2022-04-26 20:08:00','2022-04-26 20:08:00','',0,'https://naplesirrigation.com/wp-content/uploads/2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcropsf5c525191a63a6212c0aa4f791e5c33e.jpg',0,'attachment','image/jpeg',0),(295,1,'2022-04-26 20:08:00','2022-04-26 20:08:00','','ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops68c2a012ab21b6861f9b176a9dd7dfa6','','inherit','open','closed','','ixlibrb-0-3-5q80fmjpgcropentropycstinysrgbw400h300fitcrops68c2a012ab21b6861f9b176a9dd7dfa6','','','2022-04-26 20:08:00','2022-04-26 20:08:00','',0,'https://naplesirrigation.com/wp-content/uploads/2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops68c2a012ab21b6861f9b176a9dd7dfa6.jpg',0,'attachment','image/jpeg',0),(346,1,'2022-07-06 20:22:56','2022-07-06 20:22:56','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 42px;\">\r\n<div class=\"col-md-5 col-xs-12 col-sm-12\">\r\n<h4 class=\"\">About Naples Irrigation</h4>\r\n<h4 class=\"\">d/b/a Hooper IRRIGATION</h4>\r\n<p class=\"\" style=\"font-size: 14px;\">About the Owner:&nbsp; &nbsp;Brad Hooper, a formal graduate of the University of Evansville, Indiana began his 40year career in the Naples, Florida area with the formation of Hooper Irrigation in 1982.&nbsp; &nbsp; &nbsp;</p>\r\n<p class=\"\" style=\"font-size: 14px;\">The company offers a full complement of services to residential and multifamily homes, as well as, small commercial businesses in Naples and nearby communitiies.&nbsp;&nbsp;</p>\r\n<p class=\"\" style=\"font-size: 14px;\">&nbsp;Brad Hooper offers new innovative designed systems that fit his customer\'s landscaping and lawn requirements and at a price range tailored to his customer\'s needs.&nbsp; &nbsp;His designs are geared toward the prevention of the mishaps experienced with badly designed systems.&nbsp; &nbsp;</p>\r\n<p class=\"\" style=\"font-size: 14px;\">In addition to new installations, Hooper Irrigation specializes in renovations of existing systems, repair,&nbsp; and replacements of all components such as sprinkler heads, electrical valves, clocks and pumps to ensure a flawless customer experience.&nbsp;</p>\r\n<p class=\"\" style=\"font-size: 14px;\">To maintain a beautiful lawn or landscape for your home or business, Hooper Irrigation will provide personalized maintenance programs to fit your needs: monthly, bi-monthly, or quarterly programs are available to support your project.</p>\r\n<p class=\"\" style=\"font-size: 14px;\">Maintenance programs are one of the most important services we offer to prevent high water bills, broken sprinkler heads, oversprays, pipes, pump damage, valve, or even simply resetting clocks due to any State water regulations.</p>\r\n<p class=\"\" style=\"font-size: 14px;\">Hooper Irrigation has installed over 4,000 new systems and has serviced thousands of systems whether installed by Hooper Irrigation or not. Owner Brad Hooper guarantees his work and is well recognized and recommended in the industry.</p>\r\n<p class=\"\" style=\"font-size: 14px;\">We hope you will allow us the opportunity to help you with all your irrigation needs.</p>\r\n<p class=\"\" style=\"font-size: 14px;\">To learn more about how to sign up for our Maintenace Program.&nbsp; Please contact us today at 239-793-775.&nbsp;&nbsp;</p>\r\n<p class=\"\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" style=\"font-size: 14px;\" href=\"https://naplesirrigation.com/contact-us/\" target=\"_blank\" rel=\"noopener\">Contact Us</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n\r\n[caption id=\"attachment_179\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-179\" title=\"renovation of existing system \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/received_2444269415708471-220x300.jpeg\" alt=\"Renovations of existing system \" width=\"300\" height=\"410\" data-imhwpb-asset-id=\"789476\"> Renovations for a beautiful yard[/caption]\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\">\r\n<p class=\"mod-reset\"><img class=\"alignnone wp-image-146 size-thumbnail\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/IMG_20211101_150730-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\"></p>\r\n\r\n<div class=\"\">\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\"></div>\r\n</div>','About Us','','inherit','closed','closed','','105-revision-v1','','','2022-07-06 20:22:56','2022-07-06 20:22:56','',105,'https://naplesirrigation.com/?p=346',0,'revision','',0),(296,1,'2022-04-26 20:15:13','2022-04-26 20:15:13','','20210313_120212','','inherit','open','closed','','20210313_120212-3','','','2022-04-26 20:15:13','2022-04-26 20:15:13','',105,'https://naplesirrigation.com/wp-content/uploads/2022/04/20210313_120212.jpg',0,'attachment','image/jpeg',0),(297,1,'2022-04-26 20:17:21','2022-04-26 20:17:21','','20201217_155729','','inherit','open','closed','','20201217_155729-2','','','2022-04-26 20:17:21','2022-04-26 20:17:21','',105,'https://naplesirrigation.com/wp-content/uploads/2022/04/20201217_155729.jpg',0,'attachment','image/jpeg',0),(298,1,'2022-04-26 20:23:01','2022-04-26 20:23:01','','20201224_140019','','inherit','open','closed','','20201224_140019','','','2022-04-26 20:23:01','2022-04-26 20:23:01','',105,'https://naplesirrigation.com/wp-content/uploads/2022/04/20201224_140019.jpg',0,'attachment','image/jpeg',0),(299,1,'2022-04-26 20:23:46','2022-04-26 20:23:46','','20201224_140026','','inherit','open','closed','','20201224_140026','','','2022-04-26 20:23:46','2022-04-26 20:23:46','',105,'https://naplesirrigation.com/wp-content/uploads/2022/04/20201224_140026.jpg',0,'attachment','image/jpeg',0),(300,1,'2022-04-26 20:25:06','2022-04-26 20:25:06','','20210106_143559','','inherit','open','closed','','20210106_143559','','','2022-04-26 20:25:06','2022-04-26 20:25:06','',105,'https://naplesirrigation.com/wp-content/uploads/2022/04/20210106_143559.jpg',0,'attachment','image/jpeg',0),(301,1,'2022-04-26 20:35:33','2022-04-26 20:35:33','','NAPLESENGLE','','inherit','open','closed','','naplesengle','','','2022-04-26 20:35:33','2022-04-26 20:35:33','',105,'https://naplesirrigation.com/wp-content/uploads/2022/04/NAPLESENGLE.jpg',0,'attachment','image/jpeg',0),(302,1,'2022-04-26 20:35:52','2022-04-26 20:35:52','','20220424_145721','','inherit','open','closed','','20220424_145721','','','2022-04-26 20:35:52','2022-04-26 20:35:52','',105,'https://naplesirrigation.com/wp-content/uploads/2022/04/20220424_145721.jpg',0,'attachment','image/jpeg',0),(303,1,'2022-04-26 20:36:37','2022-04-26 20:36:37','','BRADENGLE','','inherit','open','closed','','bradengle','','','2022-04-26 20:36:37','2022-04-26 20:36:37','',105,'https://naplesirrigation.com/wp-content/uploads/2022/04/BRADENGLE.jpg',0,'attachment','image/jpeg',0),(304,1,'2022-04-26 20:37:14','2022-04-26 20:37:14','','ENGLENAPLES','','inherit','open','closed','','englenaples','','','2022-04-26 20:37:14','2022-04-26 20:37:14','',105,'https://naplesirrigation.com/wp-content/uploads/2022/04/ENGLENAPLES.jpg',0,'attachment','image/jpeg',0),(305,1,'2022-04-26 20:41:58','2022-04-26 20:41:58','','received_1106340680107062[1]','','inherit','open','closed','','received_11063406801070621','','','2022-04-26 20:41:58','2022-04-26 20:41:58','',105,'https://naplesirrigation.com/wp-content/uploads/2022/04/received_11063406801070621.jpeg',0,'attachment','image/jpeg',0),(306,1,'2022-04-26 20:42:39','2022-04-26 20:42:39','','received_1014047505862801[1]','','inherit','open','closed','','received_10140475058628011','','','2022-04-26 20:42:39','2022-04-26 20:42:39','',105,'https://naplesirrigation.com/wp-content/uploads/2022/04/received_10140475058628011.jpeg',0,'attachment','image/jpeg',0),(307,1,'2022-04-26 20:43:18','2022-04-26 20:43:18','','received_656891985552879[1]','','inherit','open','closed','','received_6568919855528791','','','2022-04-26 20:43:18','2022-04-26 20:43:18','',105,'https://naplesirrigation.com/wp-content/uploads/2022/04/received_6568919855528791.jpeg',0,'attachment','image/jpeg',0),(308,1,'2022-04-26 20:43:38','2022-04-26 20:43:38','','received_1014047505862801[1]','','inherit','open','closed','','received_10140475058628011-2','','','2022-04-26 20:43:38','2022-04-26 20:43:38','',105,'https://naplesirrigation.com/wp-content/uploads/2022/04/received_10140475058628011-1.jpeg',0,'attachment','image/jpeg',0),(309,1,'2022-04-26 20:43:58','2022-04-26 20:43:58','','received_1318963648623589[1]','','inherit','open','closed','','received_13189636486235891','','','2022-04-26 20:43:58','2022-04-26 20:43:58','',105,'https://naplesirrigation.com/wp-content/uploads/2022/04/received_13189636486235891.jpeg',0,'attachment','image/jpeg',0),(310,1,'2022-04-26 20:44:34','2022-04-26 20:44:34','','received_1014047505862801[1]','','inherit','open','closed','','received_10140475058628011-3','','','2022-04-26 20:44:34','2022-04-26 20:44:34','',105,'https://naplesirrigation.com/wp-content/uploads/2022/04/received_10140475058628011-2.jpeg',0,'attachment','image/jpeg',0),(312,1,'2022-04-26 20:56:33','2022-04-26 20:56:33','','ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h400fitcrops1b902cc9b37c149116b8f7fe2c132d1d','','inherit','open','closed','','ixlibrb-0-3-5q80fmjpgcropentropycstinysrgbw400h400fitcrops1b902cc9b37c149116b8f7fe2c132d1d','','','2022-04-26 20:56:33','2022-04-26 20:56:33','',0,'https://naplesirrigation.com/wp-content/uploads/2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h400fitcrops1b902cc9b37c149116b8f7fe2c132d1d.jpg',0,'attachment','image/jpeg',0),(311,1,'2022-04-26 21:07:09','2022-04-26 21:07:09','<div class=\"color-neutral-background-color color-neutral-text-contrast bg-background-color tmpl-gallery-12 boldgrid-section dynamic-gridblock\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 42px; padding-bottom: 42px;\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\">\r\n\r\n[caption id=\"attachment_309\" align=\"alignnone\" width=\"375\"]<img class=\"bg-img wp-image-309 \" title=\"Design Renovate Instal Repair Maintain\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/received_13189636486235891-220x300.jpeg\" alt=\"\" width=\"375\" height=\"511\"> NAPLES IRRIGATION PHOTOS[/caption]\r\n<p class=\"\"><img class=\"wp-image-192  alignleft\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/20200801_150124-225x300.jpg\" alt=\"Repair Sprinkler system irrigation\" width=\"304\" height=\"405\"><img class=\"alignnone size-medium wp-image-171\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/20210313_120201-1-300x225.jpg\" alt=\"\" width=\"300\" height=\"225\"></p>\r\n\r\n<h5 class=\"\" style=\"margin-top: 30px;\">Design REnovate New Irrigation</h5>\r\n<p class=\"\">Naples Irrigation Gallery</p>\r\n<p class=\"\" style=\"margin-top: 20px;\"><a class=\"btn-color-2 btn btn-capitalize btn-raised btn-normal\" href=\"https://naplesirrigation.com/contact-us/\">Learn More</a></p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-6 col-lg-3\">\r\n<p class=\"\" style=\"margin-top: 25px;\"><img class=\"bg-img alignnone wp-image-308 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/0_18.75_300_187.5_received_10140475058628011-1-300x225.jpeg\" alt=\"\" width=\"300\" height=\"187\"></p>\r\n<p class=\"\" style=\"margin-top: 25px;\"><img class=\"bg-img alignnone wp-image-337 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/0_205_400_253.57142857143_received_321726983425382.jpeg\" alt=\"\" width=\"400\" height=\"253\"></p>\r\n<p class=\"\" style=\"margin-top: 25px;\"><img class=\"bg-img alignnone wp-image-304 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/0_271_400_251.04166666667_ENGLENAPLES-768x1024.jpg\" alt=\"\" width=\"400\" height=\"251\"></p>\r\n<p class=\"\" style=\"margin-top: 25px;\"><img class=\"bg-img alignnone wp-image-273 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/0_273_400_248.95833333333_IMG_20220128_155353-768x1024.jpg\" alt=\"\" width=\"400\" height=\"248\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-6 col-lg-3\">\r\n<p class=\"\"><img class=\"bg-img alignnone wp-image-333 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/3_0_219.79166666667_300_received_540117650841980.jpeg\" alt=\"\" width=\"219\" height=\"300\"></p>\r\n\r\n\r\n[caption id=\"attachment_334\" align=\"alignnone\" width=\"222\"]<img class=\"bg-img wp-image-334 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/received_1113209649411439-222x300.jpeg\" alt=\"\" width=\"222\" height=\"300\"> Sprinkler Pump replacement[/caption]\r\n<p class=\"\" style=\"margin-top: 25px;\"><img class=\"bg-img alignnone wp-image-301 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/0_271_400_251.04166666667_NAPLESENGLE-768x1024.jpg\" alt=\"\" width=\"400\" height=\"251\"></p>\r\n<p class=\"\" style=\"margin-top: 25px;\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"gallery-full-width tmpl-gallery-1 boldgrid-section dynamic-gridblock\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-3 col-sm-6 col-xs-6 col-lg-3\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-6 col-lg-3\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-6 col-lg-3\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-6 col-lg-3\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\">\r\n<div class=\"col-md-3 col-sm-6 col-xs-6 col-lg-3\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-6 col-lg-3\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-6 col-lg-3\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-6 col-lg-3\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\">\r\n\r\n&nbsp;\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Gallery','','publish','closed','closed','','gallery','','','2022-07-14 17:53:38','2022-07-14 17:53:38','',0,'https://naplesirrigation.com/?page_id=311',0,'page','',0),(313,1,'2022-04-26 20:56:34','2022-04-26 20:56:34','','ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h400fitcrops66fb5c7e73e7276b0e34a5eb5fcc3a75','','inherit','open','closed','','ixlibrb-0-3-5q80fmjpgcropentropycstinysrgbw400h400fitcrops66fb5c7e73e7276b0e34a5eb5fcc3a75','','','2022-04-26 20:56:34','2022-04-26 20:56:34','',0,'https://naplesirrigation.com/wp-content/uploads/2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h400fitcrops66fb5c7e73e7276b0e34a5eb5fcc3a75.jpg',0,'attachment','image/jpeg',0),(314,1,'2022-04-26 20:56:34','2022-04-26 20:56:34','','ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h400fitcrops2b16b8958234cd06fb2a4ed49ae36156','','inherit','open','closed','','ixlibrb-0-3-5q80fmjpgcropentropycstinysrgbw400h400fitcrops2b16b8958234cd06fb2a4ed49ae36156','','','2022-04-26 20:56:34','2022-04-26 20:56:34','',0,'https://naplesirrigation.com/wp-content/uploads/2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h400fitcrops2b16b8958234cd06fb2a4ed49ae36156.jpg',0,'attachment','image/jpeg',0),(315,1,'2022-04-26 20:56:34','2022-04-26 20:56:34','','ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h400fitcropsf897af1b88da66550cfcddc921cc7495','','inherit','open','closed','','ixlibrb-0-3-5q80fmjpgcropentropycstinysrgbw400h400fitcropsf897af1b88da66550cfcddc921cc7495','','','2022-04-26 20:56:34','2022-04-26 20:56:34','',0,'https://naplesirrigation.com/wp-content/uploads/2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h400fitcropsf897af1b88da66550cfcddc921cc7495.jpg',0,'attachment','image/jpeg',0),(316,1,'2022-04-26 20:56:35','2022-04-26 20:56:35','','ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h400fitcrops97be8f4496dbc78d6e23c9d1b81c5cbe','','inherit','open','closed','','ixlibrb-0-3-5q80fmjpgcropentropycstinysrgbw400h400fitcrops97be8f4496dbc78d6e23c9d1b81c5cbe','','','2022-04-26 20:56:35','2022-04-26 20:56:35','',0,'https://naplesirrigation.com/wp-content/uploads/2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h400fitcrops97be8f4496dbc78d6e23c9d1b81c5cbe.jpg',0,'attachment','image/jpeg',0),(317,1,'2022-04-26 20:56:36','2022-04-26 20:56:36','','ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h400fitcropse4dbca6829a9948e24ee9e7534a251b6','','inherit','open','closed','','ixlibrb-0-3-5q80fmjpgcropentropycstinysrgbw400h400fitcropse4dbca6829a9948e24ee9e7534a251b6','','','2022-04-26 20:56:36','2022-04-26 20:56:36','',0,'https://naplesirrigation.com/wp-content/uploads/2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h400fitcropse4dbca6829a9948e24ee9e7534a251b6.jpg',0,'attachment','image/jpeg',0),(318,1,'2022-04-26 20:56:36','2022-04-26 20:56:36','','ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h400fitcrops5de07112751c65910f5bc64bd7967f19','','inherit','open','closed','','ixlibrb-0-3-5q80fmjpgcropentropycstinysrgbw400h400fitcrops5de07112751c65910f5bc64bd7967f19','','','2022-04-26 20:56:36','2022-04-26 20:56:36','',0,'https://naplesirrigation.com/wp-content/uploads/2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h400fitcrops5de07112751c65910f5bc64bd7967f19.jpg',0,'attachment','image/jpeg',0),(319,1,'2022-04-26 20:56:37','2022-04-26 20:56:37','','ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h400fitcropsd18c648f4d7c341d934407050f2968e0','','inherit','open','closed','','ixlibrb-0-3-5q80fmjpgcropentropycstinysrgbw400h400fitcropsd18c648f4d7c341d934407050f2968e0','','','2022-04-26 20:56:37','2022-04-26 20:56:37','',0,'https://naplesirrigation.com/wp-content/uploads/2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h400fitcropsd18c648f4d7c341d934407050f2968e0.jpg',0,'attachment','image/jpeg',0),(320,1,'2022-04-26 20:56:42','2022-04-26 20:56:42','','ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h250fitcrops742bf33d678bd5797e91b437b19000bd','','inherit','open','closed','','ixlibrb-0-3-5q80fmjpgcropentropycstinysrgbw400h250fitcrops742bf33d678bd5797e91b437b19000bd','','','2022-04-26 20:56:42','2022-04-26 20:56:42','',0,'https://naplesirrigation.com/wp-content/uploads/2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h250fitcrops742bf33d678bd5797e91b437b19000bd.jpg',0,'attachment','image/jpeg',0),(321,1,'2022-04-26 20:56:43','2022-04-26 20:56:43','','ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h250fitcrops4deea82056b1ecce7bb76a471926aa51','','inherit','open','closed','','ixlibrb-0-3-5q80fmjpgcropentropycstinysrgbw400h250fitcrops4deea82056b1ecce7bb76a471926aa51','','','2022-04-26 20:56:43','2022-04-26 20:56:43','',0,'https://naplesirrigation.com/wp-content/uploads/2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h250fitcrops4deea82056b1ecce7bb76a471926aa51.jpg',0,'attachment','image/jpeg',0),(322,1,'2022-04-26 20:56:44','2022-04-26 20:56:44','','ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw750h522fitcrops99fe8a9e59bde4078cbc195dcd3ceeb4','','inherit','open','closed','','ixlibrb-0-3-5q80fmjpgcropentropycstinysrgbw750h522fitcrops99fe8a9e59bde4078cbc195dcd3ceeb4','','','2022-04-26 20:56:44','2022-04-26 20:56:44','',0,'https://naplesirrigation.com/wp-content/uploads/2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw750h522fitcrops99fe8a9e59bde4078cbc195dcd3ceeb4.jpg',0,'attachment','image/jpeg',0),(323,1,'2022-04-26 20:56:44','2022-04-26 20:56:44','','ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h250fitcropsa7f48c788a9950bf2ebc8873b9017f67','','inherit','open','closed','','ixlibrb-0-3-5q80fmjpgcropentropycstinysrgbw400h250fitcropsa7f48c788a9950bf2ebc8873b9017f67','','','2022-04-26 20:56:44','2022-04-26 20:56:44','',0,'https://naplesirrigation.com/wp-content/uploads/2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h250fitcropsa7f48c788a9950bf2ebc8873b9017f67.jpg',0,'attachment','image/jpeg',0),(324,1,'2022-04-26 20:56:44','2022-04-26 20:56:44','','ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h250fitcrops982cef46a934fa45be562222cf0d990a','','inherit','open','closed','','ixlibrb-0-3-5q80fmjpgcropentropycstinysrgbw400h250fitcrops982cef46a934fa45be562222cf0d990a','','','2022-04-26 20:56:44','2022-04-26 20:56:44','',0,'https://naplesirrigation.com/wp-content/uploads/2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h250fitcrops982cef46a934fa45be562222cf0d990a.jpg',0,'attachment','image/jpeg',0),(325,1,'2022-04-26 20:56:44','2022-04-26 20:56:44','','ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h250fitcropsc497936e1546a37085dbea5bf870f0d6','','inherit','open','closed','','ixlibrb-0-3-5q80fmjpgcropentropycstinysrgbw400h250fitcropsc497936e1546a37085dbea5bf870f0d6','','','2022-04-26 20:56:44','2022-04-26 20:56:44','',0,'https://naplesirrigation.com/wp-content/uploads/2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h250fitcropsc497936e1546a37085dbea5bf870f0d6.jpg',0,'attachment','image/jpeg',0),(326,1,'2022-04-26 20:56:45','2022-04-26 20:56:45','','ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h250fitcropsd527295725e09b3b838d6fd1b76c7e7d','','inherit','open','closed','','ixlibrb-0-3-5q80fmjpgcropentropycstinysrgbw400h250fitcropsd527295725e09b3b838d6fd1b76c7e7d','','','2022-04-26 20:56:45','2022-04-26 20:56:45','',0,'https://naplesirrigation.com/wp-content/uploads/2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h250fitcropsd527295725e09b3b838d6fd1b76c7e7d.jpg',0,'attachment','image/jpeg',0),(327,1,'2022-04-26 20:56:46','2022-04-26 20:56:46','','ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h250fitcrops963eccca08a106d49f5f80a1c7babd03','','inherit','open','closed','','ixlibrb-0-3-5q80fmjpgcropentropycstinysrgbw400h250fitcrops963eccca08a106d49f5f80a1c7babd03','','','2022-04-26 20:56:46','2022-04-26 20:56:46','',0,'https://naplesirrigation.com/wp-content/uploads/2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h250fitcrops963eccca08a106d49f5f80a1c7babd03.jpg',0,'attachment','image/jpeg',0),(328,1,'2022-04-26 20:56:46','2022-04-26 20:56:46','','ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h250fitcrops066e43de095ea5f3d1cd72d96455e357','','inherit','open','closed','','ixlibrb-0-3-5q80fmjpgcropentropycstinysrgbw400h250fitcrops066e43de095ea5f3d1cd72d96455e357','','','2022-04-26 20:56:46','2022-04-26 20:56:46','',0,'https://naplesirrigation.com/wp-content/uploads/2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h250fitcrops066e43de095ea5f3d1cd72d96455e357.jpg',0,'attachment','image/jpeg',0),(332,1,'2022-04-26 21:12:19','2022-04-26 21:12:19','<div class=\"color-neutral-background-color color-neutral-text-contrast bg-background-color tmpl-gallery-12 boldgrid-section dynamic-gridblock\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 42px; padding-bottom: 42px;\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\">\r\n\r\n[caption id=\"attachment_309\" align=\"alignnone\" width=\"375\"]<img class=\"bg-img wp-image-309 \" title=\"Design Renovate Instal Repair Maintain\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/received_13189636486235891-220x300.jpeg\" alt=\"\" width=\"375\" height=\"511\"> NAPLES IRRIGATION PHOTOS[/caption]\r\n<h5 class=\"\" style=\"margin-top: 30px;\">Design REnovate New Irrigation</h5>\r\n<p class=\"\">Naples Irrigation Gallary&nbsp;</p>\r\n<p class=\"\" style=\"margin-top: 20px;\"><a class=\"btn-color-2 btn btn-capitalize btn-raised btn-normal\" href=\"#2397937755\">Learn More</a></p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-6\">\r\n<p class=\"\" style=\"margin-top: 25px;\"><img class=\"bg-img alignnone wp-image-308 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/0_18.75_300_187.5_received_10140475058628011-1-300x225.jpeg\" alt=\"\" width=\"300\" height=\"187\"></p>\r\n<p class=\"\" style=\"margin-top: 25px;\"><img class=\"bg-img alignnone wp-image-300 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/0_271_400_251.04166666667_20210106_143559-768x1024.jpg\" alt=\"\" width=\"400\" height=\"251\"></p>\r\n<p class=\"\" style=\"margin-top: 25px;\"><img class=\"bg-img alignnone wp-image-304 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/0_271_400_251.04166666667_ENGLENAPLES-768x1024.jpg\" alt=\"\" width=\"400\" height=\"251\"></p>\r\n<p class=\"\" style=\"margin-top: 25px;\"><img class=\"bg-img alignnone wp-image-273 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/0_273_400_248.95833333333_IMG_20220128_155353-768x1024.jpg\" alt=\"\" width=\"400\" height=\"248\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-6\">\r\n\r\n<img class=\"bg-img wp-image-180 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/received_656891985552879-220x300.jpeg\" alt=\"Repair Sprinkler system irrigaiton\" width=\"231\" height=\"315\">\r\n<p class=\"\" style=\"margin-top: 25px;\"><img class=\"bg-img alignnone wp-image-302 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/0_271_400_251.04166666667_20220424_145721-768x1024.jpg\" alt=\"\" width=\"400\" height=\"251\"></p>\r\n<p class=\"\" style=\"margin-top: 25px;\"><img class=\"bg-img alignnone wp-image-301 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/0_271_400_251.04166666667_NAPLESENGLE-768x1024.jpg\" alt=\"\" width=\"400\" height=\"251\"></p>\r\n<p class=\"\" style=\"margin-top: 25px;\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"gallery-full-width tmpl-gallery-1 boldgrid-section dynamic-gridblock\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-3 col-sm-6 col-xs-6\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-6\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-6\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-6\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\">\r\n<div class=\"col-md-3 col-sm-6 col-xs-6\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-6\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-6\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-6\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n&nbsp;\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Gallary','','inherit','closed','closed','','311-revision-v1','','','2022-04-26 21:12:19','2022-04-26 21:12:19','',311,'https://naplesirrigation.com/?p=332',0,'revision','',0),(329,1,'2022-04-26 21:07:09','2022-04-26 21:07:09','<div class=\"color-neutral-background-color color-neutral-text-contrast bg-background-color tmpl-gallery-12 boldgrid-section dynamic-gridblock\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 42px; padding-bottom: 42px;\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\">\r\n<p class=\"\" style=\"margin-top: 25px;\"><img class=\"bg-img alignnone wp-image-309 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/0_187.62_560_389.76_received_13189636486235891.jpeg\" alt=\"\" width=\"560\" height=\"389\"></p>\r\n\r\n<h5 class=\"\" style=\"margin-top: 30px;\">Design REnovate New Irrigation</h5>\r\n<p class=\"\">Naples Irrigation Gallary&nbsp;</p>\r\n<p class=\"\" style=\"margin-top: 20px;\"><a class=\"btn-color-2 btn btn-capitalize btn-raised btn-normal\" href=\"#2397937755\">Learn More</a></p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-6\">\r\n<p class=\"\" style=\"margin-top: 25px;\"><img class=\"bg-img alignnone wp-image-308 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/0_18.75_300_187.5_received_10140475058628011-1-300x225.jpeg\" alt=\"\" width=\"300\" height=\"187\"></p>\r\n<p class=\"\" style=\"margin-top: 25px;\"><img class=\"bg-img alignnone wp-image-300 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/0_271_400_251.04166666667_20210106_143559-768x1024.jpg\" alt=\"\" width=\"400\" height=\"251\"></p>\r\n<p class=\"\" style=\"margin-top: 25px;\"><img class=\"bg-img alignnone wp-image-304 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/0_271_400_251.04166666667_ENGLENAPLES-768x1024.jpg\" alt=\"\" width=\"400\" height=\"251\"></p>\r\n<p class=\"\" style=\"margin-top: 25px;\"><img class=\"bg-img alignnone wp-image-273 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/0_273_400_248.95833333333_IMG_20220128_155353-768x1024.jpg\" alt=\"\" width=\"400\" height=\"248\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-6\">\r\n\r\n[caption id=\"attachment_180\" align=\"alignnone\" width=\"220\"]<img class=\"bg-img wp-image-180 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/received_656891985552879-220x300.jpeg\" alt=\"Repair Sprinkler system irrigaiton\" width=\"220\" height=\"300\"> Sprinkler repair[/caption]\r\n<p class=\"\" style=\"margin-top: 25px;\"><img class=\"bg-img alignnone wp-image-302 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/0_271_400_251.04166666667_20220424_145721-768x1024.jpg\" alt=\"\" width=\"400\" height=\"251\"></p>\r\n<p class=\"\" style=\"margin-top: 25px;\"><img class=\"bg-img alignnone wp-image-301 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/0_271_400_251.04166666667_NAPLESENGLE-768x1024.jpg\" alt=\"\" width=\"400\" height=\"251\"></p>\r\n<p class=\"\" style=\"margin-top: 25px;\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"gallery-full-width tmpl-gallery-1 boldgrid-section dynamic-gridblock\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-3 col-sm-6 col-xs-6\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-6\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-6\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-6\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\">\r\n<div class=\"col-md-3 col-sm-6 col-xs-6\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-6\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-6\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-6\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n&nbsp;\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Gallary','','inherit','closed','closed','','311-revision-v1','','','2022-04-26 21:07:09','2022-04-26 21:07:09','',311,'https://naplesirrigation.com/?p=329',0,'revision','',0),(343,1,'2022-07-06 19:30:20','2022-07-06 19:30:20','','GALLERY','','publish','closed','closed','','gallery','','','2022-07-06 19:30:20','2022-07-06 19:30:20','',0,'https://naplesirrigation.com/gallery/',5,'nav_menu_item','',0),(331,1,'2022-07-14 17:52:12','2022-07-14 17:52:12','<div class=\"color-neutral-background-color color-neutral-text-contrast bg-background-color tmpl-gallery-12 boldgrid-section dynamic-gridblock\">\n<div class=\"container\">\n<div class=\"row\" style=\"padding-top: 42px; padding-bottom: 42px;\">\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\">\n\n[caption id=\"attachment_309\" align=\"alignnone\" width=\"375\"]<img class=\"bg-img wp-image-309 \" title=\"Design Renovate Instal Repair Maintain\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/received_13189636486235891-220x300.jpeg\" alt=\"\" width=\"375\" height=\"511\"> NAPLES IRRIGATION PHOTOS[/caption]\n<p class=\"\"><img class=\"alignnone size-medium wp-image-192\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/20200801_150124-225x300.jpg\" alt=\"Repair Sprinkler system irrigaiton\" width=\"225\" height=\"300\" data-wp-editing=\"1\"><img class=\"alignnone size-medium wp-image-171\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/20210313_120201-1-300x225.jpg\" alt=\"\" width=\"300\" height=\"225\"></p>\n\n<h5 class=\"\" style=\"margin-top: 30px;\">Design REnovate New Irrigation</h5>\n<p class=\"\">Naples Irrigation Gallery</p>\n<p class=\"\" style=\"margin-top: 20px;\"><a class=\"btn-color-2 btn btn-capitalize btn-raised btn-normal\" href=\"https://naplesirrigation.com/contact-us/\">Learn More</a></p>\n<p class=\"\">&nbsp;</p>\n\n</div>\n<div class=\"col-md-3 col-sm-6 col-xs-6 col-lg-3\">\n<p class=\"\" style=\"margin-top: 25px;\"><img class=\"bg-img alignnone wp-image-308 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/0_18.75_300_187.5_received_10140475058628011-1-300x225.jpeg\" alt=\"\" width=\"300\" height=\"187\"></p>\n<p class=\"\" style=\"margin-top: 25px;\"><img class=\"bg-img alignnone wp-image-337 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/0_205_400_253.57142857143_received_321726983425382.jpeg\" alt=\"\" width=\"400\" height=\"253\"></p>\n<p class=\"\" style=\"margin-top: 25px;\"><img class=\"bg-img alignnone wp-image-304 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/0_271_400_251.04166666667_ENGLENAPLES-768x1024.jpg\" alt=\"\" width=\"400\" height=\"251\"></p>\n<p class=\"\" style=\"margin-top: 25px;\"><img class=\"bg-img alignnone wp-image-273 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/0_273_400_248.95833333333_IMG_20220128_155353-768x1024.jpg\" alt=\"\" width=\"400\" height=\"248\"></p>\n\n</div>\n<div class=\"col-md-3 col-sm-6 col-xs-6 col-lg-3\">\n<p class=\"\"><img class=\"bg-img alignnone wp-image-333 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/3_0_219.79166666667_300_received_540117650841980.jpeg\" alt=\"\" width=\"219\" height=\"300\"></p>\n\n\n[caption id=\"attachment_334\" align=\"alignnone\" width=\"222\"]<img class=\"bg-img wp-image-334 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/received_1113209649411439-222x300.jpeg\" alt=\"\" width=\"222\" height=\"300\"> Sprinkler Pump replacement[/caption]\n<p class=\"\" style=\"margin-top: 25px;\"><img class=\"bg-img alignnone wp-image-301 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/0_271_400_251.04166666667_NAPLESENGLE-768x1024.jpg\" alt=\"\" width=\"400\" height=\"251\"></p>\n<p class=\"\" style=\"margin-top: 25px;\">&nbsp;</p>\n\n</div>\n</div>\n</div>\n</div>\n<div class=\"gallery-full-width tmpl-gallery-1 boldgrid-section dynamic-gridblock\">\n<div class=\"container\">\n<div class=\"row\">\n<div class=\"col-md-3 col-sm-6 col-xs-6 col-lg-3\">\n<div class=\"bg-box-cover bg-box-flush bg-box\">\n<p class=\"mod-reset\">&nbsp;</p>\n\n</div>\n</div>\n<div class=\"col-md-3 col-sm-6 col-xs-6 col-lg-3\">\n<div class=\"bg-box-cover bg-box-flush bg-box\">\n<p class=\"mod-reset\">&nbsp;</p>\n\n</div>\n</div>\n<div class=\"col-md-3 col-sm-6 col-xs-6 col-lg-3\">\n<div class=\"bg-box-cover bg-box-flush bg-box\">\n<p class=\"mod-reset\">&nbsp;</p>\n\n</div>\n</div>\n<div class=\"col-md-3 col-sm-6 col-xs-6 col-lg-3\">\n<div class=\"bg-box-cover bg-box-flush bg-box\">\n<p class=\"mod-reset\">&nbsp;</p>\n\n</div>\n</div>\n</div>\n<div class=\"row\">\n<div class=\"col-md-3 col-sm-6 col-xs-6 col-lg-3\">\n<div class=\"bg-box-cover bg-box-flush bg-box\">\n<p class=\"mod-reset\">&nbsp;</p>\n\n</div>\n</div>\n<div class=\"col-md-3 col-sm-6 col-xs-6 col-lg-3\">\n<div class=\"bg-box-cover bg-box-flush bg-box\">\n<p class=\"mod-reset\">&nbsp;</p>\n\n</div>\n</div>\n<div class=\"col-md-3 col-sm-6 col-xs-6 col-lg-3\">\n<div class=\"bg-box-cover bg-box-flush bg-box\">\n<p class=\"mod-reset\">&nbsp;</p>\n\n</div>\n</div>\n<div class=\"col-md-3 col-sm-6 col-xs-6 col-lg-3\">\n<div class=\"bg-box-cover bg-box-flush bg-box\">\n<p class=\"mod-reset\">&nbsp;</p>\n\n</div>\n</div>\n</div>\n</div>\n</div>\n<div class=\"boldgrid-section\">\n<div class=\"container\">\n<div class=\"row\">\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\">\n\n&nbsp;\n\n</div>\n</div>\n</div>\n</div>','Gallery','','inherit','closed','closed','','311-autosave-v1','','','2022-07-14 17:52:12','2022-07-14 17:52:12','',311,'https://naplesirrigation.com/?p=331',0,'revision','',0),(333,1,'2022-04-27 17:33:10','2022-04-27 17:33:10','','received_540117650841980','','inherit','open','closed','','received_540117650841980','','','2022-04-27 17:33:10','2022-04-27 17:33:10','',311,'https://naplesirrigation.com/wp-content/uploads/2022/04/received_540117650841980.jpeg',0,'attachment','image/jpeg',0),(334,1,'2022-04-27 17:33:55','2022-04-27 17:33:55','','received_1113209649411439','Sprinkler Pump replacement','inherit','open','closed','','received_1113209649411439','','','2022-04-27 17:40:00','2022-04-27 17:40:00','',311,'https://naplesirrigation.com/wp-content/uploads/2022/04/received_1113209649411439.jpeg',0,'attachment','image/jpeg',0),(335,1,'2022-04-27 17:35:39','2022-04-27 17:35:39','','received_540117650841980','','inherit','open','closed','','received_540117650841980-2','','','2022-04-27 17:35:39','2022-04-27 17:35:39','',311,'https://naplesirrigation.com/wp-content/uploads/2022/04/received_540117650841980-1.jpeg',0,'attachment','image/jpeg',0),(336,1,'2022-04-27 17:36:18','2022-04-27 17:36:18','','received_540117650841980','','inherit','open','closed','','received_540117650841980-3','','','2022-04-27 17:36:18','2022-04-27 17:36:18','',311,'https://naplesirrigation.com/wp-content/uploads/2022/04/received_540117650841980-2.jpeg',0,'attachment','image/jpeg',0),(337,1,'2022-04-27 17:37:30','2022-04-27 17:37:30','','received_321726983425382','','inherit','open','closed','','received_321726983425382','','','2022-04-27 17:37:30','2022-04-27 17:37:30','',311,'https://naplesirrigation.com/wp-content/uploads/2022/04/received_321726983425382.jpeg',0,'attachment','image/jpeg',0),(338,1,'2022-04-27 17:38:32','2022-04-27 17:38:32','<div class=\"color-neutral-background-color color-neutral-text-contrast bg-background-color tmpl-gallery-12 boldgrid-section dynamic-gridblock\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 42px; padding-bottom: 42px;\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\">\r\n\r\n[caption id=\"attachment_309\" align=\"alignnone\" width=\"375\"]<img class=\"bg-img wp-image-309 \" title=\"Design Renovate Instal Repair Maintain\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/received_13189636486235891-220x300.jpeg\" alt=\"\" width=\"375\" height=\"511\"> NAPLES IRRIGATION PHOTOS[/caption]\r\n<h5 class=\"\" style=\"margin-top: 30px;\">Design REnovate New Irrigation</h5>\r\n<p class=\"\">Naples Irrigation Gallary&nbsp;</p>\r\n<p class=\"\" style=\"margin-top: 20px;\"><a class=\"btn-color-2 btn btn-capitalize btn-raised btn-normal\" href=\"#2397937755\">Learn More</a></p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-6\">\r\n<p class=\"\" style=\"margin-top: 25px;\"><img class=\"bg-img alignnone wp-image-308 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/0_18.75_300_187.5_received_10140475058628011-1-300x225.jpeg\" alt=\"\" width=\"300\" height=\"187\"></p>\r\n<p class=\"\" style=\"margin-top: 25px;\"><img class=\"bg-img alignnone wp-image-337 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/0_205_400_253.57142857143_received_321726983425382.jpeg\" alt=\"\" width=\"400\" height=\"253\"></p>\r\n<p class=\"\" style=\"margin-top: 25px;\"><img class=\"bg-img alignnone wp-image-304 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/0_271_400_251.04166666667_ENGLENAPLES-768x1024.jpg\" alt=\"\" width=\"400\" height=\"251\"></p>\r\n<p class=\"\" style=\"margin-top: 25px;\"><img class=\"bg-img alignnone wp-image-273 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/0_273_400_248.95833333333_IMG_20220128_155353-768x1024.jpg\" alt=\"\" width=\"400\" height=\"248\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-6\">\r\n<p class=\"\"><img class=\"bg-img  alignnone wp-image-333 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/3_0_219.79166666667_300_received_540117650841980.jpeg\" alt=\"\" width=\"219\" height=\"300\"></p>\r\n<p class=\"\" style=\"margin-top: 25px;\"><img class=\"bg-img alignnone wp-image-334 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/0_230_400_252.8951486698_received_1113209649411439.jpeg\" alt=\"\" width=\"400\" height=\"252\"></p>\r\n<p class=\"\" style=\"margin-top: 25px;\"><img class=\"bg-img alignnone wp-image-301 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/0_271_400_251.04166666667_NAPLESENGLE-768x1024.jpg\" alt=\"\" width=\"400\" height=\"251\"></p>\r\n<p class=\"\" style=\"margin-top: 25px;\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"gallery-full-width tmpl-gallery-1 boldgrid-section dynamic-gridblock\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-3 col-sm-6 col-xs-6\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-6\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-6\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-6\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\">\r\n<div class=\"col-md-3 col-sm-6 col-xs-6\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-6\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-6\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-6\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n&nbsp;\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Gallary','','inherit','closed','closed','','311-revision-v1','','','2022-04-27 17:38:32','2022-04-27 17:38:32','',311,'https://naplesirrigation.com/?p=338',0,'revision','',0),(339,1,'2022-04-27 17:40:57','2022-04-27 17:40:57','<div class=\"color-neutral-background-color color-neutral-text-contrast bg-background-color tmpl-gallery-12 boldgrid-section dynamic-gridblock\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 42px; padding-bottom: 42px;\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\">\r\n\r\n[caption id=\"attachment_309\" align=\"alignnone\" width=\"375\"]<img class=\"bg-img wp-image-309 \" title=\"Design Renovate Instal Repair Maintain\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/received_13189636486235891-220x300.jpeg\" alt=\"\" width=\"375\" height=\"511\"> NAPLES IRRIGATION PHOTOS[/caption]\r\n<h5 class=\"\" style=\"margin-top: 30px;\">Design REnovate New Irrigation</h5>\r\n<p class=\"\">Naples Irrigation Gallary&nbsp;</p>\r\n<p class=\"\" style=\"margin-top: 20px;\"><a class=\"btn-color-2 btn btn-capitalize btn-raised btn-normal\" href=\"#2397937755\">Learn More</a></p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-6\">\r\n<p class=\"\" style=\"margin-top: 25px;\"><img class=\"bg-img alignnone wp-image-308 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/0_18.75_300_187.5_received_10140475058628011-1-300x225.jpeg\" alt=\"\" width=\"300\" height=\"187\"></p>\r\n<p class=\"\" style=\"margin-top: 25px;\"><img class=\"bg-img alignnone wp-image-337 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/0_205_400_253.57142857143_received_321726983425382.jpeg\" alt=\"\" width=\"400\" height=\"253\"></p>\r\n<p class=\"\" style=\"margin-top: 25px;\"><img class=\"bg-img alignnone wp-image-304 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/0_271_400_251.04166666667_ENGLENAPLES-768x1024.jpg\" alt=\"\" width=\"400\" height=\"251\"></p>\r\n<p class=\"\" style=\"margin-top: 25px;\"><img class=\"bg-img alignnone wp-image-273 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/0_273_400_248.95833333333_IMG_20220128_155353-768x1024.jpg\" alt=\"\" width=\"400\" height=\"248\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-6\">\r\n<p class=\"\"><img class=\"bg-img alignnone wp-image-333 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/3_0_219.79166666667_300_received_540117650841980.jpeg\" alt=\"\" width=\"219\" height=\"300\"></p>\r\n\r\n\r\n[caption id=\"attachment_334\" align=\"alignnone\" width=\"222\"]<img class=\"bg-img wp-image-334 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/received_1113209649411439-222x300.jpeg\" alt=\"\" width=\"222\" height=\"300\"> Sprinkler Pump replacement[/caption]\r\n<p class=\"\" style=\"margin-top: 25px;\"><img class=\"bg-img alignnone wp-image-301 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/0_271_400_251.04166666667_NAPLESENGLE-768x1024.jpg\" alt=\"\" width=\"400\" height=\"251\"></p>\r\n<p class=\"\" style=\"margin-top: 25px;\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"gallery-full-width tmpl-gallery-1 boldgrid-section dynamic-gridblock\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-3 col-sm-6 col-xs-6\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-6\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-6\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-6\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\">\r\n<div class=\"col-md-3 col-sm-6 col-xs-6\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-6\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-6\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-6\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n&nbsp;\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Gallary','','inherit','closed','closed','','311-revision-v1','','','2022-04-27 17:40:57','2022-04-27 17:40:57','',311,'https://naplesirrigation.com/?p=339',0,'revision','',0),(340,1,'2022-04-27 17:44:47','2022-04-27 17:44:47','<div class=\"color-neutral-background-color color-neutral-text-contrast bg-background-color tmpl-gallery-12 boldgrid-section dynamic-gridblock\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 42px; padding-bottom: 42px;\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\">\r\n\r\n[caption id=\"attachment_309\" align=\"alignnone\" width=\"375\"]<img class=\"bg-img wp-image-309 \" title=\"Design Renovate Instal Repair Maintain\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/received_13189636486235891-220x300.jpeg\" alt=\"\" width=\"375\" height=\"511\"> NAPLES IRRIGATION PHOTOS[/caption]\r\n<h5 class=\"\" style=\"margin-top: 30px;\">Design REnovate New Irrigation</h5>\r\n<p class=\"\">Naples Irrigation Gallary&nbsp;</p>\r\n<p class=\"\" style=\"margin-top: 20px;\"><a class=\"btn-color-2 btn btn-capitalize btn-raised btn-normal\" href=\"https://naplesirrigation.com/contact-us/\">Learn More</a></p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-6\">\r\n<p class=\"\" style=\"margin-top: 25px;\"><img class=\"bg-img alignnone wp-image-308 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/0_18.75_300_187.5_received_10140475058628011-1-300x225.jpeg\" alt=\"\" width=\"300\" height=\"187\"></p>\r\n<p class=\"\" style=\"margin-top: 25px;\"><img class=\"bg-img alignnone wp-image-337 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/0_205_400_253.57142857143_received_321726983425382.jpeg\" alt=\"\" width=\"400\" height=\"253\"></p>\r\n<p class=\"\" style=\"margin-top: 25px;\"><img class=\"bg-img alignnone wp-image-304 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/0_271_400_251.04166666667_ENGLENAPLES-768x1024.jpg\" alt=\"\" width=\"400\" height=\"251\"></p>\r\n<p class=\"\" style=\"margin-top: 25px;\"><img class=\"bg-img alignnone wp-image-273 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/0_273_400_248.95833333333_IMG_20220128_155353-768x1024.jpg\" alt=\"\" width=\"400\" height=\"248\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-6\">\r\n<p class=\"\"><img class=\"bg-img alignnone wp-image-333 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/3_0_219.79166666667_300_received_540117650841980.jpeg\" alt=\"\" width=\"219\" height=\"300\"></p>\r\n\r\n\r\n[caption id=\"attachment_334\" align=\"alignnone\" width=\"222\"]<img class=\"bg-img wp-image-334 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/received_1113209649411439-222x300.jpeg\" alt=\"\" width=\"222\" height=\"300\"> Sprinkler Pump replacement[/caption]\r\n<p class=\"\" style=\"margin-top: 25px;\"><img class=\"bg-img alignnone wp-image-301 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/0_271_400_251.04166666667_NAPLESENGLE-768x1024.jpg\" alt=\"\" width=\"400\" height=\"251\"></p>\r\n<p class=\"\" style=\"margin-top: 25px;\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"gallery-full-width tmpl-gallery-1 boldgrid-section dynamic-gridblock\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-3 col-sm-6 col-xs-6\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-6\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-6\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-6\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\">\r\n<div class=\"col-md-3 col-sm-6 col-xs-6\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-6\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-6\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-6\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n&nbsp;\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Gallary','','inherit','closed','closed','','311-revision-v1','','','2022-04-27 17:44:47','2022-04-27 17:44:47','',311,'https://naplesirrigation.com/?p=340',0,'revision','',0),(348,1,'2022-07-06 20:45:41','2022-07-06 20:45:41','<div class=\"boldgrid-section\" style=\"color: #000000; background-image: url(\'https://source.unsplash.com/MqJX_8EaStM/1920x1080\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"1175055\" data-image-url=\"https://source.unsplash.com/MqJX_8EaStM/1920x1080\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 120px; padding-bottom: 140px;\">\r\n<div class=\"col-md-7 col-sm-4 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\"><img class=\"wp-image-186 alignnone\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/cropped-20210313_120201-scaled-1-e1649096217790.jpg\" alt=\"Perfect Irrigation System\" width=\"667\" height=\"500\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-5 col-sm-8 col-xs-12 wedge-cta\" custom-classes=\"wedge-cta\">\r\n<h2 class=\"\">NAPLES IRRIGATION lET US BRING YOUR YARD BACK TO LIFE</h2>\r\n<p class=\"\" style=\"font-size: 14px;\">BEST LAWN&nbsp; SPRINKLER REPAIR, MAINTENANCE , DESIGN&nbsp; SYSTEM&nbsp;</p>\r\n\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-16\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\"><a class=\"button-secondary btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1\" href=\"https://naplesirrigation.com/contact-us/\">CONTACT US TODAY</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color3-background-color color-3-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-12\">\r\n<h2 class=\"\" style=\"text-align: center; font-size: 21px;\">Naples Irrigation d/b/a Hooper Irrigation is owned and operated by Brad Hooper who is a fully licensed and insured Irrigation expert in the Naples area for 40 years.</h2>\r\n<h2 class=\"\" style=\"text-align: center; font-size: 21px;\">What we offer to all our Customers:</h2>\r\n<h2 class=\"\" style=\"text-align: center; font-size: 21px;\">Innovative Designs to ensure the best irrigation system is installed for your individual yard or business and price range.</h2>\r\n<h2 class=\"\" style=\"text-align: center; font-size: 21px;\">Repair and Maintenance of all components including irrigation pumps, timers (clocks), valves, manifolds and sprinkler heads. We suggest monthly maintenance to prevent any mishaps or issues but can offer a flexible schedule based on your needs.</h2>\r\n<h2 class=\"\" style=\"text-align: center; font-size: 21px;\">Renovation of existing irrigation systems that may be outdated, broken or damaged.</h2>\r\n<h2 class=\"\" style=\"text-align: center;\">See What We Can Offer</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-2 color1-color\" style=\"width: 65%;\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 90px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-4\">\r\n<p class=\"\"><img class=\"bg-img bg-img-1 wp-image-273 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/IMG_20220128_155353-225x300.jpg\" alt=\"Renovation\" width=\"226\" height=\"301\" data-imhwpb-asset-id=\"695399\"></p>\r\n<p class=\"\">&nbsp;</p>\r\n&nbsp;\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Sprinkler Repair</h3>\r\n<p class=\"\" style=\"font-size: 14px;\">Sprinkler repair Iirrigation pumps, clocks, valves manifolds and heads</p>\r\n\r\n</div>\r\n<div class=\"col-xs-12 col-sm-6 col-md-4\">\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Design &amp;</h3>\r\n<p class=\"\"><img class=\"bg-img bg-img-1 alignnone wp-image-135 size-medium\" style=\"color: #333333;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/20201221_152806-300x225.jpg\" alt=\"Maintenance irrigation programs \" width=\"300\" height=\"225\" data-imhwpb-asset-id=\"695400\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">&nbsp;Monthly Maintenance&nbsp;</h3>\r\n<p class=\"\" style=\"font-size: 14px;\">Fully licensed and insured.&nbsp; We take pride in our work and are deemed the best in Naples.&nbsp; &nbsp;Maintenance reduces costly mishaps</p>\r\n\r\n</div>\r\n<div class=\"col-xs-12 col-sm-6 col-md-4\">\r\n<p class=\"\"><img class=\"bg-img bg-img-1 wp-image-180 size-medium\" title=\"Renovation irrigation services \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/received_656891985552879-220x300.jpeg\" alt=\"Repair Sprinkler system irrigaiton\" width=\"220\" height=\"300\" data-imhwpb-asset-id=\"695401\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Renovation</h3>\r\n<p class=\"\" style=\"font-size: 14px;\">If you want to experience the benefits of a customized Renovation our team is experienced 40 years in Naples</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color2-background-color color-2-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-12\">\r\n<h2 class=\"\" style=\"text-align: center;\">Customer Testimonials</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-2 color1-color\" style=\"width: 65%;\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 40px;\">\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle alignnone wp-image-177 \" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/pumpirigationsupply-300x225.jpg\" alt=\"\" width=\"216\" height=\"162\" data-imhwpb-asset-id=\"695402\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\"><strong>Pump SUPPLY HOUSE of Naples</strong></p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\" style=\"font-size: 14px;\">Naples Irrigation , Brad Hooper is one of the best companies in the business to work with.&nbsp;&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-156 \" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/282_127_486_486_20201221_153238-768x1024.jpg\" alt=\"\" width=\"179\" height=\"179\" data-imhwpb-asset-id=\"695403\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\">Engle Denistry</p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\" style=\"font-size: 14px;\">Owner Brad Engle recommends, Naples Irrigation,&nbsp; Brad Hooper for your business\' irrigation needs.&nbsp; &nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-125\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_4YX0oj7gf8o-imhwpb-ut5s3lmwf6dg2wc.jpg\" alt=\"\" width=\"150\" height=\"150\" data-imhwpb-asset-id=\"695404\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\"><strong>Direct Industrial Supply</strong></p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\" style=\"font-size: 14px;\">Brad Hooper of Naples Irrigation is one of our best sprinkler designers and Installer. Highly recommend his services.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-126\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_8tN3flDTQBU-imhwpb-kxmpsoge3h4672l.jpg\" alt=\"\" width=\"169\" height=\"169\" data-imhwpb-asset-id=\"695405\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\">&nbsp;</p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\" style=\"font-size: 14px;\">I was so pleased with the sprinkler system Brad Hooper customized and designed for my flower garden.&nbsp; Now my landscaping looks beautiful every day.&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Welcome','','inherit','closed','closed','','103-revision-v1','','','2022-07-06 20:45:41','2022-07-06 20:45:41','',103,'https://naplesirrigation.com/?p=348',0,'revision','',0),(349,1,'2022-07-06 20:46:42','2022-07-06 20:46:42','<div class=\"boldgrid-section\" style=\"color: #000000; background-image: url(\'https://source.unsplash.com/MqJX_8EaStM/1920x1080\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"1175055\" data-image-url=\"https://source.unsplash.com/MqJX_8EaStM/1920x1080\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 120px; padding-bottom: 140px;\">\r\n<div class=\"col-md-7 col-sm-4 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\"><img class=\"wp-image-186 alignnone\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/cropped-20210313_120201-scaled-1-e1649096217790.jpg\" alt=\"Perfect Irrigation System\" width=\"667\" height=\"500\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-5 col-sm-8 col-xs-12 wedge-cta\" custom-classes=\"wedge-cta\">\r\n<h2 class=\"\">NAPLES IRRIGATION, d/ba/Hooper Irrigaiton, LLC lET US BRING YOUR YARD BACK TO LIFE</h2>\r\n<p class=\"\" style=\"font-size: 14px;\">BEST LAWN&nbsp; SPRINKLER REPAIR, MAINTENANCE , DESIGN&nbsp; SYSTEM&nbsp;</p>\r\n\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-16\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\"><a class=\"button-secondary btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1\" href=\"https://naplesirrigation.com/contact-us/\">CONTACT US TODAY</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color3-background-color color-3-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-12\">\r\n<h2 class=\"\" style=\"text-align: center; font-size: 21px;\">Naples Irrigation d/b/a Hooper Irrigation is owned and operated by Brad Hooper who is a fully licensed and insured Irrigation expert in the Naples area for 40 years.</h2>\r\n<h2 class=\"\" style=\"text-align: center; font-size: 21px;\">What we offer to all our Customers:</h2>\r\n<h2 class=\"\" style=\"text-align: center; font-size: 21px;\">Innovative Designs to ensure the best irrigation system is installed for your individual yard or business and price range.</h2>\r\n<h2 class=\"\" style=\"text-align: center; font-size: 21px;\">Repair and Maintenance of all components including irrigation pumps, timers (clocks), valves, manifolds and sprinkler heads. We suggest monthly maintenance to prevent any mishaps or issues but can offer a flexible schedule based on your needs.</h2>\r\n<h2 class=\"\" style=\"text-align: center; font-size: 21px;\">Renovation of existing irrigation systems that may be outdated, broken or damaged.</h2>\r\n<h2 class=\"\" style=\"text-align: center;\">See What We Can Offer</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-2 color1-color\" style=\"width: 65%;\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 90px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-4\">\r\n<p class=\"\"><img class=\"bg-img bg-img-1 wp-image-273 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/IMG_20220128_155353-225x300.jpg\" alt=\"Renovation\" width=\"226\" height=\"301\" data-imhwpb-asset-id=\"695399\"></p>\r\n<p class=\"\">&nbsp;</p>\r\n&nbsp;\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Sprinkler Repair</h3>\r\n<p class=\"\" style=\"font-size: 14px;\">Sprinkler repair Iirrigation pumps, clocks, valves manifolds and heads</p>\r\n\r\n</div>\r\n<div class=\"col-xs-12 col-sm-6 col-md-4\">\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Design &amp;</h3>\r\n<p class=\"\"><img class=\"bg-img bg-img-1 alignnone wp-image-135 size-medium\" style=\"color: #333333;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/20201221_152806-300x225.jpg\" alt=\"Maintenance irrigation programs \" width=\"300\" height=\"225\" data-imhwpb-asset-id=\"695400\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">&nbsp;Monthly Maintenance&nbsp;</h3>\r\n<p class=\"\" style=\"font-size: 14px;\">Fully licensed and insured.&nbsp; We take pride in our work and are deemed the best in Naples.&nbsp; &nbsp;Maintenance reduces costly mishaps</p>\r\n\r\n</div>\r\n<div class=\"col-xs-12 col-sm-6 col-md-4\">\r\n<p class=\"\"><img class=\"bg-img bg-img-1 wp-image-180 size-medium\" title=\"Renovation irrigation services \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/received_656891985552879-220x300.jpeg\" alt=\"Repair Sprinkler system irrigaiton\" width=\"220\" height=\"300\" data-imhwpb-asset-id=\"695401\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Renovation</h3>\r\n<p class=\"\" style=\"font-size: 14px;\">If you want to experience the benefits of a customized Renovation our team is experienced 40 years in Naples</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color2-background-color color-2-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-12\">\r\n<h2 class=\"\" style=\"text-align: center;\">Customer Testimonials</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-2 color1-color\" style=\"width: 65%;\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 40px;\">\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle alignnone wp-image-177 \" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/pumpirigationsupply-300x225.jpg\" alt=\"\" width=\"216\" height=\"162\" data-imhwpb-asset-id=\"695402\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\"><strong>Pump SUPPLY HOUSE of Naples</strong></p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\" style=\"font-size: 14px;\">Naples Irrigation , Brad Hooper is one of the best companies in the business to work with.&nbsp;&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-156 \" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/282_127_486_486_20201221_153238-768x1024.jpg\" alt=\"\" width=\"179\" height=\"179\" data-imhwpb-asset-id=\"695403\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\">Engle Denistry</p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\" style=\"font-size: 14px;\">Owner Brad Engle recommends, Naples Irrigation,&nbsp; Brad Hooper for your business\' irrigation needs.&nbsp; &nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-125\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_4YX0oj7gf8o-imhwpb-ut5s3lmwf6dg2wc.jpg\" alt=\"\" width=\"150\" height=\"150\" data-imhwpb-asset-id=\"695404\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\"><strong>Direct Industrial Supply</strong></p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\" style=\"font-size: 14px;\">Brad Hooper of Naples Irrigation is one of our best sprinkler designers and Installer. Highly recommend his services.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-126\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_8tN3flDTQBU-imhwpb-kxmpsoge3h4672l.jpg\" alt=\"\" width=\"169\" height=\"169\" data-imhwpb-asset-id=\"695405\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\">&nbsp;</p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\" style=\"font-size: 14px;\">I was so pleased with the sprinkler system Brad Hooper customized and designed for my flower garden.&nbsp; Now my landscaping looks beautiful every day.&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Welcome','','inherit','closed','closed','','103-revision-v1','','','2022-07-06 20:46:42','2022-07-06 20:46:42','',103,'https://naplesirrigation.com/?p=349',0,'revision','',0),(368,1,'2022-09-06 17:16:24','2022-09-06 17:16:24','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-bottom: 0px; padding-top: 0px;\">\r\n<div class=\"col-md-6 col-xs-12 col-sm-12 col-lg-6\">\r\n<div class=\"image-gallery\">\r\n\r\n[caption id=\"attachment_136\" align=\"alignnone\" width=\"316\"]<img class=\"wp-image-136\" title=\"Owner, Brad Hooper \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/received_462634725313575-222x300.jpeg\" alt=\"Meet Naplesirrigation - Your Yard is only as good as your Sprinkler Guy\" width=\"316\" height=\"427\" data-imhwpb-asset-id=\"780395\"> Brad Hooper. Owner of Naples Irrigation &amp; Hooper Irrigation since 1982. - Your Yard is only as good as your Sprinkler Installer[/caption]\r\n\r\n</div>\r\n<p class=\"\" style=\"font-size: 15px;\">&nbsp; Licensed and Insured&nbsp;&nbsp;</p>\r\n\r\n<h3 class=\"\"><i class=\"fa fa-1x fa-envelope-o\"><!-- icon --></i> Email</h3>\r\n<p class=\"\"><a href=\"mailto:hooperirrigation@gmail.com\">hooperirrigation@gmail.com</a></p>\r\n\r\n<h3 class=\"\"><i class=\"fa fa-1x fa-phone\"><!-- icon --></i> Phone</h3>\r\n<p class=\"\">239-793-7755 or 239-250-5265 (text or call)&nbsp; we strive to call by 7 PM same day</p>\r\n\r\n<h3 class=\"\"><i class=\"fa fa-1x fa-map-marker\"><!-- icon --></i> Address</h3>\r\nPO Box 2857, Naples FL 34106\r\n<p class=\"boldgrid-google-maps\" style=\"width: 100%; height: 200px;\"><iframe style=\"width: 100%; height: 100%;\" src=\"https://maps.google.com/maps?q=PO+Box+2857%2C+Naples+FL+34106&amp;t=m&amp;z=16&amp;output=embed\" frameborder=\"0\"></iframe></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-xs-12 col-sm-12 col-lg-6\">\r\n<div class=\"\">\r\n<p class=\"\">We are here to answer any questions you may have. Reach out to us and we\'ll respond as soon as we can.&nbsp; &nbsp;Feel free to leave your phone number for a callback</p>\r\n<p class=\"\">&nbsp;No charge for system checks/evaluations.&nbsp; &nbsp;&nbsp;</p>\r\n<p class=\"\">Thank You Bradford Hooper&nbsp; Phone: 239-793-7755&nbsp;</p>\r\n[weforms id=\"63\"]\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Contact Us  - Brad Hooper','','inherit','closed','closed','','107-revision-v1','','','2022-09-06 17:16:24','2022-09-06 17:16:24','',107,'https://naplesirrigation.com/?p=368',0,'revision','',0),(366,1,'2022-07-15 19:35:43','2022-07-15 19:35:43','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 42px;\">\r\n<div class=\"col-md-5 col-xs-12 col-sm-12 col-lg-5\">\r\n<h4 class=\"\">About Naples Irrigation</h4>\r\n<h4 class=\"\">d/b/a Hooper IRRIGATION</h4>\r\n<p class=\"\" style=\"font-size: 14px;\">About the Owner:&nbsp; &nbsp;Brad Hooper, a formal graduate of the University of Evansville, Indiana began his 40 year career in the Naples, Florida area with the formation of Hooper Irrigation in 1982.&nbsp; &nbsp; &nbsp;</p>\r\n<p class=\"\" style=\"font-size: 14px;\">The company offers a full complement of services to residential and multifamily homes, as well as, small commercial businesses in Naples and nearby communitiies.&nbsp;&nbsp;</p>\r\n<p class=\"\" style=\"font-size: 14px;\">&nbsp;Brad Hooper offers new innovative designed systems that fit his customer\'s landscaping and lawn requirements and at a price range tailored to his customer\'s needs.&nbsp; &nbsp;His designs are geared toward the prevention of the mishaps experienced with badly designed systems.&nbsp; &nbsp;</p>\r\n<p class=\"\" style=\"font-size: 14px;\">In addition to new installations, Hooper Irrigation specializes in renovations of existing systems, repair,&nbsp; and replacements of all components such as sprinkler heads, electrical valves, clocks and pumps to ensure a flawless customer experience.&nbsp;</p>\r\n<p class=\"\" style=\"font-size: 14px;\">To maintain a beautiful lawn or landscape for your home or business, Hooper Irrigation will provide personalized maintenance programs to fit your needs: monthly, bi-monthly, or quarterly programs are available to support your project.</p>\r\n<p class=\"\" style=\"font-size: 14px;\">Maintenance programs are one of the most important services we offer to prevent high water bills, broken sprinkler heads, oversprays, pipes, pump damage, valve, or even simply resetting clocks due to any State water regulations.</p>\r\n<p class=\"\" style=\"font-size: 14px;\">Hooper Irrigation has installed over 4,000 new systems and has serviced thousands of systems whether installed by Hooper Irrigation or not. Owner Brad Hooper guarantees his work and is well recognized and recommended in the industry.</p>\r\n<p class=\"\" style=\"font-size: 14px;\">We hope you will allow us the opportunity to help you with all your irrigation needs.</p>\r\n<p class=\"\" style=\"font-size: 14px;\">To learn more about how to sign up for our Maintenace Program.&nbsp; Please contact us today at 239-793-775.&nbsp;&nbsp;</p>\r\n<p class=\"\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" style=\"font-size: 14px;\" href=\"https://naplesirrigation.com/contact-us/\" target=\"_blank\" rel=\"noopener\">Contact Us</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-xs-12 col-sm-12 col-lg-6\">\r\n\r\n[caption id=\"attachment_179\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-179\" title=\"renovation of existing system \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/received_2444269415708471-220x300.jpeg\" alt=\"Renovations of existing system \" width=\"300\" height=\"410\" data-imhwpb-asset-id=\"789476\"> Renovations for a beautiful yard[/caption]\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12 col-lg-1\">\r\n<p class=\"mod-reset\"><img class=\"alignnone wp-image-146 size-thumbnail\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/IMG_20211101_150730-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\"></p>\r\n\r\n<div class=\"\">\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\"></div>\r\n</div>','About Us','','inherit','closed','closed','','105-revision-v1','','','2022-07-15 19:35:43','2022-07-15 19:35:43','',105,'https://naplesirrigation.com/?p=366',0,'revision','',0),(353,1,'2022-07-07 13:45:24','2022-07-07 13:45:24','<div class=\"boldgrid-section\" style=\"color: #000000; background-image: url(\'https://source.unsplash.com/MqJX_8EaStM/1920x1080\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"1175055\" data-image-url=\"https://source.unsplash.com/MqJX_8EaStM/1920x1080\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 120px; padding-bottom: 140px;\">\r\n<div class=\"col-md-7 col-sm-4 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\"><img class=\"wp-image-186 alignnone\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/cropped-20210313_120201-scaled-1-e1649096217790.jpg\" alt=\"Perfect Irrigation System\" width=\"667\" height=\"500\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-5 col-sm-8 col-xs-12 wedge-cta\" custom-classes=\"wedge-cta\">\r\n<h2 class=\"\">NAPLES IRRIGATION, d/ba/Hooper Irrigaiton, LLC lET US BRING YOUR YARD BACK TO LIFE</h2>\r\n<p class=\"\" style=\"font-size: 14px;\">BEST LAWN&nbsp; SPRINKLER REPAIR, MAINTENANCE , DESIGN&nbsp; SYSTEM&nbsp;</p>\r\n\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-16\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\"><a class=\"button-secondary btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1\" href=\"https://naplesirrigation.com/contact-us/\">CONTACT US TODAY</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color3-background-color color-3-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-12\">\r\n<h2 class=\"\" style=\"text-align: center; font-size: 21px;\">Naples Irrigation d/b/a Hooper Irrigation is owned and operated by Brad Hooper who is a fully licensed and insured Irrigation expert in the Naples area for 40 years.</h2>\r\n<h2 class=\"\" style=\"text-align: center; font-size: 21px;\">What we offer to all our Customers:</h2>\r\n<h2 class=\"\" style=\"text-align: center; font-size: 21px;\">Innovative Designs to ensure the best irrigation system is installed for your individual yard or business and price range.</h2>\r\n<h2 class=\"\" style=\"text-align: center; font-size: 21px;\">Repair and Maintenance of all components including irrigation pumps, timers (clocks), valves, manifolds, and sprinkler heads. We suggest monthly maintenance to prevent any mishaps or issues but can offer a flexible schedule based on your needs.</h2>\r\n<h2 class=\"\" style=\"text-align: center; font-size: 21px;\">Renovation of existing irrigation systems that may be outdated, broken or damaged.</h2>\r\n<h2 class=\"\" style=\"text-align: center;\">See What We Can Offer</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-2 color1-color\" style=\"width: 65%;\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 90px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-4\">\r\n<p class=\"\"><img class=\"bg-img bg-img-1 wp-image-273  aligncenter\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/IMG_20220128_155353-225x300.jpg\" alt=\"Renovation\" width=\"226\" height=\"301\" data-imhwpb-asset-id=\"695399\"></p>\r\n<p class=\"\">&nbsp;</p>\r\n&nbsp;\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Sprinkler Repair</h3>\r\n<p class=\"\" style=\"font-size: 14px;\">Sprinkler repair Iirrigation pumps, clocks, valves manifolds and heads</p>\r\n\r\n</div>\r\n<div class=\"col-xs-12 col-sm-6 col-md-4\">\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Design &amp;</h3>\r\n<p class=\"\"><img class=\"bg-img bg-img-1 alignnone wp-image-135 size-medium\" style=\"color: #333333;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/20201221_152806-300x225.jpg\" alt=\"Maintenance irrigation programs \" width=\"300\" height=\"225\" data-imhwpb-asset-id=\"695400\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">&nbsp;Monthly Maintenance&nbsp;</h3>\r\n<p class=\"\" style=\"font-size: 14px;\">Fully licensed and insured.&nbsp; We take pride in our work and are deemed the best in Naples.&nbsp; &nbsp;Maintenance reduces costly mishaps</p>\r\n\r\n</div>\r\n<div class=\"col-xs-12 col-sm-6 col-md-4\">\r\n<p class=\"\"><img class=\"bg-img bg-img-1 wp-image-180 size-medium\" title=\"Renovation irrigation services \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/received_656891985552879-220x300.jpeg\" alt=\"Repair Sprinkler system irrigaiton\" width=\"220\" height=\"300\" data-imhwpb-asset-id=\"695401\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Renovation</h3>\r\n<p class=\"\" style=\"font-size: 14px;\">If you want to experience the benefits of a customized Renovation our team is experienced 40 years in Naples</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color2-background-color color-2-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-12\">\r\n<h2 class=\"\" style=\"text-align: center;\">Customer Testimonials</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-2 color1-color\" style=\"width: 65%;\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 40px;\">\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle alignnone wp-image-177 \" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/pumpirigationsupply-300x225.jpg\" alt=\"\" width=\"216\" height=\"162\" data-imhwpb-asset-id=\"695402\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\"><strong>Pump SUPPLY HOUSE of Naples</strong></p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\" style=\"font-size: 14px;\">Naples Irrigation , Brad Hooper is one of the best companies in the business to work with.&nbsp;&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-156 \" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/282_127_486_486_20201221_153238-768x1024.jpg\" alt=\"\" width=\"179\" height=\"179\" data-imhwpb-asset-id=\"695403\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\">Engle Denistry</p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\" style=\"font-size: 14px;\">Owner Brad Engle recommends, Naples Irrigation,&nbsp; Brad Hooper for your business\' irrigation needs.&nbsp; &nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-125\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_4YX0oj7gf8o-imhwpb-ut5s3lmwf6dg2wc.jpg\" alt=\"\" width=\"150\" height=\"150\" data-imhwpb-asset-id=\"695404\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\"><strong>Direct Industrial Supply</strong></p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\" style=\"font-size: 14px;\">Brad Hooper of Naples Irrigation is one of our best sprinkler designers and Installer. Highly recommend his services.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-126\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_8tN3flDTQBU-imhwpb-kxmpsoge3h4672l.jpg\" alt=\"\" width=\"169\" height=\"169\" data-imhwpb-asset-id=\"695405\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\">&nbsp;</p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\" style=\"font-size: 14px;\">I was so pleased with the sprinkler system Brad Hooper customized and designed for my flower garden.&nbsp; Now my landscaping looks beautiful every day.&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Welcome','','inherit','closed','closed','','103-revision-v1','','','2022-07-07 13:45:24','2022-07-07 13:45:24','',103,'https://naplesirrigation.com/?p=353',0,'revision','',0),(354,1,'2022-07-07 13:46:42','2022-07-07 13:46:42','<div class=\"color-neutral-background-color color-neutral-text-contrast bg-background-color tmpl-gallery-12 boldgrid-section dynamic-gridblock\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 42px; padding-bottom: 42px;\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\">\r\n\r\n[caption id=\"attachment_309\" align=\"alignnone\" width=\"375\"]<img class=\"bg-img wp-image-309 \" title=\"Design Renovate Instal Repair Maintain\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/received_13189636486235891-220x300.jpeg\" alt=\"\" width=\"375\" height=\"511\"> NAPLES IRRIGATION PHOTOS[/caption]\r\n<h5 class=\"\" style=\"margin-top: 30px;\">Design REnovate New Irrigation</h5>\r\n<p class=\"\">Naples Irrigation Gallery</p>\r\n<p class=\"\" style=\"margin-top: 20px;\"><a class=\"btn-color-2 btn btn-capitalize btn-raised btn-normal\" href=\"https://naplesirrigation.com/contact-us/\">Learn More</a></p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-6\">\r\n<p class=\"\" style=\"margin-top: 25px;\"><img class=\"bg-img alignnone wp-image-308 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/0_18.75_300_187.5_received_10140475058628011-1-300x225.jpeg\" alt=\"\" width=\"300\" height=\"187\"></p>\r\n<p class=\"\" style=\"margin-top: 25px;\"><img class=\"bg-img alignnone wp-image-337 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/0_205_400_253.57142857143_received_321726983425382.jpeg\" alt=\"\" width=\"400\" height=\"253\"></p>\r\n<p class=\"\" style=\"margin-top: 25px;\"><img class=\"bg-img alignnone wp-image-304 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/0_271_400_251.04166666667_ENGLENAPLES-768x1024.jpg\" alt=\"\" width=\"400\" height=\"251\"></p>\r\n<p class=\"\" style=\"margin-top: 25px;\"><img class=\"bg-img alignnone wp-image-273 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/0_273_400_248.95833333333_IMG_20220128_155353-768x1024.jpg\" alt=\"\" width=\"400\" height=\"248\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-6\">\r\n<p class=\"\"><img class=\"bg-img alignnone wp-image-333 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/3_0_219.79166666667_300_received_540117650841980.jpeg\" alt=\"\" width=\"219\" height=\"300\"></p>\r\n\r\n\r\n[caption id=\"attachment_334\" align=\"alignnone\" width=\"222\"]<img class=\"bg-img wp-image-334 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/received_1113209649411439-222x300.jpeg\" alt=\"\" width=\"222\" height=\"300\"> Sprinkler Pump replacement[/caption]\r\n<p class=\"\" style=\"margin-top: 25px;\"><img class=\"bg-img alignnone wp-image-301 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/0_271_400_251.04166666667_NAPLESENGLE-768x1024.jpg\" alt=\"\" width=\"400\" height=\"251\"></p>\r\n<p class=\"\" style=\"margin-top: 25px;\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"gallery-full-width tmpl-gallery-1 boldgrid-section dynamic-gridblock\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-3 col-sm-6 col-xs-6\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-6\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-6\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-6\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\">\r\n<div class=\"col-md-3 col-sm-6 col-xs-6\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-6\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-6\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-6\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n&nbsp;\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Gallery','','inherit','closed','closed','','311-revision-v1','','','2022-07-07 13:46:42','2022-07-07 13:46:42','',311,'https://naplesirrigation.com/?p=354',0,'revision','',0),(355,1,'2022-07-07 13:51:06','2022-07-07 13:51:06','<div class=\"color-neutral-background-color color-neutral-text-contrast bg-background-color tmpl-gallery-12 boldgrid-section dynamic-gridblock\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 42px; padding-bottom: 42px;\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\">\r\n\r\n[caption id=\"attachment_309\" align=\"alignnone\" width=\"375\"]<img class=\"bg-img wp-image-309 \" title=\"Design Renovate Instal Repair Maintain\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/received_13189636486235891-220x300.jpeg\" alt=\"\" width=\"375\" height=\"511\"> NAPLES IRRIGATION PHOTOS[/caption]\r\n<p class=\"\"><img class=\"alignnone size-medium wp-image-192\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/20200801_150124-225x300.jpg\" alt=\"Repair Sprinkler system irrigaiton\" width=\"225\" height=\"300\"><img class=\"alignnone size-medium wp-image-171\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/20210313_120201-1-300x225.jpg\" alt=\"\" width=\"300\" height=\"225\"></p>\r\n\r\n<h5 class=\"\" style=\"margin-top: 30px;\">Design REnovate New Irrigation</h5>\r\n<p class=\"\">Naples Irrigation Gallery</p>\r\n<p class=\"\" style=\"margin-top: 20px;\"><a class=\"btn-color-2 btn btn-capitalize btn-raised btn-normal\" href=\"https://naplesirrigation.com/contact-us/\">Learn More</a></p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-6\">\r\n<p class=\"\" style=\"margin-top: 25px;\"><img class=\"bg-img alignnone wp-image-308 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/0_18.75_300_187.5_received_10140475058628011-1-300x225.jpeg\" alt=\"\" width=\"300\" height=\"187\"></p>\r\n<p class=\"\" style=\"margin-top: 25px;\"><img class=\"bg-img alignnone wp-image-337 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/0_205_400_253.57142857143_received_321726983425382.jpeg\" alt=\"\" width=\"400\" height=\"253\"></p>\r\n<p class=\"\" style=\"margin-top: 25px;\"><img class=\"bg-img alignnone wp-image-304 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/0_271_400_251.04166666667_ENGLENAPLES-768x1024.jpg\" alt=\"\" width=\"400\" height=\"251\"></p>\r\n<p class=\"\" style=\"margin-top: 25px;\"><img class=\"bg-img alignnone wp-image-273 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/0_273_400_248.95833333333_IMG_20220128_155353-768x1024.jpg\" alt=\"\" width=\"400\" height=\"248\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-6\">\r\n<p class=\"\"><img class=\"bg-img alignnone wp-image-333 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/3_0_219.79166666667_300_received_540117650841980.jpeg\" alt=\"\" width=\"219\" height=\"300\"></p>\r\n\r\n\r\n[caption id=\"attachment_334\" align=\"alignnone\" width=\"222\"]<img class=\"bg-img wp-image-334 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/received_1113209649411439-222x300.jpeg\" alt=\"\" width=\"222\" height=\"300\"> Sprinkler Pump replacement[/caption]\r\n<p class=\"\" style=\"margin-top: 25px;\"><img class=\"bg-img alignnone wp-image-301 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/0_271_400_251.04166666667_NAPLESENGLE-768x1024.jpg\" alt=\"\" width=\"400\" height=\"251\"></p>\r\n<p class=\"\" style=\"margin-top: 25px;\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"gallery-full-width tmpl-gallery-1 boldgrid-section dynamic-gridblock\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-3 col-sm-6 col-xs-6\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-6\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-6\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-6\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\">\r\n<div class=\"col-md-3 col-sm-6 col-xs-6\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-6\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-6\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-6\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n&nbsp;\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Gallery','','inherit','closed','closed','','311-revision-v1','','','2022-07-07 13:51:06','2022-07-07 13:51:06','',311,'https://naplesirrigation.com/?p=355',0,'revision','',0),(200,1,'2022-04-04 18:25:53','2022-04-04 18:25:53','<div class=\"boldgrid-section\" style=\"color: #000000; background-image: url(\'https://source.unsplash.com/MqJX_8EaStM/1920x1080\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"1175055\" data-image-url=\"https://source.unsplash.com/MqJX_8EaStM/1920x1080\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 120px; padding-bottom: 140px;\">\r\n<div class=\"col-md-7 col-sm-4 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\"><img class=\"wp-image-164 aligncenter\" style=\"font-weight: bold;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/20210313_120212-300x225.jpg\" alt=\"\" width=\"538\" height=\"403\"></p>\r\n<p class=\"\">Your yard is only as lovely as your Sprinkler System Guy&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-5 col-sm-8 col-xs-12 wedge-cta\" custom-classes=\"wedge-cta\">\r\n<h2 class=\"\">NAPLES IRRIGATION lET US BRING YOUR YARD BACK TO LIFE</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-16\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\" style=\"margin-top: 20px; margin-bottom: 30px;\">&nbsp;</p>\r\n<p class=\"\"><a class=\"button-secondary btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1\" href=\"https://naplesirrigation.com/\">CONTACT US TODAY</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color3-background-color color-3-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-12\">\r\n<h2 class=\"\" style=\"text-align: center;\">See What We Can Offer</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-2 color1-color\" style=\"width: 65%;\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 90px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-4\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-1 aligncenter wp-image-143 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/received_1072950093527088-222x300.jpeg\" alt=\"\" width=\"192\" height=\"259\" data-imhwpb-asset-id=\"695399\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Renovation</h3>\r\n<p class=\"\">If you want to experience the benefits of a customized Renovation our team is experienced 40 years in Naples&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-xs-12 col-sm-6 col-md-4\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-1 aligncenter wp-image-135 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/20201221_152806-300x225.jpg\" alt=\"\" width=\"338\" height=\"253\" data-imhwpb-asset-id=\"695400\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Design &amp; Monthly Maintenance&nbsp;</h3>\r\n<p class=\"\">Fully licensed and insured.&nbsp; We take pride in our work and are deemed the best in Naples.&nbsp;&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-xs-12 col-sm-6 col-md-4 align-column-center\">\r\n<p class=\"\"><img class=\"bg-img bg-img-1 wp-image-180 aligncenter\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/received_656891985552879-220x300.jpeg\" alt=\"Repair Sprinkler system irrigaiton\" width=\"207\" height=\"282\" data-imhwpb-asset-id=\"695401\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Sprinkler Repair</h3>\r\n<p class=\"\">New Pumps, Time Clocks, Sprinkler heads, adjustments, and testing we will make your yard beautiful.&nbsp;&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color2-background-color color-2-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-12\">\r\n<h2 class=\"\" style=\"text-align: center;\">Customer Testimonials</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-2 color1-color\" style=\"width: 65%;\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 40px;\">\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle wp-image-177 aligncenter\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/pumpirigationsupply-300x225.jpg\" alt=\"\" width=\"216\" height=\"162\" data-imhwpb-asset-id=\"695402\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\"><strong>Pump SUPPLY HOUSE of Naples</strong></p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Visit us today, highly recommend as one of our strongest customers in the industry today\"</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-156 \" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/282_127_486_486_20201221_153238-768x1024.jpg\" alt=\"\" width=\"179\" height=\"179\" data-imhwpb-asset-id=\"695403\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\">Engle Denistry</p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Brad Engle recommends Brad Hooper to his customers\" Best in Naples&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-125\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_4YX0oj7gf8o-imhwpb-ut5s3lmwf6dg2wc.jpg\" alt=\"\" width=\"150\" height=\"150\" data-imhwpb-asset-id=\"695404\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\"><strong>Direct Industrial Supply</strong></p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Brad Hooper of Naples Irrigation and Hooper Irrigation is one of our best maintenance Sprinkler Man. Highly recommend his services</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-126\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_8tN3flDTQBU-imhwpb-kxmpsoge3h4672l.jpg\" alt=\"\" width=\"169\" height=\"169\" data-imhwpb-asset-id=\"695405\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\">&nbsp;</p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Brad Hooper is one of the best-known sprinkler companies I know highly sought out.&nbsp; Our renovations have never looked better.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Home','','inherit','closed','closed','','103-revision-v1','','','2022-04-04 18:25:53','2022-04-04 18:25:53','',103,'https://naplesirrigation.com/?p=200',0,'revision','',0),(205,1,'2022-04-04 19:24:51','2022-04-04 19:24:51','<div class=\"boldgrid-section\" style=\"color: #000000; background-image: url(\'https://source.unsplash.com/MqJX_8EaStM/1920x1080\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"1175055\" data-image-url=\"https://source.unsplash.com/MqJX_8EaStM/1920x1080\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 120px; padding-bottom: 140px;\">\r\n<div class=\"col-md-7 col-sm-4 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\"><img class=\"wp-image-164 \" style=\"font-weight: bold;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/20210313_120212-300x225.jpg\" alt=\"\" width=\"680\" height=\"510\"></p>\r\nYour yard is only as lovely as your Sprinkler System Guy&nbsp;\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-5 col-sm-8 col-xs-12 wedge-cta\" custom-classes=\"wedge-cta\">\r\n<h2 class=\"\">NAPLES IRRIGATION lET US BRING YOUR YARD BACK TO LIFE</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-16\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\" style=\"margin-top: 20px; margin-bottom: 30px;\">&nbsp;</p>\r\n<p class=\"\"><a class=\"button-secondary btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1\" href=\"https://naplesirrigation.com/\">CONTACT US TODAY</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color3-background-color color-3-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-12\">\r\n<h2 class=\"\" style=\"text-align: center;\">See What We Can Offer</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-2 color1-color\" style=\"width: 65%;\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 90px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-4\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-1 aligncenter wp-image-143 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/received_1072950093527088-222x300.jpeg\" alt=\"\" width=\"192\" height=\"259\" data-imhwpb-asset-id=\"695399\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Renovation</h3>\r\n<p class=\"\">If you want to experience the benefits of a customized Renovation our team is experienced 40 years in Naples&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-xs-12 col-sm-6 col-md-4\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-1 aligncenter wp-image-135 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/20201221_152806-300x225.jpg\" alt=\"\" width=\"338\" height=\"253\" data-imhwpb-asset-id=\"695400\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Design &amp; Monthly Maintenance&nbsp;</h3>\r\n<p class=\"\">Fully licensed and insured.&nbsp; We take pride in our work and are deemed the best in Naples.&nbsp;&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-xs-12 col-sm-6 col-md-4\">\r\n\r\n<img class=\"bg-img bg-img-1 wp-image-180 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/received_656891985552879-220x300.jpeg\" alt=\"Repair Sprinkler system irrigaiton\" width=\"207\" height=\"282\" data-imhwpb-asset-id=\"695401\">\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Sprinkler Repair</h3>\r\n<p class=\"\">New Pumps, Time Clocks, Sprinkler heads, adjustments, and testing we will make your yard beautiful.&nbsp;&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color2-background-color color-2-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-12\">\r\n<h2 class=\"\" style=\"text-align: center;\">Customer Testimonials</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-2 color1-color\" style=\"width: 65%;\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 40px;\">\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle alignnone wp-image-177 \" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/pumpirigationsupply-300x225.jpg\" alt=\"\" width=\"216\" height=\"162\" data-imhwpb-asset-id=\"695402\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\"><strong>Pump SUPPLY HOUSE of Naples</strong></p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Visit us today, highly recommend as one of our strongest customers in the industry today\"</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-156 \" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/282_127_486_486_20201221_153238-768x1024.jpg\" alt=\"\" width=\"179\" height=\"179\" data-imhwpb-asset-id=\"695403\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\">Engle Denistry</p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Brad Engle recommends Brad Hooper to his customers\" Best in Naples&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-125\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_4YX0oj7gf8o-imhwpb-ut5s3lmwf6dg2wc.jpg\" alt=\"\" width=\"150\" height=\"150\" data-imhwpb-asset-id=\"695404\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\"><strong>Direct Industrial Supply</strong></p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Brad Hooper of Naples Irrigation and Hooper Irrigation is one of our best maintenance Sprinkler Man. Highly recommend his services</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-126\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_8tN3flDTQBU-imhwpb-kxmpsoge3h4672l.jpg\" alt=\"\" width=\"169\" height=\"169\" data-imhwpb-asset-id=\"695405\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\">&nbsp;</p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Brad Hooper is one of the best-known sprinkler companies I know highly sought out.&nbsp; Our renovations have never looked better.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Home','','inherit','closed','closed','','103-revision-v1','','','2022-04-04 19:24:51','2022-04-04 19:24:51','',103,'https://naplesirrigation.com/?p=205',0,'revision','',0),(201,1,'2022-04-04 18:33:24','2022-04-04 18:33:24','<div class=\"boldgrid-section\" style=\"color: #000000; background-image: url(\'https://source.unsplash.com/MqJX_8EaStM/1920x1080\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"1175055\" data-image-url=\"https://source.unsplash.com/MqJX_8EaStM/1920x1080\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 120px; padding-bottom: 140px;\">\r\n<div class=\"col-md-7 col-sm-4 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\"><img class=\"wp-image-164 aligncenter\" style=\"font-weight: bold;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/20210313_120212-300x225.jpg\" alt=\"\" width=\"538\" height=\"403\"></p>\r\n<p class=\"\">Your yard is only as lovely as your Sprinkler System Guy&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-5 col-sm-8 col-xs-12 wedge-cta\" custom-classes=\"wedge-cta\">\r\n<h2 class=\"\">NAPLES IRRIGATION lET US BRING YOUR YARD BACK TO LIFE</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-16\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\" style=\"margin-top: 20px; margin-bottom: 30px;\">&nbsp;</p>\r\n<p class=\"\"><a class=\"button-secondary btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1\" href=\"https://naplesirrigation.com/\">CONTACT US TODAY</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color3-background-color color-3-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-12\">\r\n<h2 class=\"\" style=\"text-align: center;\">See What We Can Offer</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-2 color1-color\" style=\"width: 65%;\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 90px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-4\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-1 aligncenter wp-image-143 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/received_1072950093527088-222x300.jpeg\" alt=\"\" width=\"192\" height=\"259\" data-imhwpb-asset-id=\"695399\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Renovation</h3>\r\n<p class=\"\">If you want to experience the benefits of a customized Renovation our team is experienced 40 years in Naples&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-xs-12 col-sm-6 col-md-4\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-1 aligncenter wp-image-135 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/20201221_152806-300x225.jpg\" alt=\"\" width=\"338\" height=\"253\" data-imhwpb-asset-id=\"695400\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Design &amp; Monthly Maintenance&nbsp;</h3>\r\n<p class=\"\">Fully licensed and insured.&nbsp; We take pride in our work and are deemed the best in Naples.&nbsp;&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-xs-12 col-sm-6 col-md-4 align-column-center\">\r\n<p class=\"\"><img class=\"bg-img bg-img-1 wp-image-180 aligncenter\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/received_656891985552879-220x300.jpeg\" alt=\"Repair Sprinkler system irrigaiton\" width=\"207\" height=\"282\" data-imhwpb-asset-id=\"695401\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Sprinkler Repair</h3>\r\n<p class=\"\">New Pumps, Time Clocks, Sprinkler heads, adjustments, and testing we will make your yard beautiful.&nbsp;&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color2-background-color color-2-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-12\">\r\n<h2 class=\"\" style=\"text-align: center;\">Customer Testimonials</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-2 color1-color\" style=\"width: 65%;\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 40px;\">\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle wp-image-177 aligncenter\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/pumpirigationsupply-300x225.jpg\" alt=\"\" width=\"216\" height=\"162\" data-imhwpb-asset-id=\"695402\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\"><strong>Pump SUPPLY HOUSE of Naples</strong></p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Visit us today, highly recommend as one of our strongest customers in the industry today\"</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-156 \" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/282_127_486_486_20201221_153238-768x1024.jpg\" alt=\"\" width=\"179\" height=\"179\" data-imhwpb-asset-id=\"695403\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\">Engle Denistry</p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Brad Engle recommends Brad Hooper to his customers\" Best in Naples&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-125\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_4YX0oj7gf8o-imhwpb-ut5s3lmwf6dg2wc.jpg\" alt=\"\" width=\"150\" height=\"150\" data-imhwpb-asset-id=\"695404\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\"><strong>Direct Industrial Supply</strong></p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Brad Hooper of Naples Irrigation and Hooper Irrigation is one of our best maintenance Sprinkler Man. Highly recommend his services</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-126\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_8tN3flDTQBU-imhwpb-kxmpsoge3h4672l.jpg\" alt=\"\" width=\"169\" height=\"169\" data-imhwpb-asset-id=\"695405\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\">&nbsp;</p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Brad Hooper is one of the best-known sprinkler companies I know highly sought out.&nbsp; Our renovations have never looked better.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Welcome to Naples Irrigation','','inherit','closed','closed','','103-revision-v1','','','2022-04-04 18:33:24','2022-04-04 18:33:24','',103,'https://naplesirrigation.com/?p=201',0,'revision','',0),(209,1,'2022-04-04 19:34:40','2022-04-04 19:34:40','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 42px;\">\r\n<div class=\"col-md-5 col-xs-12 col-sm-12\">\r\n<h4 class=\"\">About Naples Irrigation aka Hooper IRRIGATION BAGAN IN 1982.&nbsp; wE ARE licensed and insured.&nbsp;&nbsp;</h4>\r\n<p class=\"\">Graduating from the University of Evansville,&nbsp; Bradford Hooper the owner of Naples Irrigation and Hooper Irrigation began his career servicing all residential homes, multi-family, and small commercial businesses buildings, and the Hooperigation design touch which we are truly noted for.&nbsp;&nbsp;</p>\r\n<p class=\"\">Specializing in renovations,&nbsp; adjusting sprinkler systems, repairs to pipes, valve repair, new clocks, and pumps and maintenance.&nbsp;&nbsp;</p>\r\n<p class=\"\">We offer a personalized maintenance program to fit your needs:&nbsp; monthly, bi-monthly, or quarterly programs available to support your needs.&nbsp;</p>\r\n<p class=\"\">&nbsp;Maintenance programs are an important part of our business as it prevents high water bills, broken sprinkler heads, oversprays, pipes, pump, valve, or just resetting clocks due to the country\'s regulations on dry times and proper times to water.&nbsp; &nbsp;</p>\r\n<p class=\"\">If your sprinkler system is not getting enough pressure, you need a service call for evaluation.&nbsp;&nbsp;</p>\r\n<p class=\"\">Over 4000 new systems installed, thousands of repairs as we celebrate in 2022 40 YEARS OF SERVICE.&nbsp; &nbsp; Hope you allow us the opportunity to help you with your sprinkler!</p>\r\n<p class=\"\">To learn more about how you can sign up today for your Maintenace Program.&nbsp; Please contact us today</p>\r\n<p class=\"\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"#239-793-7735\">Contact Us</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n\r\n[caption id=\"attachment_179\" align=\"alignnone\" width=\"560\"]<img class=\"wp-image-179 size-full\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/received_2444269415708471.jpeg\" alt=\"Renovation design sprinkler irrigation\" width=\"560\" height=\"765\" data-imhwpb-asset-id=\"789476\"> Renovations for a beautiful yard[/caption]\r\n\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\">\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-151 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/20201221_152447-225x300.jpg\" alt=\"\" width=\"433\" height=\"577\" data-imhwpb-built-photo-search=\"68|any\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-146 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/IMG_20211101_150730-225x300.jpg\" alt=\"\" width=\"432\" height=\"576\" data-imhwpb-built-photo-search=\"68|any\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-192 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/20200801_150124-225x300.jpg\" alt=\"\" width=\"432\" height=\"576\" data-imhwpb-built-photo-search=\"68|any\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\"></div>\r\n</div>','About Us','','inherit','closed','closed','','105-revision-v1','','','2022-04-04 19:34:40','2022-04-04 19:34:40','',105,'https://naplesirrigation.com/?p=209',0,'revision','',0),(203,1,'2022-04-04 19:20:29','2022-04-04 19:20:29','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 42px;\">\r\n<div class=\"col-md-5 col-xs-12 col-sm-12\">\r\n<h4 class=\"\">About Naples Irrigation aka Hooper IRRIGATION BAGAN IN 1982.&nbsp; wE ARE licensed and insured.&nbsp;&nbsp;</h4>\r\n<p class=\"\">Graduating from the University of Evansville,&nbsp; Bradford Hooper the owner of Naples Irrigation and Hooper Irrigation began his career servicing all residential homes, multi-family, and small commercial businesses buildings, and the Hooperigation design touch which we are truly noted for.&nbsp;&nbsp;</p>\r\n<p class=\"\">Specializing in renovations,&nbsp; adjusting sprinkler systems, repairs to pipes, valve repair, new clocks, and pumps and maintenance.&nbsp;&nbsp;</p>\r\n<p class=\"\">We offer a personalized maintenance program to fit your needs:&nbsp; monthly, bi-monthly, or quarterly programs available to support your needs.&nbsp;</p>\r\n<p class=\"\">&nbsp;Maintenance programs are an important part of our business as it prevents high water bills, broken sprinkler heads, oversprays, pipes, pump, valve, or just resetting clocks due to the country\'s regulations on dry times and proper times to water.&nbsp; &nbsp;</p>\r\n<p class=\"\">If your sprinkler system is not getting enough pressure, you need a service call for evaulation.&nbsp;&nbsp;</p>\r\n<p class=\"\">Over 4000 new systems installed, thousands of repairs as we celebrate in 2022 40 YEARS OF SERVICE.&nbsp; &nbsp; Hope you allow us the opportunity to help you with your sprrinkler!</p>\r\n<p class=\"\">To learn more about how you can sign up today for your Maintenace Program.&nbsp; Please contact us today</p>\r\n<p class=\"\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"#239-793-7735\">Contact Us</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n\r\n[caption id=\"attachment_179\" align=\"alignnone\" width=\"560\"]<img class=\"wp-image-179 size-full\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/received_2444269415708471.jpeg\" alt=\"Renovation design sprinkler irrigation\" width=\"560\" height=\"765\" data-imhwpb-asset-id=\"789476\"> Renovations for a beautiful yard[/caption]\r\n\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\">\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-151 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/20201221_152447-225x300.jpg\" alt=\"\" width=\"225\" height=\"300\" data-imhwpb-built-photo-search=\"68|any\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-146 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/IMG_20211101_150730-225x300.jpg\" alt=\"\" width=\"225\" height=\"300\" data-imhwpb-built-photo-search=\"68|any\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-192 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/20200801_150124-225x300.jpg\" alt=\"\" width=\"225\" height=\"300\" data-imhwpb-built-photo-search=\"68|any\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-12\">\r\n<p class=\"mod-img\"><img class=\"aligncenter size-full wp-image-115\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tLy1yV2p5ZE5oQVR3LzYwMHg0NTA_3D-imhwpb-qi6hj44g334fjqc.jpg\" alt=\"\" width=\"600\" height=\"450\" data-imhwpb-asset-id=\"780386\"></p>\r\n\r\n<h2 style=\"text-align: center;\">Dedication to Fitness</h2>\r\nWe are dedicated to everything fitness! From cardiovascular to medicine balls to resistance training, we offer a wide-variety of services and equipment that are designed to help you reach your fitness goals.\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12\">\r\n<p class=\"mod-img\"><img class=\"aligncenter size-full wp-image-116\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL19QZFpkVzdmaURjLzYwMHg0NTA_3D-imhwpb-24tawnme8snkr6i.jpg\" alt=\"\" width=\"600\" height=\"450\" data-imhwpb-asset-id=\"780387\"></p>\r\n\r\n<h2 style=\"text-align: center;\">Personal Training</h2>\r\nDo you need help staying motivated and reaching your fitness goals? Check out our personal training services. We will design a customized program to help you on your fitness journey.\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12\">\r\n<p class=\"mod-img\"><img class=\"aligncenter size-full wp-image-117\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL3ZHUTQ5bDlJNEVFLzYwMHg0NTA_3D-imhwpb-ceho1ljgk9lzazx.jpg\" alt=\"\" width=\"600\" height=\"450\" data-imhwpb-asset-id=\"780388\"></p>\r\n\r\n<h2 style=\"text-align: center;\">Helping Customers Focus on Health</h2>\r\nOur services are designed to help our customers focus on health. Whether you are worried about weight management or simply want to learn more about the effects of a healthy diet and fitness regime, we can help you to achieve a balanced lifestyle.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','About Us','','inherit','closed','closed','','105-revision-v1','','','2022-04-04 19:20:29','2022-04-04 19:20:29','',105,'https://naplesirrigation.com/?p=203',0,'revision','',0),(202,1,'2022-04-04 19:18:58','2022-04-04 19:18:58','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 42px;\">\r\n<div class=\"col-md-5 col-xs-12 col-sm-12\">\r\n<h4 class=\"\">About Naples Irrigation</h4>\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n\r\n<hr>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<h4 class=\"\">nAPLES IRRIGATION, aka Hooper IRRIGATION BAGAN IN 1982&nbsp;</h4>\r\n<p class=\"\">Graduating from the University of Evansville,&nbsp; Bradford Hooper the owner of Naples Irrigation and Hooper Irrigation began his career servicing all residential homes, multi-family, and small commercial businesses buildings, and the Hooperigation design touch which we are truly noted for.&nbsp;&nbsp;</p>\r\n<p class=\"\">Specializing in renovations,&nbsp; adjusting sprinkler systems, repairs to pipes, valve repair, new clocks, and pumps and maintenance.&nbsp;&nbsp;</p>\r\n<p class=\"\">We offer a personalized maintenance program to fit your needs:&nbsp; monthly, bi-monthly, or quarterly programs available to support your needs.&nbsp;</p>\r\n<p class=\"\">&nbsp;Maintenance programs are an important part of our business as it prevents high water bills, broken sprinkler heads, oversprays, pipes, pump, valve, or just resetting clocks due to the country\'s regulations on dry times and proper times to water.&nbsp; &nbsp;</p>\r\n<p class=\"\">If your sprinkler system is not getting enough pressure, you need a service call for evaulation.&nbsp;&nbsp;</p>\r\n<p class=\"\">Over 4000 new systems installed, thousands of repairs as we celebrate in 2022 40 YEARS OF SERVICE.&nbsp; &nbsp; Hope you allow us the opportunity to help you with your sprrinkler!</p>\r\n<p class=\"\">To learn more about how you can sign up today for your Maintenace Program.&nbsp; Please contact us today</p>\r\n<p class=\"\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"#239-793-7735\">Contact Us</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n\r\n[caption id=\"attachment_179\" align=\"alignnone\" width=\"560\"]<img class=\"wp-image-179 size-full\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/received_2444269415708471.jpeg\" alt=\"Renovation design sprinkler irrigation\" width=\"560\" height=\"765\" data-imhwpb-asset-id=\"789476\"> Renovations for a beautiful yard[/caption]\r\n\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\">\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-151 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/20201221_152447-225x300.jpg\" alt=\"\" width=\"225\" height=\"300\" data-imhwpb-built-photo-search=\"68|any\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-146 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/IMG_20211101_150730-225x300.jpg\" alt=\"\" width=\"225\" height=\"300\" data-imhwpb-built-photo-search=\"68|any\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-192 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/20200801_150124-225x300.jpg\" alt=\"\" width=\"225\" height=\"300\" data-imhwpb-built-photo-search=\"68|any\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-12\">\r\n<p class=\"mod-img\"><img class=\"aligncenter size-full wp-image-115\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tLy1yV2p5ZE5oQVR3LzYwMHg0NTA_3D-imhwpb-qi6hj44g334fjqc.jpg\" alt=\"\" width=\"600\" height=\"450\" data-imhwpb-asset-id=\"780386\"></p>\r\n\r\n<h2 style=\"text-align: center;\">Dedication to Fitness</h2>\r\nWe are dedicated to everything fitness! From cardiovascular to medicine balls to resistance training, we offer a wide-variety of services and equipment that are designed to help you reach your fitness goals.\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12\">\r\n<p class=\"mod-img\"><img class=\"aligncenter size-full wp-image-116\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL19QZFpkVzdmaURjLzYwMHg0NTA_3D-imhwpb-24tawnme8snkr6i.jpg\" alt=\"\" width=\"600\" height=\"450\" data-imhwpb-asset-id=\"780387\"></p>\r\n\r\n<h2 style=\"text-align: center;\">Personal Training</h2>\r\nDo you need help staying motivated and reaching your fitness goals? Check out our personal training services. We will design a customized program to help you on your fitness journey.\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12\">\r\n<p class=\"mod-img\"><img class=\"aligncenter size-full wp-image-117\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL3ZHUTQ5bDlJNEVFLzYwMHg0NTA_3D-imhwpb-ceho1ljgk9lzazx.jpg\" alt=\"\" width=\"600\" height=\"450\" data-imhwpb-asset-id=\"780388\"></p>\r\n\r\n<h2 style=\"text-align: center;\">Helping Customers Focus on Health</h2>\r\nOur services are designed to help our customers focus on health. Whether you are worried about weight management or simply want to learn more about the effects of a healthy diet and fitness regime, we can help you to achieve a balanced lifestyle.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','About Us','','inherit','closed','closed','','105-revision-v1','','','2022-04-04 19:18:58','2022-04-04 19:18:58','',105,'https://naplesirrigation.com/?p=202',0,'revision','',0),(208,1,'2022-04-04 19:33:34','2022-04-04 19:33:34','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 42px;\">\r\n<div class=\"col-md-5 col-xs-12 col-sm-12\">\r\n<h4 class=\"\">About Naples Irrigation aka Hooper IRRIGATION BAGAN IN 1982.&nbsp; wE ARE licensed and insured.&nbsp;&nbsp;</h4>\r\n<p class=\"\">Graduating from the University of Evansville,&nbsp; Bradford Hooper the owner of Naples Irrigation and Hooper Irrigation began his career servicing all residential homes, multi-family, and small commercial businesses buildings, and the Hooperigation design touch which we are truly noted for.&nbsp;&nbsp;</p>\r\n<p class=\"\">Specializing in renovations,&nbsp; adjusting sprinkler systems, repairs to pipes, valve repair, new clocks, and pumps and maintenance.&nbsp;&nbsp;</p>\r\n<p class=\"\">We offer a personalized maintenance program to fit your needs:&nbsp; monthly, bi-monthly, or quarterly programs available to support your needs.&nbsp;</p>\r\n<p class=\"\">&nbsp;Maintenance programs are an important part of our business as it prevents high water bills, broken sprinkler heads, oversprays, pipes, pump, valve, or just resetting clocks due to the country\'s regulations on dry times and proper times to water.&nbsp; &nbsp;</p>\r\n<p class=\"\">If your sprinkler system is not getting enough pressure, you need a service call for evaulation.&nbsp;&nbsp;</p>\r\n<p class=\"\">Over 4000 new systems installed, thousands of repairs as we celebrate in 2022 40 YEARS OF SERVICE.&nbsp; &nbsp; Hope you allow us the opportunity to help you with your sprrinkler!</p>\r\n<p class=\"\">To learn more about how you can sign up today for your Maintenace Program.&nbsp; Please contact us today</p>\r\n<p class=\"\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"#239-793-7735\">Contact Us</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n\r\n[caption id=\"attachment_179\" align=\"alignnone\" width=\"560\"]<img class=\"wp-image-179 size-full\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/received_2444269415708471.jpeg\" alt=\"Renovation design sprinkler irrigation\" width=\"560\" height=\"765\" data-imhwpb-asset-id=\"789476\"> Renovations for a beautiful yard[/caption]\r\n\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\">\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-151 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/20201221_152447-225x300.jpg\" alt=\"\" width=\"225\" height=\"300\" data-imhwpb-built-photo-search=\"68|any\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-146 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/IMG_20211101_150730-225x300.jpg\" alt=\"\" width=\"225\" height=\"300\" data-imhwpb-built-photo-search=\"68|any\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-192 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/20200801_150124-225x300.jpg\" alt=\"\" width=\"225\" height=\"300\" data-imhwpb-built-photo-search=\"68|any\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\"></div>\r\n</div>','About Us','','inherit','closed','closed','','105-revision-v1','','','2022-04-04 19:33:34','2022-04-04 19:33:34','',105,'https://naplesirrigation.com/?p=208',0,'revision','',0),(204,1,'2022-04-04 19:22:22','2022-04-04 19:22:22','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 42px;\">\r\n<div class=\"col-md-5 col-xs-12 col-sm-12\">\r\n<h4 class=\"\">About Naples Irrigation aka Hooper IRRIGATION BAGAN IN 1982.&nbsp; wE ARE licensed and insured.&nbsp;&nbsp;</h4>\r\n<p class=\"\">Graduating from the University of Evansville,&nbsp; Bradford Hooper the owner of Naples Irrigation and Hooper Irrigation began his career servicing all residential homes, multi-family, and small commercial businesses buildings, and the Hooperigation design touch which we are truly noted for.&nbsp;&nbsp;</p>\r\n<p class=\"\">Specializing in renovations,&nbsp; adjusting sprinkler systems, repairs to pipes, valve repair, new clocks, and pumps and maintenance.&nbsp;&nbsp;</p>\r\n<p class=\"\">We offer a personalized maintenance program to fit your needs:&nbsp; monthly, bi-monthly, or quarterly programs available to support your needs.&nbsp;</p>\r\n<p class=\"\">&nbsp;Maintenance programs are an important part of our business as it prevents high water bills, broken sprinkler heads, oversprays, pipes, pump, valve, or just resetting clocks due to the country\'s regulations on dry times and proper times to water.&nbsp; &nbsp;</p>\r\n<p class=\"\">If your sprinkler system is not getting enough pressure, you need a service call for evaulation.&nbsp;&nbsp;</p>\r\n<p class=\"\">Over 4000 new systems installed, thousands of repairs as we celebrate in 2022 40 YEARS OF SERVICE.&nbsp; &nbsp; Hope you allow us the opportunity to help you with your sprrinkler!</p>\r\n<p class=\"\">To learn more about how you can sign up today for your Maintenace Program.&nbsp; Please contact us today</p>\r\n<p class=\"\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"#239-793-7735\">Contact Us</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n\r\n[caption id=\"attachment_179\" align=\"alignnone\" width=\"560\"]<img class=\"wp-image-179 size-full\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/received_2444269415708471.jpeg\" alt=\"Renovation design sprinkler irrigation\" width=\"560\" height=\"765\" data-imhwpb-asset-id=\"789476\"> Renovations for a beautiful yard[/caption]\r\n\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\">\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-151 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/20201221_152447-225x300.jpg\" alt=\"\" width=\"225\" height=\"300\" data-imhwpb-built-photo-search=\"68|any\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-146 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/IMG_20211101_150730-225x300.jpg\" alt=\"\" width=\"225\" height=\"300\" data-imhwpb-built-photo-search=\"68|any\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-192 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/20200801_150124-225x300.jpg\" alt=\"\" width=\"225\" height=\"300\" data-imhwpb-built-photo-search=\"68|any\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-12\">\r\n<p class=\"mod-img\"><img class=\"aligncenter size-full wp-image-115\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tLy1yV2p5ZE5oQVR3LzYwMHg0NTA_3D-imhwpb-qi6hj44g334fjqc.jpg\" alt=\"\" width=\"600\" height=\"450\" data-imhwpb-asset-id=\"780386\"></p>\r\n\r\n<h2 style=\"text-align: center;\">Dedication to Fitness</h2>\r\nWe are dedicated to everything fitness! From cardiovascular to medicine balls to resistance training, we offer a wide-variety of services and equipment that are designed to help you reach your fitness goals.\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12\">\r\n<p class=\"mod-img\"><img class=\"aligncenter size-full wp-image-116\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL19QZFpkVzdmaURjLzYwMHg0NTA_3D-imhwpb-24tawnme8snkr6i.jpg\" alt=\"\" width=\"600\" height=\"450\" data-imhwpb-asset-id=\"780387\"></p>\r\n\r\n<h2 style=\"text-align: center;\">Personal Training</h2>\r\nDo you need help staying motivated and reaching your fitness goals? Check out our personal training services. We will design a customized program to help you on your fitness journey.\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12\">\r\n<p class=\"mod-img\"><img class=\"aligncenter size-full wp-image-117\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL3ZHUTQ5bDlJNEVFLzYwMHg0NTA_3D-imhwpb-ceho1ljgk9lzazx.jpg\" alt=\"\" width=\"600\" height=\"450\" data-imhwpb-asset-id=\"780388\"></p>\r\n\r\n<h2 style=\"text-align: center;\">Helping Customers Focus on Health</h2>\r\nOur services are designed to help our customers focus on health. Whether you are worried about weight management or simply want to learn more about the effects of a healthy diet and fitness regime, we can help you to achieve a balanced lifestyle.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','About Us','','inherit','closed','closed','','105-revision-v1','','','2022-04-04 19:22:22','2022-04-04 19:22:22','',105,'https://naplesirrigation.com/?p=204',0,'revision','',0),(210,1,'2022-04-04 19:34:55','2022-04-04 19:34:55','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 42px;\">\r\n<div class=\"col-md-5 col-xs-12 col-sm-12\">\r\n<h4 class=\"\">About Naples Irrigation aka Hooper IRRIGATION BAGAN IN 1982.&nbsp; wE ARE licensed and insured.&nbsp;&nbsp;</h4>\r\n<p class=\"\">Graduating from the University of Evansville,&nbsp; Bradford Hooper the owner of Naples Irrigation and Hooper Irrigation began his career servicing all residential homes, multi-family, and small commercial businesses buildings, and the Hooperigation design touch which we are truly noted for.&nbsp;&nbsp;</p>\r\n<p class=\"\">Specializing in renovations,&nbsp; adjusting sprinkler systems, repairs to pipes, valve repair, new clocks, and pumps and maintenance.&nbsp;&nbsp;</p>\r\n<p class=\"\">We offer a personalized maintenance program to fit your needs:&nbsp; monthly, bi-monthly, or quarterly programs available to support your needs.&nbsp;</p>\r\n<p class=\"\">&nbsp;Maintenance programs are an important part of our business as it prevents high water bills, broken sprinkler heads, oversprays, pipes, pump, valve, or just resetting clocks due to the country\'s regulations on dry times and proper times to water.&nbsp; &nbsp;</p>\r\n<p class=\"\">If your sprinkler system is not getting enough pressure, you need a service call for evaluation.&nbsp;&nbsp;</p>\r\n<p class=\"\">Over 4000 new systems installed, thousands of repairs as we celebrate in 2022 40 YEARS OF SERVICE.&nbsp; &nbsp; Hope you allow us the opportunity to help you with your sprinkler!</p>\r\n<p class=\"\">To learn more about how you can sign up today for your Maintenace Program.&nbsp; Please contact us today</p>\r\n<p class=\"\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"#239-793-7735\">Contact Us</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n\r\n[caption id=\"attachment_179\" align=\"alignnone\" width=\"560\"]<img class=\"wp-image-179 size-full\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/received_2444269415708471.jpeg\" alt=\"Renovation design sprinkler irrigation\" width=\"560\" height=\"765\" data-imhwpb-asset-id=\"789476\"> Renovations for a beautiful yard[/caption]\r\n\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\">\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-151 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/20201221_152447-225x300.jpg\" alt=\"\" width=\"433\" height=\"577\" data-imhwpb-built-photo-search=\"68|any\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-146 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/IMG_20211101_150730-225x300.jpg\" alt=\"\" width=\"432\" height=\"576\" data-imhwpb-built-photo-search=\"68|any\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-192 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/20200801_150124-225x300.jpg\" alt=\"\" width=\"432\" height=\"576\" data-imhwpb-built-photo-search=\"68|any\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\"></div>\r\n</div>','About Us','','inherit','closed','closed','','105-revision-v1','','','2022-04-04 19:34:55','2022-04-04 19:34:55','',105,'https://naplesirrigation.com/?p=210',0,'revision','',0),(211,1,'2022-04-04 19:35:32','2022-04-04 19:35:32','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 42px;\">\r\n<div class=\"col-md-5 col-xs-12 col-sm-12\">\r\n<h4 class=\"\">About Naples Irrigation aka Hooper IRRIGATION BAGAN IN 1982.&nbsp; wE ARE licensed and insured.&nbsp;&nbsp;</h4>\r\n<p class=\"\">Graduating from the University of Evansville,&nbsp; Bradford Hooper the owner of Naples Irrigation and Hooper Irrigation began his career servicing all residential homes, multi-family, and small commercial businesses buildings, and the Hooperigation design touch which we are truly noted for.&nbsp;&nbsp;</p>\r\n<p class=\"\">Specializing in renovations,&nbsp; adjusting sprinkler systems, repairs to pipes, valve repair, new clocks, and pumps and maintenance.&nbsp;&nbsp;</p>\r\n<p class=\"\">We offer a personalized maintenance program to fit your needs:&nbsp; monthly, bi-monthly, or quarterly programs available to support your needs.&nbsp;</p>\r\n<p class=\"\">&nbsp;Maintenance programs are an important part of our business as it prevents high water bills, broken sprinkler heads, oversprays, pipes, pump, valve, or just resetting clocks due to the country\'s regulations on dry times and proper times to water.&nbsp; &nbsp;</p>\r\n<p class=\"\">If your sprinkler system is not getting enough pressure, you need a service call for an evaluation.&nbsp;&nbsp;</p>\r\n<p class=\"\">Over 4000 new systems installed, thousands of repairs as we celebrate 40 YEARS OF SERVICE.&nbsp; &nbsp; Hope you allow us the opportunity to help you with your sprinkler!</p>\r\n<p class=\"\">To learn more about how you can sign up today for your Maintenace Program.&nbsp; Please contact us today</p>\r\n<p class=\"\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"#239-793-7735\">Contact Us</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n\r\n[caption id=\"attachment_179\" align=\"alignnone\" width=\"560\"]<img class=\"wp-image-179 size-full\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/received_2444269415708471.jpeg\" alt=\"Renovation design sprinkler irrigation\" width=\"560\" height=\"765\" data-imhwpb-asset-id=\"789476\"> Renovations for a beautiful yard[/caption]\r\n\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\">\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-151 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/20201221_152447-225x300.jpg\" alt=\"\" width=\"433\" height=\"577\" data-imhwpb-built-photo-search=\"68|any\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-146 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/IMG_20211101_150730-225x300.jpg\" alt=\"\" width=\"432\" height=\"576\" data-imhwpb-built-photo-search=\"68|any\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-192 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/20200801_150124-225x300.jpg\" alt=\"\" width=\"432\" height=\"576\" data-imhwpb-built-photo-search=\"68|any\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\"></div>\r\n</div>','About Us','','inherit','closed','closed','','105-revision-v1','','','2022-04-04 19:35:32','2022-04-04 19:35:32','',105,'https://naplesirrigation.com/?p=211',0,'revision','',0),(212,1,'2022-04-04 19:37:06','2022-04-04 19:37:06','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 42px;\">\r\n<div class=\"col-md-5 col-xs-12 col-sm-12\">\r\n<h4 class=\"\">About Naples Irrigation aka Hooper IRRIGATION BAGAN IN 1982.&nbsp; wE ARE licensed and insured.&nbsp;&nbsp;</h4>\r\n<p class=\"\">Graduating from the University of Evansville,&nbsp; Bradford Hooper the owner of Naples Irrigation and Hooper Irrigation began his career servicing all residential homes, multi-family, and small commercial businesses buildings, and the Hooperigation design touch which we are truly noted for.&nbsp;&nbsp;</p>\r\n<p class=\"\">Specializing in renovations,&nbsp; adjusting sprinkler systems, repairs to pipes, valve repair, new clocks, and pumps and maintenance.&nbsp;&nbsp;</p>\r\n<p class=\"\">We offer a personalized maintenance program to fit your needs:&nbsp; monthly, bi-monthly, or quarterly programs available to support your needs.&nbsp;</p>\r\n<p class=\"\">&nbsp;Maintenance programs are an important part of our business as it prevents high water bills, broken sprinkler heads, oversprays, pipes, pump, valve, or just resetting clocks due to the country\'s regulations on dry times and proper times to water.&nbsp; &nbsp;</p>\r\n<p class=\"\">If your sprinkler system is not getting enough pressure, you need a service call for an evaluation.&nbsp;&nbsp;</p>\r\n<p class=\"\">Over 4000 new systems installed, thousands of repairs as we celebrate 40 YEARS OF SERVICE.&nbsp; &nbsp; Hope you allow us the opportunity to help you with your sprinkler!</p>\r\n<p class=\"\">To learn more about how you can sign up today for your Maintenace Program.&nbsp; Please contact us today</p>\r\n<p class=\"\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"#239-793-7735\">Contact Us</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n\r\n[caption id=\"attachment_179\" align=\"alignnone\" width=\"560\"]<img class=\"wp-image-179 size-full\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/received_2444269415708471.jpeg\" alt=\"Renovation design sprinkler irrigation\" width=\"560\" height=\"765\" data-imhwpb-asset-id=\"789476\"> Renovations for a beautiful yard[/caption]\r\n\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\">\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-151 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/20201221_152447-225x300.jpg\" alt=\"\" width=\"433\" height=\"577\" data-imhwpb-built-photo-search=\"68|any\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-146 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/IMG_20211101_150730-225x300.jpg\" alt=\"\" width=\"432\" height=\"576\" data-imhwpb-built-photo-search=\"68|any\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-192 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/20200801_150124-225x300.jpg\" alt=\"\" width=\"432\" height=\"576\" data-imhwpb-built-photo-search=\"68|any\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\"></div>\r\n</div>','About Us','','inherit','closed','closed','','105-revision-v1','','','2022-04-04 19:37:06','2022-04-04 19:37:06','',105,'https://naplesirrigation.com/?p=212',0,'revision','',0),(214,1,'2022-04-04 19:44:39','2022-04-04 19:44:39','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 42px;\">\r\n<div class=\"col-md-5 col-xs-12 col-sm-12\">\r\n<h4 class=\"\">About Naples Irrigation aka Hooper IRRIGATION BAGAN IN 1982.&nbsp; wE ARE licensed and insured.&nbsp;&nbsp;</h4>\r\n<p class=\"\">Graduating from the University of Evansville,&nbsp; Bradford Hooper the owner of Naples Irrigation and Hooper Irrigation began his career servicing all residential homes, multi-family, and small commercial businesses buildings, and the Hooperigation design touch which we are truly noted for.&nbsp;&nbsp;</p>\r\n<p class=\"\">Specializing in renovations,&nbsp; adjusting sprinkler systems, repairs to pipes, valve repair, new clocks, and pumps and maintenance.&nbsp;&nbsp;</p>\r\n<p class=\"\">We offer a personalized maintenance program to fit your needs:&nbsp; monthly, bi-monthly, or quarterly programs available to support your needs.&nbsp;</p>\r\n<p class=\"\">&nbsp;Maintenance programs are an important part of our business as it prevents high water bills, broken sprinkler heads, oversprays, pipes, pump, valve, or just resetting clocks due to the country\'s regulations on dry times and proper times to water.&nbsp; &nbsp;</p>\r\n<p class=\"\">If your sprinkler system is not getting enough pressure, you need a service call for an evaluation.&nbsp;&nbsp;</p>\r\n<p class=\"\">Over 4000 new systems installed, thousands of repairs as we celebrate 40 YEARS OF SERVICE.&nbsp; &nbsp; Hope you allow us the opportunity to help you with your sprinkler!</p>\r\n<p class=\"\">To learn more about how you can sign up today for your Maintenace Program.&nbsp; Please contact us today</p>\r\n<p class=\"\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"http://naplesirrigation/conactus.com\" target=\"_blank\" rel=\"noopener\">Contact Us</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n\r\n[caption id=\"attachment_179\" align=\"alignnone\" width=\"560\"]<img class=\"wp-image-179 size-full\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/received_2444269415708471.jpeg\" alt=\"Renovation design sprinkler irrigation\" width=\"560\" height=\"765\" data-imhwpb-asset-id=\"789476\"> Renovations for a beautiful yard[/caption]\r\n\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\">\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-151 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/20201221_152447-225x300.jpg\" alt=\"\" width=\"433\" height=\"577\" data-imhwpb-built-photo-search=\"68|any\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-146 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/IMG_20211101_150730-225x300.jpg\" alt=\"\" width=\"432\" height=\"576\" data-imhwpb-built-photo-search=\"68|any\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-192 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/20200801_150124-225x300.jpg\" alt=\"\" width=\"432\" height=\"576\" data-imhwpb-built-photo-search=\"68|any\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\"></div>\r\n</div>','About Us','','inherit','closed','closed','','105-revision-v1','','','2022-04-04 19:44:39','2022-04-04 19:44:39','',105,'https://naplesirrigation.com/?p=214',0,'revision','',0),(213,1,'2022-04-04 19:41:51','2022-04-04 19:41:51','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 42px;\">\r\n<div class=\"col-md-5 col-xs-12 col-sm-12\">\r\n<h4 class=\"\">About Naples Irrigation aka Hooper IRRIGATION BAGAN IN 1982.&nbsp; wE ARE licensed and insured.&nbsp;&nbsp;</h4>\r\n<p class=\"\">Graduating from the University of Evansville,&nbsp; Bradford Hooper the owner of Naples Irrigation and Hooper Irrigation began his career servicing all residential homes, multi-family, and small commercial businesses buildings, and the Hooperigation design touch which we are truly noted for.&nbsp;&nbsp;</p>\r\n<p class=\"\">Specializing in renovations,&nbsp; adjusting sprinkler systems, repairs to pipes, valve repair, new clocks, and pumps and maintenance.&nbsp;&nbsp;</p>\r\n<p class=\"\">We offer a personalized maintenance program to fit your needs:&nbsp; monthly, bi-monthly, or quarterly programs available to support your needs.&nbsp;</p>\r\n<p class=\"\">&nbsp;Maintenance programs are an important part of our business as it prevents high water bills, broken sprinkler heads, oversprays, pipes, pump, valve, or just resetting clocks due to the country\'s regulations on dry times and proper times to water.&nbsp; &nbsp;</p>\r\n<p class=\"\">If your sprinkler system is not getting enough pressure, you need a service call for an evaluation.&nbsp;&nbsp;</p>\r\n<p class=\"\">Over 4000 new systems installed, thousands of repairs as we celebrate 40 YEARS OF SERVICE.&nbsp; &nbsp; Hope you allow us the opportunity to help you with your sprinkler!</p>\r\n<p class=\"\">To learn more about how you can sign up today for your Maintenace Program.&nbsp; Please contact us today</p>\r\n<p class=\"\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"#239-793-7735\">Contact Us</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n\r\n[caption id=\"attachment_179\" align=\"alignnone\" width=\"560\"]<img class=\"wp-image-179 size-full\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/received_2444269415708471.jpeg\" alt=\"Renovation design sprinkler irrigation\" width=\"560\" height=\"765\" data-imhwpb-asset-id=\"789476\"> Renovations for a beautiful yard[/caption]\r\n\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\">\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-151 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/20201221_152447-225x300.jpg\" alt=\"\" width=\"433\" height=\"577\" data-imhwpb-built-photo-search=\"68|any\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-146 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/IMG_20211101_150730-225x300.jpg\" alt=\"\" width=\"432\" height=\"576\" data-imhwpb-built-photo-search=\"68|any\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-192 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/20200801_150124-225x300.jpg\" alt=\"\" width=\"432\" height=\"576\" data-imhwpb-built-photo-search=\"68|any\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\"></div>\r\n</div>','About Us','','inherit','closed','closed','','105-revision-v1','','','2022-04-04 19:41:51','2022-04-04 19:41:51','',105,'https://naplesirrigation.com/?p=213',0,'revision','',0),(218,1,'2022-04-04 19:51:47','2022-04-04 19:51:47','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 42px;\">\r\n<div class=\"col-md-5 col-xs-12 col-sm-12\">\r\n<h4 class=\"\">About Naples Irrigation aka Hooper IRRIGATION BAGAN IN 1982.&nbsp; wE ARE licensed and insured.&nbsp;&nbsp;</h4>\r\n<p class=\"\">Graduating from the University of Evansville,&nbsp; Bradford Hooper the owner of Naples Irrigation and Hooper Irrigation began his career servicing all residential homes, multi-family, and small commercial businesses buildings, and the Hooperigation design touch which we are truly noted for.&nbsp;&nbsp;</p>\r\n<p class=\"\">Specializing in renovations,&nbsp; adjusting sprinkler systems, repairs to pipes, valve repair, new clocks, and pumps and maintenance.&nbsp;&nbsp;</p>\r\n<p class=\"\">We offer a personalized maintenance program to fit your needs:&nbsp; monthly, bi-monthly, or quarterly programs available to support your needs.&nbsp;</p>\r\n<p class=\"\">&nbsp;Maintenance programs are an important part of our business as it prevents high water bills, broken sprinkler heads, oversprays, pipes, pump, valve, or just resetting clocks due to the country\'s regulations on dry times and proper times to water.&nbsp; &nbsp;</p>\r\n<p class=\"\">If your sprinkler system is not getting enough pressure, you need a service call for an evaluation.&nbsp;&nbsp;</p>\r\n<p class=\"\">Over 4000 new systems installed, thousands of repairs as we celebrate 40 YEARS OF SERVICE.&nbsp; &nbsp; Hope you allow us the opportunity to help you with your sprinkler!</p>\r\n<p class=\"\">To learn more about how you can sign up today for your Maintenace Program.&nbsp; Please contact us today</p>\r\n<p class=\"\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"#239-793-7735\">Contact Us</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n\r\n[caption id=\"attachment_179\" align=\"alignnone\" width=\"560\"]<img class=\"wp-image-179 size-full\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/received_2444269415708471.jpeg\" alt=\"Renovation design sprinkler irrigation\" width=\"560\" height=\"765\" data-imhwpb-asset-id=\"789476\"> Renovations for a beautiful yard[/caption]\r\n\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\">\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-151 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/20201221_152447-225x300.jpg\" alt=\"\" width=\"433\" height=\"577\" data-imhwpb-built-photo-search=\"68|any\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-146 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/IMG_20211101_150730-225x300.jpg\" alt=\"\" width=\"432\" height=\"576\" data-imhwpb-built-photo-search=\"68|any\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-192 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/20200801_150124-225x300.jpg\" alt=\"\" width=\"432\" height=\"576\" data-imhwpb-built-photo-search=\"68|any\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\"></div>\r\n</div>','About Us','','inherit','closed','closed','','105-revision-v1','','','2022-04-04 19:51:47','2022-04-04 19:51:47','',105,'https://naplesirrigation.com/?p=218',0,'revision','',0),(215,1,'2022-04-04 19:47:45','2022-04-04 19:47:45','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 42px;\">\r\n<div class=\"col-md-5 col-xs-12 col-sm-12\">\r\n<h4 class=\"\">About Naples Irrigation aka Hooper IRRIGATION BAGAN IN 1982.&nbsp; wE ARE licensed and insured.&nbsp;&nbsp;</h4>\r\n<p class=\"\">Graduating from the University of Evansville,&nbsp; Bradford Hooper the owner of Naples Irrigation and Hooper Irrigation began his career servicing all residential homes, multi-family, and small commercial businesses buildings, and the Hooperigation design touch which we are truly noted for.&nbsp;&nbsp;</p>\r\n<p class=\"\">Specializing in renovations,&nbsp; adjusting sprinkler systems, repairs to pipes, valve repair, new clocks, and pumps and maintenance.&nbsp;&nbsp;</p>\r\n<p class=\"\">We offer a personalized maintenance program to fit your needs:&nbsp; monthly, bi-monthly, or quarterly programs available to support your needs.&nbsp;</p>\r\n<p class=\"\">&nbsp;Maintenance programs are an important part of our business as it prevents high water bills, broken sprinkler heads, oversprays, pipes, pump, valve, or just resetting clocks due to the country\'s regulations on dry times and proper times to water.&nbsp; &nbsp;</p>\r\n<p class=\"\">If your sprinkler system is not getting enough pressure, you need a service call for an evaluation.&nbsp;&nbsp;</p>\r\n<p class=\"\">Over 4000 new systems installed, thousands of repairs as we celebrate 40 YEARS OF SERVICE.&nbsp; &nbsp; Hope you allow us the opportunity to help you with your sprinkler!</p>\r\n<p class=\"\">To learn more about how you can sign up today for your Maintenace Program.&nbsp; Please contact us today</p>\r\n<p class=\"\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"http://naplesirrigation/conactus.com\" target=\"_blank\" rel=\"noopener\">Contact Us</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n\r\n[caption id=\"attachment_179\" align=\"alignnone\" width=\"560\"]<img class=\"wp-image-179 size-full\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/received_2444269415708471.jpeg\" alt=\"Renovation design sprinkler irrigation\" width=\"560\" height=\"765\" data-imhwpb-asset-id=\"789476\"> Renovations for a beautiful yard[/caption]\r\n\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\">\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-151 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/20201221_152447-225x300.jpg\" alt=\"\" width=\"433\" height=\"577\" data-imhwpb-built-photo-search=\"68|any\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-146 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/IMG_20211101_150730-225x300.jpg\" alt=\"\" width=\"432\" height=\"576\" data-imhwpb-built-photo-search=\"68|any\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-192 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/20200801_150124-225x300.jpg\" alt=\"\" width=\"432\" height=\"576\" data-imhwpb-built-photo-search=\"68|any\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\"></div>\r\n</div>','About Us','','inherit','closed','closed','','105-revision-v1','','','2022-04-04 19:47:45','2022-04-04 19:47:45','',105,'https://naplesirrigation.com/?p=215',0,'revision','',0),(216,1,'2022-04-04 19:48:59','2022-04-04 19:48:59','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-bottom: 0px;\">\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n<div class=\"image-gallery\">\r\n\r\n[caption id=\"attachment_136\" align=\"alignnone\" width=\"250\"]<img class=\"wp-image-136 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/received_462634725313575-222x300.jpeg\" alt=\"Meet Naplesirrigation - Your Yard is only as good as your Sprinkler Guy\" width=\"250\" height=\"338\" data-imhwpb-asset-id=\"780395\"> Brad Hooper . Owner of Naples Irrigation &amp; Hooper Irrigation since 1982[/caption]\r\n\r\n</div>\r\n<p class=\"\" style=\"font-size: 15px;\">Established in 1984,&nbsp; Licensed and Insured&nbsp;&nbsp;</p>\r\n\r\n<h3 class=\"\"><i class=\"fa fa-1x fa-envelope-o\"><!-- icon --></i> Email</h3>\r\n<p class=\"\"><a href=\"mailto:hooperirrigation@gmail.com\">hooperirrigation@gmail.com</a></p>\r\n\r\n<h3 class=\"\"><i class=\"fa fa-1x fa-phone\"><!-- icon --></i> Phone</h3>\r\n<p class=\"\">239-793-7755 or 239-250-5265</p>\r\n\r\n<h3><i class=\"fa fa-1x fa-map-marker\"><!-- icon --></i> Address</h3>\r\nPO Box 2857, Naples FL 34106\r\n<p class=\"boldgrid-google-maps\" style=\"width: 100%; height: 200px;\"><iframe style=\"width: 100%; height: 100%;\" src=\"https://maps.google.com/maps?q=PO+Box+2857%2C+Naples+FL+34106&amp;t=m&amp;z=16&amp;output=embed\" frameborder=\"0\"></iframe></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n<h3 class=\"\">Get in Touch</h3>\r\n<p class=\"\">We are here to answer any questions you may have. Reach out to us and we\'ll respond as soon as we can.&nbsp; &nbsp;Feel free to leave the phone number for a callback</p>\r\n<p class=\"\">&nbsp;No charge for system checks/evaluations.&nbsp; &nbsp;&nbsp;</p>\r\n<p class=\"\">Thank You Bradford Hooper&nbsp;</p>\r\n<p class=\"\">[weforms id=\"63\"]</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Contact Us Naples Irrigation - Brad Hooper','','inherit','closed','closed','','107-revision-v1','','','2022-04-04 19:48:59','2022-04-04 19:48:59','',107,'https://naplesirrigation.com/?p=216',0,'revision','',0),(217,1,'2022-04-04 19:49:41','2022-04-04 19:49:41','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-bottom: 0px;\">\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n<div class=\"image-gallery\">\r\n\r\n[caption id=\"attachment_136\" align=\"alignnone\" width=\"250\"]17<img class=\"wp-image-136 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/received_462634725313575-222x300.jpeg\" alt=\"Meet Naplesirrigation - Your Yard is only as good as your Sprinkler Guy\" width=\"250\" height=\"338\" data-imhwpb-asset-id=\"780395\"> Brad Hooper . Owner of Naples Irrigation &amp; Hooper Irrigation since 1982[/caption]\r\n\r\n</div>\r\n<p class=\"\" style=\"font-size: 15px;\">Established in 1984,&nbsp; Licensed and Insured&nbsp;&nbsp;</p>\r\n\r\n<h3 class=\"\"><i class=\"fa fa-1x fa-envelope-o\"><!-- icon --></i> Email</h3>\r\n<p class=\"\"><a href=\"mailto:hooperirrigation@gmail.com\">hooperirrigation@gmail.com</a></p>\r\n\r\n<h3 class=\"\"><i class=\"fa fa-1x fa-phone\"><!-- icon --></i> Phone</h3>\r\n<p class=\"\">239-793-7755 or 239-250-5265</p>\r\n\r\n<h3><i class=\"fa fa-1x fa-map-marker\"><!-- icon --></i> Address</h3>\r\nPO Box 2857, Naples FL 34106\r\n<p class=\"boldgrid-google-maps\" style=\"width: 100%; height: 200px;\"><iframe style=\"width: 100%; height: 100%;\" src=\"https://maps.google.com/maps?q=PO+Box+2857%2C+Naples+FL+34106&amp;t=m&amp;z=16&amp;output=embed\" frameborder=\"0\"></iframe></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n<h3 class=\"\">Get in Touch</h3>\r\n<p class=\"\">We are here to answer any questions you may have. Reach out to us and we\'ll respond as soon as we can.&nbsp; &nbsp;Feel free to leave the phone number for a callback</p>\r\n<p class=\"\">&nbsp;No charge for system checks/evaluations.&nbsp; &nbsp;&nbsp;</p>\r\n<p class=\"\">Thank You Bradford Hooper&nbsp;</p>\r\n<p class=\"\">[weforms id=\"63\"]</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Contact Us Naples Irrigation - Brad Hooper','','inherit','closed','closed','','107-revision-v1','','','2022-04-04 19:49:41','2022-04-04 19:49:41','',107,'https://naplesirrigation.com/?p=217',0,'revision','',0),(221,1,'2022-04-04 19:54:17','2022-04-04 19:54:17','<div class=\"boldgrid-section\" style=\"color: #000000; background-image: url(\'https://source.unsplash.com/MqJX_8EaStM/1920x1080\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"1175055\" data-image-url=\"https://source.unsplash.com/MqJX_8EaStM/1920x1080\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 120px; padding-bottom: 140px;\">\r\n<div class=\"col-md-7 col-sm-4 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\"><img class=\"wp-image-164 \" style=\"font-weight: bold;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/20210313_120212-300x225.jpg\" alt=\"\" width=\"507\" height=\"380\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-5 col-sm-8 col-xs-12 wedge-cta\" custom-classes=\"wedge-cta\">\r\n<h2 class=\"\">NAPLES IRRIGATION lET US BRING YOUR YARD BACK TO LIFE</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-16\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\" style=\"margin-top: 20px; margin-bottom: 30px;\">&nbsp;</p>\r\n<p class=\"\"><a class=\"button-secondary btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1\" href=\"https://naplesirrigation.com/\">CONTACT US TODAY</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color3-background-color color-3-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-12\">\r\n<h2 class=\"\" style=\"text-align: center;\">See What We Can Offer</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-2 color1-color\" style=\"width: 65%;\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 90px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-4\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-1 aligncenter wp-image-143 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/received_1072950093527088-222x300.jpeg\" alt=\"\" width=\"192\" height=\"259\" data-imhwpb-asset-id=\"695399\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Renovation</h3>\r\n<p class=\"\">If you want to experience the benefits of a customized Renovation our team is experienced 40 years in Naples&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-xs-12 col-sm-6 col-md-4\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-1 aligncenter wp-image-135 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/20201221_152806-300x225.jpg\" alt=\"\" width=\"338\" height=\"253\" data-imhwpb-asset-id=\"695400\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Design &amp; Monthly Maintenance&nbsp;</h3>\r\n<p class=\"\">Fully licensed and insured.&nbsp; We take pride in our work and are deemed the best in Naples.&nbsp;&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-xs-12 col-sm-6 col-md-4\">\r\n\r\n<img class=\"bg-img bg-img-1 wp-image-180 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/received_656891985552879-220x300.jpeg\" alt=\"Repair Sprinkler system irrigaiton\" width=\"207\" height=\"282\" data-imhwpb-asset-id=\"695401\">\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Sprinkler Repair</h3>\r\n<p class=\"\">New Pumps, Time Clocks, Sprinkler heads, adjustments, and testing we will make your yard beautiful.&nbsp;&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color2-background-color color-2-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-12\">\r\n<h2 class=\"\" style=\"text-align: center;\">Customer Testimonials</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-2 color1-color\" style=\"width: 65%;\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 40px;\">\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle alignnone wp-image-177 \" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/pumpirigationsupply-300x225.jpg\" alt=\"\" width=\"216\" height=\"162\" data-imhwpb-asset-id=\"695402\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\"><strong>Pump SUPPLY HOUSE of Naples</strong></p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Visit us today, highly recommend as one of our strongest customers in the industry today\"</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-156 \" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/282_127_486_486_20201221_153238-768x1024.jpg\" alt=\"\" width=\"179\" height=\"179\" data-imhwpb-asset-id=\"695403\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\">Engle Denistry</p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Brad Engle recommends Brad Hooper to his customers\" Best in Naples&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-125\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_4YX0oj7gf8o-imhwpb-ut5s3lmwf6dg2wc.jpg\" alt=\"\" width=\"150\" height=\"150\" data-imhwpb-asset-id=\"695404\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\"><strong>Direct Industrial Supply</strong></p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Brad Hooper of Naples Irrigation and Hooper Irrigation is one of our best maintenance Sprinkler Man. Highly recommend his services</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-126\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_8tN3flDTQBU-imhwpb-kxmpsoge3h4672l.jpg\" alt=\"\" width=\"169\" height=\"169\" data-imhwpb-asset-id=\"695405\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\">&nbsp;</p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Brad Hooper is one of the best-known sprinkler companies I know highly sought out.&nbsp; Our renovations have never looked better.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Home','','inherit','closed','closed','','103-revision-v1','','','2022-04-04 19:54:17','2022-04-04 19:54:17','',103,'https://naplesirrigation.com/?p=221',0,'revision','',0),(220,1,'2022-04-04 19:53:39','2022-04-04 19:53:39','<div class=\"boldgrid-section\" style=\"color: #000000; background-image: url(\'https://source.unsplash.com/MqJX_8EaStM/1920x1080\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"1175055\" data-image-url=\"https://source.unsplash.com/MqJX_8EaStM/1920x1080\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 120px; padding-bottom: 140px;\">\r\n<div class=\"col-md-7 col-sm-4 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\"><img class=\"wp-image-164 \" style=\"font-weight: bold;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/20210313_120212-300x225.jpg\" alt=\"\" width=\"680\" height=\"510\"></p>\r\nYour yard is only as lovely as your Sprinkler System Guy&nbsp;\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-5 col-sm-8 col-xs-12 wedge-cta\" custom-classes=\"wedge-cta\">\r\n<h2 class=\"\">NAPLES IRRIGATION lET US BRING YOUR YARD BACK TO LIFE</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-16\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\" style=\"margin-top: 20px; margin-bottom: 30px;\">&nbsp;</p>\r\n<p class=\"\"><a class=\"button-secondary btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1\" href=\"https://naplesirrigation.com/\">CONTACT US TODAY</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color3-background-color color-3-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-12\">\r\n<h2 class=\"\" style=\"text-align: center;\">See What We Can Offer</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-2 color1-color\" style=\"width: 65%;\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 90px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-4\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-1 aligncenter wp-image-143 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/received_1072950093527088-222x300.jpeg\" alt=\"\" width=\"192\" height=\"259\" data-imhwpb-asset-id=\"695399\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Renovation</h3>\r\n<p class=\"\">If you want to experience the benefits of a customized Renovation our team is experienced 40 years in Naples&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-xs-12 col-sm-6 col-md-4\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-1 aligncenter wp-image-135 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/20201221_152806-300x225.jpg\" alt=\"\" width=\"338\" height=\"253\" data-imhwpb-asset-id=\"695400\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Design &amp; Monthly Maintenance&nbsp;</h3>\r\n<p class=\"\">Fully licensed and insured.&nbsp; We take pride in our work and are deemed the best in Naples.&nbsp;&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-xs-12 col-sm-6 col-md-4\">\r\n\r\n<img class=\"bg-img bg-img-1 wp-image-180 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/received_656891985552879-220x300.jpeg\" alt=\"Repair Sprinkler system irrigaiton\" width=\"207\" height=\"282\" data-imhwpb-asset-id=\"695401\">\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Sprinkler Repair</h3>\r\n<p class=\"\">New Pumps, Time Clocks, Sprinkler heads, adjustments, and testing we will make your yard beautiful.&nbsp;&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color2-background-color color-2-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-12\">\r\n<h2 class=\"\" style=\"text-align: center;\">Customer Testimonials</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-2 color1-color\" style=\"width: 65%;\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 40px;\">\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle alignnone wp-image-177 \" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/pumpirigationsupply-300x225.jpg\" alt=\"\" width=\"216\" height=\"162\" data-imhwpb-asset-id=\"695402\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\"><strong>Pump SUPPLY HOUSE of Naples</strong></p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Visit us today, highly recommend as one of our strongest customers in the industry today\"</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-156 \" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/282_127_486_486_20201221_153238-768x1024.jpg\" alt=\"\" width=\"179\" height=\"179\" data-imhwpb-asset-id=\"695403\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\">Engle Denistry</p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Brad Engle recommends Brad Hooper to his customers\" Best in Naples&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-125\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_4YX0oj7gf8o-imhwpb-ut5s3lmwf6dg2wc.jpg\" alt=\"\" width=\"150\" height=\"150\" data-imhwpb-asset-id=\"695404\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\"><strong>Direct Industrial Supply</strong></p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Brad Hooper of Naples Irrigation and Hooper Irrigation is one of our best maintenance Sprinkler Man. Highly recommend his services</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-126\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_8tN3flDTQBU-imhwpb-kxmpsoge3h4672l.jpg\" alt=\"\" width=\"169\" height=\"169\" data-imhwpb-asset-id=\"695405\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\">&nbsp;</p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Brad Hooper is one of the best-known sprinkler companies I know highly sought out.&nbsp; Our renovations have never looked better.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Home','','inherit','closed','closed','','103-revision-v1','','','2022-04-04 19:53:39','2022-04-04 19:53:39','',103,'https://naplesirrigation.com/?p=220',0,'revision','',0),(223,1,'2022-04-04 20:04:35','2022-04-04 20:04:35','<div class=\"boldgrid-section\" style=\"color: #000000; background-image: url(\'https://source.unsplash.com/MqJX_8EaStM/1920x1080\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"1175055\" data-image-url=\"https://source.unsplash.com/MqJX_8EaStM/1920x1080\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 120px; padding-bottom: 140px;\">\r\n<div class=\"col-md-7 col-sm-4 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\"><img class=\"alignnone size-full wp-image-186\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/cropped-20210313_120201-scaled-1-e1649096217790.jpg\" alt=\"Perfect Irrigation System\" width=\"2560\" height=\"1920\">14</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-5 col-sm-8 col-xs-12 wedge-cta\" custom-classes=\"wedge-cta\">\r\n<h2 class=\"\">NAPLES IRRIGATION lET US BRING YOUR YARD BACK TO LIFE</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-16\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\" style=\"margin-top: 20px; margin-bottom: 30px;\">&nbsp;</p>\r\n<p class=\"\"><a class=\"button-secondary btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1\" href=\"https://naplesirrigation.com/\">CONTACT US TODAY</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color3-background-color color-3-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-12\">\r\n<h2 class=\"\" style=\"text-align: center;\">See What We Can Offer</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-2 color1-color\" style=\"width: 65%;\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 90px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-4\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-1 aligncenter wp-image-143 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/received_1072950093527088-222x300.jpeg\" alt=\"\" width=\"192\" height=\"259\" data-imhwpb-asset-id=\"695399\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Renovation</h3>\r\n<p class=\"\">If you want to experience the benefits of a customized Renovation our team is experienced 40 years in Naples&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-xs-12 col-sm-6 col-md-4\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-1 aligncenter wp-image-135 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/20201221_152806-300x225.jpg\" alt=\"\" width=\"338\" height=\"253\" data-imhwpb-asset-id=\"695400\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Design &amp; Monthly Maintenance&nbsp;</h3>\r\n<p class=\"\">Fully licensed and insured.&nbsp; We take pride in our work and are deemed the best in Naples.&nbsp;&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-xs-12 col-sm-6 col-md-4\">\r\n\r\n<img class=\"bg-img bg-img-1 wp-image-180 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/received_656891985552879-220x300.jpeg\" alt=\"Repair Sprinkler system irrigaiton\" width=\"207\" height=\"282\" data-imhwpb-asset-id=\"695401\">\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Sprinkler Repair</h3>\r\n<p class=\"\">New Pumps, Time Clocks, Sprinkler heads, adjustments, and testing we will make your yard beautiful.&nbsp;&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color2-background-color color-2-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-12\">\r\n<h2 class=\"\" style=\"text-align: center;\">Customer Testimonials</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-2 color1-color\" style=\"width: 65%;\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 40px;\">\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle alignnone wp-image-177 \" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/pumpirigationsupply-300x225.jpg\" alt=\"\" width=\"216\" height=\"162\" data-imhwpb-asset-id=\"695402\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\"><strong>Pump SUPPLY HOUSE of Naples</strong></p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Visit us today, highly recommend as one of our strongest customers in the industry today\"</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-156 \" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/282_127_486_486_20201221_153238-768x1024.jpg\" alt=\"\" width=\"179\" height=\"179\" data-imhwpb-asset-id=\"695403\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\">Engle Denistry</p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Brad Engle recommends Brad Hooper to his customers\" Best in Naples&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-125\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_4YX0oj7gf8o-imhwpb-ut5s3lmwf6dg2wc.jpg\" alt=\"\" width=\"150\" height=\"150\" data-imhwpb-asset-id=\"695404\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\"><strong>Direct Industrial Supply</strong></p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Brad Hooper of Naples Irrigation and Hooper Irrigation is one of our best maintenance Sprinkler Man. Highly recommend his services</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-126\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_8tN3flDTQBU-imhwpb-kxmpsoge3h4672l.jpg\" alt=\"\" width=\"169\" height=\"169\" data-imhwpb-asset-id=\"695405\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\">&nbsp;</p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Brad Hooper is one of the best-known sprinkler companies I know highly sought out.&nbsp; Our renovations have never looked better.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Home','','inherit','closed','closed','','103-revision-v1','','','2022-04-04 20:04:35','2022-04-04 20:04:35','',103,'https://naplesirrigation.com/?p=223',0,'revision','',0),(224,1,'2022-04-04 20:09:28','2022-04-04 20:09:28','<div class=\"boldgrid-section\" style=\"color: #000000; background-image: url(\'https://source.unsplash.com/MqJX_8EaStM/1920x1080\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"1175055\" data-image-url=\"https://source.unsplash.com/MqJX_8EaStM/1920x1080\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 120px; padding-bottom: 140px;\">\r\n<div class=\"col-md-7 col-sm-4 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\"><img class=\"alignnone size-full wp-image-186\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/cropped-20210313_120201-scaled-1-e1649096217790.jpg\" alt=\"Perfect Irrigation System\" width=\"2560\" height=\"1920\">14</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-5 col-sm-8 col-xs-12 wedge-cta\" custom-classes=\"wedge-cta\">\r\n<h2 class=\"\">NAPLES IRRIGATION lET US BRING YOUR YARD BACK TO LIFE</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-16\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\" style=\"margin-top: 20px; margin-bottom: 30px;\">&nbsp;</p>\r\n<p class=\"\"><a class=\"button-secondary btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1\" href=\"https://naplesirrigation.com/\">CONTACT US TODAY</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color3-background-color color-3-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-12\">\r\n<h2 class=\"\" style=\"text-align: center;\">See What We Can Offer</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-2 color1-color\" style=\"width: 65%;\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 90px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-4\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-1 aligncenter wp-image-143 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/received_1072950093527088-222x300.jpeg\" alt=\"\" width=\"192\" height=\"259\" data-imhwpb-asset-id=\"695399\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Renovation</h3>\r\n<p class=\"\">If you want to experience the benefits of a customized Renovation our team is experienced 40 years in Naples&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-xs-12 col-sm-6 col-md-4\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-1 aligncenter wp-image-135 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/20201221_152806-300x225.jpg\" alt=\"\" width=\"338\" height=\"253\" data-imhwpb-asset-id=\"695400\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Design &amp; Monthly Maintenance&nbsp;</h3>\r\n<p class=\"\">Fully licensed and insured.&nbsp; We take pride in our work and are deemed the best in Naples.&nbsp;&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-xs-12 col-sm-6 col-md-4\">\r\n<p class=\"\"><img class=\"bg-img bg-img-1 wp-image-180  aligncenter\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/received_656891985552879-220x300.jpeg\" alt=\"Repair Sprinkler system irrigaiton\" width=\"207\" height=\"282\" data-imhwpb-asset-id=\"695401\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Sprinkler Repair</h3>\r\n<p class=\"\">New Pumps, Time Clocks, Sprinkler heads, adjustments, and testing we will make your yard beautiful.&nbsp;&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color2-background-color color-2-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-12\">\r\n<h2 class=\"\" style=\"text-align: center;\">Customer Testimonials</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-2 color1-color\" style=\"width: 65%;\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 40px;\">\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle alignnone wp-image-177 \" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/pumpirigationsupply-300x225.jpg\" alt=\"\" width=\"216\" height=\"162\" data-imhwpb-asset-id=\"695402\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\"><strong>Pump SUPPLY HOUSE of Naples</strong></p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Visit us today, highly recommend as one of our strongest customers in the industry today\"</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-156 \" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/282_127_486_486_20201221_153238-768x1024.jpg\" alt=\"\" width=\"179\" height=\"179\" data-imhwpb-asset-id=\"695403\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\">Engle Denistry</p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Brad Engle recommends Brad Hooper to his customers\" Best in Naples&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-125\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_4YX0oj7gf8o-imhwpb-ut5s3lmwf6dg2wc.jpg\" alt=\"\" width=\"150\" height=\"150\" data-imhwpb-asset-id=\"695404\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\"><strong>Direct Industrial Supply</strong></p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Brad Hooper of Naples Irrigation and Hooper Irrigation is one of our best maintenance Sprinkler Man. Highly recommend his services</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-126\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_8tN3flDTQBU-imhwpb-kxmpsoge3h4672l.jpg\" alt=\"\" width=\"169\" height=\"169\" data-imhwpb-asset-id=\"695405\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\">&nbsp;</p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Brad Hooper is one of the best-known sprinkler companies I know highly sought out.&nbsp; Our renovations have never looked better.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Home','','inherit','closed','closed','','103-revision-v1','','','2022-04-04 20:09:28','2022-04-04 20:09:28','',103,'https://naplesirrigation.com/?p=224',0,'revision','',0),(225,1,'2022-04-04 20:42:27','2022-04-04 20:42:27','<div class=\"boldgrid-section\" style=\"color: #000000; background-image: url(\'https://source.unsplash.com/MqJX_8EaStM/1920x1080\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"1175055\" data-image-url=\"https://source.unsplash.com/MqJX_8EaStM/1920x1080\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 120px; padding-bottom: 140px;\">\r\n<div class=\"col-md-7 col-sm-4 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\"><img class=\"alignnone size-full wp-image-186\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/cropped-20210313_120201-scaled-1-e1649096217790.jpg\" alt=\"Perfect Irrigation System\" width=\"2560\" height=\"1920\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-5 col-sm-8 col-xs-12 wedge-cta\" custom-classes=\"wedge-cta\">\r\n<h2 class=\"\">NAPLES IRRIGATION lET US BRING YOUR YARD BACK TO LIFE</h2>\r\n<p class=\"\">BEST LAWN&nbsp; SPRINKLER INSTALLER SYSTEM&nbsp;</p>\r\n\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-16\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\"><a class=\"button-secondary btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1\" href=\"https://naplesirrigation.com/\">CONTACT US TODAY</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color3-background-color color-3-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-12\">\r\n<h2 class=\"\" style=\"text-align: center;\">See What We Can Offer</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-2 color1-color\" style=\"width: 65%;\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 90px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-4\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-1 aligncenter wp-image-143 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/received_1072950093527088-222x300.jpeg\" alt=\"\" width=\"192\" height=\"259\" data-imhwpb-asset-id=\"695399\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Renovation</h3>\r\n<p class=\"\">If you want to experience the benefits of a customized Renovation our team is experienced 40 years in Naples&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-xs-12 col-sm-6 col-md-4\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-1 aligncenter wp-image-135 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/20201221_152806-300x225.jpg\" alt=\"\" width=\"338\" height=\"253\" data-imhwpb-asset-id=\"695400\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Design &amp; Monthly Maintenance&nbsp;</h3>\r\n<p class=\"\">Fully licensed and insured.&nbsp; We take pride in our work and are deemed the best in Naples.&nbsp;&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-xs-12 col-sm-6 col-md-4\">\r\n<p class=\"\"><img class=\"bg-img bg-img-1 wp-image-180 aligncenter\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/received_656891985552879-220x300.jpeg\" alt=\"Repair Sprinkler system irrigaiton\" width=\"207\" height=\"282\" data-imhwpb-asset-id=\"695401\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Sprinkler Repair</h3>\r\n<p class=\"\">New Pumps, Time Clocks, Sprinkler heads, adjustments, and testing we will make your yard beautiful.&nbsp;&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color2-background-color color-2-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-12\">\r\n<h2 class=\"\" style=\"text-align: center;\">Customer Testimonials</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-2 color1-color\" style=\"width: 65%;\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 40px;\">\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle alignnone wp-image-177 \" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/pumpirigationsupply-300x225.jpg\" alt=\"\" width=\"216\" height=\"162\" data-imhwpb-asset-id=\"695402\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\"><strong>Pump SUPPLY HOUSE of Naples</strong></p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Visit us today, highly recommend as one of our strongest customers in the industry today\"</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-156 \" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/282_127_486_486_20201221_153238-768x1024.jpg\" alt=\"\" width=\"179\" height=\"179\" data-imhwpb-asset-id=\"695403\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\">Engle Denistry</p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Brad Engle recommends Brad Hooper to his customers\" Best in Naples&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-125\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_4YX0oj7gf8o-imhwpb-ut5s3lmwf6dg2wc.jpg\" alt=\"\" width=\"150\" height=\"150\" data-imhwpb-asset-id=\"695404\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\"><strong>Direct Industrial Supply</strong></p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Brad Hooper of Naples Irrigation and Hooper Irrigation is one of our best maintenance Sprinkler Man. Highly recommend his services</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-126\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_8tN3flDTQBU-imhwpb-kxmpsoge3h4672l.jpg\" alt=\"\" width=\"169\" height=\"169\" data-imhwpb-asset-id=\"695405\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\">&nbsp;</p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Brad Hooper is one of the best-known sprinkler companies I know highly sought out.&nbsp; Our renovations have never looked better.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Home','','inherit','closed','closed','','103-revision-v1','','','2022-04-04 20:42:27','2022-04-04 20:42:27','',103,'https://naplesirrigation.com/?p=225',0,'revision','',0),(226,1,'2022-04-04 20:43:17','2022-04-04 20:43:17','<div class=\"boldgrid-section\" style=\"color: #000000; background-image: url(\'https://source.unsplash.com/MqJX_8EaStM/1920x1080\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"1175055\" data-image-url=\"https://source.unsplash.com/MqJX_8EaStM/1920x1080\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 120px; padding-bottom: 140px;\">\r\n<div class=\"col-md-7 col-sm-4 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\"><img class=\"wp-image-186 alignnone\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/cropped-20210313_120201-scaled-1-e1649096217790.jpg\" alt=\"Perfect Irrigation System\" width=\"463\" height=\"347\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-5 col-sm-8 col-xs-12 wedge-cta\" custom-classes=\"wedge-cta\">\r\n<h2 class=\"\">NAPLES IRRIGATION lET US BRING YOUR YARD BACK TO LIFE</h2>\r\n<p class=\"\">BEST LAWN&nbsp; SPRINKLER INSTALLER SYSTEM&nbsp;</p>\r\n\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-16\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\"><a class=\"button-secondary btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1\" href=\"https://naplesirrigation.com/\">CONTACT US TODAY</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color3-background-color color-3-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-12\">\r\n<h2 class=\"\" style=\"text-align: center;\">See What We Can Offer</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-2 color1-color\" style=\"width: 65%;\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 90px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-4\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-1 aligncenter wp-image-143 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/received_1072950093527088-222x300.jpeg\" alt=\"\" width=\"192\" height=\"259\" data-imhwpb-asset-id=\"695399\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Renovation</h3>\r\n<p class=\"\">If you want to experience the benefits of a customized Renovation our team is experienced 40 years in Naples&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-xs-12 col-sm-6 col-md-4\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-1 aligncenter wp-image-135 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/20201221_152806-300x225.jpg\" alt=\"\" width=\"338\" height=\"253\" data-imhwpb-asset-id=\"695400\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Design &amp; Monthly Maintenance&nbsp;</h3>\r\n<p class=\"\">Fully licensed and insured.&nbsp; We take pride in our work and are deemed the best in Naples.&nbsp;&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-xs-12 col-sm-6 col-md-4\">\r\n<p class=\"\"><img class=\"bg-img bg-img-1 wp-image-180 aligncenter\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/received_656891985552879-220x300.jpeg\" alt=\"Repair Sprinkler system irrigaiton\" width=\"207\" height=\"282\" data-imhwpb-asset-id=\"695401\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Sprinkler Repair</h3>\r\n<p class=\"\">New Pumps, Time Clocks, Sprinkler heads, adjustments, and testing we will make your yard beautiful.&nbsp;&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color2-background-color color-2-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-12\">\r\n<h2 class=\"\" style=\"text-align: center;\">Customer Testimonials</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-2 color1-color\" style=\"width: 65%;\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 40px;\">\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle alignnone wp-image-177 \" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/pumpirigationsupply-300x225.jpg\" alt=\"\" width=\"216\" height=\"162\" data-imhwpb-asset-id=\"695402\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\"><strong>Pump SUPPLY HOUSE of Naples</strong></p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Visit us today, highly recommend as one of our strongest customers in the industry today\"</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-156 \" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/282_127_486_486_20201221_153238-768x1024.jpg\" alt=\"\" width=\"179\" height=\"179\" data-imhwpb-asset-id=\"695403\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\">Engle Denistry</p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Brad Engle recommends Brad Hooper to his customers\" Best in Naples&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-125\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_4YX0oj7gf8o-imhwpb-ut5s3lmwf6dg2wc.jpg\" alt=\"\" width=\"150\" height=\"150\" data-imhwpb-asset-id=\"695404\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\"><strong>Direct Industrial Supply</strong></p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Brad Hooper of Naples Irrigation and Hooper Irrigation is one of our best maintenance Sprinkler Man. Highly recommend his services</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-126\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_8tN3flDTQBU-imhwpb-kxmpsoge3h4672l.jpg\" alt=\"\" width=\"169\" height=\"169\" data-imhwpb-asset-id=\"695405\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\">&nbsp;</p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Brad Hooper is one of the best-known sprinkler companies I know highly sought out.&nbsp; Our renovations have never looked better.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Home','','inherit','closed','closed','','103-revision-v1','','','2022-04-04 20:43:17','2022-04-04 20:43:17','',103,'https://naplesirrigation.com/?p=226',0,'revision','',0),(227,1,'2022-04-04 20:43:57','2022-04-04 20:43:57','<div class=\"boldgrid-section\" style=\"color: #000000; background-image: url(\'https://source.unsplash.com/MqJX_8EaStM/1920x1080\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"1175055\" data-image-url=\"https://source.unsplash.com/MqJX_8EaStM/1920x1080\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 120px; padding-bottom: 140px;\">\r\n<div class=\"col-md-7 col-sm-4 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\"><img class=\"wp-image-186 alignnone\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/cropped-20210313_120201-scaled-1-e1649096217790.jpg\" alt=\"Perfect Irrigation System\" width=\"463\" height=\"347\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-5 col-sm-8 col-xs-12 wedge-cta\" custom-classes=\"wedge-cta\">\r\n<h2 class=\"\">NAPLES IRRIGATION lET US BRING YOUR YARD BACK TO LIFE</h2>\r\n<p class=\"\">BEST LAWN&nbsp; SPRINKLER INSTALLER SYSTEM&nbsp;</p>\r\n\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-16\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\"><a class=\"button-secondary btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1\" href=\"https://naplesirrigation.com/\">CONTACT US TODAY</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color3-background-color color-3-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-12\">\r\n<h2 class=\"\" style=\"text-align: center;\">See What We Can Offer</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-2 color1-color\" style=\"width: 65%;\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 90px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-4\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-1 aligncenter wp-image-143 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/received_1072950093527088-222x300.jpeg\" alt=\"\" width=\"192\" height=\"259\" data-imhwpb-asset-id=\"695399\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Renovation</h3>\r\n<p class=\"\">If you want to experience the benefits of a customized Renovation our team is experienced 40 years in Naples&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-xs-12 col-sm-6 col-md-4\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-1 aligncenter wp-image-135 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/20201221_152806-300x225.jpg\" alt=\"\" width=\"338\" height=\"253\" data-imhwpb-asset-id=\"695400\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Design &amp; Monthly Maintenance&nbsp;</h3>\r\n<p class=\"\">Fully licensed and insured.&nbsp; We take pride in our work and are deemed the best in Naples.&nbsp;&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-xs-12 col-sm-6 col-md-4\">\r\n<p class=\"\"><img class=\"bg-img bg-img-1 wp-image-180 aligncenter\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/received_656891985552879-220x300.jpeg\" alt=\"Repair Sprinkler system irrigaiton\" width=\"207\" height=\"282\" data-imhwpb-asset-id=\"695401\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Sprinkler Repair</h3>\r\n<p class=\"\">New Pumps, Time Clocks, Sprinkler heads, adjustments, and testing we will make your yard beautiful.&nbsp;&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color2-background-color color-2-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-12\">\r\n<h2 class=\"\" style=\"text-align: center;\">Customer Testimonials</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-2 color1-color\" style=\"width: 65%;\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 40px;\">\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle alignnone wp-image-177 \" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/pumpirigationsupply-300x225.jpg\" alt=\"\" width=\"216\" height=\"162\" data-imhwpb-asset-id=\"695402\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\"><strong>Pump SUPPLY HOUSE of Naples</strong></p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Visit us today, highly recommend as one of our strongest customers in the industry today\"</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-156 \" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/282_127_486_486_20201221_153238-768x1024.jpg\" alt=\"\" width=\"179\" height=\"179\" data-imhwpb-asset-id=\"695403\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\">Engle Denistry</p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Brad Engle recommends Brad Hooper to his customers\" Best in Naples&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-125\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_4YX0oj7gf8o-imhwpb-ut5s3lmwf6dg2wc.jpg\" alt=\"\" width=\"150\" height=\"150\" data-imhwpb-asset-id=\"695404\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\"><strong>Direct Industrial Supply</strong></p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Brad Hooper of Naples Irrigation and Hooper Irrigation is one of our best maintenance Sprinkler designer and Installer. Highly recommend his services.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-126\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_8tN3flDTQBU-imhwpb-kxmpsoge3h4672l.jpg\" alt=\"\" width=\"169\" height=\"169\" data-imhwpb-asset-id=\"695405\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\">&nbsp;</p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Brad Hooper is one of the best-known sprinkler companies I know highly sought out.&nbsp; Our renovations have never looked better.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Home','','inherit','closed','closed','','103-revision-v1','','','2022-04-04 20:43:57','2022-04-04 20:43:57','',103,'https://naplesirrigation.com/?p=227',0,'revision','',0),(228,1,'2022-04-04 20:49:36','2022-04-04 20:49:36','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 42px;\">\r\n<div class=\"col-md-5 col-xs-12 col-sm-12\">\r\n<h4 class=\"\">About Naples Irrigation aka Hooper IRRIGATION BAGAN IN 1982.&nbsp; wE ARE licensed and insured.&nbsp;&nbsp;</h4>\r\n<p class=\"\">Graduating from the University of Evansville,&nbsp; Bradford Hooper the owner of Naples Irrigation and Hooper Irrigation began his career servicing all residential homes, multi-family, and small commercial businesses buildings, and the Hooperigation design touch which we are truly noted for.&nbsp;&nbsp;</p>\r\n<p class=\"\">Specializing in renovations,&nbsp; adjusting sprinkler systems, repairs to pipes, valve repair, new clocks, and pumps and maintenance.&nbsp;&nbsp;</p>\r\n<p class=\"\">We offer a personalized maintenance program to fit your needs:&nbsp; monthly, bi-monthly, or quarterly programs available to support your needs.&nbsp;</p>\r\n<p class=\"\">&nbsp;Maintenance programs are an important part of our business as it prevents high water bills, broken sprinkler heads, oversprays, pipes, pump, valve, or just resetting clocks due to the country\'s regulations on dry times and proper times to water.&nbsp; &nbsp;</p>\r\n<p class=\"\">If your sprinkler system is not getting enough pressure, you need a service call for an evaluation.&nbsp;&nbsp;</p>\r\n<p class=\"\">Over 4000 new systems installed, thousands of repairs as we celebrate 40 YEARS OF SERVICE.&nbsp; &nbsp; Hope you allow us the opportunity to help you with your sprinkler!</p>\r\n<p class=\"\">To learn more about how you can sign up today for your Maintenace Program.&nbsp; Please contact us today</p>\r\n<p class=\"\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"#239-793-7735\">Contact Us</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n\r\n[caption id=\"attachment_179\" align=\"alignnone\" width=\"560\"]<img class=\"wp-image-179 size-full\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/received_2444269415708471.jpeg\" alt=\"Renovation design sprinkler irrigation\" width=\"560\" height=\"765\" data-imhwpb-asset-id=\"789476\"> Renovations for a beautiful yard[/caption]\r\n\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\">\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-151 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/20201221_152447-225x300.jpg\" alt=\"\" width=\"433\" height=\"577\" data-imhwpb-built-photo-search=\"68|any\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-146 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/IMG_20211101_150730-225x300.jpg\" alt=\"\" width=\"432\" height=\"576\" data-imhwpb-built-photo-search=\"68|any\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-192 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/20200801_150124-225x300.jpg\" alt=\"\" width=\"432\" height=\"576\" data-imhwpb-built-photo-search=\"68|any\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\"></div>\r\n</div>','About Us','','inherit','closed','closed','','105-revision-v1','','','2022-04-04 20:49:36','2022-04-04 20:49:36','',105,'https://naplesirrigation.com/?p=228',0,'revision','',0),(229,1,'2022-04-04 20:53:09','2022-04-04 20:53:09','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 42px;\">\r\n<div class=\"col-md-5 col-xs-12 col-sm-12\">\r\n<h4 class=\"\">About Naples Irrigation aka Hooper IRRIGATION BAGAN IN 1982.&nbsp; wE ARE licensed and insured.&nbsp;&nbsp;</h4>\r\n<p class=\"\">Graduating from the University of Evansville,&nbsp; Bradford Hooper the owner of Naples Irrigation and Hooper Irrigation began his career servicing all residential homes, multi-family, and small commercial businesses buildings, and the Hooperigation design touch which we are truly noted for.&nbsp;&nbsp;</p>\r\n<p class=\"\">Specializing in renovations,&nbsp; adjusting sprinkler systems, repairs to pipes, valve repair, new clocks, and pumps and maintenance.&nbsp;&nbsp;</p>\r\n<p class=\"\">We offer a personalized maintenance program to fit your needs:&nbsp; monthly, bi-monthly, or quarterly programs available to support your needs.&nbsp;</p>\r\n<p class=\"\">&nbsp;Maintenance programs are an important part of our business as it prevents high water bills, broken sprinkler heads, oversprays, pipes, pump, valve, or just resetting clocks due to the country\'s regulations on dry times and proper times to water.&nbsp; &nbsp;</p>\r\n<p class=\"\">If your sprinkler system is not getting enough pressure, you need a service call for an evaluation.&nbsp;&nbsp;</p>\r\n<p class=\"\">Over 4000 new systems installed, thousands of repairs as we celebrate 40 YEARS OF SERVICE.&nbsp; &nbsp; Hope you allow us the opportunity to help you with your sprinkler!</p>\r\n<p class=\"\">To learn more about how you can sign up today for your Maintenace Program.&nbsp; Please contact us today</p>\r\n<p class=\"\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"#239-793-7735\">Contact Us</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n\r\n[caption id=\"attachment_179\" align=\"alignnone\" width=\"560\"]<img class=\"wp-image-179 size-full\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/received_2444269415708471.jpeg\" alt=\"Renovation design sprinkler irrigation\" width=\"560\" height=\"765\" data-imhwpb-asset-id=\"789476\"> Renovations for a beautiful yard[/caption]\r\n\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\">\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-151 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/20201221_152447-225x300.jpg\" alt=\"\" width=\"433\" height=\"577\" data-imhwpb-built-photo-search=\"68|any\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-146 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/IMG_20211101_150730-225x300.jpg\" alt=\"\" width=\"432\" height=\"576\" data-imhwpb-built-photo-search=\"68|any\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-192 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/20200801_150124-225x300.jpg\" alt=\"\" width=\"432\" height=\"576\" data-imhwpb-built-photo-search=\"68|any\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\"></div>\r\n</div>','About Us','','inherit','closed','closed','','105-revision-v1','','','2022-04-04 20:53:09','2022-04-04 20:53:09','',105,'https://naplesirrigation.com/?p=229',0,'revision','',0),(230,1,'2022-04-05 00:35:53','2022-04-05 00:35:53','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 42px;\">\r\n<div class=\"col-md-5 col-xs-12 col-sm-12\">\r\n<h4 class=\"\">About Naples Irrigation aka Hooper IRRIGATION BAGAN IN 1982.&nbsp; wE ARE licensed and insured.&nbsp;&nbsp;</h4>\r\n<p class=\"\">Graduating from the University of Evansville,&nbsp; Bradford Hooper the owner of Naples Irrigation and Hooper Irrigation began his career servicing all residential homes, multi-family, and small commercial businesses buildings, and the Hooperigation design touch which we are truly noted for.&nbsp;&nbsp;</p>\r\n<p class=\"\">Specializing in renovations,&nbsp; adjusting sprinkler systems, repairs to pipes, valve repair, new clocks, and pumps and maintenance.&nbsp;&nbsp;</p>\r\n<p class=\"\">We offer a personalized maintenance program to fit your needs:&nbsp; monthly, bi-monthly, or quarterly programs available to support your needs.&nbsp;</p>\r\n<p class=\"\">&nbsp;Maintenance programs are an important part of our business as it prevents high water bills, broken sprinkler heads, oversprays, pipes, pump, valve, or just resetting clocks due to the country\'s regulations on dry times and proper times to water.&nbsp; &nbsp;</p>\r\n<p class=\"\">If your sprinkler system is not getting enough pressure, you need a service call for an evaluation.&nbsp;&nbsp;</p>\r\n<p class=\"\">Over 4000 new systems installed, thousands of repairs as we celebrate 40 YEARS OF SERVICE.&nbsp; &nbsp; Hope you allow us the opportunity to help you with your sprinkler!</p>\r\n<p class=\"\">To learn more about how you can sign up today for your Maintenace Program.&nbsp; Please contact us today</p>\r\n<p class=\"\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"https://naplesirrigation.com/contact-us/\" target=\"_blank\" rel=\"noopener\">Contact Us</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n\r\n[caption id=\"attachment_179\" align=\"alignnone\" width=\"560\"]<img class=\"wp-image-179 size-full\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/received_2444269415708471.jpeg\" alt=\"Renovation design sprinkler irrigation\" width=\"560\" height=\"765\" data-imhwpb-asset-id=\"789476\"> Renovations for a beautiful yard[/caption]\r\n\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\">\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-151 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/20201221_152447-225x300.jpg\" alt=\"\" width=\"433\" height=\"577\" data-imhwpb-built-photo-search=\"68|any\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-146 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/IMG_20211101_150730-225x300.jpg\" alt=\"\" width=\"432\" height=\"576\" data-imhwpb-built-photo-search=\"68|any\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-192 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/20200801_150124-225x300.jpg\" alt=\"\" width=\"432\" height=\"576\" data-imhwpb-built-photo-search=\"68|any\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\"></div>\r\n</div>','About Us','','inherit','closed','closed','','105-revision-v1','','','2022-04-05 00:35:53','2022-04-05 00:35:53','',105,'https://naplesirrigation.com/?p=230',0,'revision','',0),(233,1,'2022-04-06 19:38:00','2022-04-06 19:38:00','<div class=\"boldgrid-section\" style=\"color: #000000; background-image: url(\'https://source.unsplash.com/MqJX_8EaStM/1920x1080\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"1175055\" data-image-url=\"https://source.unsplash.com/MqJX_8EaStM/1920x1080\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 120px; padding-bottom: 140px;\">\r\n<div class=\"col-md-7 col-sm-4 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\"><img class=\"wp-image-186 alignnone\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/cropped-20210313_120201-scaled-1-e1649096217790.jpg\" alt=\"Perfect Irrigation System\" width=\"463\" height=\"347\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-5 col-sm-8 col-xs-12 wedge-cta\" custom-classes=\"wedge-cta\">\r\n<h2 class=\"\">NAPLES IRRIGATION lET US BRING YOUR YARD BACK TO LIFE</h2>\r\n<p class=\"\">BEST LAWN&nbsp; SPRINKLER INSTALLER SYSTEM&nbsp;</p>\r\n\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-16\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\"><a class=\"button-secondary btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1\" href=\"https://naplesirrigation.com/\">CONTACT US TODAY</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color3-background-color color-3-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-12\">\r\n<h2 class=\"\" style=\"text-align: center;\">See What We Can Offer</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-2 color1-color\" style=\"width: 65%;\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 90px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-4\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-1 aligncenter wp-image-143 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/received_1072950093527088-222x300.jpeg\" alt=\"\" width=\"192\" height=\"259\" data-imhwpb-asset-id=\"695399\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Renovation</h3>\r\n<p class=\"\">If you want to experience the benefits of a customized Renovation our team is experienced 40 years in Naples&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-xs-12 col-sm-6 col-md-4\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-1 aligncenter wp-image-135 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/20201221_152806-300x225.jpg\" alt=\"\" width=\"338\" height=\"253\" data-imhwpb-asset-id=\"695400\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Design &amp; Monthly Maintenance&nbsp;</h3>\r\n<p class=\"\">Fully licensed and insured.&nbsp; We take pride in our work and are deemed the best in Naples.&nbsp;&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-xs-12 col-sm-6 col-md-4\">\r\n<p class=\"\"><img class=\"bg-img bg-img-1 wp-image-180 aligncenter\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/received_656891985552879-220x300.jpeg\" alt=\"Repair Sprinkler system irrigaiton\" width=\"207\" height=\"282\" data-imhwpb-asset-id=\"695401\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Sprinkler Repair</h3>\r\n<p class=\"\">New Pumps, Time Clocks, Sprinkler heads, adjustments, and testing we will make your yard beautiful.&nbsp;&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color2-background-color color-2-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-12\">\r\n<h2 class=\"\" style=\"text-align: center;\">Customer Testimonials</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-2 color1-color\" style=\"width: 65%;\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 40px;\">\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle alignnone wp-image-177 \" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/pumpirigationsupply-300x225.jpg\" alt=\"\" width=\"216\" height=\"162\" data-imhwpb-asset-id=\"695402\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\"><strong>Pump SUPPLY HOUSE of Naples</strong></p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Visit us today, highly recommend as one of our strongest customers in the industry today\"</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-156 \" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/282_127_486_486_20201221_153238-768x1024.jpg\" alt=\"\" width=\"179\" height=\"179\" data-imhwpb-asset-id=\"695403\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\">Engle Denistry</p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Brad Engle recommends Brad Hooper to his customers\" Best in Naples&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-125\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_4YX0oj7gf8o-imhwpb-ut5s3lmwf6dg2wc.jpg\" alt=\"\" width=\"150\" height=\"150\" data-imhwpb-asset-id=\"695404\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\"><strong>Direct Industrial Supply</strong></p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Brad Hooper of Naples Irrigation and Hooper Irrigation is one of our best maintenance Sprinkler designer and Installer. Highly recommend his services.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-126\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_8tN3flDTQBU-imhwpb-kxmpsoge3h4672l.jpg\" alt=\"\" width=\"169\" height=\"169\" data-imhwpb-asset-id=\"695405\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\">&nbsp;</p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Brad Hooper is one of the best-known sprinkler companies I know highly sought out.&nbsp; Our renovations have never looked better.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Welcome','','inherit','closed','closed','','103-revision-v1','','','2022-04-06 19:38:00','2022-04-06 19:38:00','',103,'https://naplesirrigation.com/?p=233',0,'revision','',0),(231,1,'2022-04-05 00:36:23','2022-04-05 00:36:23','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 42px;\">\r\n<div class=\"col-md-5 col-xs-12 col-sm-12\">\r\n<h4 class=\"\">About Naples Irrigation aka Hooper IRRIGATION BAGAN IN 1982.&nbsp; wE ARE licensed and insured.&nbsp;&nbsp;</h4>\r\n<p class=\"\">Graduating from the University of Evansville,&nbsp; Bradford Hooper the owner of Naples Irrigation and Hooper Irrigation began his career servicing all residential homes, multi-family, and small commercial businesses buildings, and the Hooperigation design touch which we are truly noted for.&nbsp;&nbsp;</p>\r\n<p class=\"\">Specializing in renovations,&nbsp; adjusting sprinkler systems, repairs to pipes, valve repair, new clocks, and pumps and maintenance.&nbsp;&nbsp;</p>\r\n<p class=\"\">We offer a personalized maintenance program to fit your needs:&nbsp; monthly, bi-monthly, or quarterly programs available to support your needs.&nbsp;</p>\r\n<p class=\"\">&nbsp;Maintenance programs are an important part of our business as it prevents high water bills, broken sprinkler heads, oversprays, pipes, pump, valve, or just resetting clocks due to the country\'s regulations on dry times and proper times to water.&nbsp; &nbsp;</p>\r\n<p class=\"\">If your sprinkler system is not getting enough pressure, you need a service call for an evaluation.&nbsp;&nbsp;</p>\r\n<p class=\"\">Over 4000 new systems installed, thousands of repairs as we celebrate 40 YEARS OF SERVICE.&nbsp; &nbsp; Hope you allow us the opportunity to help you with your sprinkler!</p>\r\n<p class=\"\">To learn more about how you can sign up today for your Maintenace Program.&nbsp; Please contact us today</p>\r\n<p class=\"\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"https://naplesirrigation.com/contact-us/\" target=\"_blank\" rel=\"noopener\">Contact Us</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n\r\n[caption id=\"attachment_179\" align=\"alignnone\" width=\"560\"]<img class=\"wp-image-179 size-full\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/received_2444269415708471.jpeg\" alt=\"Renovation design sprinkler irrigation\" width=\"560\" height=\"765\" data-imhwpb-asset-id=\"789476\"> Renovations for a beautiful yard[/caption]\r\n\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\">\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-151 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/20201221_152447-225x300.jpg\" alt=\"\" width=\"433\" height=\"577\" data-imhwpb-built-photo-search=\"68|any\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-146 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/IMG_20211101_150730-225x300.jpg\" alt=\"\" width=\"432\" height=\"576\" data-imhwpb-built-photo-search=\"68|any\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-192 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/20200801_150124-225x300.jpg\" alt=\"\" width=\"432\" height=\"576\" data-imhwpb-built-photo-search=\"68|any\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\"></div>\r\n</div>','About Us','','inherit','closed','closed','','105-revision-v1','','','2022-04-05 00:36:23','2022-04-05 00:36:23','',105,'https://naplesirrigation.com/?p=231',0,'revision','',0),(234,1,'2022-04-06 19:56:35','2022-04-06 19:56:35','<div class=\"boldgrid-section\" style=\"color: #000000; background-image: url(\'https://source.unsplash.com/MqJX_8EaStM/1920x1080\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"1175055\" data-image-url=\"https://source.unsplash.com/MqJX_8EaStM/1920x1080\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 120px; padding-bottom: 140px;\">\r\n<div class=\"col-md-7 col-sm-4 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\"><img class=\"wp-image-186 alignnone\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/cropped-20210313_120201-scaled-1-e1649096217790.jpg\" alt=\"Perfect Irrigation System\" width=\"667\" height=\"500\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-5 col-sm-8 col-xs-12 wedge-cta\" custom-classes=\"wedge-cta\">\r\n<h2 class=\"\">NAPLES IRRIGATION lET US BRING YOUR YARD BACK TO LIFE</h2>\r\n<p class=\"\">BEST LAWN&nbsp; SPRINKLER REPAIR, MAINTENCE , DESIGN&nbsp; SYSTEM&nbsp;</p>\r\n\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-16\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\"><a class=\"button-secondary btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1\" href=\"https://naplesirrigation.com/\">CONTACT US TODAY</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color3-background-color color-3-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-12\">\r\n<h2 class=\"\" style=\"text-align: center;\">See What We Can Offer</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-2 color1-color\" style=\"width: 65%;\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 90px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-4\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-1 aligncenter wp-image-143 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/received_1072950093527088-222x300.jpeg\" alt=\"\" width=\"192\" height=\"259\" data-imhwpb-asset-id=\"695399\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Renovation</h3>\r\n<p class=\"\">If you want to experience the benefits of a customized Renovation our team is experienced 40 years in Naples&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-xs-12 col-sm-6 col-md-4\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-1 aligncenter wp-image-135 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/20201221_152806-300x225.jpg\" alt=\"\" width=\"338\" height=\"253\" data-imhwpb-asset-id=\"695400\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Design &amp; Monthly Maintenance&nbsp;</h3>\r\n<p class=\"\">Fully licensed and insured.&nbsp; We take pride in our work and are deemed the best in Naples.&nbsp;&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-xs-12 col-sm-6 col-md-4\">\r\n<p class=\"\"><img class=\"bg-img bg-img-1 wp-image-180 aligncenter\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/received_656891985552879-220x300.jpeg\" alt=\"Repair Sprinkler system irrigaiton\" width=\"207\" height=\"282\" data-imhwpb-asset-id=\"695401\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Sprinkler Repair</h3>\r\n<p class=\"\">New Pumps, Time Clocks, Sprinkler heads, adjustments, and testing we will make your yard beautiful.&nbsp;&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color2-background-color color-2-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-12\">\r\n<h2 class=\"\" style=\"text-align: center;\">Customer Testimonials</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-2 color1-color\" style=\"width: 65%;\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 40px;\">\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle alignnone wp-image-177 \" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/pumpirigationsupply-300x225.jpg\" alt=\"\" width=\"216\" height=\"162\" data-imhwpb-asset-id=\"695402\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\"><strong>Pump SUPPLY HOUSE of Naples</strong></p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Visit us today, highly recommend as one of our strongest customers in the industry today\"</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-156 \" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/282_127_486_486_20201221_153238-768x1024.jpg\" alt=\"\" width=\"179\" height=\"179\" data-imhwpb-asset-id=\"695403\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\">Engle Denistry</p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Brad Engle recommends Brad Hooper to his customers\" Best in Naples&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-125\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_4YX0oj7gf8o-imhwpb-ut5s3lmwf6dg2wc.jpg\" alt=\"\" width=\"150\" height=\"150\" data-imhwpb-asset-id=\"695404\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\"><strong>Direct Industrial Supply</strong></p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Brad Hooper of Naples Irrigation and Hooper Irrigation is one of our best maintenance Sprinkler designers and Installer. Highly recommend his services.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-126\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_8tN3flDTQBU-imhwpb-kxmpsoge3h4672l.jpg\" alt=\"\" width=\"169\" height=\"169\" data-imhwpb-asset-id=\"695405\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\">&nbsp;</p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Brad Hooper is one of the best-known sprinkler companies I know highly sought out.&nbsp; Our renovations have never looked better.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Welcome','','inherit','closed','closed','','103-revision-v1','','','2022-04-06 19:56:35','2022-04-06 19:56:35','',103,'https://naplesirrigation.com/?p=234',0,'revision','',0),(235,1,'2022-04-06 21:09:52','2022-04-06 21:09:52','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 42px;\">\r\n<div class=\"col-md-5 col-xs-12 col-sm-12\">\r\n<h4 class=\"\">About Naples Irrigation aka Hooper IRRIGATION BeGAN IN 1982.&nbsp; wE ARE licensed and insured.&nbsp;</h4>\r\n<p class=\"\">Graduating from the University of Evansville,&nbsp; Bradford Hooper the owner of Naples Irrigation and Hooper Irrigation began his career servicing all residential homes, multi-family, and small commercial businesses buildings, and the Hooper Irrigation design touch which we are truly noted for.&nbsp; Poor design is a large problem in the Irrigation Industry.&nbsp;&nbsp;</p>\r\n<p class=\"\">Specializing in repairs to pipes, and sprinkler heads, replacing electrical valve rebuilds, clock and pump replacement sprinkler systems,&nbsp; adjusting sprinkler systems, and renovations.</p>\r\nNaples Irrigation can design your system for a beautiful yard.\r\n<p class=\"\">We offer a personalized maintenance program to fit your needs:&nbsp; monthly, bi-monthly, or quarterly programs available to support your needs.&nbsp;</p>\r\n<p class=\"\">&nbsp;Maintenance programs are an important part of our business as it prevents high water bills, broken sprinkler heads, oversprays, pipes, pump damage, valve, or just resetting clocks due to the country\'s regulations on dry times and proper times to water.&nbsp; &nbsp;</p>\r\n<p class=\"\">If your sprinkler system is not getting enough pressure, you need a service call for an evaluation.&nbsp;&nbsp;</p>\r\n<p class=\"\">Over 4000 new systems were installed, and tens of thousands of repairs.&nbsp; We celebrate 40 YEARS OF SERVICE.&nbsp; &nbsp; Hope you allow us the opportunity to help you with your sprinkler!&nbsp;&nbsp;</p>\r\n<p class=\"\">To learn more about how you can sign up today for your Maintenace Program.&nbsp; Please contact us today</p>\r\n<p class=\"\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"https://naplesirrigation.com/contact-us/\" target=\"_blank\" rel=\"noopener\">Contact Us</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n\r\n[caption id=\"attachment_179\" align=\"alignnone\" width=\"560\"]<img class=\"wp-image-179 size-full\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/received_2444269415708471.jpeg\" alt=\"Renovation design sprinkler irrigation\" width=\"560\" height=\"765\" data-imhwpb-asset-id=\"789476\"> Renovations for a beautiful yard[/caption]\r\n\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\">\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-151 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/20201221_152447-225x300.jpg\" alt=\"\" width=\"433\" height=\"577\" data-imhwpb-built-photo-search=\"68|any\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-146 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/IMG_20211101_150730-225x300.jpg\" alt=\"\" width=\"432\" height=\"576\" data-imhwpb-built-photo-search=\"68|any\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-192 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/20200801_150124-225x300.jpg\" alt=\"\" width=\"432\" height=\"576\" data-imhwpb-built-photo-search=\"68|any\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\"></div>\r\n</div>','About Us','','inherit','closed','closed','','105-revision-v1','','','2022-04-06 21:09:52','2022-04-06 21:09:52','',105,'https://naplesirrigation.com/?p=235',0,'revision','',0),(241,1,'2022-04-07 20:14:56','2022-04-07 20:14:56','','Contact Form','','publish','closed','closed','','contact-form-2','','','2022-04-07 21:06:30','2022-04-07 21:06:30','',0,'https://naplesirrigation.com/?p=241',0,'wpuf_contact_form','',0),(273,1,'2022-04-13 15:35:17','2022-04-13 15:35:17','Renovate your yard with Naples Irrigation','IMG_20220128_155353','','inherit','open','closed','','img_20220128_155353','','','2022-04-26 20:13:14','2022-04-26 20:13:14','',103,'https://naplesirrigation.com/wp-content/uploads/2022/04/IMG_20220128_155353.jpg',0,'attachment','image/jpeg',0),(236,1,'2022-04-07 18:00:12','2022-04-07 18:00:12','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-bottom: 0px;\">\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n<div class=\"image-gallery\">\r\n\r\n[caption id=\"attachment_136\" align=\"alignnone\" width=\"316\"]<img class=\"wp-image-136\" title=\"Owner, Brad Hooper \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/received_462634725313575-222x300.jpeg\" alt=\"Meet Naplesirrigation - Your Yard is only as good as your Sprinkler Guy\" width=\"316\" height=\"427\" data-imhwpb-asset-id=\"780395\"> Brad Hooper . Owner of Naples Irrigation &amp; Hooper Irrigation since 1982. - Your Yard is only as good as your Sprinkler Installer[/caption]\r\n\r\n</div>\r\n<p class=\"\" style=\"font-size: 15px;\">&nbsp; Licensed and Insured&nbsp;&nbsp;</p>\r\n\r\n<h3 class=\"\"><i class=\"fa fa-1x fa-envelope-o\"><!-- icon --></i> Email</h3>\r\n<p class=\"\"><a href=\"mailto:hooperirrigation@gmail.com\">hooperirrigation@gmail.com</a></p>\r\n\r\n<h3 class=\"\"><i class=\"fa fa-1x fa-phone\"><!-- icon --></i> Phone</h3>\r\n<p class=\"\">239-793-7755 or 239-250-5265 (text or call)&nbsp; we strive to call by 7 PM same day</p>\r\n\r\n<h3 class=\"\"><i class=\"fa fa-1x fa-map-marker\"><!-- icon --></i> Address</h3>\r\nPO Box 2857, Naples FL 34106\r\n<p class=\"boldgrid-google-maps\" style=\"width: 100%; height: 200px;\"><iframe style=\"width: 100%; height: 100%;\" src=\"https://maps.google.com/maps?q=PO+Box+2857%2C+Naples+FL+34106&amp;t=m&amp;z=16&amp;output=embed\" frameborder=\"0\"></iframe></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n<h3 class=\"\">Get in Touch</h3>\r\n<p class=\"\">We are here to answer any questions you may have. Reach out to us and we\'ll respond as soon as we can.&nbsp; &nbsp;Feel free to leave your phone number for a callback</p>\r\n<p class=\"\">&nbsp;No charge for system checks/evaluations.&nbsp; &nbsp;&nbsp;</p>\r\n<p class=\"\">Thank You Bradford Hooper&nbsp; Phone: 239-793-7755&nbsp;</p>\r\n<p class=\"\">[weforms id=\"63\"]</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Contact Us Naples Irrigation - Brad Hooper','','inherit','closed','closed','','107-revision-v1','','','2022-04-07 18:00:12','2022-04-07 18:00:12','',107,'https://naplesirrigation.com/?p=236',0,'revision','',0),(237,1,'2022-04-07 18:17:48','2022-04-07 18:17:48','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-bottom: 0px;\">\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n<div class=\"image-gallery\">\r\n\r\n[caption id=\"attachment_136\" align=\"alignnone\" width=\"316\"]<img class=\"wp-image-136\" title=\"Owner, Brad Hooper \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/received_462634725313575-222x300.jpeg\" alt=\"Meet Naplesirrigation - Your Yard is only as good as your Sprinkler Guy\" width=\"316\" height=\"427\" data-imhwpb-asset-id=\"780395\"> Brad Hooper. Owner of Naples Irrigation &amp; Hooper Irrigation since 1982. - Your Yard is only as good as your Sprinkler Installer[/caption]\r\n\r\n</div>\r\n<p class=\"\" style=\"font-size: 15px;\">&nbsp; Licensed and Insured&nbsp;&nbsp;</p>\r\n\r\n<h3 class=\"\"><i class=\"fa fa-1x fa-envelope-o\"><!-- icon --></i> Email</h3>\r\n<p class=\"\"><a href=\"mailto:hooperirrigation@gmail.com\">hooperirrigation@gmail.com</a></p>\r\n\r\n<h3 class=\"\"><i class=\"fa fa-1x fa-phone\"><!-- icon --></i> Phone</h3>\r\n<p class=\"\">239-793-7755 or 239-250-5265 (text or call)&nbsp; we strive to call by 7 PM same day</p>\r\n\r\n<h3 class=\"\"><i class=\"fa fa-1x fa-map-marker\"><!-- icon --></i> Address</h3>\r\nPO Box 2857, Naples FL 34106\r\n<p class=\"boldgrid-google-maps\" style=\"width: 100%; height: 200px;\"><iframe style=\"width: 100%; height: 100%;\" src=\"https://maps.google.com/maps?q=PO+Box+2857%2C+Naples+FL+34106&amp;t=m&amp;z=16&amp;output=embed\" frameborder=\"0\"></iframe></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n<h3 class=\"\">Get in Touch</h3>\r\n<p class=\"\">We are here to answer any questions you may have. Reach out to us and we\'ll respond as soon as we can.&nbsp; &nbsp;Feel free to leave your phone number for a callback</p>\r\n<p class=\"\">&nbsp;No charge for system checks/evaluations.&nbsp; &nbsp;&nbsp;</p>\r\n<p class=\"\">Thank You Bradford Hooper&nbsp; Phone: 239-793-7755&nbsp;</p>\r\n<p class=\"\">[weforms id=\"63\"]</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Contact Us Naples Irrigation - Brad Hooper','','inherit','closed','closed','','107-revision-v1','','','2022-04-07 18:17:48','2022-04-07 18:17:48','',107,'https://naplesirrigation.com/?p=237',0,'revision','',0),(279,1,'2022-04-25 19:00:19','2022-04-25 19:00:19','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-bottom: 0px; padding-top: 0px;\">\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n<div class=\"image-gallery\">\r\n\r\n[caption id=\"attachment_136\" align=\"alignnone\" width=\"316\"]<img class=\"wp-image-136\" title=\"Owner, Brad Hooper \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/received_462634725313575-222x300.jpeg\" alt=\"Meet Naplesirrigation - Your Yard is only as good as your Sprinkler Guy\" width=\"316\" height=\"427\" data-imhwpb-asset-id=\"780395\"> Brad Hooper. Owner of Naples Irrigation &amp; Hooper Irrigation since 1982. - Your Yard is only as good as your Sprinkler Installer[/caption]\r\n\r\n</div>\r\n<p class=\"\" style=\"font-size: 15px;\">&nbsp; Licensed and Insured&nbsp;&nbsp;</p>\r\n\r\n<h3 class=\"\"><i class=\"fa fa-1x fa-envelope-o\"><!-- icon --></i> Email</h3>\r\n<p class=\"\"><a href=\"mailto:hooperirrigation@gmail.com\">hooperirrigation@gmail.com</a></p>\r\n\r\n<h3 class=\"\"><i class=\"fa fa-1x fa-phone\"><!-- icon --></i> Phone</h3>\r\n<p class=\"\">239-793-7755 or 239-250-5265 (text or call)&nbsp; we strive to call by 7 PM same day</p>\r\n\r\n<h3 class=\"\"><i class=\"fa fa-1x fa-map-marker\"><!-- icon --></i> Address</h3>\r\nPO Box 2857, Naples FL 34106\r\n<p class=\"boldgrid-google-maps\" style=\"width: 100%; height: 200px;\"><iframe style=\"width: 100%; height: 100%;\" src=\"https://maps.google.com/maps?q=PO+Box+2857%2C+Naples+FL+34106&amp;t=m&amp;z=16&amp;output=embed\" frameborder=\"0\"></iframe></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n<div class=\"\">\r\n<p class=\"\">We are here to answer any questions you may have. Reach out to us and we\'ll respond as soon as we can.&nbsp; &nbsp;Feel free to leave your phone number for a callback</p>\r\n<p class=\"\">&nbsp;No charge for system checks/evaluations.&nbsp; &nbsp;&nbsp;</p>\r\n<p class=\"\">Thank You Bradford Hooper&nbsp; Phone: 239-793-7755&nbsp;</p>\r\n<p class=\"\">[weforms id=\"63\"]</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Contact Us  - Brad Hooper','','inherit','closed','closed','','107-revision-v1','','','2022-04-25 19:00:19','2022-04-25 19:00:19','',107,'https://naplesirrigation.com/?p=279',0,'revision','',0),(245,1,'2022-04-07 20:26:17','2022-04-07 20:26:17','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-bottom: 0px;\">\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n<div class=\"image-gallery\">\r\n\r\n[caption id=\"attachment_136\" align=\"alignnone\" width=\"316\"]<img class=\"wp-image-136\" title=\"Owner, Brad Hooper \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/received_462634725313575-222x300.jpeg\" alt=\"Meet Naplesirrigation - Your Yard is only as good as your Sprinkler Guy\" width=\"316\" height=\"427\" data-imhwpb-asset-id=\"780395\"> Brad Hooper. Owner of Naples Irrigation &amp; Hooper Irrigation since 1982. - Your Yard is only as good as your Sprinkler Installer[/caption]\r\n\r\n</div>\r\n<p class=\"\" style=\"font-size: 15px;\">&nbsp; Licensed and Insured&nbsp;&nbsp;</p>\r\n\r\n<h3 class=\"\"><i class=\"fa fa-1x fa-envelope-o\"><!-- icon --></i> Email</h3>\r\n<p class=\"\"><a href=\"mailto:hooperirrigation@gmail.com\">hooperirrigation@gmail.com</a></p>\r\n\r\n<h3 class=\"\"><i class=\"fa fa-1x fa-phone\"><!-- icon --></i> Phone</h3>\r\n<p class=\"\">239-793-7755 or 239-250-5265 (text or call)&nbsp; we strive to call by 7 PM same day</p>\r\n\r\n<h3 class=\"\"><i class=\"fa fa-1x fa-map-marker\"><!-- icon --></i> Address</h3>\r\nPO Box 2857, Naples FL 34106\r\n<p class=\"boldgrid-google-maps\" style=\"width: 100%; height: 200px;\"><iframe style=\"width: 100%; height: 100%;\" src=\"https://maps.google.com/maps?q=PO+Box+2857%2C+Naples+FL+34106&amp;t=m&amp;z=16&amp;output=embed\" frameborder=\"0\"></iframe></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n<h3 class=\"\">Get in Touch[weforms id=\"241\"]</h3>\r\n<p class=\"\">We are here to answer any questions you may have. Reach out to us and we\'ll respond as soon as we can.&nbsp; &nbsp;Feel free to leave your phone number for a callback</p>\r\n<p class=\"\">&nbsp;No charge for system checks/evaluations.&nbsp; &nbsp;&nbsp;</p>\r\n<p class=\"\">Thank You Bradford Hooper&nbsp; Phone: 239-793-7755&nbsp;</p>\r\n<p class=\"\">[weforms id=\"63\"]</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Contact Us Naples Irrigation - Brad Hooper','','inherit','closed','closed','','107-revision-v1','','','2022-04-07 20:26:17','2022-04-07 20:26:17','',107,'https://naplesirrigation.com/?p=245',0,'revision','',0),(255,1,'2022-04-07 21:12:09','2022-04-07 21:12:09','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-bottom: 0px; padding-top: 0px;\">\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n<div class=\"image-gallery\">\r\n\r\n[caption id=\"attachment_136\" align=\"alignnone\" width=\"316\"]<img class=\"wp-image-136\" title=\"Owner, Brad Hooper \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/received_462634725313575-222x300.jpeg\" alt=\"Meet Naplesirrigation - Your Yard is only as good as your Sprinkler Guy\" width=\"316\" height=\"427\" data-imhwpb-asset-id=\"780395\"> Brad Hooper. Owner of Naples Irrigation &amp; Hooper Irrigation since 1982. - Your Yard is only as good as your Sprinkler Installer[/caption]\r\n\r\n</div>\r\n<p class=\"\" style=\"font-size: 15px;\">&nbsp; Licensed and Insured&nbsp;&nbsp;</p>\r\n\r\n<h3 class=\"\"><i class=\"fa fa-1x fa-envelope-o\"><!-- icon --></i> Email</h3>\r\n<p class=\"\"><a href=\"mailto:hooperirrigation@gmail.com\">hooperirrigation@gmail.com</a></p>\r\n\r\n<h3 class=\"\"><i class=\"fa fa-1x fa-phone\"><!-- icon --></i> Phone</h3>\r\n<p class=\"\">239-793-7755 or 239-250-5265 (text or call)&nbsp; we strive to call by 7 PM same day</p>\r\n\r\n<h3 class=\"\"><i class=\"fa fa-1x fa-map-marker\"><!-- icon --></i> Address</h3>\r\nPO Box 2857, Naples FL 34106\r\n<p class=\"boldgrid-google-maps\" style=\"width: 100%; height: 200px;\"><iframe style=\"width: 100%; height: 100%;\" src=\"https://maps.google.com/maps?q=PO+Box+2857%2C+Naples+FL+34106&amp;t=m&amp;z=16&amp;output=embed\" frameborder=\"0\"></iframe></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n<div class=\"\">\r\n<p class=\"\">We are here to answer any questions you may have. Reach out to us and we\'ll respond as soon as we can.&nbsp; &nbsp;Feel free to leave your phone number for a callback</p>\r\n<p class=\"\">&nbsp;No charge for system checks/evaluations.&nbsp; &nbsp;&nbsp;</p>\r\n<p class=\"\">Thank You Bradford Hooper&nbsp; Phone: 239-793-7755&nbsp;</p>\r\n<p class=\"\">[weforms id=\"63\"]</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Contact Us Naples Irrigation - Brad Hooper','','inherit','closed','closed','','107-revision-v1','','','2022-04-07 21:12:09','2022-04-07 21:12:09','',107,'https://naplesirrigation.com/?p=255',0,'revision','',0),(246,1,'2022-04-07 20:41:46','2022-04-07 20:41:46','<div class=\"boldgrid-section\" style=\"color: #000000; background-image: url(\'https://source.unsplash.com/MqJX_8EaStM/1920x1080\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"1175055\" data-image-url=\"https://source.unsplash.com/MqJX_8EaStM/1920x1080\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 120px; padding-bottom: 140px;\">\r\n<div class=\"col-md-7 col-sm-4 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\"><img class=\"wp-image-186 alignnone\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/cropped-20210313_120201-scaled-1-e1649096217790.jpg\" alt=\"Perfect Irrigation System\" width=\"667\" height=\"500\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-5 col-sm-8 col-xs-12 wedge-cta\" custom-classes=\"wedge-cta\">\r\n<h2 class=\"\">NAPLES IRRIGATION lET US BRING YOUR YARD BACK TO LIFE</h2>\r\n<p class=\"\">BEST LAWN&nbsp; SPRINKLER REPAIR, MAINTENCE , DESIGN&nbsp; SYSTEM&nbsp;</p>\r\n\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-16\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\"><a class=\"button-secondary btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1\" href=\"https://naplesirrigation.com/\">CONTACT US TODAY</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color3-background-color color-3-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-12\">\r\n<h2 class=\"\" style=\"text-align: center;\">See What We Can Offer</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-2 color1-color\" style=\"width: 65%;\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 90px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-4\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-1 aligncenter wp-image-143 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/received_1072950093527088-222x300.jpeg\" alt=\"\" width=\"192\" height=\"259\" data-imhwpb-asset-id=\"695399\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Renovation</h3>\r\n<p class=\"\">If you want to experience the benefits of a customized Renovation our team is experienced 40 years in Naples&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-xs-12 col-sm-6 col-md-4\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-1 aligncenter wp-image-135 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/20201221_152806-300x225.jpg\" alt=\"\" width=\"338\" height=\"253\" data-imhwpb-asset-id=\"695400\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Design &amp; Monthly Maintenance&nbsp;</h3>\r\n<p class=\"\">Fully licensed and insured.&nbsp; We take pride in our work and are deemed the best in Naples.&nbsp;&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-xs-12 col-sm-6 col-md-4\">\r\n<p class=\"\"><img class=\"bg-img bg-img-1 wp-image-180 aligncenter\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/received_656891985552879-220x300.jpeg\" alt=\"Repair Sprinkler system irrigaiton\" width=\"207\" height=\"282\" data-imhwpb-asset-id=\"695401\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Sprinkler Repair</h3>\r\n<p class=\"\">New Pumps, Time Clocks, Sprinkler heads, adjustments, and testing we will make your yard beautiful.&nbsp;&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color2-background-color color-2-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-12\">\r\n<h2 class=\"\" style=\"text-align: center;\">Customer Testimonials</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-2 color1-color\" style=\"width: 65%;\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 40px;\">\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle alignnone wp-image-177 \" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/pumpirigationsupply-300x225.jpg\" alt=\"\" width=\"216\" height=\"162\" data-imhwpb-asset-id=\"695402\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\"><strong>Pump SUPPLY HOUSE of Naples</strong></p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Visit us today, highly recommend as one of our strongest customers in the industry today\"</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-156 \" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/282_127_486_486_20201221_153238-768x1024.jpg\" alt=\"\" width=\"179\" height=\"179\" data-imhwpb-asset-id=\"695403\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\">Engle Denistry</p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Brad Engle recommends Brad Hooper to his customers\" Best in Naples&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-125\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_4YX0oj7gf8o-imhwpb-ut5s3lmwf6dg2wc.jpg\" alt=\"\" width=\"150\" height=\"150\" data-imhwpb-asset-id=\"695404\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\"><strong>Direct Industrial Supply</strong></p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Brad Hooper of Naples Irrigation and Hooper Irrigation is one of our best maintenance Sprinkler designers and Installer. Highly recommend his services.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-126\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_8tN3flDTQBU-imhwpb-kxmpsoge3h4672l.jpg\" alt=\"\" width=\"169\" height=\"169\" data-imhwpb-asset-id=\"695405\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\">&nbsp;</p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Brad Hooper is one of the best-known sprinkler companies I know highly sought out.&nbsp; Our renovations have never looked better.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Welcome','','inherit','closed','closed','','103-revision-v1','','','2022-04-07 20:41:46','2022-04-07 20:41:46','',103,'https://naplesirrigation.com/?p=246',0,'revision','',0),(247,1,'2022-04-07 20:42:48','2022-04-07 20:42:48','<div class=\"boldgrid-section\" style=\"color: #000000; background-image: url(\'https://source.unsplash.com/MqJX_8EaStM/1920x1080\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"1175055\" data-image-url=\"https://source.unsplash.com/MqJX_8EaStM/1920x1080\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 120px; padding-bottom: 140px;\">\r\n<div class=\"col-md-7 col-sm-4 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\"><img class=\"wp-image-186 alignnone\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/cropped-20210313_120201-scaled-1-e1649096217790.jpg\" alt=\"Perfect Irrigation System\" width=\"667\" height=\"500\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-5 col-sm-8 col-xs-12 wedge-cta\" custom-classes=\"wedge-cta\">\r\n<h2 class=\"\">NAPLES IRRIGATION lET US BRING YOUR YARD BACK TO LIFE</h2>\r\n<p class=\"\">BEST LAWN&nbsp; SPRINKLER REPAIR, MAINTENCE , DESIGN&nbsp; SYSTEM&nbsp;</p>\r\n\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-16\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\"><a class=\"button-secondary btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1\" href=\"https://naplesirrigation.com/contact-us/\">CONTACT US TODAY</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color3-background-color color-3-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-12\">\r\n<h2 class=\"\" style=\"text-align: center;\">See What We Can Offer</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-2 color1-color\" style=\"width: 65%;\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 90px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-4\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-1 aligncenter wp-image-143 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/received_1072950093527088-222x300.jpeg\" alt=\"\" width=\"192\" height=\"259\" data-imhwpb-asset-id=\"695399\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Renovation</h3>\r\n<p class=\"\">If you want to experience the benefits of a customized Renovation our team is experienced 40 years in Naples&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-xs-12 col-sm-6 col-md-4\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-1 aligncenter wp-image-135 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/20201221_152806-300x225.jpg\" alt=\"\" width=\"338\" height=\"253\" data-imhwpb-asset-id=\"695400\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Design &amp; Monthly Maintenance&nbsp;</h3>\r\n<p class=\"\">Fully licensed and insured.&nbsp; We take pride in our work and are deemed the best in Naples.&nbsp;&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-xs-12 col-sm-6 col-md-4\">\r\n<p class=\"\"><img class=\"bg-img bg-img-1 wp-image-180 aligncenter\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/received_656891985552879-220x300.jpeg\" alt=\"Repair Sprinkler system irrigaiton\" width=\"207\" height=\"282\" data-imhwpb-asset-id=\"695401\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Sprinkler Repair</h3>\r\n<p class=\"\">New Pumps, Time Clocks, Sprinkler heads, adjustments, and testing we will make your yard beautiful.&nbsp;&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color2-background-color color-2-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-12\">\r\n<h2 class=\"\" style=\"text-align: center;\">Customer Testimonials</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-2 color1-color\" style=\"width: 65%;\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 40px;\">\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle alignnone wp-image-177 \" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/pumpirigationsupply-300x225.jpg\" alt=\"\" width=\"216\" height=\"162\" data-imhwpb-asset-id=\"695402\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\"><strong>Pump SUPPLY HOUSE of Naples</strong></p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Visit us today, highly recommend as one of our strongest customers in the industry today\"</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-156 \" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/282_127_486_486_20201221_153238-768x1024.jpg\" alt=\"\" width=\"179\" height=\"179\" data-imhwpb-asset-id=\"695403\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\">Engle Denistry</p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Brad Engle recommends Brad Hooper to his customers\" Best in Naples&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-125\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_4YX0oj7gf8o-imhwpb-ut5s3lmwf6dg2wc.jpg\" alt=\"\" width=\"150\" height=\"150\" data-imhwpb-asset-id=\"695404\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\"><strong>Direct Industrial Supply</strong></p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Brad Hooper of Naples Irrigation and Hooper Irrigation is one of our best maintenance Sprinkler designers and Installer. Highly recommend his services.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-126\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_8tN3flDTQBU-imhwpb-kxmpsoge3h4672l.jpg\" alt=\"\" width=\"169\" height=\"169\" data-imhwpb-asset-id=\"695405\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\">&nbsp;</p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Brad Hooper is one of the best-known sprinkler companies I know highly sought out.&nbsp; Our renovations have never looked better.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Welcome','','inherit','closed','closed','','103-revision-v1','','','2022-04-07 20:42:48','2022-04-07 20:42:48','',103,'https://naplesirrigation.com/?p=247',0,'revision','',0),(248,1,'2022-04-07 20:43:24','2022-04-07 20:43:24','<div class=\"boldgrid-section\" style=\"color: #000000; background-image: url(\'https://source.unsplash.com/MqJX_8EaStM/1920x1080\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"1175055\" data-image-url=\"https://source.unsplash.com/MqJX_8EaStM/1920x1080\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 120px; padding-bottom: 140px;\">\r\n<div class=\"col-md-7 col-sm-4 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\"><img class=\"wp-image-186 alignnone\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/cropped-20210313_120201-scaled-1-e1649096217790.jpg\" alt=\"Perfect Irrigation System\" width=\"667\" height=\"500\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-5 col-sm-8 col-xs-12 wedge-cta\" custom-classes=\"wedge-cta\">\r\n<h2 class=\"\">NAPLES IRRIGATION lET US BRING YOUR YARD BACK TO LIFE</h2>\r\n<p class=\"\">BEST LAWN&nbsp; SPRINKLER REPAIR, MAINTENANCE , DESIGN&nbsp; SYSTEM&nbsp;</p>\r\n\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-16\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\"><a class=\"button-secondary btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1\" href=\"https://naplesirrigation.com/contact-us/\">CONTACT US TODAY</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color3-background-color color-3-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-12\">\r\n<h2 class=\"\" style=\"text-align: center;\">See What We Can Offer</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-2 color1-color\" style=\"width: 65%;\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 90px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-4\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-1 aligncenter wp-image-143 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/received_1072950093527088-222x300.jpeg\" alt=\"\" width=\"192\" height=\"259\" data-imhwpb-asset-id=\"695399\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Renovation</h3>\r\n<p class=\"\">If you want to experience the benefits of a customized Renovation our team is experienced 40 years in Naples&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-xs-12 col-sm-6 col-md-4\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-1 aligncenter wp-image-135 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/20201221_152806-300x225.jpg\" alt=\"\" width=\"338\" height=\"253\" data-imhwpb-asset-id=\"695400\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Design &amp; Monthly Maintenance&nbsp;</h3>\r\n<p class=\"\">Fully licensed and insured.&nbsp; We take pride in our work and are deemed the best in Naples.&nbsp;&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-xs-12 col-sm-6 col-md-4\">\r\n<p class=\"\"><img class=\"bg-img bg-img-1 wp-image-180 aligncenter\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/received_656891985552879-220x300.jpeg\" alt=\"Repair Sprinkler system irrigaiton\" width=\"207\" height=\"282\" data-imhwpb-asset-id=\"695401\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Sprinkler Repair</h3>\r\n<p class=\"\">New Pumps, Time Clocks, Sprinkler heads, adjustments, and testing we will make your yard beautiful.&nbsp;&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color2-background-color color-2-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-12\">\r\n<h2 class=\"\" style=\"text-align: center;\">Customer Testimonials</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-2 color1-color\" style=\"width: 65%;\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 40px;\">\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle alignnone wp-image-177 \" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/pumpirigationsupply-300x225.jpg\" alt=\"\" width=\"216\" height=\"162\" data-imhwpb-asset-id=\"695402\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\"><strong>Pump SUPPLY HOUSE of Naples</strong></p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Visit us today, highly recommend as one of our strongest customers in the industry today\"</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-156 \" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/282_127_486_486_20201221_153238-768x1024.jpg\" alt=\"\" width=\"179\" height=\"179\" data-imhwpb-asset-id=\"695403\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\">Engle Denistry</p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Brad Engle recommends Brad Hooper to his customers\" Best in Naples&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-125\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_4YX0oj7gf8o-imhwpb-ut5s3lmwf6dg2wc.jpg\" alt=\"\" width=\"150\" height=\"150\" data-imhwpb-asset-id=\"695404\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\"><strong>Direct Industrial Supply</strong></p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Brad Hooper of Naples Irrigation and Hooper Irrigation is one of our best maintenance Sprinkler designers and Installer. Highly recommend his services.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-126\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_8tN3flDTQBU-imhwpb-kxmpsoge3h4672l.jpg\" alt=\"\" width=\"169\" height=\"169\" data-imhwpb-asset-id=\"695405\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\">&nbsp;</p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Brad Hooper is one of the best-known sprinkler companies I know highly sought out.&nbsp; Our renovations have never looked better.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Welcome','','inherit','closed','closed','','103-revision-v1','','','2022-04-07 20:43:24','2022-04-07 20:43:24','',103,'https://naplesirrigation.com/?p=248',0,'revision','',0),(249,1,'2022-04-07 21:06:30','2022-04-07 21:06:30','a:19:{s:8:\"template\";s:10:\"name_field\";s:4:\"name\";s:4:\"name\";s:5:\"label\";s:4:\"Name\";s:8:\"required\";s:3:\"yes\";s:5:\"width\";s:5:\"large\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";i:40;s:4:\"help\";s:0:\"\";s:7:\"is_meta\";s:3:\"yes\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:6:\"format\";s:10:\"first-last\";s:10:\"first_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:5:\"First\";}s:11:\"middle_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:6:\"Middle\";}s:9:\"last_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:4:\"Last\";}s:6:\"inline\";s:3:\"yes\";s:9:\"hide_subs\";b:0;s:13:\"original_name\";s:4:\"name\";}','','','publish','closed','closed','','249','','','2022-04-07 21:06:30','2022-04-07 21:06:30','',241,'https://naplesirrigation.com/?p=249',0,'wpuf_input','',0),(250,1,'2022-04-07 21:06:30','2022-04-07 21:06:30','a:14:{s:8:\"template\";s:13:\"email_address\";s:4:\"name\";s:5:\"email\";s:5:\"label\";s:13:\"Email Address\";s:8:\"required\";s:3:\"yes\";s:5:\"width\";s:5:\"large\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";i:40;s:4:\"help\";s:0:\"\";s:7:\"is_meta\";s:3:\"yes\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";s:0:\"\";s:13:\"original_name\";s:5:\"email\";}','','','publish','closed','closed','','250','','','2022-04-07 21:06:30','2022-04-07 21:06:30','',241,'https://naplesirrigation.com/?p=250',1,'wpuf_input','',0),(251,1,'2022-04-07 21:06:30','2022-04-07 21:06:30','a:17:{s:8:\"template\";s:14:\"textarea_field\";s:4:\"name\";s:7:\"message\";s:5:\"label\";s:7:\"Message\";s:8:\"required\";s:3:\"yes\";s:5:\"width\";s:5:\"large\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";i:40;s:4:\"help\";s:0:\"\";s:7:\"is_meta\";s:3:\"yes\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:16:\"word_restriction\";s:0:\"\";s:4:\"rows\";i:5;s:4:\"cols\";i:25;s:4:\"rich\";s:2:\"no\";s:13:\"original_name\";s:7:\"message\";}','','','publish','closed','closed','','251','','','2022-04-07 21:06:30','2022-04-07 21:06:30','',241,'https://naplesirrigation.com/?p=251',2,'wpuf_input','',0),(252,1,'2022-04-07 21:06:31','2022-04-07 21:06:31','a:16:{s:8:\"template\";s:10:\"date_field\";s:4:\"name\";s:11:\"date___time\";s:5:\"label\";s:11:\"Date / Time\";s:8:\"required\";s:2:\"no\";s:5:\"width\";s:5:\"large\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";i:40;s:4:\"help\";s:0:\"\";s:7:\"is_meta\";s:3:\"yes\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:6:\"format\";s:8:\"dd/mm/yy\";s:4:\"time\";s:0:\"\";s:15:\"is_publish_time\";s:0:\"\";s:14:\"enforce_format\";s:0:\"\";}','','','publish','closed','closed','','252','','','2022-04-07 21:06:31','2022-04-07 21:06:31','',241,'https://naplesirrigation.com/?p=252',3,'wpuf_input','',0),(253,1,'2022-04-07 21:06:31','2022-04-07 21:06:31','a:14:{s:8:\"template\";s:13:\"email_address\";s:4:\"name\";s:27:\"hooperirriagation_gmail_com\";s:5:\"label\";s:27:\"hooperirriagation@gmail.com\";s:8:\"required\";s:2:\"no\";s:5:\"width\";s:5:\"large\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";i:40;s:4:\"help\";s:0:\"\";s:7:\"is_meta\";s:3:\"yes\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";s:0:\"\";s:7:\"dynamic\";a:2:{s:6:\"status\";b:0;s:10:\"param_name\";s:0:\"\";}}','','','publish','closed','closed','','253','','','2022-04-07 21:06:31','2022-04-07 21:06:31','',241,'https://naplesirrigation.com/?p=253',4,'wpuf_input','',0),(254,1,'2022-04-07 21:06:31','2022-04-07 21:06:31','a:13:{s:8:\"template\";s:13:\"email_address\";s:4:\"name\";s:15:\"email_address_2\";s:5:\"label\";s:13:\"Email Address\";s:8:\"required\";s:2:\"no\";s:5:\"width\";s:5:\"large\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";i:40;s:4:\"help\";s:0:\"\";s:7:\"is_meta\";s:3:\"yes\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";s:0:\"\";}','','','publish','closed','closed','','254','','','2022-04-07 21:06:31','2022-04-07 21:06:31','',241,'https://naplesirrigation.com/?p=254',5,'wpuf_input','',0),(257,1,'2022-04-08 18:16:40','2022-04-08 18:16:40','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 42px;\">\r\n<div class=\"col-md-5 col-xs-12 col-sm-12\">\r\n<h4 class=\"\">About Naples Irrigation aka Hooper IRRIGATION BeGAN IN 1982.&nbsp; wE ARE licensed and insured.&nbsp;</h4>\r\n<p class=\"\">Graduating from the University of Evansville,&nbsp; Bradford Hooper the owner of Naples Irrigation and Hooper Irrigation began his career servicing all residential homes, multi-family, and small commercial businesses buildings, and the Hooper Irrigation design touch which we are truly noted for.&nbsp; Poor design is a large problem in the Irrigation Industry.&nbsp;&nbsp;</p>\r\n<p class=\"\">Specializing in renovations of an existing system, repair, and replacement of electrical valves, sprinkler heads, clocks, and pumps.&nbsp; Complete adjustment of systems of all types.&nbsp;&nbsp;</p>\r\n<p class=\"\">Naples Irrigation can design your system for a beautiful yard.</p>\r\n<p class=\"\">We offer a personalized maintenance program to fit your needs:&nbsp; monthly, bi-monthly, or quarterly programs available to support your needs.&nbsp;</p>\r\n<p class=\"\">&nbsp;Maintenance programs are an important part of our business as it prevents high water bills, broken sprinkler heads, oversprays, pipes, pump damage, valve, or just resetting clocks due to the country\'s regulations on dry times and proper times to water.&nbsp; &nbsp;</p>\r\n<p class=\"\">If your sprinkler system is not getting enough pressure, you need a service call for an evaluation.&nbsp;&nbsp;</p>\r\n<p class=\"\">Over 4000 new systems were installed, and tens of thousands of repairs.&nbsp; We celebrate 40 YEARS OF SERVICE.&nbsp; &nbsp; Hope you allow us the opportunity to help you with your sprinkler!&nbsp;&nbsp;</p>\r\n<p class=\"\">To learn more about how you can sign up today for your Maintenace Program.&nbsp; Please contact us today</p>\r\n<p class=\"\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"https://naplesirrigation.com/contact-us/\" target=\"_blank\" rel=\"noopener\">Contact Us</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n\r\n[caption id=\"attachment_179\" align=\"alignnone\" width=\"560\"]<img class=\"wp-image-179 size-full\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/received_2444269415708471.jpeg\" alt=\"Renovation design sprinkler irrigation\" width=\"560\" height=\"765\" data-imhwpb-asset-id=\"789476\"> Renovations for a beautiful yard[/caption]\r\n\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\">\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-151 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/20201221_152447-225x300.jpg\" alt=\"\" width=\"433\" height=\"577\" data-imhwpb-built-photo-search=\"68|any\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-146 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/IMG_20211101_150730-225x300.jpg\" alt=\"\" width=\"432\" height=\"576\" data-imhwpb-built-photo-search=\"68|any\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-192 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/20200801_150124-225x300.jpg\" alt=\"\" width=\"432\" height=\"576\" data-imhwpb-built-photo-search=\"68|any\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\"></div>\r\n</div>','About Us','','inherit','closed','closed','','105-revision-v1','','','2022-04-08 18:16:40','2022-04-08 18:16:40','',105,'https://naplesirrigation.com/?p=257',0,'revision','',0),(258,1,'2022-04-08 18:20:01','2022-04-08 18:20:01','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 42px;\">\r\n<div class=\"col-md-5 col-xs-12 col-sm-12\">\r\n<h4 class=\"\">About Naples Irrigation aka Hooper IRRIGATION BeGAN IN 1982.&nbsp; wE ARE licensed and insured.&nbsp;</h4>\r\n<p class=\"\">Graduating from the University of Evansville,&nbsp; Bradford Hooper the owner of Naples Irrigation and Hooper Irrigation began his career servicing all residential homes, multi-family, and small commercial businesses buildings, and the Hooper Irrigation design touch which we are truly noted for.&nbsp; Poor design is a large problem in the Irrigation Industry.&nbsp;&nbsp;</p>\r\n<p class=\"\">Specializing in renovations of an existing system, repair, and replacement of electrical valves, sprinkler heads, clocks, and pumps.&nbsp; Complete adjustment of systems of all types.&nbsp;&nbsp;</p>\r\n<p class=\"\">Naples Irrigation can design your system for a beautiful yard.</p>\r\n<p class=\"\">We offer a personalized maintenance program to fit your needs:&nbsp; monthly, bi-monthly, or quarterly programs available to support your needs.&nbsp;</p>\r\n<p class=\"\">&nbsp;Maintenance programs are an important part of our business as it prevents high water bills, broken sprinkler heads, oversprays, pipes, pump damage, valve, or just resetting clocks due to the country\'s regulations on dry times and proper times to water.&nbsp; &nbsp;</p>\r\n<p class=\"\">If your sprinkler system is not getting enough pressure, you need a service call for an evaluation.&nbsp;&nbsp;</p>\r\n<p class=\"\">Over 4000 new systems were installed, and tens of thousands of repairs.&nbsp; We celebrate 40 YEARS OF SERVICE.&nbsp; &nbsp; Hope you allow us the opportunity to help you with your sprinkler!&nbsp;&nbsp;</p>\r\n<p class=\"\">To learn more about how you can sign up today for your Maintenace Program.&nbsp; Please contact us today</p>\r\n<p class=\"\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"https://naplesirrigation.com/contact-us/\" target=\"_blank\" rel=\"noopener\">Contact Us</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n\r\n[caption id=\"attachment_179\" align=\"alignnone\" width=\"220\"]<img class=\"wp-image-179 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/received_2444269415708471-220x300.jpeg\" alt=\"Renovation design sprinkler irrigation\" width=\"220\" height=\"300\" data-imhwpb-asset-id=\"789476\"> Renovations for a beautiful yard[/caption]\r\n\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\">\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-151 \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/20201221_152447-225x300.jpg\" alt=\"\" width=\"433\" height=\"577\" data-imhwpb-built-photo-search=\"68|any\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-146 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/IMG_20211101_150730-225x300.jpg\" alt=\"\" width=\"225\" height=\"300\" data-imhwpb-built-photo-search=\"68|any\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-192 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/20200801_150124-225x300.jpg\" alt=\"\" width=\"225\" height=\"300\" data-imhwpb-built-photo-search=\"68|any\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\"></div>\r\n</div>','About Us','','inherit','closed','closed','','105-revision-v1','','','2022-04-08 18:20:01','2022-04-08 18:20:01','',105,'https://naplesirrigation.com/?p=258',0,'revision','',0),(259,1,'2022-04-08 18:27:02','2022-04-08 18:27:02','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 42px;\">\r\n<div class=\"col-md-5 col-xs-12 col-sm-12\">\r\n<h4 class=\"\">About Naples Irrigation aka Hooper IRRIGATION BeGAN IN 1982.&nbsp; wE ARE licensed and insured.&nbsp;</h4>\r\n<p class=\"\">Graduating from the University of Evansville,&nbsp; Bradford Hooper the owner of Naples Irrigation and Hooper Irrigation began his career servicing all residential homes, multi-family, and small commercial businesses buildings, and the Hooper Irrigation design touch which we are truly noted for.&nbsp; Poor design is a large problem in the Irrigation Industry.&nbsp;&nbsp;</p>\r\n<p class=\"\">Specializing in renovations of an existing system, repair, and replacement of electrical valves, sprinkler heads, clocks, and pumps.&nbsp; Complete adjustment of systems of all types.&nbsp;&nbsp;</p>\r\n<p class=\"\">Naples Irrigation can design your system for a beautiful yard.</p>\r\n<p class=\"\">We offer a personalized maintenance program to fit your needs:&nbsp; monthly, bi-monthly, or quarterly programs available to support your needs.&nbsp;</p>\r\n<p class=\"\">&nbsp;Maintenance programs are an important part of our business as it prevents high water bills, broken sprinkler heads, oversprays, pipes, pump damage, valve, or just resetting clocks due to the country\'s regulations on dry times and proper times to water.&nbsp; &nbsp;</p>\r\n<p class=\"\">If your sprinkler system is not getting enough pressure, you need a service call for an evaluation.&nbsp;&nbsp;</p>\r\n<p class=\"\">Over 4000 new systems were installed, and tens of thousands of repairs.&nbsp; We celebrate 40 YEARS OF SERVICE.&nbsp; &nbsp; Hope you allow us the opportunity to help you with your sprinkler!&nbsp;&nbsp;</p>\r\n<p class=\"\">To learn more about how you can sign up today for your Maintenace Program.&nbsp; Please contact us today</p>\r\n<p class=\"\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"https://naplesirrigation.com/contact-us/\" target=\"_blank\" rel=\"noopener\">Contact Us</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n\r\n[caption id=\"attachment_179\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-179\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/received_2444269415708471-220x300.jpeg\" alt=\"Renovation design sprinkler irrigation\" width=\"300\" height=\"410\" data-imhwpb-asset-id=\"789476\"> Renovations for a beautiful yard[/caption]\r\n\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\">\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-151\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/20201221_152447-225x300.jpg\" alt=\"\" width=\"300\" height=\"400\" data-imhwpb-built-photo-search=\"68|any\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-146\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/IMG_20211101_150730-225x300.jpg\" alt=\"\" width=\"300\" height=\"400\" data-imhwpb-built-photo-search=\"68|any\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-192\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/20200801_150124-225x300.jpg\" alt=\"\" width=\"300\" height=\"400\" data-imhwpb-built-photo-search=\"68|any\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\"></div>\r\n</div>','About Us','','inherit','closed','closed','','105-revision-v1','','','2022-04-08 18:27:02','2022-04-08 18:27:02','',105,'https://naplesirrigation.com/?p=259',0,'revision','',0),(260,1,'2022-04-08 18:39:38','2022-04-08 18:39:38','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 42px;\">\r\n<div class=\"col-md-5 col-xs-12 col-sm-12\">\r\n<h4 class=\"\">About Naples Irrigation aka Hooper IRRIGATION BeGAN IN 1982.&nbsp; wE ARE licensed and insured.&nbsp;</h4>\r\n<p class=\"\">Graduating from the University of Evansville,&nbsp; Bradford Hooper the owner of Naples Irrigation and Hooper Irrigation began his career servicing all residential homes, multi-family, and small commercial businesses buildings, and the Hooper Irrigation design touch which we are truly noted for.&nbsp; Poor design is a large problem in the Irrigation Industry.&nbsp;&nbsp;</p>\r\n<p class=\"\">Specializing in renovations of an existing system, repair, and replacement of electrical valves, sprinkler heads, clocks, and pumps.&nbsp; Complete adjustment of systems of all types.&nbsp;&nbsp;</p>\r\n<p class=\"\">Naples Irrigation can design your system for a beautiful yard.</p>\r\n<p class=\"\">We offer a personalized maintenance program to fit your needs:&nbsp; monthly, bi-monthly, or quarterly programs available to support your needs.&nbsp;</p>\r\n<p class=\"\">&nbsp;Maintenance programs are an important part of our business as it prevents high water bills, broken sprinkler heads, oversprays, pipes, pump damage, valve, or just resetting clocks due to the country\'s regulations on dry times and proper times to water.&nbsp; &nbsp;</p>\r\n<p class=\"\">If your sprinkler system is not getting enough pressure, you need a service call for an evaluation.&nbsp;&nbsp;</p>\r\n<p class=\"\">Over 4000 new systems were installed, and tens of thousands of repairs.&nbsp; We celebrate 40 YEARS OF SERVICE.&nbsp; &nbsp; Hope you allow us the opportunity to help you with your sprinkler!&nbsp;&nbsp;</p>\r\n<p class=\"\">To learn more about how you can sign up today for your Maintenace Program.&nbsp; Please contact us today</p>\r\n<p class=\"\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"https://naplesirrigation.com/contact-us/\" target=\"_blank\" rel=\"noopener\">Contact Us</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n\r\n[caption id=\"attachment_179\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-179\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/received_2444269415708471-220x300.jpeg\" alt=\"Renovation design sprinkler irrigation\" width=\"300\" height=\"410\" data-imhwpb-asset-id=\"789476\"> Renovations for a beautiful yard[/caption]\r\n\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\">\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-151\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/20201221_152447-225x300.jpg\" alt=\"\" width=\"300\" height=\"400\" data-imhwpb-built-photo-search=\"68|any\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-146\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/IMG_20211101_150730-225x300.jpg\" alt=\"\" width=\"300\" height=\"400\" data-imhwpb-built-photo-search=\"68|any\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-192\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/20200801_150124-225x300.jpg\" alt=\"\" width=\"300\" height=\"400\" data-imhwpb-built-photo-search=\"68|any\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\"></div>\r\n</div>','About Us','','inherit','closed','closed','','105-revision-v1','','','2022-04-08 18:39:38','2022-04-08 18:39:38','',105,'https://naplesirrigation.com/?p=260',0,'revision','',0),(261,1,'2022-04-08 18:41:23','2022-04-08 18:41:23','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 42px;\">\r\n<div class=\"col-md-5 col-xs-12 col-sm-12\">\r\n<h4 class=\"\">About Naples Irrigation aka Hooper IRRIGATION BeGAN IN 1982.&nbsp; wE ARE licensed and insured.&nbsp;</h4>\r\n<p class=\"\">Graduating from the University of Evansville,&nbsp; Bradford Hooper the owner of Naples Irrigation and Hooper Irrigation began his career servicing all residential homes, multi-family, and small commercial businesses buildings, and the Hooper Irrigation design touch which we are truly noted for.&nbsp; Poor design is a large problem in the Irrigation Industry.&nbsp;&nbsp;</p>\r\n<p class=\"\">Specializing in renovations of an existing system, repair, and replacement of electrical valves, sprinkler heads, clocks, and pumps.&nbsp; Complete adjustment of systems of all types.&nbsp;&nbsp;</p>\r\n<p class=\"\">Naples Irrigation can design your system for a beautiful yard.</p>\r\n<p class=\"\">We offer a personalized maintenance program to fit your needs:&nbsp; monthly, bi-monthly, or quarterly programs available to support your needs.&nbsp;</p>\r\n<p class=\"\">&nbsp;Maintenance programs are an important part of our business as it prevents high water bills, broken sprinkler heads, oversprays, pipes, pump damage, valve, or just resetting clocks due to the country\'s regulations on dry times and proper times to water.&nbsp; &nbsp;</p>\r\n<p class=\"\">If your sprinkler system is not getting enough pressure, you need a service call for an evaluation.&nbsp;&nbsp;</p>\r\n<p class=\"\">Over 4000 new systems were installed, and tens of thousands of repairs.&nbsp; We celebrate 40 YEARS OF SERVICE.&nbsp; &nbsp; Hope you allow us the opportunity to help you with your sprinkler!&nbsp;&nbsp;</p>\r\n<p class=\"\">To learn more about how you can sign up today for your Maintenace Program.&nbsp; Please contact us today</p>\r\n<p class=\"\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"https://naplesirrigation.com/contact-us/\" target=\"_blank\" rel=\"noopener\">Contact Us</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n\r\n[caption id=\"attachment_179\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-179\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/received_2444269415708471-220x300.jpeg\" alt=\"Renovation design sprinkler irrigation\" width=\"300\" height=\"410\" data-imhwpb-asset-id=\"789476\"> Renovations for a beautiful yard[/caption]\r\n\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\">\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-151\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/20201221_152447-225x300.jpg\" alt=\"\" width=\"300\" height=\"400\" data-imhwpb-built-photo-search=\"68|any\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-146\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/IMG_20211101_150730-225x300.jpg\" alt=\"\" width=\"300\" height=\"400\" data-imhwpb-built-photo-search=\"68|any\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-192\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/20200801_150124-225x300.jpg\" alt=\"\" width=\"300\" height=\"400\" data-imhwpb-built-photo-search=\"68|any\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\"></div>\r\n</div>','About Us','','inherit','closed','closed','','105-revision-v1','','','2022-04-08 18:41:23','2022-04-08 18:41:23','',105,'https://naplesirrigation.com/?p=261',0,'revision','',0),(262,1,'2022-04-08 18:48:24','2022-04-08 18:48:24','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 42px;\">\r\n<div class=\"col-md-5 col-xs-12 col-sm-12\">\r\n<h4 class=\"\">About Naples Irrigation aka Hooper IRRIGATION BeGAN IN 1982.&nbsp; wE ARE licensed and insured.&nbsp;</h4>\r\n<p class=\"\">Graduating from the University of Evansville,&nbsp; Bradford Hooper the owner of Naples Irrigation and Hooper Irrigation began his career servicing all residential homes, multi-family, and small commercial businesses buildings, and the Hooper Irrigation design touch which we are truly noted for.&nbsp; Poor design is a large problem in the Irrigation Industry.&nbsp;&nbsp;</p>\r\n<p class=\"\">Specializing in renovations of an existing system, repair, and replacement of electrical valves, sprinkler heads, clocks, and pumps.&nbsp; Complete adjustment of systems of all types.&nbsp;&nbsp;</p>\r\n<p class=\"\">Naples Irrigation can design your system for a beautiful yard.</p>\r\n<p class=\"\">We offer a personalized maintenance program to fit your needs:&nbsp; monthly, bi-monthly, or quarterly programs available to support your needs.&nbsp;</p>\r\n<p class=\"\">&nbsp;Maintenance programs are an important part of our business as it prevents high water bills, broken sprinkler heads, oversprays, pipes, pump damage, valve, or just resetting clocks due to the country\'s regulations on dry times and proper times to water.&nbsp; &nbsp;</p>\r\n<p class=\"\">If your sprinkler system is not getting enough pressure, you need a service call for an evaluation.&nbsp;&nbsp;</p>\r\n<p class=\"\">Over 4000 new systems were installed, and tens of thousands of repairs.&nbsp; We celebrate 40 YEARS OF SERVICE.&nbsp; &nbsp; Hope you allow us the opportunity to help you with your sprinkler!&nbsp;&nbsp;</p>\r\n<p class=\"\">To learn more about how you can sign up today for your Maintenace Program.&nbsp; Please contact us today</p>\r\n<p class=\"\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"https://naplesirrigation.com/contact-us/\" target=\"_blank\" rel=\"noopener\">Contact Us</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n\r\n[caption id=\"attachment_179\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-179\" title=\"renovation of existing system \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/received_2444269415708471-220x300.jpeg\" alt=\"Renovations of existing system \" width=\"300\" height=\"410\" data-imhwpb-asset-id=\"789476\"> Renovations for a beautiful yard[/caption]\r\n\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\">\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-151\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/20201221_152447-225x300.jpg\" alt=\"\" width=\"300\" height=\"400\" data-imhwpb-built-photo-search=\"68|any\"></p>\r\n\r\n\r\n[caption id=\"attachment_146\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-146\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/IMG_20211101_150730-225x300.jpg\" alt=\"renovations of existing system shown \" width=\"300\" height=\"400\" data-imhwpb-built-photo-search=\"68|any\"> Renovation existing sytem, repair and replacement of electrical valves, sprinkler heads, .[/caption]\r\n\r\n[caption id=\"attachment_192\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-192\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/20200801_150124-225x300.jpg\" alt=\"repair, replacement of electric  valves sprinkler heads, clocks pump\" width=\"300\" height=\"400\" data-imhwpb-built-photo-search=\"68|any\"> Let us bring your yeard back to life[/caption]\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\"></div>\r\n</div>','About Us','','inherit','closed','closed','','105-revision-v1','','','2022-04-08 18:48:24','2022-04-08 18:48:24','',105,'https://naplesirrigation.com/?p=262',0,'revision','',0),(263,1,'2022-04-08 18:52:33','2022-04-08 18:52:33','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 42px;\">\r\n<div class=\"col-md-5 col-xs-12 col-sm-12\">\r\n<h4 class=\"\">About Naples Irrigation aka Hooper IRRIGATION BeGAN IN 1982.&nbsp; wE ARE licensed and insured.&nbsp;</h4>\r\n<p class=\"\">Graduating from the University of Evansville,&nbsp; Bradford Hooper the owner of Naples Irrigation and Hooper Irrigation began his career servicing all residential homes, multi-family, and small commercial businesses buildings, and the Hooper Irrigation design touch which we are truly noted for.&nbsp; Poor design is a large problem in the Irrigation Industry.&nbsp;&nbsp;</p>\r\n<p class=\"\">Specializing in renovations of an existing system, repair, and replacement of electrical valves, sprinkler heads, clocks, and pumps.&nbsp; Complete adjustment of systems of all types.&nbsp;&nbsp;</p>\r\n<p class=\"\">Naples Irrigation can design your system for a beautiful yard.</p>\r\n<p class=\"\">We offer a personalized maintenance program to fit your needs:&nbsp; monthly, bi-monthly, or quarterly programs available to support your yard&nbsp;</p>\r\n<p class=\"\">&nbsp;Maintenance programs are an important part of our business as it prevents high water bills, broken sprinkler heads, oversprays, pipes, pump damage, valve, or just resetting clocks due to the country\'s regulations on dry times and proper times to water.&nbsp; &nbsp;</p>\r\n<p class=\"\">If your sprinkler system is not getting enough pressure, you need a service call for an evaluation.&nbsp;&nbsp;</p>\r\n<p class=\"\">Over 4000 new systems were installed, and tens of thousands of repairs.&nbsp; We celebrate 40 YEARS OF SERVICE.&nbsp; &nbsp; Hope you allow us the opportunity to help you with your sprinkler!&nbsp;&nbsp;</p>\r\n<p class=\"\">To learn more about how you can sign up today for your Maintenace Program.&nbsp; Please contact us today</p>\r\n<p class=\"\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"https://naplesirrigation.com/contact-us/\" target=\"_blank\" rel=\"noopener\">Contact Us</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n\r\n[caption id=\"attachment_179\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-179\" title=\"renovation of existing system \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/received_2444269415708471-220x300.jpeg\" alt=\"Renovations of existing system \" width=\"300\" height=\"410\" data-imhwpb-asset-id=\"789476\"> Renovations for a beautiful yard[/caption]\r\n\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\">\r\n\r\n[caption id=\"attachment_151\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-151\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/20201221_152447-225x300.jpg\" alt=\"Renovation design sprinkler irrigation\" width=\"300\" height=\"400\" data-imhwpb-built-photo-search=\"68|any\"> Maintenance program helps unnecssary repairs and staying up to date with counties regulations of watering[/caption]\r\n\r\n[caption id=\"attachment_146\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-146\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/IMG_20211101_150730-225x300.jpg\" alt=\"renovations of existing system shown \" width=\"300\" height=\"400\" data-imhwpb-built-photo-search=\"68|any\"> Renovation existing sytem, repair and replacement of electrical valves, sprinkler heads, .[/caption]\r\n\r\n[caption id=\"attachment_192\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-192\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/20200801_150124-225x300.jpg\" alt=\"repair, replacement of electric valves sprinkler heads, clocks pump\" width=\"300\" height=\"400\" data-imhwpb-built-photo-search=\"68|any\"> Let us bring your yeard back to life[/caption]\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\"></div>\r\n</div>','About Us','','inherit','closed','closed','','105-revision-v1','','','2022-04-08 18:52:33','2022-04-08 18:52:33','',105,'https://naplesirrigation.com/?p=263',0,'revision','',0),(264,1,'2022-04-08 18:53:04','2022-04-08 18:53:04','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 42px;\">\r\n<div class=\"col-md-5 col-xs-12 col-sm-12\">\r\n<h4 class=\"\">About Naples Irrigation aka Hooper IRRIGATION BeGAN IN 1982.&nbsp; wE ARE licensed and insured.&nbsp;</h4>\r\n<p class=\"\">Graduating from the University of Evansville,&nbsp; Bradford Hooper the owner of Naples Irrigation and Hooper Irrigation began his career servicing all residential homes, multi-family, and small commercial businesses buildings, and the Hooper Irrigation design touch which we are truly noted for.&nbsp; Poor design is a large problem in the Irrigation Industry.&nbsp;&nbsp;</p>\r\n<p class=\"\">Specializing in renovations of an existing system, repair, and replacement of electrical valves, sprinkler heads, clocks, and pumps.&nbsp; Complete adjustment of systems of all types.&nbsp;&nbsp;</p>\r\n<p class=\"\">Naples Irrigation can design your system for a beautiful yard.</p>\r\n<p class=\"\">We offer a personalized maintenance program to fit your needs:&nbsp; monthly, bi-monthly, or quarterly programs available to support your yard&nbsp;</p>\r\n<p class=\"\">&nbsp;Maintenance programs are an important part of our business as it prevents high water bills, broken sprinkler heads, oversprays, pipes, pump damage, valve, or just resetting clocks due to the country\'s regulations on dry times and proper times to water.&nbsp; &nbsp;</p>\r\n<p class=\"\">If your sprinkler system is not getting enough pressure, you need a service call for an evaluation.&nbsp;&nbsp;</p>\r\n<p class=\"\">Over 4000 new systems were installed, and tens of thousands of repairs.&nbsp; We celebrate 40 YEARS OF SERVICE.&nbsp; &nbsp; Hope you allow us the opportunity to help you with your sprinkler!&nbsp;&nbsp;</p>\r\n<p class=\"\">To learn more about how you can sign up today for your Maintenace Program.&nbsp; Please contact us today</p>\r\n<p class=\"\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"https://naplesirrigation.com/contact-us/\" target=\"_blank\" rel=\"noopener\">Contact Us</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n\r\n[caption id=\"attachment_179\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-179\" title=\"renovation of existing system \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/received_2444269415708471-220x300.jpeg\" alt=\"Renovations of existing system \" width=\"300\" height=\"410\" data-imhwpb-asset-id=\"789476\"> Renovations for a beautiful yard[/caption]\r\n\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\">\r\n\r\n[caption id=\"attachment_151\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-151\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/20201221_152447-225x300.jpg\" alt=\"Renovation design sprinkler irrigation\" width=\"300\" height=\"400\" data-imhwpb-built-photo-search=\"68|any\"> Maintenance program helps unnecessary repairs and staying up to date with counties regulations of watering[/caption]\r\n\r\n[caption id=\"attachment_146\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-146\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/IMG_20211101_150730-225x300.jpg\" alt=\"renovations of existing system shown \" width=\"300\" height=\"400\" data-imhwpb-built-photo-search=\"68|any\"> Renovation existing system, repair and replacement of electrical valves, sprinkler heads, .[/caption]\r\n\r\n[caption id=\"attachment_192\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-192\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/20200801_150124-225x300.jpg\" alt=\"repair, replacement of electric valves sprinkler heads, clocks pump\" width=\"300\" height=\"400\" data-imhwpb-built-photo-search=\"68|any\"> Let us bring your yeard back to life[/caption]\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\"></div>\r\n</div>','About Us','','inherit','closed','closed','','105-revision-v1','','','2022-04-08 18:53:04','2022-04-08 18:53:04','',105,'https://naplesirrigation.com/?p=264',0,'revision','',0),(265,1,'2022-04-08 18:57:21','2022-04-08 18:57:21','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 42px;\">\r\n<div class=\"col-md-5 col-xs-12 col-sm-12\">\r\n<h4 class=\"\">About Naples Irrigation aka Hooper IRRIGATION BeGAN IN 1982.&nbsp; wE ARE licensed and insured.&nbsp;</h4>\r\n<p class=\"\">Graduating from the University of Evansville,&nbsp; Bradford Hooper the owner of Naples Irrigation and Hooper Irrigation began his career servicing all residential homes, multi-family, and small commercial businesses buildings, and the Hooper Irrigation design touch which we are truly noted for.&nbsp; Poor design is a large problem in the Irrigation Industry.&nbsp;&nbsp;</p>\r\n<p class=\"\">Specializing in renovations of an existing system, repair, and replacement of electrical valves, sprinkler heads, clocks, and pumps.&nbsp; Complete adjustment of systems of all types.&nbsp;&nbsp;</p>\r\n<p class=\"\">Naples Irrigation can design your system for a beautiful yard.</p>\r\n<p class=\"\">We offer a personalized maintenance program to fit your needs:&nbsp; monthly, bi-monthly, or quarterly programs available to support your yard&nbsp;</p>\r\n<p class=\"\">&nbsp;Maintenance programs are an important part of our business as it prevents high water bills, broken sprinkler heads, oversprays, pipes, pump damage, valve, or just resetting clocks due to the country\'s regulations - dry months and proper times to water.&nbsp;&nbsp;</p>\r\n<p class=\"\">If your sprinkler system is not getting enough pressure, you need a service call for an evaluation.&nbsp;&nbsp;</p>\r\n<p class=\"\">Over 4000 new systems were installed, and tens of thousands of repairs.&nbsp; We celebrate 40 YEARS OF SERVICE.&nbsp; &nbsp; Hope you allow us the opportunity to help you with your sprinkler!&nbsp;&nbsp;</p>\r\n<p class=\"\">To learn more about how you can sign up today for your Maintenace Program.&nbsp; Please contact us today</p>\r\n<p class=\"\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"https://naplesirrigation.com/contact-us/\" target=\"_blank\" rel=\"noopener\">Contact Us</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n\r\n[caption id=\"attachment_179\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-179\" title=\"renovation of existing system \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/received_2444269415708471-220x300.jpeg\" alt=\"Renovations of existing system \" width=\"300\" height=\"410\" data-imhwpb-asset-id=\"789476\"> Renovations for a beautiful yard[/caption]\r\n\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\">\r\n\r\n[caption id=\"attachment_151\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-151\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/20201221_152447-225x300.jpg\" alt=\"Renovation design sprinkler irrigation\" width=\"300\" height=\"400\" data-imhwpb-built-photo-search=\"68|any\"> &nbsp;The maintenance program prevents&nbsp; unnecessary repairs and stays up to date with counties regulations of watering[/caption]\r\n\r\n[caption id=\"attachment_146\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-146\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/IMG_20211101_150730-225x300.jpg\" alt=\"renovations of existing system shown \" width=\"300\" height=\"400\" data-imhwpb-built-photo-search=\"68|any\"> Renovation of the existing system, repair, replacement of electrical valves, sprinkler heads[/caption]\r\n\r\n[caption id=\"attachment_192\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-192\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/20200801_150124-225x300.jpg\" alt=\"repair, replacement of electric valves sprinkler heads, clocks pump\" width=\"300\" height=\"400\" data-imhwpb-built-photo-search=\"68|any\"> Let us bring your yeard back to life[/caption]\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\"></div>\r\n</div>','About Us','','inherit','closed','closed','','105-revision-v1','','','2022-04-08 18:57:21','2022-04-08 18:57:21','',105,'https://naplesirrigation.com/?p=265',0,'revision','',0),(266,1,'2022-04-08 18:57:49','2022-04-08 18:57:49','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 42px;\">\r\n<div class=\"col-md-5 col-xs-12 col-sm-12\">\r\n<h4 class=\"\">About Naples Irrigation dba Hooper IRRIGATION BeGAN IN 1982.&nbsp; wE ARE licensed and insured.&nbsp;</h4>\r\n<p class=\"\">Graduating from the University of Evansville,&nbsp; Bradford Hooper the owner of Naples Irrigation and Hooper Irrigation began his career servicing all residential homes, multi-family, and small commercial businesses buildings, and the Hooper Irrigation design touch which we are truly noted for.&nbsp; Poor design is a large problem in the Irrigation Industry.&nbsp;&nbsp;</p>\r\n<p class=\"\">Specializing in renovations of an existing system, repair, and replacement of electrical valves, sprinkler heads, clocks, and pumps.&nbsp; Complete adjustment of systems of all types.&nbsp;&nbsp;</p>\r\n<p class=\"\">Naples Irrigation can design your system for a beautiful yard.</p>\r\n<p class=\"\">We offer a personalized maintenance program to fit your needs:&nbsp; monthly, bi-monthly, or quarterly programs available to support your yard&nbsp;</p>\r\n<p class=\"\">&nbsp;Maintenance programs are an important part of our business as it prevents high water bills, broken sprinkler heads, oversprays, pipes, pump damage, valve, or just resetting clocks due to the country\'s regulations - dry months and proper times to water.&nbsp;&nbsp;</p>\r\n<p class=\"\">If your sprinkler system is not getting enough pressure, you need a service call for an evaluation.&nbsp;&nbsp;</p>\r\n<p class=\"\">Over 4000 new systems were installed, and tens of thousands of repairs.&nbsp; We celebrate 40 YEARS OF SERVICE.&nbsp; &nbsp; Hope you allow us the opportunity to help you with your sprinkler!&nbsp;&nbsp;</p>\r\n<p class=\"\">To learn more about how you can sign up today for your Maintenace Program.&nbsp; Please contact us today</p>\r\n<p class=\"\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"https://naplesirrigation.com/contact-us/\" target=\"_blank\" rel=\"noopener\">Contact Us</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n\r\n[caption id=\"attachment_179\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-179\" title=\"renovation of existing system \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/received_2444269415708471-220x300.jpeg\" alt=\"Renovations of existing system \" width=\"300\" height=\"410\" data-imhwpb-asset-id=\"789476\"> Renovations for a beautiful yard[/caption]\r\n\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\">\r\n\r\n[caption id=\"attachment_151\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-151\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/20201221_152447-225x300.jpg\" alt=\"Renovation design sprinkler irrigation\" width=\"300\" height=\"400\" data-imhwpb-built-photo-search=\"68|any\"> &nbsp;The maintenance program prevents&nbsp; unnecessary repairs and stays up to date with counties regulations of watering[/caption]\r\n\r\n[caption id=\"attachment_146\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-146\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/IMG_20211101_150730-225x300.jpg\" alt=\"renovations of existing system shown \" width=\"300\" height=\"400\" data-imhwpb-built-photo-search=\"68|any\"> Renovation of the existing system, repair, replacement of electrical valves, sprinkler heads[/caption]\r\n\r\n[caption id=\"attachment_192\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-192\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/20200801_150124-225x300.jpg\" alt=\"repair, replacement of electric valves sprinkler heads, clocks pump\" width=\"300\" height=\"400\" data-imhwpb-built-photo-search=\"68|any\"> Let us bring your yeard back to life[/caption]\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\"></div>\r\n</div>','About Us','','inherit','closed','closed','','105-revision-v1','','','2022-04-08 18:57:49','2022-04-08 18:57:49','',105,'https://naplesirrigation.com/?p=266',0,'revision','',0),(267,1,'2022-04-08 18:59:03','2022-04-08 18:59:03','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 42px;\">\r\n<div class=\"col-md-5 col-xs-12 col-sm-12\">\r\n<h4 class=\"\">About Naples Irrigation dba Hooper IRRIGATION BeGAN IN 1982.&nbsp; wE ARE licensed and insured.&nbsp;</h4>\r\n<p class=\"\">Graduating from the University of Evansville,&nbsp; Bradford Hooper the owner of Naples Irrigation and Hooper Irrigation began his career servicing all residential homes, multi-family, and small commercial businesses buildings, and the Hooper Irrigation design touch which we are truly noted for.&nbsp; Poor design is a large problem in the Irrigation Industry.&nbsp;&nbsp;</p>\r\n<p class=\"\">Specializing in renovations of an existing system, repair, and replacement of electrical valves, sprinkler heads, clocks, and pumps.&nbsp; Complete adjustment of systems of all types.&nbsp;&nbsp;</p>\r\n<p class=\"\">Naples Irrigation can design your system for a beautiful yard.</p>\r\n<p class=\"\">We offer a personalized maintenance program to fit your needs:&nbsp; monthly, bi-monthly, or quarterly programs available to support your yard&nbsp;</p>\r\n<p class=\"\">&nbsp;Maintenance programs are an important part of our business as it prevents high water bills, broken sprinkler heads, oversprays, pipes, pump damage, valve, or just resetting clocks due to the country\'s regulations - dry months and proper times to water.&nbsp;&nbsp;</p>\r\n<p class=\"\">If your sprinkler system is not getting enough pressure, you need a service call for an evaluation.&nbsp;&nbsp;</p>\r\n<p class=\"\">Over 4000 new systems were installed, and tens of thousands of repairs.&nbsp; We celebrate 40 YEARS OF SERVICE.&nbsp; &nbsp; Hope you allow us the opportunity to help you with your sprinkler!&nbsp;&nbsp;</p>\r\n<p class=\"\">To learn more about how you can sign up today for your Maintenace Program.&nbsp; Please contact us today</p>\r\n<p class=\"\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"https://naplesirrigation.com/contact-us/\" target=\"_blank\" rel=\"noopener\">Contact Us</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n\r\n[caption id=\"attachment_179\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-179\" title=\"renovation of existing system \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/received_2444269415708471-220x300.jpeg\" alt=\"Renovations of existing system \" width=\"300\" height=\"410\" data-imhwpb-asset-id=\"789476\"> Renovations for a beautiful yard[/caption]\r\n\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\">\r\n\r\n[caption id=\"attachment_151\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-151\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/20201221_152447-225x300.jpg\" alt=\"Renovation design sprinkler irrigation\" width=\"300\" height=\"400\" data-imhwpb-built-photo-search=\"68|any\"> &nbsp;The maintenance program prevents&nbsp; unnecessary repairs and stays up to date with counties regulations of watering[/caption]\r\n\r\n[caption id=\"attachment_146\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-146\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/IMG_20211101_150730-225x300.jpg\" alt=\"renovations of existing system shown \" width=\"300\" height=\"400\" data-imhwpb-built-photo-search=\"68|any\"> Renovation of the existing system, repair, replacement of electrical valves, sprinkler heads[/caption]\r\n\r\n[caption id=\"attachment_192\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-192\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/20200801_150124-225x300.jpg\" alt=\"repair, replacement of electric valves sprinkler heads, clocks pump\" width=\"300\" height=\"400\" data-imhwpb-built-photo-search=\"68|any\"> Let us bring your yeard back to life[/caption]\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\"></div>\r\n</div>','About Us','','inherit','closed','closed','','105-revision-v1','','','2022-04-08 18:59:03','2022-04-08 18:59:03','',105,'https://naplesirrigation.com/?p=267',0,'revision','',0),(268,1,'2022-04-08 19:02:33','2022-04-08 19:02:33','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 42px;\">\r\n<div class=\"col-md-5 col-xs-12 col-sm-12\">\r\n<h4 class=\"\">About Naples Irrigation dba Hooper IRRIGATION BeGAN IN 1982.&nbsp; wE ARE licensed and insured.&nbsp;</h4>\r\n<p class=\"\">Graduating from the University of Evansville,&nbsp; Bradford Hooper the owner of Naples Irrigation and Hooper Irrigation began his career servicing all residential homes, multi-family, and small commercial businesses buildings, and the Hooper Irrigation design touch which we are truly noted for.&nbsp; Poor design is a large problem in the Irrigation Industry.&nbsp;&nbsp;</p>\r\n<p class=\"\">Specializing in renovations of an existing system, repair, and replacement of electrical valves, sprinkler heads, clocks, and pumps.&nbsp; Complete adjustment of systems of all types.&nbsp;&nbsp;</p>\r\n<p class=\"\">Naples Irrigation can design your system for a beautiful yard.</p>\r\n<p class=\"\">We offer a personalized maintenance program to fit your needs:&nbsp; monthly, bi-monthly, or quarterly programs available to support your yard&nbsp;</p>\r\n<p class=\"\">&nbsp;Maintenance programs are an important part of our business as it prevents high water bills, broken sprinkler heads, oversprays, pipes, pump damage, valve, or just resetting clocks due to the country\'s regulations - dry months and proper times to water.&nbsp;&nbsp;</p>\r\n<p class=\"\">If your sprinkler system is not getting enough pressure, you need a service call for an evaluation.&nbsp;&nbsp;</p>\r\n<p class=\"\">Over 4000 new systems were installed, and tens of thousands of repairs.&nbsp; We celebrate 40 YEARS OF SERVICE.&nbsp; &nbsp; Hope you allow us the opportunity to help you with your sprinkler!&nbsp;&nbsp;</p>\r\n<p class=\"\">To learn more about how you can sign up today for your Maintenace Program.&nbsp; Please contact us today</p>\r\n<p class=\"\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"https://naplesirrigation.com/contact-us/\" target=\"_blank\" rel=\"noopener\">Contact Us</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n\r\n[caption id=\"attachment_179\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-179\" title=\"renovation of existing system \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/received_2444269415708471-220x300.jpeg\" alt=\"Renovations of existing system \" width=\"300\" height=\"410\" data-imhwpb-asset-id=\"789476\"> Renovations for a beautiful yard[/caption]\r\n\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\">\r\n\r\n[caption id=\"attachment_151\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-151\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/20201221_152447-225x300.jpg\" alt=\"Renovation design sprinkler irrigation\" width=\"300\" height=\"400\" data-imhwpb-built-photo-search=\"68|any\"> &nbsp;The maintenance program prevents&nbsp; unnecessary repairs and stays up to date with counties regulations of watering[/caption]\r\n\r\n[caption id=\"attachment_146\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-146\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/IMG_20211101_150730-225x300.jpg\" alt=\"renovations of existing system shown \" width=\"300\" height=\"400\" data-imhwpb-built-photo-search=\"68|any\"> Renovation of the existing system, repair, replacement of electrical valves, sprinkler heads[/caption]\r\n\r\n[caption id=\"attachment_192\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-192\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/20200801_150124-225x300.jpg\" alt=\"repair, replacement of electric valves sprinkler heads, clocks pump\" width=\"300\" height=\"400\" data-imhwpb-built-photo-search=\"68|any\"> Let us bring your yeard back to life[/caption]\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\"></div>\r\n</div>','About Us','','inherit','closed','closed','','105-revision-v1','','','2022-04-08 19:02:33','2022-04-08 19:02:33','',105,'https://naplesirrigation.com/?p=268',0,'revision','',0),(277,1,'2022-04-25 18:42:34','2022-04-25 18:42:34','<div class=\"boldgrid-section\" style=\"color: #000000; background-image: url(\'https://source.unsplash.com/MqJX_8EaStM/1920x1080\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"1175055\" data-image-url=\"https://source.unsplash.com/MqJX_8EaStM/1920x1080\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 120px; padding-bottom: 140px;\">\r\n<div class=\"col-md-7 col-sm-4 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\"><img class=\"wp-image-186 alignnone\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/cropped-20210313_120201-scaled-1-e1649096217790.jpg\" alt=\"Perfect Irrigation System\" width=\"667\" height=\"500\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-5 col-sm-8 col-xs-12 wedge-cta\" custom-classes=\"wedge-cta\">\r\n<h2 class=\"\">NAPLES IRRIGATION lET US BRING YOUR YARD BACK TO LIFE</h2>\r\n<p class=\"\">BEST LAWN&nbsp; SPRINKLER REPAIR, MAINTENANCE , DESIGN&nbsp; SYSTEM&nbsp;</p>\r\n\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-16\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\"><a class=\"button-secondary btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1\" href=\"https://naplesirrigation.com/contact-us/\">CONTACT US TODAY</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color3-background-color color-3-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-12\">\r\n<h2 class=\"\" style=\"text-align: center;\">See What We Can Offer</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-2 color1-color\" style=\"width: 65%;\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 90px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-4\">\r\n\r\n<img class=\"bg-img bg-img-1  wp-image-273 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/IMG_20220128_155353-225x300.jpg\" alt=\"Renovation\" width=\"225\" height=\"300\" data-imhwpb-asset-id=\"695399\">\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Sprinkler Repair</h3>\r\n<p class=\"\">Sprinkler repair|irrigation pumps, clocks, valves manifolds and heads</p>\r\n\r\n</div>\r\n<div class=\"col-xs-12 col-sm-6 col-md-4\">\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Design &amp;</h3>\r\n<img class=\"bg-img bg-img-1 alignnone wp-image-135 size-medium\" style=\"color: #333333;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/20201221_152806-300x225.jpg\" alt=\"Maintenance irrigation programs \" width=\"300\" height=\"225\" data-imhwpb-asset-id=\"695400\">\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">&nbsp;Monthly Maintenance&nbsp;</h3>\r\n<p class=\"\">Fully licensed and insured.&nbsp; We take pride in our work and are deemed the best in Naples.&nbsp; &nbsp;Maintenance reduces costly mishaps</p>\r\n\r\n</div>\r\n<div class=\"col-xs-12 col-sm-6 col-md-4\">\r\n\r\n<img class=\"bg-img bg-img-1 wp-image-180 size-medium\" title=\"Renovation irrigation services \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/received_656891985552879-220x300.jpeg\" alt=\"Repair Sprinkler system irrigaiton\" width=\"220\" height=\"300\" data-imhwpb-asset-id=\"695401\">\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Renovation</h3>\r\n<p class=\"\">If you want to experience the benefits of a customized Renovation our team is experienced 40 years in Naples</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color2-background-color color-2-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-12\">\r\n<h2 class=\"\" style=\"text-align: center;\">Customer Testimonials</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-2 color1-color\" style=\"width: 65%;\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 40px;\">\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle alignnone wp-image-177 \" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/pumpirigationsupply-300x225.jpg\" alt=\"\" width=\"216\" height=\"162\" data-imhwpb-asset-id=\"695402\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\"><strong>Pump SUPPLY HOUSE of Naples</strong></p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Visit us today, highly recommend as one of our strongest customers in the industry today\"</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-156 \" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/282_127_486_486_20201221_153238-768x1024.jpg\" alt=\"\" width=\"179\" height=\"179\" data-imhwpb-asset-id=\"695403\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\">Engle Denistry</p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Brad Engle recommends Brad Hooper to his customers\" Best in Naples&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-125\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_4YX0oj7gf8o-imhwpb-ut5s3lmwf6dg2wc.jpg\" alt=\"\" width=\"150\" height=\"150\" data-imhwpb-asset-id=\"695404\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\"><strong>Direct Industrial Supply</strong></p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Brad Hooper of Naples Irrigation and Hooper Irrigation is one of our best maintenance Sprinkler designers and Installer. Highly recommend his services.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-126\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_8tN3flDTQBU-imhwpb-kxmpsoge3h4672l.jpg\" alt=\"\" width=\"169\" height=\"169\" data-imhwpb-asset-id=\"695405\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\">&nbsp;</p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\">Brad Hooper is one of the best-known sprinkler companies I know highly sought out.&nbsp; Our renovations have never looked better.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Welcome','','inherit','closed','closed','','103-revision-v1','','','2022-04-25 18:42:34','2022-04-25 18:42:34','',103,'https://naplesirrigation.com/?p=277',0,'revision','',0),(270,1,'2022-04-08 19:10:00','2022-04-08 19:10:00','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 42px;\">\r\n<div class=\"col-md-5 col-xs-12 col-sm-12\">\r\n<h4 class=\"\">About Naples Irrigation dba Hooper IRRIGATION BeGAN IN 1982.&nbsp; wE ARE licensed and insured.&nbsp;</h4>\r\n<p class=\"\">Graduating from the University of Evansville,&nbsp; Bradford Hooper the owner of Naples Irrigation and Hooper Irrigation began his career servicing all residential homes, multi-family, and small commercial businesses buildings, and the Hooper Irrigation design touch which we are truly noted for.&nbsp; Poor design is a large problem in the Irrigation Industry.&nbsp;&nbsp;</p>\r\n<p class=\"\">Specializing in renovations of an existing system, repair, and replacement of electrical valves, sprinkler heads, clocks, and pumps.&nbsp; Complete adjustment of systems of all types.&nbsp;&nbsp;</p>\r\n<p class=\"\">Naples Irrigation can design your system for a beautiful yard.</p>\r\n<p class=\"\">We offer a personalized maintenance program to fit your needs:&nbsp; monthly, bi-monthly, or quarterly programs available to support your yard&nbsp;</p>\r\n<p class=\"\">&nbsp;Maintenance programs are an important part of our business as it prevents high water bills, broken sprinkler heads, oversprays, pipes, pump damage, valve, or just resetting clocks due to the country\'s regulations - dry months and proper times to water.&nbsp;&nbsp;</p>\r\n<p class=\"\">If your sprinkler system is not getting enough pressure, you need a service call for an evaluation.&nbsp;&nbsp;</p>\r\n<p class=\"\">Over 4000 new systems were installed, and tens of thousands of repairs.&nbsp; We celebrate 40 YEARS OF SERVICE.&nbsp; &nbsp; Hope you allow us the opportunity to help you with your sprinkler!&nbsp;&nbsp;</p>\r\n<p class=\"\">To learn more about how you can sign up today for your Maintenace Program.&nbsp; Please contact us today</p>\r\n<p class=\"\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"https://naplesirrigation.com/contact-us/\" target=\"_blank\" rel=\"noopener\">Contact Us</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n\r\n[caption id=\"attachment_179\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-179\" title=\"renovation of existing system \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/received_2444269415708471-220x300.jpeg\" alt=\"Renovations of existing system \" width=\"300\" height=\"410\" data-imhwpb-asset-id=\"789476\"> Renovations for a beautiful yard[/caption]\r\n\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\">\r\n\r\n[caption id=\"attachment_151\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-151\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/20201221_152447-225x300.jpg\" alt=\"Renovation design sprinkler irrigation\" width=\"300\" height=\"400\" data-imhwpb-built-photo-search=\"68|any\"> &nbsp;The maintenance program prevents&nbsp; unnecessary repairs and stays up to date with counties regulations of watering[/caption]\r\n\r\n[caption id=\"attachment_146\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-146\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/IMG_20211101_150730-225x300.jpg\" alt=\"renovations of existing system shown \" width=\"300\" height=\"400\" data-imhwpb-built-photo-search=\"68|any\"> Renovation of the existing system, repair, replacement of electrical valves, sprinkler heads[/caption]\r\n\r\n[caption id=\"attachment_192\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-192\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/20200801_150124-225x300.jpg\" alt=\"repair, replacement of electric valves sprinkler heads, clocks pump\" width=\"300\" height=\"400\" data-imhwpb-built-photo-search=\"68|any\"> Let us bring your yeard back to life[/caption]\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\"></div>\r\n</div>','About Us','','inherit','closed','closed','','105-revision-v1','','','2022-04-08 19:10:00','2022-04-08 19:10:00','',105,'https://naplesirrigation.com/?p=270',0,'revision','',0),(275,1,'2022-04-13 16:07:33','2022-04-13 16:07:33','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 42px;\">\r\n<div class=\"col-md-5 col-xs-12 col-sm-12\">\r\n<h4 class=\"\">About Naples Irrigation dba Hooper IRRIGATION BeGAN IN 1982.&nbsp; wE ARE licensed and insured.&nbsp;</h4>\r\n<p class=\"\">Graduating from the University of Evansville,&nbsp; Bradford Hooper the owner of Naples Irrigation dba-Hooper Irrigation began his career servicing all residential homes, multi-family, and small commercial businesses buildings, and the Hooper Irrigation design touch which we are truly noted for.&nbsp; Poor design is a large problem in the Irrigation Industry.&nbsp;&nbsp;</p>\r\n<p class=\"\">Specializing in renovations of an existing system, repair, and replacement of electrical valves, sprinkler heads, clocks, and pumps.&nbsp; Complete adjustment of systems of all types.&nbsp;&nbsp;</p>\r\n<p class=\"\">Naples Irrigation can design your system for a beautiful yard.</p>\r\n<p class=\"\">We offer a personalized maintenance program to fit your needs:&nbsp; monthly, bi-monthly, or quarterly programs available to support your yard&nbsp;</p>\r\n<p class=\"\">&nbsp;Maintenance programs are an important part of our business as it prevents high water bills, broken sprinkler heads, oversprays, pipes, pump damage, valve, or just resetting clocks due to the country\'s regulations - dry months and proper times to water.&nbsp;&nbsp;</p>\r\n<p class=\"\">If your sprinkler system is not getting enough pressure, you need a service call for an evaluation.&nbsp;&nbsp;</p>\r\n<p class=\"\">Over 4000 new systems were installed, and tens of thousands of repairs.&nbsp; We celebrate 40 YEARS OF SERVICE.&nbsp; &nbsp; Hope you allow us the opportunity to help you with your sprinkler!&nbsp;&nbsp;</p>\r\n<p class=\"\">To learn more about how you can sign up today for your Maintenace Program.&nbsp; Please contact us today</p>\r\n<p class=\"\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"https://naplesirrigation.com/contact-us/\" target=\"_blank\" rel=\"noopener\">Contact Us</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n\r\n[caption id=\"attachment_179\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-179\" title=\"renovation of existing system \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/received_2444269415708471-220x300.jpeg\" alt=\"Renovations of existing system \" width=\"300\" height=\"410\" data-imhwpb-asset-id=\"789476\"> Renovations for a beautiful yard[/caption]\r\n\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\">\r\n<div class=\"\">\r\n\r\n<img class=\"wp-image-151\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/20201221_152447-225x300.jpg\" alt=\"Renovation design sprinkler irrigation\" width=\"300\" height=\"400\" data-imhwpb-built-photo-search=\"68|any\">\r\n\r\n<img class=\"wp-image-146\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/IMG_20211101_150730-225x300.jpg\" alt=\"renovations of existing system shown \" width=\"300\" height=\"400\" data-imhwpb-built-photo-search=\"68|any\">\r\n\r\n[caption id=\"attachment_192\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-192\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/20200801_150124-225x300.jpg\" alt=\"repair, replacement of electric valves sprinkler heads, clocks pump\" width=\"300\" height=\"400\" data-imhwpb-built-photo-search=\"68|any\"> Let us bring your yeard back to life[/caption]\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\"></div>\r\n</div>','About Us','','inherit','closed','closed','','105-revision-v1','','','2022-04-13 16:07:33','2022-04-13 16:07:33','',105,'https://naplesirrigation.com/?p=275',0,'revision','',0),(271,1,'2022-04-08 19:11:15','2022-04-08 19:11:15','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 42px;\">\r\n<div class=\"col-md-5 col-xs-12 col-sm-12\">\r\n<h4 class=\"\">About Naples Irrigation dba Hooper IRRIGATION BeGAN IN 1982.&nbsp; wE ARE licensed and insured.&nbsp;</h4>\r\n<p class=\"\">Graduating from the University of Evansville,&nbsp; Bradford Hooper the owner of Naples Irrigation dba-Hooper Irrigation began his career servicing all residential homes, multi-family, and small commercial businesses buildings, and the Hooper Irrigation design touch which we are truly noted for.&nbsp; Poor design is a large problem in the Irrigation Industry.&nbsp;&nbsp;</p>\r\n<p class=\"\">Specializing in renovations of an existing system, repair, and replacement of electrical valves, sprinkler heads, clocks, and pumps.&nbsp; Complete adjustment of systems of all types.&nbsp;&nbsp;</p>\r\n<p class=\"\">Naples Irrigation can design your system for a beautiful yard.</p>\r\n<p class=\"\">We offer a personalized maintenance program to fit your needs:&nbsp; monthly, bi-monthly, or quarterly programs available to support your yard&nbsp;</p>\r\n<p class=\"\">&nbsp;Maintenance programs are an important part of our business as it prevents high water bills, broken sprinkler heads, oversprays, pipes, pump damage, valve, or just resetting clocks due to the country\'s regulations - dry months and proper times to water.&nbsp;&nbsp;</p>\r\n<p class=\"\">If your sprinkler system is not getting enough pressure, you need a service call for an evaluation.&nbsp;&nbsp;</p>\r\n<p class=\"\">Over 4000 new systems were installed, and tens of thousands of repairs.&nbsp; We celebrate 40 YEARS OF SERVICE.&nbsp; &nbsp; Hope you allow us the opportunity to help you with your sprinkler!&nbsp;&nbsp;</p>\r\n<p class=\"\">To learn more about how you can sign up today for your Maintenace Program.&nbsp; Please contact us today</p>\r\n<p class=\"\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"https://naplesirrigation.com/contact-us/\" target=\"_blank\" rel=\"noopener\">Contact Us</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n\r\n[caption id=\"attachment_179\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-179\" title=\"renovation of existing system \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/received_2444269415708471-220x300.jpeg\" alt=\"Renovations of existing system \" width=\"300\" height=\"410\" data-imhwpb-asset-id=\"789476\"> Renovations for a beautiful yard[/caption]\r\n\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\">\r\n\r\n[caption id=\"attachment_151\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-151\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/20201221_152447-225x300.jpg\" alt=\"Renovation design sprinkler irrigation\" width=\"300\" height=\"400\" data-imhwpb-built-photo-search=\"68|any\"> &nbsp;The maintenance program prevents&nbsp; unnecessary repairs and stays up to date with counties regulations of watering[/caption]\r\n\r\n[caption id=\"attachment_146\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-146\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/IMG_20211101_150730-225x300.jpg\" alt=\"renovations of existing system shown \" width=\"300\" height=\"400\" data-imhwpb-built-photo-search=\"68|any\"> Renovation of the existing system, repair, replacement of electrical valves, sprinkler heads[/caption]\r\n\r\n[caption id=\"attachment_192\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-192\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/20200801_150124-225x300.jpg\" alt=\"repair, replacement of electric valves sprinkler heads, clocks pump\" width=\"300\" height=\"400\" data-imhwpb-built-photo-search=\"68|any\"> Let us bring your yeard back to life[/caption]\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\"></div>\r\n</div>','About Us','','inherit','closed','closed','','105-revision-v1','','','2022-04-08 19:11:15','2022-04-08 19:11:15','',105,'https://naplesirrigation.com/?p=271',0,'revision','',0),(356,1,'2022-07-07 15:25:18','2022-07-07 15:25:18','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 42px;\">\r\n<div class=\"col-md-5 col-xs-12 col-sm-12\">\r\n<h4 class=\"\">About Naples Irrigation</h4>\r\n<h4 class=\"\">d/b/a Hooper IRRIGATION</h4>\r\n<p class=\"\" style=\"font-size: 14px;\">About the Owner:&nbsp; &nbsp;Brad Hooper, a formal graduate of the University of Evansville, Indiana began his 40 year career in the Naples, Florida area with the formation of Hooper Irrigation in 1982.&nbsp; &nbsp; &nbsp;</p>\r\n<p class=\"\" style=\"font-size: 14px;\">The company offers a full complement of services to residential and multifamily homes, as well as, small commercial businesses in Naples and nearby communitiies.&nbsp;&nbsp;</p>\r\n<p class=\"\" style=\"font-size: 14px;\">&nbsp;Brad Hooper offers new innovative designed systems that fit his customer\'s landscaping and lawn requirements and at a price range tailored to his customer\'s needs.&nbsp; &nbsp;His designs are geared toward the prevention of the mishaps experienced with badly designed systems.&nbsp; &nbsp;</p>\r\n<p class=\"\" style=\"font-size: 14px;\">In addition to new installations, Hooper Irrigation specializes in renovations of existing systems, repair,&nbsp; and replacements of all components such as sprinkler heads, electrical valves, clocks and pumps to ensure a flawless customer experience.&nbsp;</p>\r\n<p class=\"\" style=\"font-size: 14px;\">To maintain a beautiful lawn or landscape for your home or business, Hooper Irrigation will provide personalized maintenance programs to fit your needs: monthly, bi-monthly, or quarterly programs are available to support your project.</p>\r\n<p class=\"\" style=\"font-size: 14px;\">Maintenance programs are one of the most important services we offer to prevent high water bills, broken sprinkler heads, oversprays, pipes, pump damage, valve, or even simply resetting clocks due to any State water regulations.</p>\r\n<p class=\"\" style=\"font-size: 14px;\">Hooper Irrigation has installed over 4,000 new systems and has serviced thousands of systems whether installed by Hooper Irrigation or not. Owner Brad Hooper guarantees his work and is well recognized and recommended in the industry.</p>\r\n<p class=\"\" style=\"font-size: 14px;\">We hope you will allow us the opportunity to help you with all your irrigation needs.</p>\r\n<p class=\"\" style=\"font-size: 14px;\">To learn more about how to sign up for our Maintenace Program.&nbsp; Please contact us today at 239-793-775.&nbsp;&nbsp;</p>\r\n<p class=\"\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" style=\"font-size: 14px;\" href=\"https://naplesirrigation.com/contact-us/\" target=\"_blank\" rel=\"noopener\">Contact Us</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n\r\n[caption id=\"attachment_179\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-179\" title=\"renovation of existing system \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/received_2444269415708471-220x300.jpeg\" alt=\"Renovations of existing system \" width=\"300\" height=\"410\" data-imhwpb-asset-id=\"789476\"> Renovations for a beautiful yard[/caption]\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\">\r\n<p class=\"mod-reset\"><img class=\"alignnone wp-image-146 size-thumbnail\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/IMG_20211101_150730-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\"></p>\r\n\r\n<div class=\"\">\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\"></div>\r\n</div>','About Us','','inherit','closed','closed','','105-revision-v1','','','2022-07-07 15:25:18','2022-07-07 15:25:18','',105,'https://naplesirrigation.com/?p=356',0,'revision','',0),(362,1,'2022-07-14 18:03:12','2022-07-14 18:03:12','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 42px;\">\r\n<div class=\"col-md-5 col-xs-12 col-sm-12 col-lg-5\">\r\n<h4 class=\"\">About Naples Irrigation</h4>\r\n<h4 class=\"\">d/b/a Hooper IRRIGATION</h4>\r\n<p class=\"\" style=\"font-size: 14px;\">About the Owner:&nbsp; &nbsp;Brad Hooper, a formal graduate of the University of Evansville, Indiana began his 40 year career in the Naples, Florida area with the formation of Hooper Irrigation in 1982.&nbsp; &nbsp; &nbsp;</p>\r\n<p class=\"\" style=\"font-size: 14px;\">The company offers a full complement of services to residential and multifamily homes, as well as, small commercial businesses in Naples and nearby communitiies.&nbsp;&nbsp;</p>\r\n<p class=\"\" style=\"font-size: 14px;\">&nbsp;Brad Hooper offers new innovative designed systems that fit his customer\'s landscaping and lawn requirements and at a price range tailored to his customer\'s needs.&nbsp; &nbsp;His designs are geared toward the prevention of the mishaps experienced with badly designed systems.&nbsp; &nbsp;</p>\r\n<p class=\"\" style=\"font-size: 14px;\">In addition to new installations, Hooper Irrigation specializes in renovations of existing systems, repair,&nbsp; and replacements of all components such as sprinkler heads, electrical valves, clocks and pumps to ensure a flawless customer experience.&nbsp;</p>\r\n<p class=\"\" style=\"font-size: 14px;\">To maintain a beautiful lawn or landscape for your home or business, Hooper Irrigation will provide personalized maintenance programs to fit your needs: monthly, bi-monthly, or quarterly programs are available to support your project.</p>\r\n<p class=\"\" style=\"font-size: 14px;\">Maintenance programs are one of the most important services we offer to prevent high water bills, broken sprinkler heads, oversprays, pipes, pump damage, valve, or even simply resetting clocks due to any State water regulations.</p>\r\n<p class=\"\" style=\"font-size: 14px;\">Hooper Irrigation has installed over 4,000 new systems and has serviced thousands of systems whether installed by Hooper Irrigation or not. Owner Brad Hooper guarantees his work and is well recognized and recommended in the industry.</p>\r\n<p class=\"\" style=\"font-size: 14px;\">We hope you will allow us the opportunity to help you with all your irrigation needs.</p>\r\n<p class=\"\" style=\"font-size: 14px;\">To learn more about how to sign up for our Maintenace Program.&nbsp; Please contact us today at 239-793-775.&nbsp;&nbsp;</p>\r\n<p class=\"\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" style=\"font-size: 14px;\" href=\"https://naplesirrigation.com/contact-us/\" target=\"_blank\" rel=\"noopener\">Contact Us</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-xs-12 col-sm-12 col-lg-6\">\r\n\r\n[caption id=\"attachment_179\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-179\" title=\"renovation of existing system \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/received_2444269415708471-220x300.jpeg\" alt=\"Renovations of existing system \" width=\"300\" height=\"410\" data-imhwpb-asset-id=\"789476\"> Renovations for a beautiful yard[/caption]\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12 col-lg-1\">\r\n<p class=\"mod-reset\"><img class=\"alignnone wp-image-146 size-thumbnail\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/IMG_20211101_150730-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\"></p>\r\n\r\n<div class=\"\">\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\"></div>\r\n</div>','About Us','','inherit','closed','closed','','105-revision-v1','','','2022-07-14 18:03:12','2022-07-14 18:03:12','',105,'https://naplesirrigation.com/?p=362',0,'revision','',0),(357,1,'2022-07-07 15:26:05','2022-07-07 15:26:05','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 42px;\">\r\n<div class=\"col-md-5 col-xs-12 col-sm-12\">\r\n<h4 class=\"\">About Naples Irrigation</h4>\r\n<h4 class=\"\">d/b/a Hooper IRRIGATION</h4>\r\n<p class=\"\" style=\"font-size: 14px;\">About the Owner:&nbsp; &nbsp;Brad Hooper, a formal graduate of the University of Evansville, Indiana began his 40 year career in the Naples, Florida area with the formation of Hooper Irrigation in 1982.&nbsp; &nbsp; &nbsp;</p>\r\n<p class=\"\" style=\"font-size: 14px;\">The company offers a full complement of services to residential and multifamily homes, as well as, small commercial businesses in Naples and nearby communitiies.&nbsp;&nbsp;</p>\r\n<p class=\"\" style=\"font-size: 14px;\">&nbsp;Brad Hooper offers new innovative designed systems that fit his customer\'s landscaping and lawn requirements and at a price range tailored to his customer\'s needs.&nbsp; &nbsp;His designs are geared toward the prevention of the mishaps experienced with badly designed systems.&nbsp; &nbsp;</p>\r\n<p class=\"\" style=\"font-size: 14px;\">In addition to new installations, Hooper Irrigation specializes in renovations of existing systems, repair,&nbsp; and replacements of all components such as sprinkler heads, electrical valves, clocks and pumps to ensure a flawless customer experience.&nbsp;</p>\r\n<p class=\"\" style=\"font-size: 14px;\">To maintain a beautiful lawn or landscape for your home or business, Hooper Irrigation will provide personalized maintenance programs to fit your needs: monthly, bi-monthly, or quarterly programs are available to support your project.</p>\r\n<p class=\"\" style=\"font-size: 14px;\">Maintenance programs are one of the most important services we offer to prevent high water bills, broken sprinkler heads, oversprays, pipes, pump damage, valve, or even simply resetting clocks due to any State water regulations.</p>\r\n<p class=\"\" style=\"font-size: 14px;\">Hooper Irrigation has installed over 4,000 new systems and has serviced thousands of systems whether installed by Hooper Irrigation or not. Owner Brad Hooper guarantees his work and is well recognized and recommended in the industry.</p>\r\n<p class=\"\" style=\"font-size: 14px;\">We hope you will allow us the opportunity to help you with all your irrigation needs.</p>\r\n<p class=\"\" style=\"font-size: 14px;\">To learn more about how to sign up for our Maintenace Program.&nbsp; Please contact us today at 239-793-775.&nbsp;&nbsp;</p>\r\n<p class=\"\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" style=\"font-size: 14px;\" href=\"https://naplesirrigation.com/contact-us/\" target=\"_blank\" rel=\"noopener\">Contact Us</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n\r\n[caption id=\"attachment_179\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-179\" title=\"renovation of existing system \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/received_2444269415708471-220x300.jpeg\" alt=\"Renovations of existing system \" width=\"300\" height=\"410\" data-imhwpb-asset-id=\"789476\"> Renovations for a beautiful yard[/caption]\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\">\r\n<p class=\"mod-reset\"><img class=\"alignnone wp-image-146 size-thumbnail\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/IMG_20211101_150730-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\"></p>\r\n\r\n<div class=\"\">\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\"></div>\r\n</div>','About Us','','inherit','closed','closed','','105-revision-v1','','','2022-07-07 15:26:05','2022-07-07 15:26:05','',105,'https://naplesirrigation.com/?p=357',0,'revision','',0),(364,1,'2022-07-14 18:19:51','2022-07-14 18:19:51','<div class=\"boldgrid-section\" style=\"color: #000000; background-image: url(\'https://source.unsplash.com/MqJX_8EaStM/1920x1080\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"1175055\" data-image-url=\"https://source.unsplash.com/MqJX_8EaStM/1920x1080\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 120px; padding-bottom: 140px;\">\r\n<div class=\"col-md-7 col-sm-4 col-xs-12 col-lg-7\">\r\n<div class=\"\">\r\n<p class=\"\"><img class=\"wp-image-186 alignnone\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/cropped-20210313_120201-scaled-1-e1649096217790.jpg\" alt=\"Perfect Irrigation System\" width=\"667\" height=\"500\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-5 col-sm-8 col-xs-12 wedge-cta col-lg-5\" custom-classes=\"wedge-cta\">\r\n<h2 class=\"\">NAPLES IRRIGATION, d/ba/Hooper Irrigaiton, LLC</h2>\r\n<h2 class=\"\">lET US BRING YOUR YARD BACK TO LIFE</h2>\r\n<p class=\"\" style=\"font-size: 14px;\">BEST LAWN&nbsp; SPRINKLER REPAIR, MAINTENANCE , DESIGN&nbsp; SYSTEM&nbsp;</p>\r\n\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-16\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\"><a class=\"button-secondary btn btn-color-2 btn btn-border-color-1\" href=\"https://naplesirrigation.com/contact-us/\">CONTACT US TODAY</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color3-background-color color-3-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-12 col-lg-12\">\r\n<h2 class=\"\" style=\"text-align: center; font-size: 21px;\">Naples Irrigation d/b/a Hooper Irrigation is owned and operated by Brad Hooper who is a fully licensed and insured Irrigation expert in the Naples area for 40 years.</h2>\r\n<h2 class=\"\" style=\"text-align: center; font-size: 21px;\">What we offer to all our Customers:</h2>\r\n<h2 class=\"\" style=\"text-align: center; font-size: 21px;\">Innovative Designs to ensure the best irrigation system is installed for your individual yard or business and price range.</h2>\r\n<h2 class=\"\" style=\"text-align: center; font-size: 21px;\">Repair and Maintenance of all components including irrigation pumps, timers (clocks), valves, manifolds, and sprinkler heads. We suggest monthly maintenance to prevent any mishaps or issues but can offer a flexible schedule based on your needs.</h2>\r\n<h2 class=\"\" style=\"text-align: center; font-size: 21px;\">Renovation of existing irrigation systems that may be outdated, broken or damaged.</h2>\r\n<h2 class=\"\" style=\"text-align: center;\">See What We Can Offer</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-2 color1-color\" style=\"width: 65%;\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 90px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-4 col-lg-4\">\r\n<p class=\"\"><img class=\"bg-img bg-img-1 wp-image-273 aligncenter\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/IMG_20220128_155353-225x300.jpg\" alt=\"Renovation\" width=\"226\" height=\"301\" data-imhwpb-asset-id=\"695399\"></p>\r\n<p class=\"\">&nbsp;</p>\r\n&nbsp;\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Sprinkler Repair</h3>\r\n<p class=\"\" style=\"font-size: 14px;\">Sprinkler repair Iirrigation pumps, clocks, valves manifolds and heads</p>\r\n\r\n</div>\r\n<div class=\"col-xs-12 col-sm-6 col-md-4 col-lg-4\">\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Design &amp;</h3>\r\n<p class=\"\"><img class=\"bg-img bg-img-1 alignnone wp-image-135 size-medium\" style=\"color: #333333;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/20201221_152806-300x225.jpg\" alt=\"Maintenance irrigation programs \" width=\"300\" height=\"225\" data-imhwpb-asset-id=\"695400\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">&nbsp;Monthly Maintenance&nbsp;</h3>\r\n<p class=\"\" style=\"font-size: 14px;\">Fully licensed and insured.&nbsp; We take pride in our work and are deemed the best in Naples.&nbsp; &nbsp;Maintenance reduces costly mishaps</p>\r\n\r\n</div>\r\n<div class=\"col-xs-12 col-sm-6 col-md-4 col-lg-4\">\r\n<p class=\"\"><img class=\"bg-img bg-img-1 wp-image-180 size-medium\" title=\"Renovation irrigation services \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/received_656891985552879-220x300.jpeg\" alt=\"Repair Sprinkler system irrigaiton\" width=\"220\" height=\"300\" data-imhwpb-asset-id=\"695401\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Renovation</h3>\r\n<p class=\"\" style=\"font-size: 14px;\">If you want to experience the benefits of a customized Renovation our team is experienced 40 years in Naples</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color2-background-color color-2-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-12 col-lg-12\">\r\n<h2 class=\"\" style=\"text-align: center;\">Customer Testimonials</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-2 color1-color\" style=\"width: 65%;\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 40px;\">\r\n<div class=\"col-sm-6 col-md-3 col-xs-12 col-lg-3\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle wp-image-177  aligncenter\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/pumpirigationsupply-300x225.jpg\" alt=\"\" width=\"216\" height=\"162\" data-imhwpb-asset-id=\"695402\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\"><strong>Pump SUPPLY HOUSE of Naples</strong></p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\" style=\"font-size: 14px;\">Naples Irrigation , Brad Hooper is one of the best companies in the business to work with.&nbsp;&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12 col-lg-3\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-156 \" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/282_127_486_486_20201221_153238-768x1024.jpg\" alt=\"\" width=\"179\" height=\"179\" data-imhwpb-asset-id=\"695403\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\">Engle Denistry</p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\" style=\"font-size: 14px;\">Owner Brad Engle recommends, Naples Irrigation,&nbsp; Brad Hooper for your business\' irrigation needs.&nbsp; &nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12 col-lg-3\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-125\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_4YX0oj7gf8o-imhwpb-ut5s3lmwf6dg2wc.jpg\" alt=\"\" width=\"150\" height=\"150\" data-imhwpb-asset-id=\"695404\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\"><strong>Direct Industrial Supply</strong></p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\" style=\"font-size: 14px;\">Brad Hooper of Naples Irrigation is one of our best sprinkler designers and Installer. Highly recommend his services.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12 col-lg-3\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-126\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_8tN3flDTQBU-imhwpb-kxmpsoge3h4672l.jpg\" alt=\"\" width=\"169\" height=\"169\" data-imhwpb-asset-id=\"695405\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\">&nbsp;</p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\" style=\"font-size: 14px;\">I was so pleased with the sprinkler system Brad Hooper customized and designed for my flower garden.&nbsp; Now my landscaping looks beautiful every day.&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Welcome','','inherit','closed','closed','','103-revision-v1','','','2022-07-14 18:19:51','2022-07-14 18:19:51','',103,'https://naplesirrigation.com/?p=364',0,'revision','',0),(358,1,'2022-07-07 16:00:36','2022-07-07 16:00:36','<div class=\"boldgrid-section\" style=\"color: #000000; background-image: url(\'https://source.unsplash.com/MqJX_8EaStM/1920x1080\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"1175055\" data-image-url=\"https://source.unsplash.com/MqJX_8EaStM/1920x1080\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 120px; padding-bottom: 140px;\">\r\n<div class=\"col-md-7 col-sm-4 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\"><img class=\"wp-image-186 alignnone\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/cropped-20210313_120201-scaled-1-e1649096217790.jpg\" alt=\"Perfect Irrigation System\" width=\"667\" height=\"500\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-5 col-sm-8 col-xs-12 wedge-cta\" custom-classes=\"wedge-cta\">\r\n<h2 class=\"\">NAPLES IRRIGATION, d/ba/Hooper Irrigaiton, LLC</h2>\r\n<h2 class=\"\">lET US BRING YOUR YARD BACK TO LIFE</h2>\r\n<p class=\"\" style=\"font-size: 14px;\">BEST LAWN&nbsp; SPRINKLER REPAIR, MAINTENANCE , DESIGN&nbsp; SYSTEM&nbsp;</p>\r\n\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-16\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\"><a class=\"button-secondary btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1 btn btn-color-2 btn btn-border-color-1\" href=\"https://naplesirrigation.com/contact-us/\">CONTACT US TODAY</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color3-background-color color-3-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-12\">\r\n<h2 class=\"\" style=\"text-align: center; font-size: 21px;\">Naples Irrigation d/b/a Hooper Irrigation is owned and operated by Brad Hooper who is a fully licensed and insured Irrigation expert in the Naples area for 40 years.</h2>\r\n<h2 class=\"\" style=\"text-align: center; font-size: 21px;\">What we offer to all our Customers:</h2>\r\n<h2 class=\"\" style=\"text-align: center; font-size: 21px;\">Innovative Designs to ensure the best irrigation system is installed for your individual yard or business and price range.</h2>\r\n<h2 class=\"\" style=\"text-align: center; font-size: 21px;\">Repair and Maintenance of all components including irrigation pumps, timers (clocks), valves, manifolds, and sprinkler heads. We suggest monthly maintenance to prevent any mishaps or issues but can offer a flexible schedule based on your needs.</h2>\r\n<h2 class=\"\" style=\"text-align: center; font-size: 21px;\">Renovation of existing irrigation systems that may be outdated, broken or damaged.</h2>\r\n<h2 class=\"\" style=\"text-align: center;\">See What We Can Offer</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-2 color1-color\" style=\"width: 65%;\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 90px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-4\">\r\n<p class=\"\"><img class=\"bg-img bg-img-1 wp-image-273 aligncenter\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/IMG_20220128_155353-225x300.jpg\" alt=\"Renovation\" width=\"226\" height=\"301\" data-imhwpb-asset-id=\"695399\"></p>\r\n<p class=\"\">&nbsp;</p>\r\n&nbsp;\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Sprinkler Repair</h3>\r\n<p class=\"\" style=\"font-size: 14px;\">Sprinkler repair Iirrigation pumps, clocks, valves manifolds and heads</p>\r\n\r\n</div>\r\n<div class=\"col-xs-12 col-sm-6 col-md-4\">\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Design &amp;</h3>\r\n<p class=\"\"><img class=\"bg-img bg-img-1 alignnone wp-image-135 size-medium\" style=\"color: #333333;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/20201221_152806-300x225.jpg\" alt=\"Maintenance irrigation programs \" width=\"300\" height=\"225\" data-imhwpb-asset-id=\"695400\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">&nbsp;Monthly Maintenance&nbsp;</h3>\r\n<p class=\"\" style=\"font-size: 14px;\">Fully licensed and insured.&nbsp; We take pride in our work and are deemed the best in Naples.&nbsp; &nbsp;Maintenance reduces costly mishaps</p>\r\n\r\n</div>\r\n<div class=\"col-xs-12 col-sm-6 col-md-4\">\r\n<p class=\"\"><img class=\"bg-img bg-img-1 wp-image-180 size-medium\" title=\"Renovation irrigation services \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/received_656891985552879-220x300.jpeg\" alt=\"Repair Sprinkler system irrigaiton\" width=\"220\" height=\"300\" data-imhwpb-asset-id=\"695401\"></p>\r\n\r\n<h3 class=\"\" style=\"text-align: center; margin-top: 30px; margin-bottom: 20px;\">Renovation</h3>\r\n<p class=\"\" style=\"font-size: 14px;\">If you want to experience the benefits of a customized Renovation our team is experienced 40 years in Naples</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color2-background-color color-2-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-12\">\r\n<h2 class=\"\" style=\"text-align: center;\">Customer Testimonials</h2>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"bg-hr bg-hr-2 color1-color\" style=\"width: 65%;\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 40px;\">\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle alignnone wp-image-177 \" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/pumpirigationsupply-300x225.jpg\" alt=\"\" width=\"216\" height=\"162\" data-imhwpb-asset-id=\"695402\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\"><strong>Pump SUPPLY HOUSE of Naples</strong></p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\" style=\"font-size: 14px;\">Naples Irrigation , Brad Hooper is one of the best companies in the business to work with.&nbsp;&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-156 \" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/282_127_486_486_20201221_153238-768x1024.jpg\" alt=\"\" width=\"179\" height=\"179\" data-imhwpb-asset-id=\"695403\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\">Engle Denistry</p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\" style=\"font-size: 14px;\">Owner Brad Engle recommends, Naples Irrigation,&nbsp; Brad Hooper for your business\' irrigation needs.&nbsp; &nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-125\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_4YX0oj7gf8o-imhwpb-ut5s3lmwf6dg2wc.jpg\" alt=\"\" width=\"150\" height=\"150\" data-imhwpb-asset-id=\"695404\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\"><strong>Direct Industrial Supply</strong></p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\" style=\"font-size: 14px;\">Brad Hooper of Naples Irrigation is one of our best sprinkler designers and Installer. Highly recommend his services.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-sm-6 col-md-3 col-xs-12\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"margin-top: 30px;\"><img class=\"bg-img bg-img-circle aligncenter wp-image-126\" style=\"border-style: solid; border-width: 3px;\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/tmp_8tN3flDTQBU-imhwpb-kxmpsoge3h4672l.jpg\" alt=\"\" width=\"169\" height=\"169\" data-imhwpb-asset-id=\"695405\"></p>\r\n<p class=\"h5\" style=\"text-align: center;\">&nbsp;</p>\r\n<p class=\"\" style=\"text-align: center; margin-bottom: -15px;\"><i class=\"fa bg-inserted-icon fa-caret-up color4-color\" style=\"font-size: 42px; margin: 0px;\" aria-hidden=\"true\"> <span style=\"display: none;\">&nbsp;</span> </i></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div style=\"text-align: center; border-radius: 10px;\" class=\"bg-box bg-box-square color-4-text-contrast color4-background-color\">\r\n<p class=\"\" style=\"font-size: 14px;\">I was so pleased with the sprinkler system Brad Hooper customized and designed for my flower garden.&nbsp; Now my landscaping looks beautiful every day.&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Welcome','','inherit','closed','closed','','103-revision-v1','','','2022-07-07 16:00:36','2022-07-07 16:00:36','',103,'https://naplesirrigation.com/?p=358',0,'revision','',0),(360,1,'2022-07-14 17:35:04','2022-07-14 17:35:04','<div class=\"color-neutral-background-color color-neutral-text-contrast bg-background-color tmpl-gallery-12 boldgrid-section dynamic-gridblock\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 42px; padding-bottom: 42px;\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\">\r\n\r\n[caption id=\"attachment_309\" align=\"alignnone\" width=\"375\"]<img class=\"bg-img wp-image-309 \" title=\"Design Renovate Instal Repair Maintain\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/received_13189636486235891-220x300.jpeg\" alt=\"\" width=\"375\" height=\"511\"> NAPLES IRRIGATION PHOTOS[/caption]\r\n<p class=\"\"><img class=\"alignnone size-medium wp-image-192\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/20200801_150124-225x300.jpg\" alt=\"Repair Sprinkler system irrigaiton\" width=\"225\" height=\"300\"><img class=\"alignnone size-medium wp-image-171\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/20210313_120201-1-300x225.jpg\" alt=\"\" width=\"300\" height=\"225\"></p>\r\n\r\n<h5 class=\"\" style=\"margin-top: 30px;\">Design REnovate New Irrigation</h5>\r\n<p class=\"\">Naples Irrigation Gallery</p>\r\n<p class=\"\" style=\"margin-top: 20px;\"><a class=\"btn-color-2 btn btn-capitalize btn-raised btn-normal\" href=\"https://naplesirrigation.com/contact-us/\">Learn More</a></p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-6 col-lg-3\">\r\n<p class=\"\" style=\"margin-top: 25px;\"><img class=\"bg-img alignnone wp-image-308 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/0_18.75_300_187.5_received_10140475058628011-1-300x225.jpeg\" alt=\"\" width=\"300\" height=\"187\"></p>\r\n<p class=\"\" style=\"margin-top: 25px;\"><img class=\"bg-img alignnone wp-image-337 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/0_205_400_253.57142857143_received_321726983425382.jpeg\" alt=\"\" width=\"400\" height=\"253\"></p>\r\n<p class=\"\" style=\"margin-top: 25px;\"><img class=\"bg-img alignnone wp-image-304 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/0_271_400_251.04166666667_ENGLENAPLES-768x1024.jpg\" alt=\"\" width=\"400\" height=\"251\"></p>\r\n<p class=\"\" style=\"margin-top: 25px;\"><img class=\"bg-img alignnone wp-image-273 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/0_273_400_248.95833333333_IMG_20220128_155353-768x1024.jpg\" alt=\"\" width=\"400\" height=\"248\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-6 col-lg-3\">\r\n<p class=\"\"><img class=\"bg-img alignnone wp-image-333 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/3_0_219.79166666667_300_received_540117650841980.jpeg\" alt=\"\" width=\"219\" height=\"300\"></p>\r\n\r\n\r\n[caption id=\"attachment_334\" align=\"alignnone\" width=\"222\"]<img class=\"bg-img wp-image-334 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/received_1113209649411439-222x300.jpeg\" alt=\"\" width=\"222\" height=\"300\"> Sprinkler Pump replacement[/caption]\r\n<p class=\"\" style=\"margin-top: 25px;\"><img class=\"bg-img alignnone wp-image-301 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/0_271_400_251.04166666667_NAPLESENGLE-768x1024.jpg\" alt=\"\" width=\"400\" height=\"251\"></p>\r\n<p class=\"\" style=\"margin-top: 25px;\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"gallery-full-width tmpl-gallery-1 boldgrid-section dynamic-gridblock\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-3 col-sm-6 col-xs-6 col-lg-3\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-6 col-lg-3\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-6 col-lg-3\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-6 col-lg-3\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\">\r\n<div class=\"col-md-3 col-sm-6 col-xs-6 col-lg-3\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-6 col-lg-3\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-6 col-lg-3\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-6 col-lg-3\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\">\r\n\r\n&nbsp;\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Gallery','','inherit','closed','closed','','311-revision-v1','','','2022-07-14 17:35:04','2022-07-14 17:35:04','',311,'https://naplesirrigation.com/?p=360',0,'revision','',0),(361,1,'2022-07-14 17:53:38','2022-07-14 17:53:38','<div class=\"color-neutral-background-color color-neutral-text-contrast bg-background-color tmpl-gallery-12 boldgrid-section dynamic-gridblock\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 42px; padding-bottom: 42px;\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\">\r\n\r\n[caption id=\"attachment_309\" align=\"alignnone\" width=\"375\"]<img class=\"bg-img wp-image-309 \" title=\"Design Renovate Instal Repair Maintain\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/received_13189636486235891-220x300.jpeg\" alt=\"\" width=\"375\" height=\"511\"> NAPLES IRRIGATION PHOTOS[/caption]\r\n<p class=\"\"><img class=\"wp-image-192  alignleft\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/20200801_150124-225x300.jpg\" alt=\"Repair Sprinkler system irrigation\" width=\"304\" height=\"405\"><img class=\"alignnone size-medium wp-image-171\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/20210313_120201-1-300x225.jpg\" alt=\"\" width=\"300\" height=\"225\"></p>\r\n\r\n<h5 class=\"\" style=\"margin-top: 30px;\">Design REnovate New Irrigation</h5>\r\n<p class=\"\">Naples Irrigation Gallery</p>\r\n<p class=\"\" style=\"margin-top: 20px;\"><a class=\"btn-color-2 btn btn-capitalize btn-raised btn-normal\" href=\"https://naplesirrigation.com/contact-us/\">Learn More</a></p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-6 col-lg-3\">\r\n<p class=\"\" style=\"margin-top: 25px;\"><img class=\"bg-img alignnone wp-image-308 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/0_18.75_300_187.5_received_10140475058628011-1-300x225.jpeg\" alt=\"\" width=\"300\" height=\"187\"></p>\r\n<p class=\"\" style=\"margin-top: 25px;\"><img class=\"bg-img alignnone wp-image-337 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/0_205_400_253.57142857143_received_321726983425382.jpeg\" alt=\"\" width=\"400\" height=\"253\"></p>\r\n<p class=\"\" style=\"margin-top: 25px;\"><img class=\"bg-img alignnone wp-image-304 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/0_271_400_251.04166666667_ENGLENAPLES-768x1024.jpg\" alt=\"\" width=\"400\" height=\"251\"></p>\r\n<p class=\"\" style=\"margin-top: 25px;\"><img class=\"bg-img alignnone wp-image-273 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/0_273_400_248.95833333333_IMG_20220128_155353-768x1024.jpg\" alt=\"\" width=\"400\" height=\"248\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-6 col-lg-3\">\r\n<p class=\"\"><img class=\"bg-img alignnone wp-image-333 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/3_0_219.79166666667_300_received_540117650841980.jpeg\" alt=\"\" width=\"219\" height=\"300\"></p>\r\n\r\n\r\n[caption id=\"attachment_334\" align=\"alignnone\" width=\"222\"]<img class=\"bg-img wp-image-334 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/received_1113209649411439-222x300.jpeg\" alt=\"\" width=\"222\" height=\"300\"> Sprinkler Pump replacement[/caption]\r\n<p class=\"\" style=\"margin-top: 25px;\"><img class=\"bg-img alignnone wp-image-301 size-medium\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/04/0_271_400_251.04166666667_NAPLESENGLE-768x1024.jpg\" alt=\"\" width=\"400\" height=\"251\"></p>\r\n<p class=\"\" style=\"margin-top: 25px;\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"gallery-full-width tmpl-gallery-1 boldgrid-section dynamic-gridblock\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-3 col-sm-6 col-xs-6 col-lg-3\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-6 col-lg-3\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-6 col-lg-3\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-6 col-lg-3\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\">\r\n<div class=\"col-md-3 col-sm-6 col-xs-6 col-lg-3\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-6 col-lg-3\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-6 col-lg-3\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-6 col-lg-3\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\">\r\n\r\n&nbsp;\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Gallery','','inherit','closed','closed','','311-revision-v1','','','2022-07-14 17:53:38','2022-07-14 17:53:38','',311,'https://naplesirrigation.com/?p=361',0,'revision','',0),(363,1,'2022-07-14 18:06:20','2022-07-14 18:06:20','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 42px;\">\r\n<div class=\"col-md-5 col-xs-12 col-sm-12 col-lg-5\">\r\n<h4 class=\"\">About Naples Irrigation</h4>\r\n<h4 class=\"\">d/b/a Hooper IRRIGATION</h4>\r\n<p class=\"\" style=\"font-size: 14px;\">About the Owner:&nbsp; &nbsp;Brad Hooper, a formal graduate of the University of Evansville, Indiana began his 40 year career in the Naples, Florida area with the formation of Hooper Irrigation in 1982.&nbsp; &nbsp; &nbsp;</p>\r\n<p class=\"\" style=\"font-size: 14px;\">The company offers a full complement of services to residential and multifamily homes, as well as, small commercial businesses in Naples and nearby communities.&nbsp;&nbsp;</p>\r\n<p class=\"\" style=\"font-size: 14px;\">&nbsp;Brad Hooper offers new innovative designed systems that fit his customer\'s landscaping and lawn requirements and at a price range tailored to his customer\'s needs.&nbsp; &nbsp;His designs are geared toward the prevention of the mishaps experienced with badly designed systems.&nbsp; &nbsp;</p>\r\n<p class=\"\" style=\"font-size: 14px;\">In addition to new installations, Hooper Irrigation specializes in renovations of existing systems, repair,&nbsp; and replacements of all components such as sprinkler heads, electrical valves, clocks and pumps to ensure a flawless customer experience.&nbsp;</p>\r\n<p class=\"\" style=\"font-size: 14px;\">To maintain a beautiful lawn or landscape for your home or business, Hooper Irrigation will provide personalized maintenance programs to fit your needs: monthly, bi-monthly, or quarterly programs are available to support your project.</p>\r\n<p class=\"\" style=\"font-size: 14px;\">Maintenance programs are one of the most important services we offer to prevent high water bills, broken sprinkler heads, oversprays, pipes, pump damage, valve, or even simply resetting clocks due to any State water regulations.</p>\r\n<p class=\"\" style=\"font-size: 14px;\">Hooper Irrigation has installed over 4,000 new systems and has serviced thousands of systems whether installed by Hooper Irrigation or not. Owner Brad Hooper guarantees his work and is well recognized and recommended in the industry.</p>\r\n<p class=\"\" style=\"font-size: 14px;\">We hope you will allow us the opportunity to help you with all your irrigation needs.</p>\r\n<p class=\"\" style=\"font-size: 14px;\">To learn more about how to sign up for our Maintenace Program.&nbsp; Please contact us today at 239-793-775.&nbsp;&nbsp;</p>\r\n<p class=\"\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" style=\"font-size: 14px;\" href=\"https://naplesirrigation.com/contact-us/\" target=\"_blank\" rel=\"noopener\">Contact Us</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-xs-12 col-sm-12 col-lg-6\">\r\n\r\n[caption id=\"attachment_179\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-179\" title=\"renovation of existing system \" src=\"https://naplesirrigation.com/wp-content/uploads/2022/03/received_2444269415708471-220x300.jpeg\" alt=\"Renovations of existing system \" width=\"300\" height=\"410\" data-imhwpb-asset-id=\"789476\"> Renovations for a beautiful yard[/caption]\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12 col-lg-1\">\r\n<p class=\"mod-reset\"><img class=\"alignnone wp-image-146 size-thumbnail\" src=\"https://naplesirrigation.com/wp-content/uploads/2022/02/IMG_20211101_150730-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\"></p>\r\n\r\n<div class=\"\">\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\"></div>\r\n</div>','About Us','','inherit','closed','closed','','105-revision-v1','','','2022-07-14 18:06:20','2022-07-14 18:06:20','',105,'https://naplesirrigation.com/?p=363',0,'revision','',0),(370,1,'2025-01-25 22:07:39','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2025-01-25 22:07:39','0000-00-00 00:00:00','',0,'https://naplesirrigation.com/?p=370',0,'post','',0),(371,1,'2025-01-25 22:27:11','0000-00-00 00:00:00','','Auto Draft','','auto-draft','closed','closed','','','','','2025-01-25 22:27:11','0000-00-00 00:00:00','',0,'https://naplesirrigation.com/?post_type=bg_block&p=371',0,'bg_block','',0),(372,1,'2025-01-25 22:30:15','2025-01-25 22:30:15','{\n    \"crio::bgtfw_headings_typography\": {\n        \"value\": {\n            \"font-family\": \"Julius Sans One\",\n            \"line-height\": \"1.1\",\n            \"text-transform\": \"uppercase\",\n            \"variant\": \"regular\",\n            \"font-backup\": \"\",\n            \"font-weight\": \"400\",\n            \"font-style\": \"normal\"\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2025-01-25 22:28:56\"\n    }\n}','','','trash','closed','closed','','f7d92fd2-06d9-46bc-bf9c-be9f1894c774','','','2025-01-25 22:30:15','2025-01-25 22:30:15','',0,'https://naplesirrigation.com/?p=372',0,'customize_changeset','',0),(373,1,'2025-01-25 22:34:42','2025-01-25 22:34:42','{\n    \"crio::bgtfw_headings_typography\": {\n        \"value\": {\n            \"font-family\": \"Julius Sans One\",\n            \"line-height\": \"1.1\",\n            \"text-transform\": \"uppercase\",\n            \"variant\": \"regular\",\n            \"font-backup\": \"\",\n            \"font-weight\": \"400\",\n            \"font-style\": \"normal\"\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2025-01-25 22:34:42\"\n    }\n}','','','trash','closed','closed','','f773f0f5-0e4c-45a7-bb8c-ef5f02abec90','','','2025-01-25 22:34:42','2025-01-25 22:34:42','',0,'https://naplesirrigation.com/f773f0f5-0e4c-45a7-bb8c-ef5f02abec90/',0,'customize_changeset','',0),(374,1,'2025-01-25 22:36:50','0000-00-00 00:00:00','{\n    \"crio::bgtfw_site_title_typography\": {\n        \"value\": {\n            \"font-family\": \"Julius Sans One\",\n            \"font-size\": \"35px\",\n            \"text-transform\": \"uppercase\",\n            \"line-height\": \"1.1\",\n            \"variant\": \"regular\",\n            \"font-backup\": \"\",\n            \"font-weight\": \"400\",\n            \"font-style\": \"normal\"\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2025-01-25 22:36:50\"\n    }\n}','','','auto-draft','closed','closed','','815dff23-2220-4c31-b5fc-6273f37aae43','','','2025-01-25 22:36:50','0000-00-00 00:00:00','',0,'https://naplesirrigation.com/?p=374',0,'customize_changeset','',0),(375,1,'2025-01-27 18:28:32','0000-00-00 00:00:00','{\n    \"crio::bgtfw_headings_typography\": {\n        \"value\": {\n            \"font-family\": \"Julius Sans One\",\n            \"line-height\": \"1.1\",\n            \"text-transform\": \"uppercase\",\n            \"variant\": \"regular\",\n            \"font-backup\": \"\",\n            \"font-weight\": \"400\",\n            \"font-style\": \"normal\"\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2025-01-27 18:23:44\"\n    },\n    \"crio::bgtfw_site_title_typography\": {\n        \"value\": {\n            \"font-family\": \"Julius Sans One\",\n            \"font-size\": \"35px\",\n            \"text-transform\": \"uppercase\",\n            \"line-height\": \"1.1\",\n            \"variant\": \"regular\",\n            \"font-backup\": \"\",\n            \"font-weight\": \"400\",\n            \"font-style\": \"normal\"\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2025-01-27 18:28:32\"\n    }\n}','','','auto-draft','closed','closed','','b7406156-3da7-4c6d-863b-293e37c429fb','','','2025-01-27 18:28:32','2025-01-27 18:28:32','',0,'https://naplesirrigation.com/?p=375',0,'customize_changeset','',0);
/*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wp_posts` with 330 row(s)
--

--
-- Table structure for table `wp_term_relationships`
--

DROP TABLE IF EXISTS `wp_term_relationships`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_term_relationships` (
  `object_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `term_order` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`object_id`,`term_taxonomy_id`),
  KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_term_relationships`
--

LOCK TABLES `wp_term_relationships` WRITE;
/*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */;
INSERT INTO `wp_term_relationships` VALUES (343,4,0),(5,2,0),(6,2,0),(7,2,0),(8,2,0),(9,2,0),(11,3,0),(12,3,0),(104,4,0),(106,4,0),(108,4,0),(131,1,0);
/*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wp_term_relationships` with 12 row(s)
--

--
-- Table structure for table `wp_term_taxonomy`
--

DROP TABLE IF EXISTS `wp_term_taxonomy`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_term_taxonomy` (
  `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `taxonomy` varchar(32) NOT NULL DEFAULT '',
  `description` longtext NOT NULL,
  `parent` bigint(20) unsigned NOT NULL DEFAULT 0,
  `count` bigint(20) NOT NULL DEFAULT 0,
  PRIMARY KEY (`term_taxonomy_id`),
  UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
  KEY `taxonomy` (`taxonomy`)
) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `wp_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wp_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wp_term_taxonomy` VALUES (1,1,'category','',0,0),(2,2,'nav_menu','',0,5),(3,3,'nav_menu','',0,2),(4,4,'nav_menu','',0,4),(5,5,'template_locations','',0,0),(6,6,'template_locations','',0,0),(7,7,'template_locations','',0,0);
/*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wp_term_taxonomy` with 7 row(s)
--

--
-- Table structure for table `wp_termmeta`
--

DROP TABLE IF EXISTS `wp_termmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_termmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `term_id` (`term_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_termmeta`
--

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

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

--
-- Table structure for table `wp_terms`
--

DROP TABLE IF EXISTS `wp_terms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_terms` (
  `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) NOT NULL DEFAULT '',
  `slug` varchar(200) NOT NULL DEFAULT '',
  `term_group` bigint(10) NOT NULL DEFAULT 0,
  PRIMARY KEY (`term_id`),
  KEY `slug` (`slug`(191)),
  KEY `name` (`name`(191))
) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `wp_terms` WRITE;
/*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */;
INSERT INTO `wp_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'Social Media','social-media',0),(3,'social','social',0),(4,'primary','primary',0),(5,'Header','header',0),(6,'Sticky Header','sticky-header',0),(7,'Footer','footer',0);
/*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wp_terms` with 7 row(s)
--

--
-- Table structure for table `wp_usermeta`
--

DROP TABLE IF EXISTS `wp_usermeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_usermeta` (
  `umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL,
  PRIMARY KEY (`umeta_id`),
  KEY `user_id` (`user_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=33 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `wp_usermeta` WRITE;
/*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */;
INSERT INTO `wp_usermeta` VALUES (1,1,'nickname','nirrigation'),(2,1,'first_name',''),(3,1,'last_name',''),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'syntax_highlighting','true'),(7,1,'comment_shortcuts','false'),(8,1,'admin_color','fresh'),(9,1,'use_ssl','0'),(10,1,'show_admin_bar_front','true'),(11,1,'locale',''),(12,1,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'wp_user_level','10'),(14,1,'dismissed_wp_pointers',',wp410_dfw'),(15,1,'show_welcome_panel','1'),(16,1,'session_tokens','a:2:{s:64:\"d23ba8f8d51b14e277c9b259d7778b2e854c5c489998218cc65c6aeb00a298d9\";a:4:{s:10:\"expiration\";i:1738015658;s:2:\"ip\";s:13:\"73.107.192.59\";s:2:\"ua\";s:125:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36 Edg/132.0.0.0\";s:5:\"login\";i:1737842858;}s:64:\"7b39ba1f5fb3a5599a14f2504eb6a1d1a4818e6e9d433f9bbc325aea481e3ff4\";a:4:{s:10:\"expiration\";i:1738063442;s:2:\"ip\";s:14:\"173.231.218.25\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\";s:5:\"login\";i:1737890642;}}'),(17,1,'first_login','2022-02-23 19:32:07'),(18,1,'last_login','2023-01-25 18:11:51'),(19,1,'wp_user-settings','editor=tinymce&advImgDetails=show&libraryContent=browse&urlbutton=none&align=none'),(20,1,'wp_user-settings-time','1738002693'),(21,1,'meta-box-order_admin_page_my-inspiration','a:6:{s:10:\"container1\";s:19:\"current_inspiration\";s:10:\"container2\";s:13:\"pages_content\";s:10:\"container3\";s:19:\"customization,theme\";s:10:\"container4\";s:0:\"\";s:10:\"container6\";s:0:\"\";s:10:\"container5\";s:7:\"support\";}'),(22,1,'bglibDashboardOrder','1'),(23,1,'wp_dashboard_quick_press_last_post_id','370'),(24,1,'community-events-location','a:1:{s:2:\"ip\";s:12:\"73.107.192.0\";}'),(25,1,'nav_menu_recently_edited','4'),(26,1,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),(27,1,'metaboxhidden_nav-menus','a:3:{i:0;s:22:\"add-post-type-bg_block\";i:1;s:12:\"add-post_tag\";i:2;s:22:\"add-template_locations\";}'),(28,1,'closedpostboxes_page','a:0:{}'),(29,1,'metaboxhidden_page','a:3:{i:0;s:10:\"postcustom\";i:1;s:16:\"commentstatusdiv\";i:2;s:7:\"slugdiv\";}'),(30,1,'meta-box-order_page','a:3:{s:4:\"side\";s:56:\"postimagediv,submitdiv,crio-premium-page-header-override\";s:6:\"normal\";s:123:\"bgtfw-attributes-meta-box,butterbean-ui-boldgrid_seo,revisionsdiv,postcustom,commentstatusdiv,commentsdiv,slugdiv,authordiv\";s:8:\"advanced\";s:0:\"\";}'),(31,1,'screen_layout_page','2');
/*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wp_usermeta` with 31 row(s)
--

--
-- Table structure for table `wp_users`
--

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

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

LOCK TABLES `wp_users` WRITE;
/*!40000 ALTER TABLE `wp_users` DISABLE KEYS */;
INSERT INTO `wp_users` VALUES (1,'nirrigation','$P$BgcEXTdfeaetG8McmrNZ2J5JfGWZVj/','nirrigation','marie@aiinst.com','https://naplesirrigation.com','2022-02-23 19:31:11','1708458369:$P$Bqk3Ncdtngop4drCRMp9oTBHd4ZnE11',0,'nirrigation');
/*!40000 ALTER TABLE `wp_users` ENABLE KEYS */;
UNLOCK TABLES;

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

--
-- Table structure for table `wp_weforms_entries`
--

DROP TABLE IF EXISTS `wp_weforms_entries`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_weforms_entries` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `form_id` bigint(20) unsigned DEFAULT NULL,
  `user_id` bigint(20) unsigned DEFAULT NULL,
  `user_ip` int(11) unsigned DEFAULT NULL,
  `user_device` varchar(50) DEFAULT NULL,
  `referer` varchar(255) DEFAULT NULL,
  `status` varchar(10) DEFAULT 'publish',
  `created_at` datetime DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `form_id` (`form_id`)
) ENGINE=MyISAM AUTO_INCREMENT=987 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_weforms_entries`
--

LOCK TABLES `wp_weforms_entries` WRITE;
/*!40000 ALTER TABLE `wp_weforms_entries` DISABLE KEYS */;
INSERT INTO `wp_weforms_entries` VALUES (1,63,1,1226265744,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2022-04-04 23:23:54'),(2,63,0,1086029863,'Mozilla Firefox/Windows','https://naplesirrigation.com/contact-us/','publish','2022-04-07 18:08:05'),(3,63,1,1226265744,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/?customize_changeset_uuid=79bc2738-0ca9-4a9d-a29d-d920b7401481&customize_theme=crio&customize_messenger_channel=preview-0','publish','2022-04-07 18:33:48'),(4,63,0,1086029863,'Mozilla Firefox/Windows','https://naplesirrigation.com/contact-us/','publish','2022-04-07 19:49:19'),(5,241,1,1226265744,'Google Chrome/Windows','https://naplesirrigation.com/?weforms_preview=1&form_id=241','publish','2022-04-07 20:17:08'),(6,63,1,1226265744,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2022-04-07 20:22:06'),(7,241,1,1226265744,'Google Chrome/Windows','https://naplesirrigation.com/?weforms_preview=1&form_id=241','publish','2022-04-07 20:29:28'),(8,63,1,1226265744,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2022-04-07 20:29:58'),(9,241,1,1226265744,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2022-04-07 20:30:47'),(10,241,1,1226265744,'Google Chrome/Windows','https://naplesirrigation.com/?weforms_preview=1&form_id=241','publish','2022-04-07 20:36:35'),(11,241,0,1086029863,'Mozilla Firefox/Windows','https://naplesirrigation.com/contact-us/','publish','2022-04-07 21:04:15'),(12,63,0,1086029863,'Mozilla Firefox/Windows','https://naplesirrigation.com/contact-us/','publish','2022-04-07 21:07:13'),(13,241,0,1086029863,'Mozilla Firefox/Windows','https://naplesirrigation.com/contact-us/','publish','2022-04-07 21:07:45'),(14,63,0,1226265744,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2022-04-08 18:31:34'),(15,63,0,1086033128,'Mozilla Firefox/Windows','https://naplesirrigation.com/contact-us/','publish','2022-04-08 20:11:50'),(16,63,1,1086029932,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/?customize_changeset_uuid=eb6e7c39-5592-4382-958e-db26bb6d0961&customize_theme=crio&customize_messenger_channel=preview-4&customize_autosaved=on','publish','2022-07-06 19:43:22'),(17,63,0,391784502,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2022-07-12 23:50:44'),(18,63,0,760242182,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2022-07-15 13:55:10'),(19,63,0,2586160833,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2022-07-16 11:49:07'),(20,63,0,3283462885,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2022-08-07 08:34:07'),(21,63,0,401018702,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2022-08-07 22:18:43'),(22,63,0,3111824114,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2022-08-26 17:12:18'),(23,63,1,1226265744,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2022-09-06 17:18:40'),(24,63,0,3289401973,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2022-09-20 16:01:03'),(25,63,0,2845230489,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2022-09-29 00:33:20'),(26,63,0,1231753202,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2022-10-07 12:00:54'),(27,63,0,2426987351,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2022-10-09 16:46:46'),(28,63,0,3210782920,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2022-10-10 01:34:32'),(29,63,0,87961959,'Apple Safari/MAC OS','https://naplesirrigation.com/contact-us/','publish','2022-10-11 14:46:40'),(30,63,0,3257163806,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2022-10-27 10:06:13'),(31,63,0,1742850835,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2022-11-16 04:13:20'),(32,63,0,824558563,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2022-11-16 10:18:38'),(33,63,0,3257164050,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2022-11-16 13:58:38'),(34,63,0,3257164577,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2022-11-18 03:30:36'),(35,63,0,94190990,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2022-11-19 10:53:04'),(36,63,0,3210764151,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2022-11-22 07:15:31'),(37,63,0,1742850952,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2022-11-27 21:28:16'),(38,63,0,94177298,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2022-11-28 11:48:53'),(39,63,0,2426974410,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2022-12-02 21:44:52'),(40,63,0,3563462947,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2022-12-03 11:04:50'),(41,63,0,2824520760,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2022-12-06 12:55:17'),(42,63,0,2685667767,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2022-12-07 19:24:04'),(43,63,0,1741450682,'Mozilla Firefox/MAC OS','https://naplesirrigation.com/contact-us/','publish','2022-12-10 21:54:26'),(44,63,0,3743284711,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2022-12-11 08:41:26'),(45,63,0,1228288242,'Apple Safari/MAC OS','https://naplesirrigation.com/contact-us/','publish','2022-12-11 16:09:46'),(46,63,0,3211094601,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2022-12-11 23:31:41'),(47,63,0,3304454612,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2022-12-12 17:46:10'),(48,63,0,1439724303,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2022-12-14 22:41:07'),(49,63,0,3304574276,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2022-12-15 10:44:05'),(50,63,0,2685668283,'Apple Safari/MAC OS','https://naplesirrigation.com/contact-us/','publish','2022-12-16 15:04:17'),(51,63,0,2783437585,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2022-12-17 12:04:28'),(52,63,0,2586219797,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2022-12-18 18:41:19'),(53,63,0,3304574273,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2022-12-18 21:03:16'),(54,63,0,787170009,'Google Chrome/Windows','http://naplesirrigation.com/contact-us/','publish','2022-12-21 05:49:00'),(55,63,0,1742851061,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2022-12-22 08:43:50'),(56,63,0,391784694,'Mozilla Firefox/Windows','https://naplesirrigation.com/contact-us/','publish','2022-12-23 13:57:53'),(57,63,0,1742850508,'Mozilla Firefox/Windows','https://naplesirrigation.com/contact-us/','publish','2022-12-24 03:05:09'),(58,63,0,3743284588,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2022-12-27 20:57:59'),(59,63,0,3211179545,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2022-12-28 05:16:28'),(60,63,0,3743284598,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2022-12-31 07:56:35'),(61,63,0,2685668139,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2023-01-02 16:59:35'),(62,63,0,3109994181,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2023-01-06 08:57:24'),(63,63,0,3210804469,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2023-01-06 11:56:45'),(64,63,0,3211171780,'Mozilla Firefox/MAC OS','https://naplesirrigation.com/contact-us/','publish','2023-01-07 19:09:17'),(65,63,0,763229591,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2023-01-09 05:16:56'),(66,63,0,1892244904,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-01-10 04:04:24'),(67,63,0,3210764189,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2023-01-10 04:36:52'),(68,63,0,3257164303,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2023-01-10 09:33:37'),(69,63,0,392758771,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2023-01-11 10:12:37'),(70,63,0,3301217104,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2023-01-11 23:58:07'),(71,63,0,401024195,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2023-01-13 00:05:43'),(72,63,0,401024103,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-01-14 16:04:53'),(73,63,0,391784548,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-01-15 17:02:48'),(74,63,0,839079633,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-01-16 08:10:38'),(75,63,0,2901505682,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-01-18 00:32:12'),(76,63,0,3563463054,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-01-18 18:50:31'),(77,63,0,2823898508,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-01-18 19:51:30'),(78,63,0,3301187448,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-01-19 05:30:11'),(79,63,0,392758770,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-01-25 18:28:15'),(80,63,0,3301187479,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2023-01-26 21:59:06'),(81,63,0,3301390085,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2023-01-27 18:29:36'),(82,63,0,1805010608,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2023-01-28 01:33:47'),(83,63,0,3563469062,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2023-01-28 04:28:51'),(84,63,0,3563463054,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2023-01-30 17:36:21'),(85,63,0,3301187479,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2023-01-31 03:42:35'),(86,63,0,2340889679,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-02-01 12:14:02'),(87,63,0,2901505607,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2023-02-01 17:28:17'),(88,63,0,2823857582,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2023-02-01 21:54:20'),(89,63,0,3291676969,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2023-02-02 01:15:40'),(90,63,0,391781936,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2023-02-02 04:03:43'),(91,63,0,3291711279,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2023-02-02 18:09:05'),(92,63,0,3289402110,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2023-02-02 19:07:06'),(93,63,0,1805010831,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2023-02-04 02:46:45'),(94,63,0,392758597,'Mozilla Firefox/MAC OS','https://naplesirrigation.com/contact-us/','publish','2023-02-04 08:48:28'),(95,63,0,392758685,'Mozilla Firefox/MAC OS','https://naplesirrigation.com/contact-us/','publish','2023-02-04 13:43:18'),(96,63,0,1755777714,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2023-02-06 00:44:02'),(97,63,0,3301217027,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2023-02-06 03:56:11'),(98,63,0,391781467,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2023-02-07 11:29:04'),(99,63,0,764987185,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2023-02-08 15:28:28'),(100,63,0,1439724367,'Apple Safari/MAC OS','https://naplesirrigation.com/contact-us/','publish','2023-02-10 09:11:36'),(101,63,0,1758351768,'Apple Safari/MAC OS','https://naplesirrigation.com/contact-us/','publish','2023-02-11 00:12:08'),(102,63,0,3283462326,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-02-13 14:27:09'),(103,63,0,3211171662,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-02-13 17:42:01'),(104,63,0,2685667962,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-02-14 09:01:19'),(105,63,0,3743284872,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-02-14 21:03:53'),(106,63,0,764987359,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-02-15 07:40:24'),(107,63,0,2783403840,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-02-15 08:47:26'),(108,63,0,2917720674,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-02-16 11:18:51'),(109,63,0,2783403171,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-02-17 01:17:39'),(110,63,0,2685667678,'Mozilla Firefox/Windows','https://naplesirrigation.com/contact-us/','publish','2023-02-17 23:54:09'),(111,63,0,1742850800,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-02-19 01:44:44'),(112,63,0,3304574269,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-02-19 19:41:34'),(113,63,0,3423563396,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-02-21 21:58:28'),(114,63,0,3304576025,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2023-02-23 10:26:27'),(115,63,0,3301188205,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2023-02-24 04:43:16'),(116,63,0,3301188205,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2023-02-24 20:42:00'),(117,63,0,3283462330,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2023-02-25 04:27:13'),(118,63,0,3283462330,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2023-02-28 15:31:21'),(119,63,0,3423563398,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2023-03-01 05:46:32'),(120,63,0,3304215597,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2023-03-02 10:06:39'),(121,63,0,392758673,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2023-03-02 14:15:00'),(122,63,0,2626823283,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2023-03-03 04:13:20'),(123,63,0,3304447146,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2023-03-04 04:55:45'),(124,63,0,3304447029,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2023-03-05 08:57:15'),(125,63,0,1742850638,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2023-03-06 07:41:39'),(126,63,0,3301188241,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2023-03-06 08:09:45'),(127,63,0,3304223491,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2023-03-08 01:48:28'),(128,63,0,3304223516,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-03-12 05:52:39'),(129,63,0,3304576025,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-03-12 16:42:00'),(130,63,0,3304223258,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-03-12 19:20:05'),(131,63,0,647592773,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-03-14 00:41:03'),(132,63,0,3563469141,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-03-14 17:33:01'),(133,63,0,3304244151,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-03-15 05:35:31'),(134,63,0,3304447022,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-03-18 08:11:54'),(135,63,0,3289642125,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-03-22 08:55:08'),(136,63,0,623800745,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2023-03-23 18:48:19'),(137,63,0,3211178665,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2023-03-24 23:53:50'),(138,63,0,401018500,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2023-03-25 19:13:04'),(139,63,0,647590063,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2023-03-26 03:48:43'),(140,63,0,647590072,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2023-03-26 04:57:12'),(141,63,0,647590169,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2023-03-27 05:12:51'),(142,63,0,1603171861,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2023-03-27 10:43:53'),(143,63,0,1166705519,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-03-28 16:20:08'),(144,63,0,2050481020,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-03-31 10:08:49'),(145,63,0,3257163912,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2023-04-02 18:49:16'),(146,63,0,2709231270,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2023-04-06 07:11:08'),(147,63,0,1742596814,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2023-04-06 07:22:46'),(148,63,0,3211173055,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2023-04-06 09:44:11'),(149,63,0,1742850556,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2023-04-06 21:11:32'),(150,63,0,1742850405,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-04-08 17:34:32'),(151,63,0,771538257,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-04-10 04:06:48'),(152,63,0,3289440056,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-04-13 00:48:12'),(153,63,0,1735393437,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-04-13 23:13:08'),(154,63,0,3289440191,'Mozilla Firefox/Windows','https://naplesirrigation.com/contact-us/','publish','2023-04-14 15:03:22'),(155,63,0,3301217187,'Mozilla Firefox/Windows','https://naplesirrigation.com/contact-us/','publish','2023-04-15 00:25:55'),(156,63,0,3289558799,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-04-15 20:55:10'),(157,63,0,771538341,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-04-17 06:46:50'),(158,63,0,3050770445,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-04-20 00:49:17'),(159,63,0,620740539,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2023-04-24 16:51:30'),(160,63,0,3289643471,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2023-04-24 22:42:24'),(161,63,0,3210804474,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2023-04-26 20:21:53'),(162,63,0,620740217,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2023-04-27 22:04:50'),(163,63,0,3289642073,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2023-04-28 12:20:39'),(164,63,0,2901480551,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2023-05-01 17:16:42'),(165,63,0,1231778847,'Apple Safari/MAC OS','https://naplesirrigation.com/contact-us/','publish','2023-05-05 11:34:27'),(166,63,0,3301217106,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-05-07 07:06:43'),(167,63,0,1735393450,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-05-07 14:00:42'),(168,63,0,3229533417,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-05-07 23:48:49'),(169,63,0,3257164358,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-05-08 10:58:17'),(170,63,0,3257164358,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-05-11 03:30:01'),(171,63,0,3304223270,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-05-15 01:16:35'),(172,63,0,3563469264,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-05-15 09:37:22'),(173,63,0,3210744975,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-05-15 17:45:52'),(174,63,0,3158380868,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-05-15 22:29:24'),(175,63,0,3304223243,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-05-16 12:18:34'),(176,63,0,853108618,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-05-17 17:44:47'),(177,63,0,3257164211,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-05-17 21:29:57'),(178,63,0,2058662139,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2023-05-19 07:48:11'),(179,63,0,3289643338,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2023-05-22 12:39:11'),(180,63,0,3304206043,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2023-05-23 02:36:46'),(181,63,0,3304195083,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2023-05-23 14:01:24'),(182,63,0,3304337596,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2023-05-23 22:02:40'),(183,63,0,2901505619,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2023-05-25 01:12:20'),(184,63,0,3301407474,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2023-05-26 03:04:55'),(185,63,0,3304432460,'Mozilla Firefox/MAC OS','https://naplesirrigation.com/contact-us/','publish','2023-05-27 13:13:08'),(186,63,0,3096579403,'Mozilla Firefox/MAC OS','https://naplesirrigation.com/contact-us/','publish','2023-05-27 19:57:30'),(187,63,0,3257164441,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2023-05-29 07:13:06'),(188,63,0,2709231298,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2023-05-30 12:47:48'),(189,63,0,3304196658,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2023-05-31 03:29:45'),(190,63,0,3304206188,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2023-05-31 14:03:22'),(191,63,0,3343426410,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-05-31 19:27:24'),(192,63,0,3304128231,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2023-06-01 11:13:20'),(193,63,0,2584569774,'Apple Safari/MAC OS','https://naplesirrigation.com/contact-us/','publish','2023-06-02 19:35:15'),(194,63,0,3301407367,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-06-04 08:17:31'),(195,63,0,3257164182,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-06-06 02:02:33'),(196,63,0,3301406484,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-06-07 21:48:00'),(197,63,0,3257164328,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-06-12 12:21:08'),(198,63,0,3257164205,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-06-12 21:24:01'),(199,63,0,2709231253,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-06-13 16:56:55'),(200,63,0,2685667646,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-06-13 20:13:39'),(201,63,0,1439724486,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-06-13 23:30:27'),(202,63,0,3304195278,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-06-14 06:45:43'),(203,63,0,2783420239,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-06-14 16:07:21'),(204,63,0,2845237960,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2023-06-15 22:39:00'),(205,63,0,1805010500,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2023-06-16 06:59:49'),(206,63,0,3304244026,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2023-06-20 08:47:34'),(207,63,0,3304337467,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2023-06-21 21:49:53'),(208,63,0,3210804382,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2023-06-21 23:07:16'),(209,63,0,3235039665,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2023-06-22 21:05:19'),(210,63,0,2503879013,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2023-06-23 03:32:45'),(211,63,0,3211096614,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2023-06-27 13:44:25'),(212,63,0,1722103750,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2023-06-27 22:35:20'),(213,63,0,628680788,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2023-06-29 00:01:43'),(214,63,0,2783420190,'Apple Safari/MAC OS','https://naplesirrigation.com/contact-us/','publish','2023-07-01 04:06:48'),(215,63,0,1740370770,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-07-02 02:29:55'),(216,63,0,3257163982,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-07-02 15:30:41'),(217,63,0,1742850431,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-07-03 03:13:54'),(218,63,0,1722103445,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-07-03 04:57:49'),(219,63,0,455239836,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-07-07 13:30:40'),(220,63,0,3109242184,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-07-10 07:27:43'),(221,63,0,3257164021,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-07-11 11:01:02'),(222,63,0,3050723763,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-07-11 13:32:36'),(223,63,0,3304245289,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-07-11 16:13:16'),(224,63,0,3563469155,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-07-14 03:42:47'),(225,63,0,3257163945,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2023-07-14 23:34:43'),(226,63,0,1722103445,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-07-16 12:27:41'),(227,63,0,3304337546,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-07-17 04:50:58'),(228,63,0,2503879013,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-07-17 08:46:23'),(229,63,0,1439724445,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2023-07-17 13:59:15'),(230,63,0,628682473,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2023-07-20 03:40:14'),(231,63,0,3304205836,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2023-07-20 07:26:19'),(232,63,0,1603870708,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2023-07-21 09:38:08'),(233,63,0,3211096809,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2023-07-21 18:59:37'),(234,63,0,392758597,'Mozilla Firefox/MAC OS','https://naplesirrigation.com/contact-us/','publish','2023-07-27 09:41:32'),(235,63,0,1754009108,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2023-07-28 07:21:14'),(236,63,0,3304326300,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2023-07-28 08:07:34'),(237,63,0,1754009108,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2023-07-28 09:30:14'),(238,63,0,3304223353,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2023-07-28 13:49:58'),(239,63,0,3304239729,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2023-07-29 18:48:25'),(240,63,0,3304223368,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2023-07-31 04:38:18'),(241,63,0,2860693400,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2023-08-01 03:20:47'),(242,63,0,3304206023,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2023-08-01 15:59:42'),(243,63,0,3304326300,'Apple Safari/MAC OS','https://naplesirrigation.com/contact-us/','publish','2023-08-02 21:22:30'),(244,63,0,3257164137,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-08-03 15:56:39'),(245,63,0,392758771,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-08-04 04:05:46'),(246,63,0,2503136306,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-08-04 05:12:37'),(247,63,0,1754009092,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-08-04 13:22:35'),(248,63,0,2860693384,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-08-05 06:05:58'),(249,63,0,3304337546,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-08-05 13:09:29'),(250,63,0,2845237974,'Mozilla Firefox/Windows','https://naplesirrigation.com/contact-us/','publish','2023-08-10 23:52:33'),(251,63,0,620740349,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-08-12 17:46:29'),(252,63,0,631036116,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-08-12 20:55:01'),(253,63,0,3304245377,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-08-12 23:01:27'),(254,63,0,3304127036,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-08-13 09:09:36'),(255,63,0,3304076083,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-08-13 22:30:24'),(256,63,0,2685668260,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-08-15 04:39:59'),(257,63,0,1439375402,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-08-15 05:03:25'),(258,63,0,3240851142,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2023-08-16 15:00:03'),(259,63,0,3240851026,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2023-08-21 00:17:17'),(260,63,0,3228397256,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2023-08-24 01:56:32'),(261,63,0,620740341,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2023-08-29 10:30:39'),(262,63,0,2252979154,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-09-04 09:04:08'),(263,63,0,3240851142,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-09-05 09:46:34'),(264,63,0,620740451,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-09-05 10:00:25'),(265,63,0,3240851145,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-09-05 23:45:13'),(266,63,0,620740521,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-09-06 14:34:22'),(267,63,0,1722102886,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-09-06 16:30:02'),(268,63,0,2845232632,'Mozilla Firefox/Windows','https://naplesirrigation.com/contact-us/','publish','2023-09-08 20:22:29'),(269,63,0,100547267,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-09-11 22:21:57'),(270,63,0,3007159440,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-09-13 09:11:46'),(271,63,0,391338276,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2023-09-14 12:12:15'),(272,63,0,3257164377,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2023-09-14 14:12:42'),(273,63,0,3324805156,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2023-09-15 18:43:40'),(274,63,0,3228397091,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2023-09-16 01:27:03'),(275,63,0,2845232632,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2023-09-17 11:09:43'),(276,63,0,3257164344,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2023-09-20 23:52:25'),(277,63,0,3255162164,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2023-09-21 04:33:57'),(278,63,0,3304223373,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2023-09-22 17:08:59'),(279,63,0,3304244111,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2023-09-22 18:03:37'),(280,63,0,628684012,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2023-09-25 04:54:32'),(281,63,0,3304428971,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2023-09-25 21:38:39'),(282,63,0,391200211,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2023-09-28 13:00:42'),(283,63,0,2506550090,'Apple Safari/MAC OS','https://naplesirrigation.com/contact-us/','publish','2023-09-30 01:16:47'),(284,63,0,3304564837,'Apple Safari/MAC OS','https://naplesirrigation.com/contact-us/','publish','2023-09-30 03:33:40'),(285,63,0,2891853843,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-10-01 05:46:45'),(286,63,0,2506552007,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-10-01 18:52:11'),(287,63,0,3257164377,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-10-02 04:57:06'),(288,63,0,3304199394,'Mozilla Firefox/Windows','https://naplesirrigation.com/contact-us/','publish','2023-10-07 10:19:03'),(289,63,0,2860693400,'Mozilla Firefox/Windows','https://naplesirrigation.com/contact-us/','publish','2023-10-08 04:40:28'),(290,63,0,3304326304,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-10-08 12:17:56'),(291,63,0,1066218076,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-10-10 06:00:16'),(292,63,0,3210786217,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-10-10 23:50:02'),(293,63,0,3304429684,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-10-11 03:22:56'),(294,63,0,391157000,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-10-11 16:28:27'),(295,63,0,3158381073,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-10-11 23:18:46'),(296,63,0,3135879909,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-10-12 09:33:27'),(297,63,0,3304244110,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2023-10-13 14:29:09'),(298,63,0,647602417,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2023-10-13 14:53:12'),(299,63,0,3210804475,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2023-10-14 06:53:19'),(300,63,0,3304449339,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2023-10-14 06:59:35'),(301,63,0,3257164360,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2023-10-15 10:56:58'),(302,63,0,3304123807,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2023-10-15 15:17:55'),(303,63,0,3257164795,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2023-10-15 16:39:05'),(304,63,0,3304123840,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2023-10-16 12:20:33'),(305,63,0,761011338,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2023-10-18 05:20:26'),(306,63,0,3304337455,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2023-10-18 21:29:39'),(307,63,0,3304208785,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2023-10-20 19:33:25'),(308,63,0,2918177348,'Mozilla Firefox/MAC OS','https://naplesirrigation.com/contact-us/','publish','2023-10-22 12:04:14'),(309,63,0,1430360178,'Mozilla Firefox/MAC OS','https://naplesirrigation.com/contact-us/','publish','2023-10-22 18:32:16'),(310,63,0,3304123807,'Mozilla Firefox/MAC OS','https://naplesirrigation.com/contact-us/','publish','2023-10-23 00:53:28'),(311,63,0,1753294034,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2023-10-25 19:34:57'),(312,63,0,387176530,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2023-10-26 05:19:14'),(313,63,0,1722103728,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2023-10-26 21:26:08'),(314,63,0,2632669502,'Apple Safari/MAC OS','https://naplesirrigation.com/contact-us/','publish','2023-10-28 12:37:17'),(315,63,0,2892112372,'Apple Safari/MAC OS','https://naplesirrigation.com/contact-us/','publish','2023-10-28 19:54:39'),(316,63,0,3304447019,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-10-30 08:59:53'),(317,63,0,387142201,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-10-30 18:16:17'),(318,63,0,3304454992,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-10-30 21:48:24'),(319,63,0,2901499631,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-11-01 18:34:24'),(320,63,0,2917819419,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-11-01 19:02:44'),(321,63,0,3304454992,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-11-02 19:10:37'),(322,63,0,3304199339,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-11-05 00:34:28'),(323,63,0,2454115415,'Mozilla Firefox/Windows','https://naplesirrigation.com/contact-us/','publish','2023-11-05 07:53:21'),(324,63,0,3304437071,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-11-06 14:09:37'),(325,63,0,392796135,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-11-06 20:30:34'),(326,63,0,3423563429,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-11-07 02:08:03'),(327,63,0,392957987,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-11-09 20:50:46'),(328,63,0,1722103774,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-11-10 11:19:56'),(329,63,0,647652287,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2023-11-11 10:46:45'),(330,63,0,2901753589,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2023-11-11 10:56:50'),(331,63,0,2505576982,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2023-11-13 18:27:56'),(332,63,0,391278121,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2023-11-13 21:50:09'),(333,63,0,1439724422,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2023-11-15 10:54:27'),(334,63,0,3304128180,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2023-11-16 03:46:26'),(335,63,0,3558745569,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2023-11-16 06:28:20'),(336,63,0,764085788,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2023-11-16 06:51:40'),(337,63,0,1742850711,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2023-11-18 02:20:24'),(338,63,0,391276744,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2023-11-18 16:55:06'),(339,63,0,391336418,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2023-11-18 18:03:03'),(340,63,0,391336320,'Mozilla Firefox/MAC OS','https://naplesirrigation.com/contact-us/','publish','2023-11-20 20:11:30'),(341,63,0,3304239869,'Mozilla Firefox/MAC OS','https://naplesirrigation.com/contact-us/','publish','2023-11-20 20:55:50'),(342,63,0,2454107638,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2023-11-22 00:06:26'),(343,63,0,2328308486,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2023-11-23 11:35:06'),(344,63,0,3423563429,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2023-11-25 03:06:38'),(345,63,0,3050772935,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2023-11-25 12:17:48'),(346,63,0,3211172189,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2023-11-26 03:57:35'),(347,63,0,3211095325,'Apple Safari/MAC OS','https://naplesirrigation.com/contact-us/','publish','2023-11-27 03:00:32'),(348,63,0,391278140,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-11-27 17:34:55'),(349,63,0,3114166807,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-11-28 06:23:12'),(350,63,0,1742851048,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-11-28 10:58:08'),(351,63,0,391338157,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-11-29 01:40:12'),(352,63,0,391276579,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-11-29 07:47:19'),(353,63,0,1442450567,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-11-30 08:36:00'),(354,63,0,2328308515,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-11-30 10:35:52'),(355,63,0,3289558878,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-12-01 10:35:15'),(356,63,0,100538192,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-12-01 11:38:02'),(357,63,0,3257164736,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-12-01 17:44:00'),(358,63,0,391338068,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-12-02 03:42:18'),(359,63,0,3257164384,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-12-02 04:42:12'),(360,63,0,763761734,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-12-03 04:40:15'),(361,63,0,647652348,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-12-03 12:27:07'),(362,63,0,761210804,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-12-03 15:33:05'),(363,63,0,3211095584,'Mozilla Firefox/Windows','https://naplesirrigation.com/contact-us/','publish','2023-12-04 05:32:35'),(364,63,0,391277261,'Mozilla Firefox/Windows','https://naplesirrigation.com/contact-us/','publish','2023-12-04 19:38:29'),(365,63,0,2584757627,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-12-05 21:43:28'),(366,63,0,1722103515,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-12-06 08:24:27'),(367,63,0,3240436189,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-12-07 08:18:37'),(368,63,0,100543481,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-12-07 16:03:45'),(369,63,0,391155475,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-12-07 20:09:21'),(370,63,0,100538192,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-12-08 18:36:09'),(371,63,0,3257164156,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-12-10 00:06:55'),(372,63,0,763609630,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-12-10 05:42:11'),(373,63,0,2916441484,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2023-12-10 17:07:51'),(374,63,0,3634286784,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2023-12-10 23:45:16'),(375,63,0,391339249,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2023-12-12 02:11:44'),(376,63,0,763609751,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2023-12-12 02:55:00'),(377,63,0,3289643496,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2023-12-12 07:18:16'),(378,63,0,391339439,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2023-12-12 18:17:39'),(379,63,0,391339296,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2023-12-13 09:25:28'),(380,63,0,2328308496,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2023-12-14 15:15:47'),(381,63,0,2901514536,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2023-12-14 19:02:17'),(382,63,0,3289572731,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2023-12-14 20:23:36'),(383,63,0,100538192,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2023-12-15 08:10:33'),(384,63,0,3304245255,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2023-12-15 11:15:41'),(385,63,0,1792210034,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2023-12-16 15:20:25'),(386,63,0,391339481,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2023-12-17 14:17:47'),(387,63,0,1760104587,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2023-12-18 04:58:07'),(388,63,0,1868060642,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-12-21 07:17:27'),(389,63,0,2901538615,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2023-12-21 14:02:22'),(390,63,0,100560089,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2023-12-22 04:00:49'),(391,63,0,100538191,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2023-12-22 16:06:59'),(392,63,0,3211173106,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2023-12-22 20:26:23'),(393,63,0,3558745453,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2023-12-24 18:04:28'),(394,63,0,391197098,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2023-12-24 21:27:58'),(395,63,0,3625506010,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2023-12-25 02:03:15'),(396,63,0,3304199173,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-12-27 20:49:32'),(397,63,0,647590935,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-12-28 13:34:17'),(398,63,0,764556826,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-12-31 13:15:48'),(399,63,0,2901799656,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2023-12-31 23:28:20'),(400,63,0,3304337418,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-01-01 05:25:17'),(401,63,0,3119441738,'Mozilla Firefox/Windows','https://naplesirrigation.com/contact-us/','publish','2024-01-03 02:14:16'),(402,63,0,392827588,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-01-04 20:34:42'),(403,63,0,2891853835,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-01-05 07:01:56'),(404,63,0,765102739,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-01-05 08:34:07'),(405,63,0,2505577227,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-01-06 00:46:18'),(406,63,0,391276577,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2024-01-09 12:46:02'),(407,63,0,391277149,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-01-10 21:56:24'),(408,63,0,3304223724,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2024-01-11 21:46:27'),(409,63,0,2632669502,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2024-01-11 22:06:26'),(410,63,0,392829655,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2024-01-12 03:07:07'),(411,63,0,100559365,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2024-01-12 04:22:45'),(412,63,0,3304099666,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2024-01-12 06:49:54'),(413,63,0,1475970736,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2024-01-12 07:26:51'),(414,63,0,84474805,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2024-01-12 15:26:00'),(415,63,0,3118438537,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2024-01-12 15:28:25'),(416,63,0,760662166,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-01-14 08:33:32'),(417,63,0,391276797,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-01-15 06:52:49'),(418,63,0,3304326362,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-01-15 12:31:40'),(419,63,0,2596960745,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-01-16 05:25:35'),(420,63,0,3423563399,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-01-16 08:32:12'),(421,63,0,392827758,'Mozilla Firefox/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-01-17 05:35:27'),(422,63,0,3304223724,'Mozilla Firefox/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-01-17 15:29:27'),(423,63,0,1654644944,'Mozilla Firefox/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-01-17 19:31:39'),(424,63,0,391339490,'Mozilla Firefox/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-01-18 02:36:12'),(425,63,0,763792973,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-01-18 16:20:43'),(426,63,0,2454092210,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-01-19 10:37:10'),(427,63,0,391276729,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-01-20 06:46:12'),(428,63,0,3304432782,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-01-21 11:36:21'),(429,63,0,392829818,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-01-22 21:05:01'),(430,63,0,3423563431,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-01-26 02:27:52'),(431,63,0,3255121266,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-01-26 07:30:27'),(432,63,0,2901485008,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-01-26 18:57:47'),(433,63,0,391260288,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-01-27 04:42:49'),(434,63,0,763792621,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-01-27 06:29:34'),(435,63,0,3304223234,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-01-27 13:34:11'),(436,63,0,100559368,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-01-27 19:22:24'),(437,63,0,765102670,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-01-28 05:39:44'),(438,63,0,3423563431,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-01-28 23:41:09'),(439,63,0,3289641021,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-01-30 01:08:37'),(440,63,0,3158380666,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-01-30 16:14:49'),(441,63,0,3304072851,'Mozilla Firefox/Windows','https://naplesirrigation.com/contact-us/','publish','2024-01-31 22:04:33'),(442,63,0,391276696,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-02-01 09:46:01'),(443,63,0,391339225,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-02-01 10:14:54'),(444,63,0,2901518438,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-02-01 15:18:29'),(445,63,0,3118220651,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-02-03 03:34:11'),(446,63,0,1532656030,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-02-04 07:41:48'),(447,63,0,3256907796,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-02-04 13:35:08'),(448,63,0,391959026,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-02-04 18:49:40'),(449,63,0,3289643468,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-02-05 14:24:56'),(450,63,0,2632669502,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-02-05 15:25:12'),(451,63,0,3304206308,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-02-06 09:48:33'),(452,63,0,3304227595,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-02-06 17:03:40'),(453,63,0,392829524,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-02-06 18:41:48'),(454,63,0,1816028869,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-02-06 22:56:04'),(455,63,0,2918173749,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2024-02-07 19:45:32'),(456,63,0,392828050,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2024-02-07 20:36:28'),(457,63,0,3304199302,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-02-08 22:52:35'),(458,63,0,2902416689,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-02-09 02:29:28'),(459,63,0,2328305428,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2024-02-09 21:13:05'),(460,63,0,3304227728,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2024-02-10 02:05:33'),(461,63,0,3650391185,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2024-02-10 06:26:29'),(462,63,0,3304227711,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2024-02-12 06:33:20'),(463,63,0,3304245419,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-02-13 01:41:36'),(464,63,0,3240436169,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-02-13 02:57:58'),(465,63,0,3628704565,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-02-13 08:22:45'),(466,63,0,392827923,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-02-14 05:34:29'),(467,63,0,87963903,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-02-14 13:01:41'),(468,63,0,2328306478,'Mozilla Firefox/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-02-15 13:02:58'),(469,63,0,2328305428,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-02-16 15:34:31'),(470,63,0,3458837661,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-02-16 17:21:35'),(471,63,0,1760498466,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-02-16 17:42:22'),(472,63,0,315747684,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-02-17 02:32:32'),(473,63,0,3423563397,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-02-17 12:18:38'),(474,63,0,534756830,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-02-19 09:34:54'),(475,63,0,3514797895,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-02-19 15:34:04'),(476,63,0,1725192814,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-02-19 18:56:39'),(477,63,0,3628704626,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-02-20 02:29:39'),(478,63,0,3423563399,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-02-20 07:16:37'),(479,63,0,3098422410,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-02-21 04:02:33'),(480,63,0,391260294,'Apple Safari/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-02-21 13:15:58'),(481,63,0,1760515739,'Apple Safari/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-02-21 22:35:04'),(482,63,0,3119441787,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-02-22 17:33:39'),(483,63,0,767597857,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-02-23 01:44:45'),(484,63,0,1841602580,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-02-23 08:10:07'),(485,63,0,771504555,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-02-23 11:25:18'),(486,63,0,87961985,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-02-23 14:00:32'),(487,63,0,1654596976,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-02-23 14:37:54'),(488,63,0,1754260950,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-02-23 17:25:17'),(489,63,0,3304227684,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-02-23 17:27:17'),(490,63,0,1411455532,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-02-23 23:52:35'),(491,63,0,3423563429,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-02-24 10:18:04'),(492,63,0,3229547183,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-02-25 04:24:12'),(493,63,0,392827872,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-02-25 16:45:14'),(494,63,0,763609464,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-02-27 04:19:26'),(495,63,0,1760430513,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-02-27 09:26:42'),(496,63,0,1076582769,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-02-27 10:19:40'),(497,63,0,391260578,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-02-27 14:29:14'),(498,63,0,764550730,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-02-28 10:37:38'),(499,63,0,757835716,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-02-28 14:37:29'),(500,63,0,763792621,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-02-28 16:48:02'),(501,63,0,1760494205,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-02-28 22:46:39'),(502,63,0,2454092210,'Mozilla Firefox/Windows','https://naplesirrigation.com/contact-us/','publish','2024-02-29 03:12:36'),(503,63,0,87964395,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-02-29 05:26:34'),(504,63,0,1728308105,'Mozilla Firefox/Windows','https://naplesirrigation.com/contact-us/','publish','2024-03-01 02:36:29'),(505,63,0,771504412,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-03-01 19:05:28'),(506,63,0,2870410145,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-03-02 14:47:28'),(507,63,0,94732581,'Google Chrome/Windows','http://naplesirrigation.com/contact-us/','publish','2024-03-03 11:47:09'),(508,63,0,839099571,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-03-03 17:48:35'),(509,63,0,3304076179,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-03-03 21:03:17'),(510,63,0,783105554,'Google Chrome/Windows','http://naplesirrigation.com/contact-us/','publish','2024-03-04 01:39:42'),(511,63,0,767594924,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-03-04 07:39:29'),(512,63,0,3635244817,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-03-04 15:10:32'),(513,63,0,648720211,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-03-04 17:12:34'),(514,63,0,391260288,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-03-04 20:01:00'),(515,63,0,534756550,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-03-05 06:36:06'),(516,63,0,1733298756,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-03-05 13:27:33'),(517,63,0,3241702658,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-03-05 22:47:00'),(518,63,0,1761265677,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-03-06 01:04:43'),(519,63,0,771375306,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-03-06 01:53:26'),(520,63,0,3645210616,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-03-06 21:03:28'),(521,63,0,1603174176,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-03-06 21:44:28'),(522,63,0,1082743927,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2024-03-07 11:53:42'),(523,63,0,2454092210,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2024-03-07 14:18:24'),(524,63,0,3635242774,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2024-03-07 14:45:52'),(525,63,0,760944443,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2024-03-07 15:16:52'),(526,63,0,771320452,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2024-03-08 05:59:14'),(527,63,0,2454092210,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-03-08 16:23:37'),(528,63,0,1759452550,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-03-08 21:17:32'),(529,63,0,1580125746,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-03-09 04:32:05'),(530,63,0,2523646618,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-03-09 06:04:22'),(531,63,0,3199823312,'Google Chrome/Linux','http://naplesirrigation.com/contact-us/','publish','2024-03-09 16:40:47'),(532,63,0,2291143010,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2024-03-10 06:36:33'),(533,63,0,1360256218,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2024-03-10 08:08:39'),(534,63,0,1411509278,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2024-03-10 10:00:36'),(535,63,0,1760502774,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2024-03-10 11:42:39'),(536,63,0,1082731018,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2024-03-11 09:58:25'),(537,63,0,392828000,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2024-03-11 22:11:45'),(538,63,0,94188707,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2024-03-12 01:18:22'),(539,63,0,1760949252,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-03-12 07:36:14'),(540,63,0,1082741552,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-03-12 09:06:57'),(541,63,0,1760429081,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-03-12 09:41:42'),(542,63,0,392828000,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-03-12 15:54:58'),(543,63,0,1082746798,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-03-13 13:30:13'),(544,63,0,757703397,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-03-13 13:52:13'),(545,63,0,2585652055,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-03-13 14:12:03'),(546,63,0,1494707091,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-03-14 12:23:01'),(547,63,0,763792969,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-03-14 19:00:43'),(548,63,0,3323428952,'Mozilla Firefox/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-03-15 10:32:48'),(549,63,0,2901739333,'Mozilla Firefox/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-03-15 11:02:03'),(550,63,0,3304216979,'Mozilla Firefox/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-03-15 11:15:18'),(551,63,0,1532656021,'Mozilla Firefox/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-03-15 15:18:23'),(552,63,0,760662136,'Mozilla Firefox/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-03-15 21:31:47'),(553,63,0,392827954,'Mozilla Firefox/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-03-15 22:05:04'),(554,63,0,1760521118,'Mozilla Firefox/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-03-15 23:24:47'),(555,63,0,3488904732,'Mozilla Firefox/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-03-16 05:04:00'),(556,63,0,3002058377,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-03-16 09:36:06'),(557,63,0,1843845730,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-03-16 13:19:02'),(558,63,0,3229532234,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-03-16 20:22:50'),(559,63,0,648720211,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-03-17 12:14:24'),(560,63,0,623061856,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-03-17 13:10:53'),(561,63,0,2901753001,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-03-17 20:13:05'),(562,63,0,2321753386,'Google Chrome/MAC OS','http://naplesirrigation.com/contact-us/','publish','2024-03-18 11:20:40'),(563,63,0,2454107635,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-03-18 16:13:39'),(564,63,0,3650391187,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-03-18 19:48:29'),(565,63,0,2637490668,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-03-19 06:15:25'),(566,63,0,3324949074,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-03-19 16:08:19'),(567,63,0,3425453533,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-03-20 16:39:55'),(568,63,0,1307192499,'Apple Safari/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-03-21 14:42:53'),(569,63,0,392049916,'Apple Safari/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-03-21 15:50:42'),(570,63,0,1759483335,'Apple Safari/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-03-21 20:27:56'),(571,63,0,1654597199,'Apple Safari/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-03-21 22:36:23'),(572,63,0,3304199268,'Apple Safari/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-03-21 23:17:34'),(573,63,0,2502439308,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-03-22 07:35:26'),(574,63,0,764085790,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-03-22 22:07:29'),(575,63,0,3324960396,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-03-23 07:04:40'),(576,63,0,2892127271,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-03-23 10:07:38'),(577,63,0,3324948011,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-03-23 11:55:56'),(578,63,0,2392059999,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-03-23 14:09:37'),(579,63,0,647597049,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-03-23 17:51:52'),(580,63,0,763692038,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-03-23 19:04:37'),(581,63,0,1611167862,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-03-24 12:48:28'),(582,63,0,3211111972,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-03-24 16:55:56'),(583,63,0,2857611591,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-03-24 17:43:54'),(584,63,0,2585653102,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-03-25 12:00:30'),(585,63,0,773712561,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-03-25 17:28:15'),(586,63,0,763414402,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-03-25 22:25:19'),(587,63,0,1759488888,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-03-26 01:16:33'),(588,63,0,1505473571,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-03-26 07:05:06'),(589,63,0,392082073,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-03-26 10:52:32'),(590,63,0,1754266047,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-03-27 13:35:08'),(591,63,0,2478439145,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-03-27 19:56:18'),(592,63,0,3324949074,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-03-28 01:31:51'),(593,63,0,3050772738,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-03-28 09:21:56'),(594,63,0,3211101391,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-03-28 09:25:33'),(595,63,0,1806547241,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-03-28 20:41:45'),(596,63,0,1742596915,'Mozilla Firefox/Windows','https://naplesirrigation.com/contact-us/','publish','2024-03-29 10:30:52'),(597,63,0,647600129,'Mozilla Firefox/Windows','https://naplesirrigation.com/contact-us/','publish','2024-03-29 19:53:35'),(598,63,0,3098417436,'Mozilla Firefox/Windows','https://naplesirrigation.com/contact-us/','publish','2024-03-30 06:10:34'),(599,63,0,402090334,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-03-31 05:28:43'),(600,63,0,1806566845,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-03-31 11:58:15'),(601,63,0,765102702,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-03-31 14:21:35'),(602,63,0,3221483812,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-04-02 03:17:50'),(603,63,0,3304128051,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-04-03 18:32:22'),(604,63,0,2291147767,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-04-04 14:20:20'),(605,63,0,392965764,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-04-05 03:44:07'),(606,63,0,2504504413,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-04-06 15:43:07'),(607,63,0,37333075,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2024-04-07 08:54:43'),(608,63,0,2902413970,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2024-04-07 14:34:31'),(609,63,0,3257164390,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2024-04-09 10:08:46'),(610,63,0,1307192484,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2024-04-09 11:41:04'),(611,63,0,1040397922,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2024-04-09 13:22:25'),(612,63,0,2454107634,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-04-10 09:17:53'),(613,63,0,1307192465,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-04-10 18:01:01'),(614,63,0,2454107634,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-04-11 09:51:44'),(615,63,0,1760520260,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-04-12 02:59:20'),(616,63,0,3304199620,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-04-12 05:45:12'),(617,63,0,2454107634,'Mozilla Firefox/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-04-12 23:21:23'),(618,63,0,2454107634,'Mozilla Firefox/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-04-13 06:26:17'),(619,63,0,391160954,'Mozilla Firefox/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-04-13 18:19:44'),(620,63,0,629989185,'Mozilla Firefox/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-04-13 18:42:35'),(621,63,0,1307192465,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-04-16 03:07:50'),(622,63,0,1722093693,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-04-16 04:07:34'),(623,63,0,1738791948,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-04-16 09:09:29'),(624,63,0,2469212438,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-04-16 12:30:19'),(625,63,0,3558745483,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-04-17 06:30:40'),(626,63,0,3255119928,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-04-17 12:54:00'),(627,63,0,1760201737,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-04-18 12:40:38'),(628,63,0,2454107622,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-04-18 15:56:59'),(629,63,0,2469212438,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-04-19 04:07:03'),(630,63,0,1307192503,'Apple Safari/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-04-19 09:32:59'),(631,63,0,100559368,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-04-21 20:07:22'),(632,63,0,3407499521,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-04-22 00:36:24'),(633,63,0,1568647700,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-04-22 01:40:07'),(634,63,0,2469212438,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-04-23 18:29:55'),(635,63,0,1307192503,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-04-23 22:39:41'),(636,63,0,2626829448,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-04-24 03:34:06'),(637,63,0,3112805389,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-04-24 08:39:28'),(638,63,0,1759475803,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-04-24 19:39:37'),(639,63,0,2584294066,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-04-25 03:34:40'),(640,63,0,2469212438,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-04-25 20:37:53'),(641,63,0,2917664525,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-04-26 05:35:29'),(642,63,0,2502097929,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-04-26 19:00:30'),(643,63,0,2454092211,'Mozilla Firefox/Windows','https://naplesirrigation.com/contact-us/','publish','2024-04-27 02:20:02'),(644,63,0,3195068221,'Mozilla Firefox/Windows','https://naplesirrigation.com/contact-us/','publish','2024-04-27 18:38:19'),(645,63,0,3488904729,'Mozilla Firefox/Windows','https://naplesirrigation.com/contact-us/','publish','2024-04-28 01:04:23'),(646,63,0,760944460,'Mozilla Firefox/Windows','https://naplesirrigation.com/contact-us/','publish','2024-04-28 05:42:23'),(647,63,0,2902416844,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-04-28 12:25:00'),(648,63,0,1245695191,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-04-29 03:38:51'),(649,63,0,2469212438,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-04-30 02:19:41'),(650,63,0,3107450894,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-04-30 13:35:51'),(651,63,0,3229524951,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-04-30 17:08:09'),(652,63,0,3118728003,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-05-01 08:03:01'),(653,63,0,3132302257,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-05-01 10:52:40'),(654,63,0,1308062311,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-05-01 20:43:55'),(655,63,0,3039415827,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-05-02 08:49:42'),(656,63,0,3132302456,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-05-02 10:24:23'),(657,63,0,3360128189,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-05-03 06:30:02'),(658,63,0,3107450894,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-05-03 15:45:36'),(659,63,0,1532656021,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2024-05-04 07:04:22'),(660,63,0,3522351474,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2024-05-04 08:57:39'),(661,63,0,1532656021,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2024-05-04 21:43:37'),(662,63,0,3304563412,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-05-05 06:58:50'),(663,63,0,3211171482,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-05-05 07:45:30'),(664,63,0,3006331753,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-05-05 10:00:35'),(665,63,0,2918463270,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2024-05-06 12:37:11'),(666,63,0,1760105628,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2024-05-06 22:20:54'),(667,63,0,3292124238,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2024-05-06 22:31:35'),(668,63,0,2469212438,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2024-05-07 01:50:26'),(669,63,0,2502097938,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2024-05-07 10:25:51'),(670,63,0,2502097938,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2024-05-07 11:16:05'),(671,63,0,1532656021,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2024-05-07 14:11:16'),(672,63,0,3304089844,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2024-05-07 19:54:40'),(673,63,0,2709218705,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2024-05-08 01:40:24'),(674,63,0,755739683,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2024-05-08 07:57:30'),(675,63,0,3304438679,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2024-05-08 23:24:49'),(676,63,0,2504503661,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-05-10 01:21:44'),(677,63,0,2828530260,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-05-10 03:09:04'),(678,63,0,763546149,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-05-10 04:45:45'),(679,63,0,2502097938,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-05-10 14:52:08'),(680,63,0,1806661507,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-05-10 16:37:26'),(681,63,0,3304437778,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-05-10 22:10:26'),(682,63,0,2584766956,'Mozilla Firefox/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-05-12 09:01:58'),(683,63,0,3353737973,'Mozilla Firefox/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-05-13 00:53:16'),(684,63,0,1833266379,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-05-13 08:14:43'),(685,63,0,763546135,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-05-13 11:22:50'),(686,63,0,3211101213,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-05-13 15:04:10'),(687,63,0,3423563396,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-05-13 22:00:53'),(688,63,0,1425502028,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-05-14 00:59:41'),(689,63,0,3304437008,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-05-14 21:06:17'),(690,63,0,2902416848,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-05-15 10:42:48'),(691,63,0,757705639,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-05-15 23:06:55'),(692,63,0,3301313986,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-05-16 09:49:53'),(693,63,0,1760502614,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-05-17 09:41:06'),(694,63,0,1806545785,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-05-17 11:14:28'),(695,63,0,1077966097,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-05-18 00:26:19'),(696,63,0,1805547243,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-05-18 00:59:20'),(697,63,0,1114875221,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-05-19 11:09:44'),(698,63,0,2505577231,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-05-19 21:17:19'),(699,63,0,1425504046,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-05-19 21:30:03'),(700,63,0,2392061072,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-05-20 14:21:10'),(701,63,0,2252931650,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-05-22 07:22:38'),(702,63,0,2626828664,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-05-22 21:20:07'),(703,63,0,100447138,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-05-22 23:30:08'),(704,63,0,629997150,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-05-23 05:26:43'),(705,63,0,2505577232,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-05-25 08:50:51'),(706,63,0,3458839491,'Mozilla Firefox/Windows','https://naplesirrigation.com/contact-us/','publish','2024-05-26 04:55:15'),(707,63,0,3002052582,'Mozilla Firefox/Windows','https://naplesirrigation.com/contact-us/','publish','2024-05-26 09:30:29'),(708,63,0,3114495047,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-05-28 21:11:43'),(709,63,0,3283462885,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-05-29 02:51:22'),(710,63,0,3423563431,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-05-29 12:26:58'),(711,63,0,3423563397,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-05-29 18:55:03'),(712,63,0,2454064914,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-05-30 00:03:53'),(713,63,0,1307192510,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-05-30 06:14:19'),(714,63,0,1654645403,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-05-30 12:00:15'),(715,63,0,3512960779,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-05-31 16:17:13'),(716,63,0,757810902,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-06-01 05:55:26'),(717,63,0,392829460,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2024-06-02 12:57:57'),(718,63,0,3114495047,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2024-06-02 20:03:30'),(719,63,0,3458839491,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2024-06-04 03:21:18'),(720,63,0,758997620,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2024-06-04 04:54:05'),(721,63,0,581965362,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2024-06-04 04:59:42'),(722,63,0,3116372170,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2024-06-04 12:03:37'),(723,63,0,534378509,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2024-06-05 02:24:04'),(724,63,0,839080848,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2024-06-05 05:00:15'),(725,63,0,602914351,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2024-06-05 16:59:18'),(726,63,0,1541011745,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2024-06-05 19:33:15'),(727,63,0,757705579,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-06-06 18:49:49'),(728,63,0,3458835639,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-06-06 22:03:10'),(729,63,0,2454107623,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-06-07 10:30:58'),(730,63,0,1406886022,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-06-08 05:36:32'),(731,63,0,1567819646,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-06-08 09:19:01'),(732,63,0,3111687075,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-06-09 19:42:43'),(733,63,0,757809274,'Mozilla Firefox/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-06-10 01:33:39'),(734,63,0,2626828723,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-06-11 22:08:53'),(735,63,0,100536984,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-06-13 04:49:31'),(736,63,0,2366317572,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-06-13 17:05:44'),(737,63,0,2709216592,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-06-14 09:29:54'),(738,63,0,3350975403,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-06-14 23:55:18'),(739,63,0,2505598542,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-06-15 20:09:07'),(740,63,0,3002058319,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-06-15 22:44:47'),(741,63,0,1970800935,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-06-17 05:47:00'),(742,63,0,2328303629,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-06-19 00:48:19'),(743,63,0,2505577228,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-06-19 07:03:11'),(744,63,0,760662959,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-06-19 11:05:04'),(745,63,0,2735075672,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-06-19 20:15:43'),(746,63,0,2502097936,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-06-19 20:31:28'),(747,63,0,2366352539,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-06-19 20:34:52'),(748,63,0,1439378846,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-06-20 09:50:31'),(749,63,0,1439371090,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-06-20 13:30:55'),(750,63,0,1807060321,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-06-23 13:20:00'),(751,63,0,3249591212,'Mozilla Firefox/Windows','https://naplesirrigation.com/contact-us/','publish','2024-06-24 12:12:55'),(752,63,0,2256167873,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-06-25 04:18:05'),(753,63,0,3110656627,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-06-25 09:11:34'),(754,63,0,2502097936,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-06-26 01:53:21'),(755,63,0,3258787997,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-06-26 09:46:10'),(756,63,0,2731846765,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-06-26 15:11:00'),(757,63,0,2626828658,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-06-26 23:30:22'),(758,63,0,2505576978,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-06-27 02:51:04'),(759,63,0,2735075677,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-06-27 12:51:57'),(760,63,0,1761500318,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-06-27 20:26:34'),(761,63,0,3048301722,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-06-28 03:40:09'),(762,63,0,2735030606,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-06-28 08:39:20'),(763,63,0,3628704713,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-06-28 13:41:11'),(764,63,0,1806681204,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-06-29 19:30:27'),(765,63,0,3323459555,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-06-30 02:28:15'),(766,63,0,839348996,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-06-30 18:27:34'),(767,63,0,2626828612,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2024-07-01 09:22:37'),(768,63,0,3112483424,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2024-07-01 11:46:23'),(769,63,0,2901754468,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-07-02 06:32:31'),(770,63,0,3235039389,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-07-02 12:58:53'),(771,63,0,3109766474,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-07-02 15:26:46'),(772,63,0,3563469153,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-07-02 19:56:51'),(773,63,0,3558744510,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2024-07-03 06:26:54'),(774,63,0,1734946880,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2024-07-03 17:26:42'),(775,63,0,2917833422,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2024-07-03 18:24:19'),(776,63,0,3423563430,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2024-07-04 06:24:41'),(777,63,0,3512828910,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2024-07-04 13:16:51'),(778,63,0,1702912899,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2024-07-04 23:50:39'),(779,63,0,757809621,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2024-07-05 03:15:49'),(780,63,0,760944509,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2024-07-06 00:12:32'),(781,63,0,1532656021,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-07-06 10:38:19'),(782,63,0,759391037,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-07-06 12:15:31'),(783,63,0,2833484825,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-07-06 14:05:33'),(784,63,0,3324344651,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-07-06 18:59:57'),(785,63,0,3132298958,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-07-06 23:03:52'),(786,63,0,520498942,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-07-07 01:07:22'),(787,63,0,392954972,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-07-07 07:49:11'),(788,63,0,755875680,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-07-08 02:33:17'),(789,63,0,3423563428,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-07-08 04:03:17'),(790,63,0,3112805386,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-07-09 00:27:35'),(791,63,0,1532656030,'Mozilla Firefox/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-07-09 07:21:25'),(792,63,0,3423563429,'Mozilla Firefox/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-07-09 08:38:02'),(793,63,0,2916286594,'Mozilla Firefox/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-07-09 09:52:52'),(794,63,0,3211171964,'Mozilla Firefox/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-07-09 10:24:51'),(795,63,0,2504503599,'Mozilla Firefox/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-07-09 19:35:09'),(796,63,0,760662297,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-07-10 07:12:47'),(797,63,0,839107848,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-07-10 08:45:30'),(798,63,0,3110656627,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-07-10 18:03:30'),(799,63,0,2454107622,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-07-10 22:33:35'),(800,63,0,2833484942,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-07-11 00:04:15'),(801,63,0,770549840,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-07-11 12:49:50'),(802,63,0,3301364632,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-07-11 18:36:19'),(803,63,0,2454107622,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-07-11 22:16:37'),(804,63,0,3510279600,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-07-12 09:55:49'),(805,63,0,648738082,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-07-13 13:26:07'),(806,63,0,1439376450,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-07-14 07:17:33'),(807,63,0,3522352017,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-07-14 18:53:25'),(808,63,0,2454107622,'Apple Safari/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-07-15 12:48:21'),(809,63,0,1541011874,'Apple Safari/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-07-15 15:39:18'),(810,63,0,600527022,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-07-16 05:47:50'),(811,63,0,760662281,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-07-16 10:16:47'),(812,63,0,2454107622,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-07-16 17:38:30'),(813,63,0,755875659,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-07-17 01:04:44'),(814,63,0,2454092211,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-07-18 00:21:23'),(815,63,0,3335199958,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-07-18 06:41:12'),(816,63,0,1654595880,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-07-18 10:01:20'),(817,63,0,3423563397,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-07-18 10:20:04'),(818,63,0,2454092211,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-07-19 00:54:31'),(819,63,0,3116372152,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-07-20 05:10:13'),(820,63,0,2454092201,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-07-20 22:54:33'),(821,63,0,3112483654,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-07-21 10:47:48'),(822,63,0,1226262142,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-07-21 15:27:39'),(823,63,0,2252947683,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-07-22 05:18:25'),(824,63,0,3168044970,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-07-22 10:10:47'),(825,63,0,2256167898,'Mozilla Firefox/Windows','https://naplesirrigation.com/contact-us/','publish','2024-07-23 08:14:32'),(826,63,0,1654645267,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-07-25 05:44:50'),(827,63,0,1654645253,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-07-26 12:16:23'),(828,63,0,2505577227,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-07-27 02:04:46'),(829,63,0,761262944,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-07-27 06:10:03'),(830,63,0,3584660632,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-07-27 08:10:23'),(831,63,0,2626823251,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-07-28 18:35:28'),(832,63,0,100538189,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2024-07-31 04:06:22'),(833,63,0,3416215856,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-07-31 04:37:15'),(834,63,0,3118036753,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-07-31 04:45:39'),(835,63,0,1439464533,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-07-31 11:24:02'),(836,63,0,839099395,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-07-31 21:48:27'),(837,63,0,94189528,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2024-08-01 12:15:07'),(838,63,0,2502097925,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2024-08-03 02:22:50'),(839,63,0,3416215853,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2024-08-03 11:53:08'),(840,63,0,2505577231,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-08-04 11:33:06'),(841,63,0,760944436,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-08-05 00:22:49'),(842,63,0,3301221394,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-08-05 05:37:55'),(843,63,0,2454064933,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-08-05 11:27:01'),(844,63,0,2502097977,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-08-05 16:12:24'),(845,63,0,764556822,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-08-06 12:48:59'),(846,63,0,2454064942,'Mozilla Firefox/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-08-07 12:13:28'),(847,63,0,1835968804,'Mozilla Firefox/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-08-07 16:54:35'),(848,63,0,1806681204,'Mozilla Firefox/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-08-08 06:38:42'),(849,63,0,757839774,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-08-08 10:24:40'),(850,63,0,3522998138,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-08-08 11:00:01'),(851,63,0,1806681204,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-08-10 12:35:37'),(852,63,0,3335199947,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-08-10 15:15:25'),(853,63,0,2735075633,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-08-11 06:55:05'),(854,63,0,622058954,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-08-11 09:47:39'),(855,63,0,622058954,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-08-11 15:37:05'),(856,63,0,1654645306,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-08-12 04:50:16'),(857,63,0,3625506042,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-08-12 14:04:30'),(858,63,0,2454064931,'Apple Safari/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-08-12 21:34:51'),(859,63,0,760662966,'Apple Safari/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-08-13 05:47:39'),(860,63,0,2328306476,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-08-13 06:01:07'),(861,63,0,2505576974,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-08-16 07:21:43'),(862,63,0,3261510910,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-08-17 04:43:08'),(863,63,0,2588539425,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-08-17 15:29:28'),(864,63,0,760663022,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-08-18 09:26:03'),(865,63,0,759830562,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-08-18 15:45:45'),(866,63,0,94178857,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-08-18 17:06:17'),(867,63,0,759830562,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-08-19 23:29:22'),(868,63,0,3650391179,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-08-21 01:01:15'),(869,63,0,1835968774,'Mozilla Firefox/Windows','https://naplesirrigation.com/contact-us/','publish','2024-08-21 21:58:19'),(870,63,0,3112805395,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-08-22 05:51:35'),(871,63,0,392055310,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-08-22 12:31:21'),(872,63,0,391349104,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-08-22 16:05:19'),(873,63,0,2596954567,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-08-23 15:52:08'),(874,63,0,839348312,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-08-23 18:45:14'),(875,63,0,392055310,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-08-23 20:50:42'),(876,63,0,2790847976,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-08-25 01:33:37'),(877,63,0,2454064940,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-08-26 03:53:56'),(878,63,0,763792969,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2024-08-29 00:12:55'),(879,63,0,1439378705,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-08-29 13:54:33'),(880,63,0,1731249418,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-08-29 18:05:00'),(881,63,0,1822812197,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-08-29 22:36:51'),(882,63,0,763792969,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-08-30 06:12:00'),(883,63,0,1654645400,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2024-08-30 11:00:59'),(884,63,0,3650391179,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2024-08-30 20:36:38'),(885,63,0,3112805388,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2024-08-31 01:17:25'),(886,63,0,763792623,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-09-02 16:33:41'),(887,63,0,1835968787,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-09-03 10:49:47'),(888,63,0,3335199938,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-09-03 18:20:40'),(889,63,0,763792623,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-09-04 09:41:35'),(890,63,0,1532655760,'Mozilla Firefox/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-09-05 05:58:46'),(891,63,0,2584594616,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-09-07 19:58:28'),(892,63,0,2654179480,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-09-08 08:12:44'),(893,63,0,534378507,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-09-09 13:20:24'),(894,63,0,392757378,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-09-10 05:27:20'),(895,63,0,763792623,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-09-10 07:42:56'),(896,63,0,1439378849,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-09-10 16:10:02'),(897,63,0,2454064928,'Apple Safari/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-09-11 04:51:58'),(898,63,0,1439378728,'Apple Safari/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-09-11 08:53:57'),(899,63,0,3112805386,'Apple Safari/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-09-11 10:36:56'),(900,63,0,1760818184,'Apple Safari/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-09-11 13:56:44'),(901,63,0,3116121350,'Apple Safari/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-09-11 14:11:42'),(902,63,0,1439378817,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-09-12 08:29:19'),(903,63,0,1760818184,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-09-13 05:23:33'),(904,63,0,3335199903,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-09-15 17:05:50'),(905,63,0,3116371994,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-09-15 18:58:41'),(906,63,0,3650391184,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-09-16 23:28:09'),(907,63,0,2454064932,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-09-18 09:21:57'),(908,63,0,2505578955,'Mozilla Firefox/Windows','https://naplesirrigation.com/contact-us/','publish','2024-09-19 12:42:41'),(909,63,0,3265030053,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-09-19 18:06:03'),(910,63,0,391260442,'Mozilla Firefox/Windows','https://naplesirrigation.com/contact-us/','publish','2024-09-19 19:59:52'),(911,63,0,37333482,'Mozilla Firefox/Windows','https://naplesirrigation.com/contact-us/','publish','2024-09-20 03:05:43'),(912,63,0,37333324,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-09-20 13:32:46'),(913,63,0,3240249482,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-09-22 03:21:12'),(914,63,0,3292190311,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-09-24 05:58:41'),(915,63,0,3304374286,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-09-24 16:58:56'),(916,63,0,3249591239,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-09-25 05:37:36'),(917,63,0,763683794,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2024-09-26 10:53:38'),(918,63,0,761062743,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-09-27 08:26:34'),(919,63,0,1082738972,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2024-09-28 18:56:12'),(920,63,0,2291147103,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2024-09-29 07:45:56'),(921,63,0,391362856,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2024-10-01 01:53:51'),(922,63,0,1702912851,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-10-01 13:44:20'),(923,63,0,1806474453,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-10-01 14:27:10'),(924,63,0,3625507603,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-10-03 03:24:39'),(925,63,0,1760514490,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-10-03 10:26:58'),(926,63,0,839079581,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-10-03 20:38:26'),(927,63,0,3116385996,'Mozilla Firefox/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-10-04 12:45:27'),(928,63,0,2918178924,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-10-05 22:28:47'),(929,63,0,3119441865,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-10-06 04:08:32'),(930,63,0,2626828584,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-10-06 22:53:21'),(931,63,0,3107498846,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-10-07 00:51:47'),(932,63,0,1348545432,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-10-07 22:08:23'),(933,63,0,846356212,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-10-08 07:37:13'),(934,63,0,1822815117,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-10-08 12:48:38'),(935,63,0,3304212151,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-10-09 10:26:52'),(936,63,0,755503946,'Apple Safari/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-10-10 08:08:13'),(937,63,0,3058021305,'Apple Safari/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-10-10 08:42:53'),(938,63,0,3240419703,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-10-11 16:16:10'),(939,63,0,2505577224,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-10-13 00:30:51'),(940,63,0,1807060461,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-10-13 05:42:17'),(941,63,0,3304446085,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-10-14 20:32:55'),(942,63,0,1082740084,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-10-16 04:46:11'),(943,63,0,2343886997,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-10-16 07:47:10'),(944,63,0,391349097,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-10-16 19:51:31'),(945,63,0,3058020973,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-10-16 23:43:28'),(946,63,0,3168127505,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-10-17 12:06:17'),(947,63,0,622057829,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-10-19 16:15:56'),(948,63,0,1731249486,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-10-21 16:27:18'),(949,63,0,2454064917,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-10-22 09:26:14'),(950,63,0,2502096326,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-10-22 11:54:01'),(951,63,0,2454064920,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-10-23 09:01:30'),(952,63,0,622057814,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-10-23 16:12:07'),(953,63,0,1654645480,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-10-24 03:58:33'),(954,63,0,3240066843,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-10-24 14:21:22'),(955,63,0,3558367686,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-10-24 15:28:14'),(956,63,0,622057814,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2024-10-25 05:08:24'),(957,63,0,1532655755,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2024-10-25 07:00:21'),(958,63,0,1807057429,'Mozilla Firefox/Windows','https://naplesirrigation.com/contact-us/','publish','2024-10-25 07:18:08'),(959,63,0,622057814,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-10-26 03:44:08'),(960,63,0,391236634,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2024-10-27 21:08:13'),(961,63,0,1226164044,'Apple Safari/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-10-28 14:09:31'),(962,63,0,2502096329,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2024-10-29 01:08:56'),(963,63,0,2626828611,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2024-10-29 09:41:23'),(964,63,0,1757528949,'Google Chrome/Linux','https://naplesirrigation.com/contact-us/','publish','2024-10-29 18:57:17'),(965,63,0,2502096329,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-10-30 01:21:16'),(966,63,0,2502096329,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-10-30 12:28:17'),(967,63,0,391349084,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-11-01 14:40:28'),(968,63,0,1654645481,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-11-01 19:24:58'),(969,63,0,1482912681,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2024-11-02 03:35:35'),(970,63,0,2328312813,'Mozilla Firefox/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-11-02 04:43:01'),(971,63,0,2454064925,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-11-04 23:47:33'),(972,63,0,2925488486,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-11-05 02:45:33'),(973,63,0,2918177436,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-11-05 15:34:46'),(974,63,0,622057815,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-11-05 22:49:59'),(975,63,0,2783421769,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-11-06 06:52:25'),(976,63,0,3253309316,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-11-06 07:43:29'),(977,63,0,1542674807,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-11-06 11:16:41'),(978,63,0,2454064920,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-11-07 01:24:33'),(979,63,0,1114871134,'Google Chrome/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-11-07 15:38:37'),(980,63,0,622057815,'Apple Safari/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-11-08 14:31:27'),(981,63,0,2918463388,'Apple Safari/MAC OS','https://naplesirrigation.com/contact-us/','publish','2024-11-08 15:59:16'),(982,63,0,622057833,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-11-09 09:57:32'),(983,63,0,1532655765,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-11-09 18:09:47'),(984,63,0,2454064937,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2024-11-10 22:24:35'),(985,63,0,1231798331,'Google Chrome/Windows','https://naplesirrigation.com/contact-us/','publish','2025-01-25 21:26:12'),(986,63,0,839348331,'Mozilla Firefox/Linux','https://naplesirrigation.com/contact-us/','publish','2025-01-26 15:34:19');
/*!40000 ALTER TABLE `wp_weforms_entries` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wp_weforms_entries` with 986 row(s)
--

--
-- Table structure for table `wp_weforms_entrymeta`
--

DROP TABLE IF EXISTS `wp_weforms_entrymeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_weforms_entrymeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `weforms_entry_id` bigint(20) unsigned DEFAULT NULL,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `meta_key` (`meta_key`(250)),
  KEY `entry_id` (`weforms_entry_id`)
) ENGINE=MyISAM AUTO_INCREMENT=3942 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_weforms_entrymeta`
--

LOCK TABLES `wp_weforms_entrymeta` WRITE;
/*!40000 ALTER TABLE `wp_weforms_entrymeta` DISABLE KEYS */;
INSERT INTO `wp_weforms_entrymeta` VALUES (1,1,'name_1','marie| |'),(2,1,'email_2','marie@aiinst.com'),(3,1,'text_3','Work needed'),(4,1,'textarea_4','call me'),(5,2,'name_1','marie| | jongkind'),(6,2,'email_2','marie@aiinst.com'),(7,2,'text_3','test'),(8,2,'textarea_4','test'),(9,3,'name_1','marie| |'),(10,3,'email_2','marie@aiinst.com'),(11,3,'text_3','test'),(12,3,'textarea_4','test'),(13,4,'name_1','| |'),(14,4,'email_2','marie@aiinst.com'),(15,4,'text_3','test'),(16,4,'textarea_4','test'),(17,5,'name','mo| |'),(18,5,'email','marie@aiinst.com'),(19,5,'message','test'),(20,6,'name_1','marie| |'),(21,6,'email_2','marie@aiinst.com'),(22,6,'text_3','test'),(23,6,'textarea_4','test'),(24,7,'name','mo| |'),(25,7,'email','marie@aiinst.com'),(26,7,'message','test'),(27,8,'name_1','marie| |'),(28,8,'email_2','marie@aiinst.com'),(29,8,'text_3','test'),(30,8,'textarea_4','test'),(31,9,'name','mo| |'),(32,9,'email','marie@aiinst.com'),(33,9,'message','test'),(34,10,'name','mo| |'),(35,10,'email','marie@aiinst.com'),(36,10,'message','test'),(37,11,'name','mo| |'),(38,11,'email','MARIE@AIINST.COM'),(39,11,'message','test'),(40,12,'name_1','marie| |'),(41,12,'email_2','marie@aiinst.com'),(42,12,'text_3','test'),(43,12,'textarea_4','test'),(44,13,'name','mari| |'),(45,13,'email','MARIE@AIINST.COM'),(46,13,'message','test'),(47,13,'date___time',''),(48,13,'hooperirriagation_gmail_com',''),(49,13,'email_address_2',''),(50,14,'name_1','Marie| | JONGKIND'),(51,14,'email_2','directindustrialsupply@gmail.com'),(52,14,'text_3','Test'),(53,14,'textarea_4','Test'),(54,15,'name_1','marie| |'),(55,15,'email_2','marie@aiinst.com'),(56,15,'text_3','test'),(57,15,'textarea_4','test'),(58,16,'name_1','MARIE| |'),(59,16,'email_2','MARIE@AIINST.COM'),(60,16,'text_3','CALL US FOR AN ESTIMATE'),(61,16,'textarea_4','CALL US'),(62,17,'name_1','Eric Jones| | Jones'),(63,17,'email_2','eric.jones.z.mail@gmail.com'),(64,17,'text_3','Strike when the iron’s hot'),(65,17,'textarea_4','Hey there, I just found your site, quick question… My name’s Eric, I found naplesirrigation.com after doing a quick search – you showed up near the top of the rankings, so whatever you’re doing for SEO, looks like it’s working well. So here’s my question – what happens AFTER someone lands on your site? Anything? Research tells us at least 70% of the people who find your site, after a quick once-over, they disappear… forever. That means that all the work and effort you put into getting them to show up, goes down the tubes. Why would you want all that good work – and the great site you’ve built – go to waste? Because the odds are they’ll just skip over calling or even grabbing their phone, leaving you high and dry. But here’s a thought… what if you could make it super-simple for someone to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket? You can – thanks to revolutionary new software that can literally make that first call happen NOW. Talk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number. It lets you know IMMEDIATELY – so that you can talk to that lead while they’re still there at your site. You know, strike when the iron’s hot! CLICK HERE https://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works. When targeting leads, you HAVE to act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better! That’s why you should check out our new SMS Text With Lead feature as well… once you’ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. Imagine how powerful this could be – even if they don’t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility. Just this alone could be a game changer to make your website even more effective. Strike when the iron’s hot! CLICK HERE https://jumboleadmagnet.com to learn more about everything Talk With Web Visitor can do for your business – you’ll be amazed. Thanks and keep up the great work! Eric PS: Talk With Web Visitor offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! It even includes International Long Distance Calling. Stop wasting money chasing eyeballs that don’t turn into paying customers. CLICK HERE https://jumboleadmagnet.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=naplesirrigation.com'),(66,18,'name_1','Mike Johnson| | Johnson'),(67,18,'email_2','freeaiwriting@gmail.com'),(68,18,'text_3','Are you still open for business?'),(69,18,'textarea_4','Dear, In my search for an entrepreneur to use the latest AI tool for free, I came across naplesirrigation.com. With this AI tool, you write content 10 times faster and more creatively. The AI creates text for your blogs, social media and even filmscripts and books. You can check it out via the link below: freeaiwriting.com Kind regards, Mike Johnson Free ai writing'),(70,19,'name_1','Mike Johnson| | Johnson'),(71,19,'email_2','freeaiwriting@gmail.com'),(72,19,'text_3','Are you still open for business?'),(73,19,'textarea_4','Dear, In my search for an entrepreneur to use the latest AI tool for free, I came across naplesirrigation.com. With this AI tool, you write content 10 times faster and more creatively. The AI creates text for your blogs, social media and even filmscripts and books. You can check it out via the link below: freeaiwriting.com Kind regards, Mike Johnson Free ai writing'),(74,20,'name_1','Email Influence| | Influence'),(75,20,'email_2','contact@emailinfluence.xyz'),(76,20,'text_3','Missing Out on Email Marketing?'),(77,20,'textarea_4','Are you missing out on email marketing for your site? Running a site is a full time job. With limited time and resources, it be difficult to put energy in marketing your business. But with email marketing, promoting your business becomes a whole lot easier. Receive your free guide here https://emailinfluence.xyz/email/?e8x2_579b1c.io To remove your site from our list visit https://emailinfluence.xyz/unsubscribe/'),(78,21,'name_1','Eric Jones| | Jones'),(79,21,'email_2','ericjonesmyemail@gmail.com'),(80,21,'text_3','Cool website!'),(81,21,'textarea_4','Cool website! My name’s Eric, and I just found your site - naplesirrigation.com - while surfing the net. You showed up at the top of the search results, so I checked you out. Looks like what you’re doing is pretty cool. But if you don’t mind me asking – after someone like me stumbles across naplesirrigation.com, what usually happens? Is your site generating leads for your business? I’m guessing some, but I also bet you’d like more… studies show that 7 out 10 who land on a site wind up leaving without a trace. Not good. Here’s a thought – what if there was an easy way for every visitor to “raise their hand” to get a phone call from you INSTANTLY… the second they hit your site and said, “call me now.” You can – Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know IMMEDIATELY – so that you can talk to that lead while they’re literally looking over your site. CLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works. Time is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better! That’s why we built out our new SMS Text With Lead feature… because once you’ve captured the visitor’s phone number, you can automatically start a text message (SMS) conversation. Think about the possibilities – even if you don’t close a deal then and there, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Wouldn’t that be cool? CLICK HERE https://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business. You could be converting up to 100X more leads today! Eric PS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(82,22,'name_1','Eric Jones| | Jones'),(83,22,'email_2','ericjonesmyemail@gmail.com'),(84,22,'text_3','Why not TALK with your leads?'),(85,22,'textarea_4','My name’s Eric and I just found your site naplesirrigation.com. It’s got a lot going for it, but here’s an idea to make it even MORE effective. Talk With Web Visitor – CLICK HERE https://boostleadgeneration.com for a live demo now. Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site. And once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation… and if they don’t take you up on your offer then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. CLICK HERE https://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business. The difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today! Eric PS: Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Don’t keep losing them. Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(86,23,'name_1','marie| |'),(87,23,'email_2','marie@aiinst.com'),(88,23,'text_3','Test'),(89,23,'textarea_4','Availablity?'),(90,24,'name_1','Eric Jones| | Jones'),(91,24,'email_2','ericjonesmyemail@gmail.com'),(92,24,'text_3','Cool website!'),(93,24,'textarea_4','Cool website! My name’s Eric, and I just found your site - naplesirrigation.com - while surfing the net. You showed up at the top of the search results, so I checked you out. Looks like what you’re doing is pretty cool. But if you don’t mind me asking – after someone like me stumbles across naplesirrigation.com, what usually happens? Is your site generating leads for your business? I’m guessing some, but I also bet you’d like more… studies show that 7 out 10 who land on a site wind up leaving without a trace. Not good. Here’s a thought – what if there was an easy way for every visitor to “raise their hand” to get a phone call from you INSTANTLY… the second they hit your site and said, “call me now.” You can – Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know IMMEDIATELY – so that you can talk to that lead while they’re literally looking over your site. CLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works. Time is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better! That’s why we built out our new SMS Text With Lead feature… because once you’ve captured the visitor’s phone number, you can automatically start a text message (SMS) conversation. Think about the possibilities – even if you don’t close a deal then and there, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Wouldn’t that be cool? CLICK HERE https://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business. You could be converting up to 100X more leads today! Eric PS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(94,25,'name_1','Christin Ampt| | Ampt'),(95,25,'email_2','hacker@info-service.com.tw'),(96,25,'text_3','Your Site Has Been Hacked'),(97,25,'textarea_4','Your Site Has Been Hacked PLEASE FORWARD THIS EMAIL TO SOMEONE IN YOUR COMPANY WHO IS ALLOWED TO MAKE IMPORTANT DECISIONS! We have hacked your website https://naplesirrigation.com and extracted your databases. How did this happen? Our team has found a vulnerability within your site that we were able to exploit. After finding the vulnerability we were able to get your database credentials and extract your entire database and move the information to an offshore server. What does this mean? We will systematically go through a series of steps of totally damaging your reputation. First your database will be leaked or sold to the highest bidder which they will use with whatever their intentions are. Next if there are e-mails found they will be e-mailed that their information has been sold or leaked and your https://naplesirrigation.com was at fault thusly damaging your reputation and having angry customers/associates with whatever angry customers/associates do. Lastly any links that you have indexed in the search engines will be de-indexed based off of blackhat techniques that we used in the past to de-index our targets. How do I stop this? We are willing to refrain from destroying your site’s reputation for a small fee. The current fee is $2500 in bitcoins (BTC). Please send the bitcoin to the following Bitcoin address (Copy and paste as it is case sensitive): bc1qmghwkrrxlh62k4r530lgfxucum65087ya00wvz Once you have paid we will automatically get informed that it was your payment. Please note that you have to make payment within 7 days after receiving this e-mail or the database leak, e-mails dispatched, and de-index of your site WILL start! How do I get Bitcoins? You can easily buy bitcoins via several websites or even offline from a Bitcoin-ATM. What if I don’t pay? If you decide not to pay, we will start the attack at the indicated date and uphold it until you do, there’s no counter measure to this, you will only end up wasting more money trying to find a solution. We will completely destroy your reputation amongst google and your customers. This is not a hoax, do not reply to this email, don’t try to reason or negotiate, we will not read any replies. Once you have paid we will stop what we were doing and you will never hear from us again! Please note that Bitcoin is anonymous and no one will find out that you have complied.'),(98,26,'name_1','Tricia| | Olsen'),(99,26,'email_2','TriciaO@sandcastlecm.com'),(100,26,'text_3','Request Documents'),(101,26,'textarea_4','Good morning, I am reaching out from Sandcastle Community Management regarding Bermuda Gardens. In order to pay your invoice, I need your W9, license and certificate of insurance. Please send to email provided and I will get you set up as a vendor and process the payment. Thank you, Tricia Olsen, CAM.'),(102,27,'name_1','Eric Jones| | Jones'),(103,27,'email_2','ericjonesmyemail@gmail.com'),(104,27,'text_3','Strike when the iron’s hot'),(105,27,'textarea_4','Hey there, I just found your site, quick question… My name’s Eric, I found naplesirrigation.com after doing a quick search – you showed up near the top of the rankings, so whatever you’re doing for SEO, looks like it’s working well. So here’s my question – what happens AFTER someone lands on your site? Anything? Research tells us at least 70% of the people who find your site, after a quick once-over, they disappear… forever. That means that all the work and effort you put into getting them to show up, goes down the tubes. Why would you want all that good work – and the great site you’ve built – go to waste? Because the odds are they’ll just skip over calling or even grabbing their phone, leaving you high and dry. But here’s a thought… what if you could make it super-simple for someone to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket? You can – thanks to revolutionary new software that can literally make that first call happen NOW. Talk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number. It lets you know IMMEDIATELY – so that you can talk to that lead while they’re still there at your site. You know, strike when the iron’s hot! CLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works. When targeting leads, you HAVE to act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better! That’s why you should check out our new SMS Text With Lead feature as well… once you’ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. Imagine how powerful this could be – even if they don’t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility. Just this alone could be a game changer to make your website even more effective. Strike when the iron’s hot! CLICK HERE https://boostleadgeneration.com to learn more about everything Talk With Web Visitor can do for your business – you’ll be amazed. Thanks and keep up the great work! Eric PS: Talk With Web Visitor offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! It even includes International Long Distance Calling. Stop wasting money chasing eyeballs that don’t turn into paying customers. CLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(106,28,'name_1','Minna Schubert| | Schubert'),(107,28,'email_2','no-reply@aror.pl'),(108,28,'text_3','Your Website Has Been Compromised'),(109,28,'textarea_4','PLEASE FORWARD THiS EMAiL TO SOMEONE íN YOUR COMPANY WHO íS ALLOWED TO MAKE íMPORTANT DECiSiONS! We have hacked your website https://naplesirrigation.com and extracted your databases. How díd thís happen? Our team has found a vulnerabílíty withín your síte that we were able to exploit. After findíng the vulnerabílity we were able to get your database credentials and extract your entire database and move the ínformation to an offshore server. What does thís mean? We will systematícally go through a series of steps of totally damaging your reputatíon. Fírst your database wíll be leaked or sold to the híghest bídder which they wíll use with whatever theír intentíons are. Next if there are e-mails found they wíll be e-mailed that their informatíon has been sold or leaked and your site https://naplesirrigation.com was at fault thusly damagíng your reputatíon and havíng angry customers/assocíates wíth whatever angry customers/assocíates do. Lastly any links that you have indexed ín the search engínes will be de-indexed based off of blackhat techniques that we used ín the past to de-index our targets. How do i stop thís? We are willíng to refrain from destroying your site’s reputation for a small fee. The current fee is $3000 in bítcoíns (BTC). Please send the bítcoín to the followíng Bitcoin address (Make sure to copy and paste): 33yxXdthYscrKdWR3upotzYyPMKhSictQH Once you have paíd we wíll automatícally get ínformed that ít was your payment. Please note that you have to make payment wíthín 5 days after receiving thís e-maíl or the database leak, e-maíls dispatched, and de-índex of your site WiLL start! How do í get Bitcoíns? You can easily buy bítcoíns via several websítes or even offline from a Bítcoín-ATM. What íf i don’t pay? íf you decíde not to pay, we will start the attack at the índícated date and uphold it until you do, there’s no counter measure to thís, you will only end up wasting more money tryíng to find a solutíon. We wíll completely destroy your reputatíon amongst google and your customers. This ís not a hoax, do not reply to this emaíl, don’t try to reason or negotiate, we wíll not read any replíes. Once you have paíd we wíll stop what we were doing and you will never hear from us again! Please note that Bitcoin ís anonymous and no one wíll fínd out that you have complíed.'),(110,29,'name_1','William| | Cannon'),(111,29,'email_2','william.cannon2010@gmail.com'),(112,29,'text_3','repair'),(113,29,'textarea_4','one sprinkler pipe has blown out of underground tee and will not rethread, water distribution head needs new gaskets.'),(114,30,'name_1','Eric Jones| | Jones'),(115,30,'email_2','ericjonesmyemail@gmail.com'),(116,30,'text_3','There they go…'),(117,30,'textarea_4','Hey, my name’s Eric and for just a second, imagine this… - Someone does a search and winds up at naplesirrigation.com. - They hang out for a minute to check it out. “I’m interested… but… maybe…” - And then they hit the back button and check out the other search results instead. - Bottom line – you got an eyeball, but nothing else to show for it. - There they go. This isn’t really your fault – it happens a LOT – studies show 7 out of 10 visitors to any site disappear without leaving a trace. But you CAN fix that. Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know right then and there – enabling you to call that lead while they’re literally looking over your site. CLICK HERE http://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works. Time is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better! Plus, now that you have their phone number, with our new SMS Text With Lead feature you can automatically start a text (SMS) conversation… so even if you don’t close a deal then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Strong stuff. CLICK HERE http://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business. You could be converting up to 100X more leads today! Eric PS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://boostleadgeneration.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(118,31,'name_1','Eric Jones| | Jones'),(119,31,'email_2','ericjonesmyemail@gmail.com'),(120,31,'text_3','how to turn eyeballs into phone calls'),(121,31,'textarea_4','Hi, Eric here with a quick thought about your website naplesirrigation.com... I’m on the internet a lot and I look at a lot of business websites. Like yours, many of them have great content. But all too often, they come up short when it comes to engaging and connecting with anyone who visits. I get it – it’s hard. Studies show 7 out of 10 people who land on a site, abandon it in moments without leaving even a trace. You got the eyeball, but nothing else. Here’s a solution for you… Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. You’ll know immediately they’re interested and you can call them directly to talk with them literally while they’re still on the web looking at your site. CLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works. It could be huge for your business – and because you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately… and contacting someone in that 5 minute window is 100 times more powerful than reaching out 30 minutes or more later. Plus, with text messaging you can follow up later with new offers, content links, even just follow up notes to keep the conversation going. Everything I’ve just described is extremely simple to implement, cost-effective, and profitable. CLICK HERE https://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business. You could be converting up to 100X more eyeballs into leads today! Eric PS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(122,32,'name_1','sofia carson| | carson'),(123,32,'email_2','nichole.spellman@msn.com'),(124,32,'text_3','You are loosing lots of customers'),(125,32,'textarea_4','Hi, I am Sofia Carson I am one of your customers I liked your service, and I referred your service to my family and friends. I found your website on the 2nd page of google and the 3rd page of google maps it is hard to find your business. I worked on Ai company called Adcreative. The Ai will create catchy ad for google, facebook, youtube etc.. I can able to give the Ai for 14 Days free Trial with 500$ free google ads credit ( VIP ) ONLY. You can use it for free. You can check Here: https://free-trial.adcreative.ai/googleadscredit-vip NOTE : valid till 1st DECEMBER Grab this as soon as possible. Regards SOFIA CARSON'),(126,33,'name_1','Eric Jones| | Jones'),(127,33,'email_2','ericjonesmyemail@gmail.com'),(128,33,'text_3','There they go…'),(129,33,'textarea_4','Hey, my name’s Eric and for just a second, imagine this… - Someone does a search and winds up at naplesirrigation.com. - They hang out for a minute to check it out. “I’m interested… but… maybe…” - And then they hit the back button and check out the other search results instead. - Bottom line – you got an eyeball, but nothing else to show for it. - There they go. This isn’t really your fault – it happens a LOT – studies show 7 out of 10 visitors to any site disappear without leaving a trace. But you CAN fix that. Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know right then and there – enabling you to call that lead while they’re literally looking over your site. CLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works. Time is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better! Plus, now that you have their phone number, with our new SMS Text With Lead feature you can automatically start a text (SMS) conversation… so even if you don’t close a deal then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Strong stuff. CLICK HERE https://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business. You could be converting up to 100X more leads today! Eric PS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(130,34,'name_1','Eric Jones| | Jones'),(131,34,'email_2','eric.jones.z.mail@gmail.com'),(132,34,'text_3','Why not TALK with your leads?'),(133,34,'textarea_4','My name’s Eric and I just found your site naplesirrigation.com. It’s got a lot going for it, but here’s an idea to make it even MORE effective. Talk With Web Visitor – CLICK HERE http://boostleadgeneration.com for a live demo now. Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site. And once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation… and if they don’t take you up on your offer then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. CLICK HERE http://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business. The difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today! Eric PS: Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Don’t keep losing them. Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://boostleadgeneration.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(134,35,'name_1','Eric Jones| | Jones'),(135,35,'email_2','ericjonesmyemail@gmail.com'),(136,35,'text_3','Your site – more leads?'),(137,35,'textarea_4','Hey, this is Eric and I ran across naplesirrigation.com a few minutes ago. Looks great… but now what? By that I mean, when someone like me finds your website – either through Search or just bouncing around – what happens next? Do you get a lot of leads from your site, or at least enough to make you happy? Honestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Here’s an idea… How about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site… You can – Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site. CLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works. You’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold. It gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation. That way, even if you don’t close a deal right away, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Pretty sweet – AND effective. CLICK HERE https://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business. You could be converting up to 100X more leads today! Eric PS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(138,36,'name_1','Eric Jones| | Jones'),(139,36,'email_2','ericjonesmyemail@gmail.com'),(140,36,'text_3','Try this, get more leads'),(141,36,'textarea_4','Hi, my name is Eric and I’m betting you’d like your website naplesirrigation.com to generate more leads. Here’s how: Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you as soon as they say they’re interested – so that you can talk to that lead while they’re still there at naplesirrigation.com. Talk With Web Visitor – CLICK HERE http://boostleadgeneration.com for a live demo now. And now that you’ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation – answer questions, provide more info, and close a deal that way. If they don’t take you up on your offer then, just follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. CLICK HERE http://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business. The difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today! Try Talk With Web Visitor and get more leads now. Eric PS: The studies show 7 out of 10 visitors don’t hang around – you can’t afford to lose them! Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://boostleadgeneration.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(142,37,'name_1','Eric Jones| | Jones'),(143,37,'email_2','ericjonesmyemail@gmail.com'),(144,37,'text_3','Why not TALK with your leads?'),(145,37,'textarea_4','My name’s Eric and I just found your site naplesirrigation.com. It’s got a lot going for it, but here’s an idea to make it even MORE effective. Talk With Web Visitor – CLICK HERE https://boostleadgeneration.com for a live demo now. Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site. And once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation… and if they don’t take you up on your offer then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. CLICK HERE https://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business. The difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today! Eric PS: Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Don’t keep losing them. Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(146,38,'name_1','Eric Jones| | Jones'),(147,38,'email_2','ericjonesmyemail@gmail.com'),(148,38,'text_3','Turn Surf-Surf-Surf into Talk Talk Talk'),(149,38,'textarea_4','Hello, my name’s Eric and I just ran across your website at naplesirrigation.com... I found it after a quick search, so your SEO’s working out… Content looks pretty good… One thing’s missing though… A QUICK, EASY way to connect with you NOW. Because studies show that a web lead like me will only hang out a few seconds – 7 out of 10 disappear almost instantly, Surf Surf Surf… then gone forever. I have the solution: Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. You’ll know immediately they’re interested and you can call them directly to TALK with them - literally while they’re still on the web looking at your site. CLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works and even give it a try… it could be huge for your business. Plus, now that you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation pronto… which is so powerful, because connecting with someone within the first 5 minutes is 100 times more effective than waiting 30 minutes or more later. The new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship. Everything I’ve just described is extremely simple to implement, cost-effective, and profitable. CLICK HERE https://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business, potentially converting up to 100X more eyeballs into leads today! Eric PS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(150,39,'name_1','Lisa Holyman| | Holyman'),(151,39,'email_2','jo616858@gmail.com'),(152,39,'text_3','Found Some Issues in Your Business Website'),(153,39,'textarea_4','Hello, We have found some issues in your website and I can say that you may not be getting enough traffic and conversions. Because there are lots of things in your website which are not optimized well and not working properly and that affect your online sales. I can provide you free initial analysis report of your website and fix the all errors. And work on your website to provide you genuine leads for your business and improve your google ranking. Contact me via reply or Skype: mohdaamir_1 Email: jo616858@gmail.com Regards, Lisa Note: - If you are not interested then you can reply with a simple \"NO\",We will never contact you again.'),(154,40,'name_1','Louisa Pidgeon| | Pidgeon'),(155,40,'email_2','pidgeon.louisa@outlook.com'),(156,40,'text_3',''),(157,40,'textarea_4','Free submission of your new website to over 1000 business directories here https://bit.ly/submit_site_2'),(158,41,'name_1','Eric Jones| | Jones'),(159,41,'email_2','ericjonesmyemail@gmail.com'),(160,41,'text_3','Try this, get more leads'),(161,41,'textarea_4','Hi, my name is Eric and I’m betting you’d like your website naplesirrigation.com to generate more leads. Here’s how: Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you as soon as they say they’re interested – so that you can talk to that lead while they’re still there at naplesirrigation.com. Talk With Web Visitor – CLICK HERE https://boostleadgeneration.com for a live demo now. And now that you’ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation – answer questions, provide more info, and close a deal that way. If they don’t take you up on your offer then, just follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. CLICK HERE https://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business. The difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today! Try Talk With Web Visitor and get more leads now. Eric PS: The studies show 7 out of 10 visitors don’t hang around – you can’t afford to lose them! Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(162,42,'name_1','Eric Jones| | Jones'),(163,42,'email_2','ericjonesmyemail@gmail.com'),(164,42,'text_3','how to turn eyeballs into phone calls'),(165,42,'textarea_4','Hi, Eric here with a quick thought about your website naplesirrigation.com... I’m on the internet a lot and I look at a lot of business websites. Like yours, many of them have great content. But all too often, they come up short when it comes to engaging and connecting with anyone who visits. I get it – it’s hard. Studies show 7 out of 10 people who land on a site, abandon it in moments without leaving even a trace. You got the eyeball, but nothing else. Here’s a solution for you… Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. You’ll know immediately they’re interested and you can call them directly to talk with them literally while they’re still on the web looking at your site. CLICK HERE http://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works. It could be huge for your business – and because you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately… and contacting someone in that 5 minute window is 100 times more powerful than reaching out 30 minutes or more later. Plus, with text messaging you can follow up later with new offers, content links, even just follow up notes to keep the conversation going. Everything I’ve just described is extremely simple to implement, cost-effective, and profitable. CLICK HERE http://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business. You could be converting up to 100X more eyeballs into leads today! Eric PS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://boostleadgeneration.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(166,43,'name_1','Eric Jones| | Jones'),(167,43,'email_2','ericjonesmyemail@gmail.com'),(168,43,'text_3','Cool website!'),(169,43,'textarea_4','Cool website! My name’s Eric, and I just found your site - naplesirrigation.com - while surfing the net. You showed up at the top of the search results, so I checked you out. Looks like what you’re doing is pretty cool. But if you don’t mind me asking – after someone like me stumbles across naplesirrigation.com, what usually happens? Is your site generating leads for your business? I’m guessing some, but I also bet you’d like more… studies show that 7 out 10 who land on a site wind up leaving without a trace. Not good. Here’s a thought – what if there was an easy way for every visitor to “raise their hand” to get a phone call from you INSTANTLY… the second they hit your site and said, “call me now.” You can – Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know IMMEDIATELY – so that you can talk to that lead while they’re literally looking over your site. CLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works. Time is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better! That’s why we built out our new SMS Text With Lead feature… because once you’ve captured the visitor’s phone number, you can automatically start a text message (SMS) conversation. Think about the possibilities – even if you don’t close a deal then and there, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Wouldn’t that be cool? CLICK HERE http://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business. You could be converting up to 100X more leads today! Eric PS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://jumboleadmagnet.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=naplesirrigation.com'),(170,44,'name_1','Eric Jones| | Jones'),(171,44,'email_2','ericjonesmyemail@gmail.com'),(172,44,'text_3','Cool website!'),(173,44,'textarea_4','Cool website! My name’s Eric, and I just found your site - naplesirrigation.com - while surfing the net. You showed up at the top of the search results, so I checked you out. Looks like what you’re doing is pretty cool. But if you don’t mind me asking – after someone like me stumbles across naplesirrigation.com, what usually happens? Is your site generating leads for your business? I’m guessing some, but I also bet you’d like more… studies show that 7 out 10 who land on a site wind up leaving without a trace. Not good. Here’s a thought – what if there was an easy way for every visitor to “raise their hand” to get a phone call from you INSTANTLY… the second they hit your site and said, “call me now.” You can – Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know IMMEDIATELY – so that you can talk to that lead while they’re literally looking over your site. CLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works. Time is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better! That’s why we built out our new SMS Text With Lead feature… because once you’ve captured the visitor’s phone number, you can automatically start a text message (SMS) conversation. Think about the possibilities – even if you don’t close a deal then and there, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Wouldn’t that be cool? CLICK HERE https://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business. You could be converting up to 100X more leads today! Eric PS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(174,45,'name_1','Kirsten| | Prizzi'),(175,45,'email_2','KirstenPrizzi@comcast.net'),(176,45,'text_3','Irrigation System Repair'),(177,45,'textarea_4','Hi Brad, I bought a home at 1340 Delmar Ln in Brookside a few month ago. Due to Hurricane Ian I am just getting around the existing sprinkler system right now. When I worked on the landscape the pipes are still good and I dug up a lot of a buried sprinkler heads. Not sure how many heads need replacing and if the system itself needs some repair. you can reach me on my cell at 239-248-1667. Please let me know if you have availability? Thank you, Kirsten Prizzi'),(178,46,'name_1','Eric Jones| | Jones'),(179,46,'email_2','ericjonesmyemail@gmail.com'),(180,46,'text_3','Your site – more leads?'),(181,46,'textarea_4','Hey, this is Eric and I ran across naplesirrigation.com a few minutes ago. Looks great… but now what? By that I mean, when someone like me finds your website – either through Search or just bouncing around – what happens next? Do you get a lot of leads from your site, or at least enough to make you happy? Honestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Here’s an idea… How about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site… You can – Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site. CLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works. You’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold. It gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation. That way, even if you don’t close a deal right away, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Pretty sweet – AND effective. CLICK HERE https://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business. You could be converting up to 100X more leads today! Eric PS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(182,47,'name_1','Eric Jones| | Jones'),(183,47,'email_2','ericjonesmyemail@gmail.com'),(184,47,'text_3','Your site – more leads?'),(185,47,'textarea_4','Hey, this is Eric and I ran across naplesirrigation.com a few minutes ago. Looks great… but now what? By that I mean, when someone like me finds your website – either through Search or just bouncing around – what happens next? Do you get a lot of leads from your site, or at least enough to make you happy? Honestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Here’s an idea… How about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site… You can – Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site. CLICK HERE http://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works. You’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold. It gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation. That way, even if you don’t close a deal right away, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Pretty sweet – AND effective. CLICK HERE http://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business. You could be converting up to 100X more leads today! Eric PS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://boostleadgeneration.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(186,48,'name_1','Eric Jones| | Jones'),(187,48,'email_2','ericjonesmyemail@gmail.com'),(188,48,'text_3','Try this, get more leads'),(189,48,'textarea_4','Hi, my name is Eric and I’m betting you’d like your website naplesirrigation.com to generate more leads. Here’s how: Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you as soon as they say they’re interested – so that you can talk to that lead while they’re still there at naplesirrigation.com. Talk With Web Visitor – CLICK HERE http://jumboleadmagnet.com for a live demo now. And now that you’ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation – answer questions, provide more info, and close a deal that way. If they don’t take you up on your offer then, just follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. CLICK HERE http://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business. The difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today! Try Talk With Web Visitor and get more leads now. Eric PS: The studies show 7 out of 10 visitors don’t hang around – you can’t afford to lose them! Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://jumboleadmagnet.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=naplesirrigation.com'),(190,49,'name_1','Eric Jones| | Jones'),(191,49,'email_2','ericjonesmyemail@gmail.com'),(192,49,'text_3','Who needs eyeballs, you need BUSINESS'),(193,49,'textarea_4','My name’s Eric and I just came across your website - naplesirrigation.com - in the search results. Here’s what that means to me… Your SEO’s working. You’re getting eyeballs – mine at least. Your content’s pretty good, wouldn’t change a thing. BUT… Eyeballs don’t pay the bills. CUSTOMERS do. And studies show that 7 out of 10 visitors to a site like naplesirrigation.com will drop by, take a gander, and then head for the hills without doing anything else. It’s like they never were even there. You can fix this. You can make it super-simple for them to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket… thanks to Talk With Web Visitor. Talk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number. It lets you know immediately – so you can talk to that lead immediately… without delay… BEFORE they head for those hills. CLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works. Now it’s also true that when reaching out to hot leads, you MUST act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better! That’s what makes our new SMS Text With Lead feature so powerful… you’ve got their phone number, so now you can start a text message (SMS) conversation with them… so even if they don’t take you up on your offer right away, you continue to text them new offers, new content, and new reasons to do business with you. This could change everything for you and your business. CLICK HERE https://boostleadgeneration.com to learn more about everything Talk With Web Visitor can do and start turing eyeballs into money. Eric PS: Talk With Web Visitor offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! It even includes International Long Distance Calling. Paying customers are out there waiting. Starting connecting today by CLICKING HERE https://boostleadgeneration.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(194,50,'name_1','Eric Jones| | Jones'),(195,50,'email_2','ericjonesmyemail@gmail.com'),(196,50,'text_3','how to turn eyeballs into phone calls'),(197,50,'textarea_4','Hi, Eric here with a quick thought about your website naplesirrigation.com... I’m on the internet a lot and I look at a lot of business websites. Like yours, many of them have great content. But all too often, they come up short when it comes to engaging and connecting with anyone who visits. I get it – it’s hard. Studies show 7 out of 10 people who land on a site, abandon it in moments without leaving even a trace. You got the eyeball, but nothing else. Here’s a solution for you… Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. You’ll know immediately they’re interested and you can call them directly to talk with them literally while they’re still on the web looking at your site. CLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works. It could be huge for your business – and because you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately… and contacting someone in that 5 minute window is 100 times more powerful than reaching out 30 minutes or more later. Plus, with text messaging you can follow up later with new offers, content links, even just follow up notes to keep the conversation going. Everything I’ve just described is extremely simple to implement, cost-effective, and profitable. CLICK HERE http://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business. You could be converting up to 100X more eyeballs into leads today! Eric PS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://jumboleadmagnet.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=naplesirrigation.com'),(198,51,'name_1','Eric Jones| | Jones'),(199,51,'email_2','ericjonesmyemail@gmail.com'),(200,51,'text_3','Who needs eyeballs, you need BUSINESS'),(201,51,'textarea_4','My name’s Eric and I just came across your website - naplesirrigation.com - in the search results. Here’s what that means to me… Your SEO’s working. You’re getting eyeballs – mine at least. Your content’s pretty good, wouldn’t change a thing. BUT… Eyeballs don’t pay the bills. CUSTOMERS do. And studies show that 7 out of 10 visitors to a site like naplesirrigation.com will drop by, take a gander, and then head for the hills without doing anything else. It’s like they never were even there. You can fix this. You can make it super-simple for them to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket… thanks to Talk With Web Visitor. Talk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number. It lets you know immediately – so you can talk to that lead immediately… without delay… BEFORE they head for those hills. CLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works. Now it’s also true that when reaching out to hot leads, you MUST act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better! That’s what makes our new SMS Text With Lead feature so powerful… you’ve got their phone number, so now you can start a text message (SMS) conversation with them… so even if they don’t take you up on your offer right away, you continue to text them new offers, new content, and new reasons to do business with you. This could change everything for you and your business. CLICK HERE http://jumboleadmagnet.com to learn more about everything Talk With Web Visitor can do and start turing eyeballs into money. Eric PS: Talk With Web Visitor offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! It even includes International Long Distance Calling. Paying customers are out there waiting. Starting connecting today by CLICKING HERE http://jumboleadmagnet.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=naplesirrigation.com'),(202,52,'name_1','Carolyn Wofford| | Wofford'),(203,52,'email_2','wofford.carolyn@gmail.com'),(204,52,'text_3','Do you want to take your website to the next level?'),(205,52,'textarea_4','Hi there! I\'m writing to let you know about an incredible new AI tool that can help with various tasks related to website copywriting and SEO. It\'s been used by some of the biggest companies in the world, such as Airbnb and google. So if you\'re looking for a powerful tool to help take your website to the next level, this is definitely worth considering! Plus, to make things even better, I\'m giving away 10,000 words for free so that you can try it out for yourself. To get 10k words, just go to https://aiwritingmeta.com/'),(206,53,'name_1','Eric Jones| | Jones'),(207,53,'email_2','ericjonesmyemail@gmail.com'),(208,53,'text_3','There they go…'),(209,53,'textarea_4','Hey, my name’s Eric and for just a second, imagine this… - Someone does a search and winds up at naplesirrigation.com. - They hang out for a minute to check it out. “I’m interested… but… maybe…” - And then they hit the back button and check out the other search results instead. - Bottom line – you got an eyeball, but nothing else to show for it. - There they go. This isn’t really your fault – it happens a LOT – studies show 7 out of 10 visitors to any site disappear without leaving a trace. But you CAN fix that. Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know right then and there – enabling you to call that lead while they’re literally looking over your site. CLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works. Time is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better! Plus, now that you have their phone number, with our new SMS Text With Lead feature you can automatically start a text (SMS) conversation… so even if you don’t close a deal then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Strong stuff. CLICK HERE http://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business. You could be converting up to 100X more leads today! Eric PS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://jumboleadmagnet.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=naplesirrigation.com'),(210,54,'name_1','QGWO3RLWDQ9N2R3WXF www.is.gd/BqXlNE#X2zn03TxYB QGWO3RLWDQ9N2R3WXF www.is.gd/BqXlNE#X2zn03TxYB| | QGWO3RLWDQ9N2R3WXF www.is.gd/BqXlNE#X2zn03TxYB'),(211,54,'email_2','yevgeniy.krovatkin@mail.ru'),(212,54,'text_3','Hello!'),(213,54,'textarea_4','Hi! Please tell me the number of your office, I will come to you tomorrow. QGWO3RLWDQ9N2R3WXF www.is.gd/BqXlNE#X2zn03TxYB'),(214,55,'name_1','Eric Jones| | Jones'),(215,55,'email_2','ericjonesmyemail@gmail.com'),(216,55,'text_3','Try this, get more leads'),(217,55,'textarea_4','Hi, my name is Eric and I’m betting you’d like your website naplesirrigation.com to generate more leads. Here’s how: Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you as soon as they say they’re interested – so that you can talk to that lead while they’re still there at naplesirrigation.com. Talk With Web Visitor – CLICK HERE http://boostleadgeneration.com for a live demo now. And now that you’ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation – answer questions, provide more info, and close a deal that way. If they don’t take you up on your offer then, just follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. CLICK HERE http://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business. The difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today! Try Talk With Web Visitor and get more leads now. Eric PS: The studies show 7 out of 10 visitors don’t hang around – you can’t afford to lose them! Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://boostleadgeneration.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(218,56,'name_1','Eric Jones| | Jones'),(219,56,'email_2','ericjonesmyemail@gmail.com'),(220,56,'text_3','There they go…'),(221,56,'textarea_4','Hey, my name’s Eric and for just a second, imagine this… - Someone does a search and winds up at naplesirrigation.com. - They hang out for a minute to check it out. “I’m interested… but… maybe…” - And then they hit the back button and check out the other search results instead. - Bottom line – you got an eyeball, but nothing else to show for it. - There they go. This isn’t really your fault – it happens a LOT – studies show 7 out of 10 visitors to any site disappear without leaving a trace. But you CAN fix that. Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know right then and there – enabling you to call that lead while they’re literally looking over your site. CLICK HERE http://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works. Time is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better! Plus, now that you have their phone number, with our new SMS Text With Lead feature you can automatically start a text (SMS) conversation… so even if you don’t close a deal then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Strong stuff. CLICK HERE http://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business. You could be converting up to 100X more leads today! Eric PS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://boostleadgeneration.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(222,57,'name_1','Eric Jones| | Jones'),(223,57,'email_2','ericjonesmyemail@gmail.com'),(224,57,'text_3','Turn Surf-Surf-Surf into Talk Talk Talk'),(225,57,'textarea_4','Hello, my name’s Eric and I just ran across your website at naplesirrigation.com... I found it after a quick search, so your SEO’s working out… Content looks pretty good… One thing’s missing though… A QUICK, EASY way to connect with you NOW. Because studies show that a web lead like me will only hang out a few seconds – 7 out of 10 disappear almost instantly, Surf Surf Surf… then gone forever. I have the solution: Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. You’ll know immediately they’re interested and you can call them directly to TALK with them - literally while they’re still on the web looking at your site. CLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works and even give it a try… it could be huge for your business. Plus, now that you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation pronto… which is so powerful, because connecting with someone within the first 5 minutes is 100 times more effective than waiting 30 minutes or more later. The new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship. Everything I’ve just described is extremely simple to implement, cost-effective, and profitable. CLICK HERE https://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business, potentially converting up to 100X more eyeballs into leads today! Eric PS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(226,58,'name_1','Eric Jones| | Jones'),(227,58,'email_2','ericjonesmyemail@gmail.com'),(228,58,'text_3','Who needs eyeballs, you need BUSINESS'),(229,58,'textarea_4','My name’s Eric and I just came across your website - naplesirrigation.com - in the search results. Here’s what that means to me… Your SEO’s working. You’re getting eyeballs – mine at least. Your content’s pretty good, wouldn’t change a thing. BUT… Eyeballs don’t pay the bills. CUSTOMERS do. And studies show that 7 out of 10 visitors to a site like naplesirrigation.com will drop by, take a gander, and then head for the hills without doing anything else. It’s like they never were even there. You can fix this. You can make it super-simple for them to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket… thanks to Talk With Web Visitor. Talk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number. It lets you know immediately – so you can talk to that lead immediately… without delay… BEFORE they head for those hills. CLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works. Now it’s also true that when reaching out to hot leads, you MUST act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better! That’s what makes our new SMS Text With Lead feature so powerful… you’ve got their phone number, so now you can start a text message (SMS) conversation with them… so even if they don’t take you up on your offer right away, you continue to text them new offers, new content, and new reasons to do business with you. This could change everything for you and your business. CLICK HERE https://boostleadgeneration.com to learn more about everything Talk With Web Visitor can do and start turing eyeballs into money. Eric PS: Talk With Web Visitor offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! It even includes International Long Distance Calling. Paying customers are out there waiting. Starting connecting today by CLICKING HERE https://boostleadgeneration.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(230,59,'name_1','Eric Jones| | Jones'),(231,59,'email_2','ericjonesmyemail@gmail.com'),(232,59,'text_3','Your site – more leads?'),(233,59,'textarea_4','Hey, this is Eric and I ran across naplesirrigation.com a few minutes ago. Looks great… but now what? By that I mean, when someone like me finds your website – either through Search or just bouncing around – what happens next? Do you get a lot of leads from your site, or at least enough to make you happy? Honestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Here’s an idea… How about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site… You can – Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site. CLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works. You’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold. It gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation. That way, even if you don’t close a deal right away, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Pretty sweet – AND effective. CLICK HERE http://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business. You could be converting up to 100X more leads today! Eric PS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://jumboleadmagnet.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=naplesirrigation.com'),(234,60,'name_1','Eric Jones| | Jones'),(235,60,'email_2','ericjonesmyemail@gmail.com'),(236,60,'text_3','Strike when the iron’s hot'),(237,60,'textarea_4','Hey there, I just found your site, quick question… My name’s Eric, I found naplesirrigation.com after doing a quick search – you showed up near the top of the rankings, so whatever you’re doing for SEO, looks like it’s working well. So here’s my question – what happens AFTER someone lands on your site? Anything? Research tells us at least 70% of the people who find your site, after a quick once-over, they disappear… forever. That means that all the work and effort you put into getting them to show up, goes down the tubes. Why would you want all that good work – and the great site you’ve built – go to waste? Because the odds are they’ll just skip over calling or even grabbing their phone, leaving you high and dry. But here’s a thought… what if you could make it super-simple for someone to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket? You can – thanks to revolutionary new software that can literally make that first call happen NOW. Talk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number. It lets you know IMMEDIATELY – so that you can talk to that lead while they’re still there at your site. You know, strike when the iron’s hot! CLICK HERE http://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works. When targeting leads, you HAVE to act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better! That’s why you should check out our new SMS Text With Lead feature as well… once you’ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. Imagine how powerful this could be – even if they don’t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility. Just this alone could be a game changer to make your website even more effective. Strike when the iron’s hot! CLICK HERE http://boostleadgeneration.com to learn more about everything Talk With Web Visitor can do for your business – you’ll be amazed. Thanks and keep up the great work! Eric PS: Talk With Web Visitor offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! It even includes International Long Distance Calling. Stop wasting money chasing eyeballs that don’t turn into paying customers. CLICK HERE http://boostleadgeneration.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(238,61,'name_1','Eric Jones| | Jones'),(239,61,'email_2','ericjonesmyemail@gmail.com'),(240,61,'text_3','instead, congrats'),(241,61,'textarea_4','Good day, My name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement – Congratulations What for? Part of my job is to check out websites and the work you’ve done with naplesirrigation.com definitely stands out. It’s clear you took building a website seriously and made a real investment of time and resources into making it top quality. There is, however, a catch… more accurately, a question… So when someone like me happens to find your site – maybe at the top of the search results (nice job BTW) or just through a random link, how do you know? More importantly, how do you make a connection with that person? Studies show that 7 out of 10 visitors don’t stick around – they’re there one second and then gone with the wind. Here’s a way to create INSTANT engagement that you may not have known about… Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know INSTANTLY that they’re interested – so that you can talk to that lead while they’re literally checking out naplesirrigation.com. CLICK HERE http://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works. It could be a game-changer for your business – and it gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately (and there’s literally a 100X difference between contacting someone within 5 minutes versus 30 minutes.) Plus then, even if you don’t close a deal right away, you can connect later on with text messages for new offers, content links, even just follow up notes to build a relationship. Everything I’ve just described is simple, easy, and effective. CLICK HERE http://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business. You could be converting up to 100X more leads today! Eric PS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://boostleadgeneration.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(242,62,'name_1','Edward Greer| | Greer'),(243,62,'email_2','heatraffic@gmail.com'),(244,62,'text_3','High Quality Website Traffic - 3,000 Page Views Free Trial'),(245,62,'textarea_4','Hello, We offer high quality website traffic guaranteed. We guarantee results| Receive millions of visitors everyday. Choose from over 213 countries including your Country for Geo-Targeting. Better yet, choose from hundreds of cities across the world, for City-Targeting. We guarantee that it will be demonstrated in your Google Analytics. For Demo, we can give you 2000 Page Views in 1 day FREE. Just reply with your website and I will give you 2000 Page Views which will show in your Google Analytics. Or visit website: https://heatraffic.online for more information. Thanks Note: - If you are not interested then you can reply with a simple \"NO\".'),(246,63,'name_1','Eric Jones| | Jones'),(247,63,'email_2','ericjonesmyemail@gmail.com'),(248,63,'text_3','There they go…'),(249,63,'textarea_4','Hey, my name’s Eric and for just a second, imagine this… - Someone does a search and winds up at naplesirrigation.com. - They hang out for a minute to check it out. “I’m interested… but… maybe…” - And then they hit the back button and check out the other search results instead. - Bottom line – you got an eyeball, but nothing else to show for it. - There they go. This isn’t really your fault – it happens a LOT – studies show 7 out of 10 visitors to any site disappear without leaving a trace. But you CAN fix that. Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know right then and there – enabling you to call that lead while they’re literally looking over your site. CLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works. Time is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better! Plus, now that you have their phone number, with our new SMS Text With Lead feature you can automatically start a text (SMS) conversation… so even if you don’t close a deal then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Strong stuff. CLICK HERE https://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business. You could be converting up to 100X more leads today! Eric PS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(250,64,'name_1','Eric Jones| | Jones'),(251,64,'email_2','eric.jones.z.mail@gmail.com'),(252,64,'text_3','Why not TALK with your leads?'),(253,64,'textarea_4','My name’s Eric and I just found your site naplesirrigation.com. It’s got a lot going for it, but here’s an idea to make it even MORE effective. Talk With Web Visitor – CLICK HERE http://boostleadgeneration.com for a live demo now. Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site. And once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation… and if they don’t take you up on your offer then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. CLICK HERE http://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business. The difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today! Eric PS: Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Don’t keep losing them. Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://boostleadgeneration.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(254,65,'name_1','Eric Jones| | Jones'),(255,65,'email_2','ericjonesmyemail@gmail.com'),(256,65,'text_3','Why not TALK with your leads?'),(257,65,'textarea_4','My name’s Eric and I just found your site naplesirrigation.com. It’s got a lot going for it, but here’s an idea to make it even MORE effective. Talk With Web Visitor – CLICK HERE http://jumboleadmagnet.com for a live demo now. Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site. And once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation… and if they don’t take you up on your offer then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. CLICK HERE http://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business. The difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today! Eric PS: Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Don’t keep losing them. Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://jumboleadmagnet.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=naplesirrigation.com'),(258,66,'name_1','Ray| | Flynn'),(259,66,'email_2','ray@diyguys.net'),(260,66,'text_3','Please check this over for me'),(261,66,'textarea_4','Hello! Major home remodeling can be costly and inconvenient, but it can also greatly raise the value of your house. I\'d love to write an article for your website about the things you should consider before embarking on a home renovation project. I\'ll cover the advantages and disadvantages of a house renovation in this article. For instance, a complete redesign allows you to customize your home to your specific needs and preferences (e.g. a complete renovation can be disruptive to your daily routine and expensive to finance). Let me know if you\'re interested, and I\'ll draft up the piece for you. Have a great day, and thanks for your time! Bret and Ray, the DIY Guys ―If you’re interested in an article, but want one on a different topic, please don’t hesitate to reach out. Alternatively, just let me know if ever you don\'t want to receive any further emails.'),(262,67,'name_1','Eric Jones| | Jones'),(263,67,'email_2','ericjonesmyemail@gmail.com'),(264,67,'text_3','Strike when the iron’s hot'),(265,67,'textarea_4','Hey there, I just found your site, quick question… My name’s Eric, I found naplesirrigation.com after doing a quick search – you showed up near the top of the rankings, so whatever you’re doing for SEO, looks like it’s working well. So here’s my question – what happens AFTER someone lands on your site? Anything? Research tells us at least 70% of the people who find your site, after a quick once-over, they disappear… forever. That means that all the work and effort you put into getting them to show up, goes down the tubes. Why would you want all that good work – and the great site you’ve built – go to waste? Because the odds are they’ll just skip over calling or even grabbing their phone, leaving you high and dry. But here’s a thought… what if you could make it super-simple for someone to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket? You can – thanks to revolutionary new software that can literally make that first call happen NOW. Talk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number. It lets you know IMMEDIATELY – so that you can talk to that lead while they’re still there at your site. You know, strike when the iron’s hot! CLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works. When targeting leads, you HAVE to act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better! That’s why you should check out our new SMS Text With Lead feature as well… once you’ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. Imagine how powerful this could be – even if they don’t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility. Just this alone could be a game changer to make your website even more effective. Strike when the iron’s hot! CLICK HERE http://jumboleadmagnet.com to learn more about everything Talk With Web Visitor can do for your business – you’ll be amazed. Thanks and keep up the great work! Eric PS: Talk With Web Visitor offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! It even includes International Long Distance Calling. Stop wasting money chasing eyeballs that don’t turn into paying customers. CLICK HERE http://jumboleadmagnet.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=naplesirrigation.com'),(266,68,'name_1','Eric Jones| | Jones'),(267,68,'email_2','ericjonesmyemail@gmail.com'),(268,68,'text_3','instead, congrats'),(269,68,'textarea_4','Good day, My name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement – Congratulations What for? Part of my job is to check out websites and the work you’ve done with naplesirrigation.com definitely stands out. It’s clear you took building a website seriously and made a real investment of time and resources into making it top quality. There is, however, a catch… more accurately, a question… So when someone like me happens to find your site – maybe at the top of the search results (nice job BTW) or just through a random link, how do you know? More importantly, how do you make a connection with that person? Studies show that 7 out of 10 visitors don’t stick around – they’re there one second and then gone with the wind. Here’s a way to create INSTANT engagement that you may not have known about… Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know INSTANTLY that they’re interested – so that you can talk to that lead while they’re literally checking out naplesirrigation.com. CLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works. It could be a game-changer for your business – and it gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately (and there’s literally a 100X difference between contacting someone within 5 minutes versus 30 minutes.) Plus then, even if you don’t close a deal right away, you can connect later on with text messages for new offers, content links, even just follow up notes to build a relationship. Everything I’ve just described is simple, easy, and effective. CLICK HERE http://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business. You could be converting up to 100X more leads today! Eric PS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://jumboleadmagnet.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=naplesirrigation.com'),(270,69,'name_1','Meghan Pavy| | Pavy'),(271,69,'email_2','pavy.meghan@gmail.com'),(272,69,'text_3','Hey'),(273,69,'textarea_4','I love what naplesirrigation.com is doing. But nobody will take action without someone to talk to. This new AI Chatbot does that automatically: https://onlinegrowthexperts.com Good luck!'),(274,70,'name_1','Eric Jones| | Jones'),(275,70,'email_2','ericjonesmyemail@gmail.com'),(276,70,'text_3','Cool website!'),(277,70,'textarea_4','Cool website! My name’s Eric, and I just found your site - naplesirrigation.com - while surfing the net. You showed up at the top of the search results, so I checked you out. Looks like what you’re doing is pretty cool. But if you don’t mind me asking – after someone like me stumbles across naplesirrigation.com, what usually happens? Is your site generating leads for your business? I’m guessing some, but I also bet you’d like more… studies show that 7 out 10 who land on a site wind up leaving without a trace. Not good. Here’s a thought – what if there was an easy way for every visitor to “raise their hand” to get a phone call from you INSTANTLY… the second they hit your site and said, “call me now.” You can – Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know IMMEDIATELY – so that you can talk to that lead while they’re literally looking over your site. CLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works. Time is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better! That’s why we built out our new SMS Text With Lead feature… because once you’ve captured the visitor’s phone number, you can automatically start a text message (SMS) conversation. Think about the possibilities – even if you don’t close a deal then and there, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Wouldn’t that be cool? CLICK HERE https://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business. You could be converting up to 100X more leads today! Eric PS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(278,71,'name_1','Eric Jones| | Jones'),(279,71,'email_2','ericjonesmyemail@gmail.com'),(280,71,'text_3','Turn Surf-Surf-Surf into Talk Talk Talk'),(281,71,'textarea_4','Hello, my name’s Eric and I just ran across your website at naplesirrigation.com... I found it after a quick search, so your SEO’s working out… Content looks pretty good… One thing’s missing though… A QUICK, EASY way to connect with you NOW. Because studies show that a web lead like me will only hang out a few seconds – 7 out of 10 disappear almost instantly, Surf Surf Surf… then gone forever. I have the solution: Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. You’ll know immediately they’re interested and you can call them directly to TALK with them - literally while they’re still on the web looking at your site. CLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works and even give it a try… it could be huge for your business. Plus, now that you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation pronto… which is so powerful, because connecting with someone within the first 5 minutes is 100 times more effective than waiting 30 minutes or more later. The new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship. Everything I’ve just described is extremely simple to implement, cost-effective, and profitable. CLICK HERE http://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business, potentially converting up to 100X more eyeballs into leads today! Eric PS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://jumboleadmagnet.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=naplesirrigation.com'),(282,72,'name_1','Eric Jones| | Jones'),(283,72,'email_2','ericjonesmyemail@gmail.com'),(284,72,'text_3','Cool website!'),(285,72,'textarea_4','Cool website! My name’s Eric, and I just found your site - naplesirrigation.com - while surfing the net. You showed up at the top of the search results, so I checked you out. Looks like what you’re doing is pretty cool. But if you don’t mind me asking – after someone like me stumbles across naplesirrigation.com, what usually happens? Is your site generating leads for your business? I’m guessing some, but I also bet you’d like more… studies show that 7 out 10 who land on a site wind up leaving without a trace. Not good. Here’s a thought – what if there was an easy way for every visitor to “raise their hand” to get a phone call from you INSTANTLY… the second they hit your site and said, “call me now.” You can – Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know IMMEDIATELY – so that you can talk to that lead while they’re literally looking over your site. CLICK HERE http://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works. Time is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better! That’s why we built out our new SMS Text With Lead feature… because once you’ve captured the visitor’s phone number, you can automatically start a text message (SMS) conversation. Think about the possibilities – even if you don’t close a deal then and there, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Wouldn’t that be cool? CLICK HERE http://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business. You could be converting up to 100X more leads today! Eric PS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://boostleadgeneration.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(286,73,'name_1','Eric Jones| | Jones'),(287,73,'email_2','ericjonesmyemail@gmail.com'),(288,73,'text_3','how to turn eyeballs into phone calls'),(289,73,'textarea_4','Hi, Eric here with a quick thought about your website naplesirrigation.com... I’m on the internet a lot and I look at a lot of business websites. Like yours, many of them have great content. But all too often, they come up short when it comes to engaging and connecting with anyone who visits. I get it – it’s hard. Studies show 7 out of 10 people who land on a site, abandon it in moments without leaving even a trace. You got the eyeball, but nothing else. Here’s a solution for you… Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. You’ll know immediately they’re interested and you can call them directly to talk with them literally while they’re still on the web looking at your site. CLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works. It could be huge for your business – and because you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately… and contacting someone in that 5 minute window is 100 times more powerful than reaching out 30 minutes or more later. Plus, with text messaging you can follow up later with new offers, content links, even just follow up notes to keep the conversation going. Everything I’ve just described is extremely simple to implement, cost-effective, and profitable. CLICK HERE https://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business. You could be converting up to 100X more eyeballs into leads today! Eric PS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(290,74,'name_1','Eric Jones| | Jones'),(291,74,'email_2','ericjonesmyemail@gmail.com'),(292,74,'text_3','Cool website!'),(293,74,'textarea_4','Cool website! My name’s Eric, and I just found your site - naplesirrigation.com - while surfing the net. You showed up at the top of the search results, so I checked you out. Looks like what you’re doing is pretty cool. But if you don’t mind me asking – after someone like me stumbles across naplesirrigation.com, what usually happens? Is your site generating leads for your business? I’m guessing some, but I also bet you’d like more… studies show that 7 out 10 who land on a site wind up leaving without a trace. Not good. Here’s a thought – what if there was an easy way for every visitor to “raise their hand” to get a phone call from you INSTANTLY… the second they hit your site and said, “call me now.” You can – Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know IMMEDIATELY – so that you can talk to that lead while they’re literally looking over your site. CLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works. Time is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better! That’s why we built out our new SMS Text With Lead feature… because once you’ve captured the visitor’s phone number, you can automatically start a text message (SMS) conversation. Think about the possibilities – even if you don’t close a deal then and there, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Wouldn’t that be cool? CLICK HERE http://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business. You could be converting up to 100X more leads today! Eric PS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://jumboleadmagnet.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=naplesirrigation.com'),(294,75,'name_1','Jestine Boyle| | Boyle'),(295,75,'email_2','jestine.boyle@gmail.com'),(296,75,'text_3','you\'d be perfect'),(297,75,'textarea_4','I love what you\'re doing with naplesirrigation.com, we\'re looking for someone like you: https://bit.ly/onlinegrowthvid Thanks'),(298,76,'name_1','Bryant Farber| | Farber'),(299,76,'email_2','bryant.farber@gmail.com'),(300,76,'text_3',''),(301,76,'textarea_4','Free submission of your new website to over 1000 business directories here bit.ly/submit_site_t9qPdO4E2oF2'),(302,77,'name_1','Lenore Wooley| | Wooley'),(303,77,'email_2','lenore.wooley@gmail.com'),(304,77,'text_3','Hi'),(305,77,'textarea_4','This site has crazy potential. Watch me rank 1st page on google and get instant traffic: http://growmastery.com You could do the same for naplesirrigation.com, Cheers'),(306,78,'name_1','Eric Jones| | Jones'),(307,78,'email_2','ericjonesmyemail@gmail.com'),(308,78,'text_3','Try this, get more leads'),(309,78,'textarea_4','Hi, my name is Eric and I’m betting you’d like your website naplesirrigation.com to generate more leads. Here’s how: Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you as soon as they say they’re interested – so that you can talk to that lead while they’re still there at naplesirrigation.com. Talk With Web Visitor – CLICK HERE http://jumboleadmagnet.com for a live demo now. And now that you’ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation – answer questions, provide more info, and close a deal that way. If they don’t take you up on your offer then, just follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. CLICK HERE http://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business. The difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today! Try Talk With Web Visitor and get more leads now. Eric PS: The studies show 7 out of 10 visitors don’t hang around – you can’t afford to lose them! Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://jumboleadmagnet.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=naplesirrigation.com'),(310,79,'name_1','Summer Kincade| | Kincade'),(311,79,'email_2','kincade.summer@yahoo.com'),(312,79,'text_3','Hello'),(313,79,'textarea_4','If you become an author or make info-products, you can boost credibility, sales and raving fans for naplesirrigation.com. You can do that in 5 minutes with this tool: http://skytrafficpro.com No design, technical or writing skills required.'),(314,80,'name_1','Eric Jones| | Jones'),(315,80,'email_2','ericjonesmyemail@gmail.com'),(316,80,'text_3','Strike when the iron’s hot'),(317,80,'textarea_4','Hey there, I just found your site, quick question… My name’s Eric, I found naplesirrigation.com after doing a quick search – you showed up near the top of the rankings, so whatever you’re doing for SEO, looks like it’s working well. So here’s my question – what happens AFTER someone lands on your site? Anything? Research tells us at least 70% of the people who find your site, after a quick once-over, they disappear… forever. That means that all the work and effort you put into getting them to show up, goes down the tubes. Why would you want all that good work – and the great site you’ve built – go to waste? Because the odds are they’ll just skip over calling or even grabbing their phone, leaving you high and dry. But here’s a thought… what if you could make it super-simple for someone to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket? You can – thanks to revolutionary new software that can literally make that first call happen NOW. Talk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number. It lets you know IMMEDIATELY – so that you can talk to that lead while they’re still there at your site. You know, strike when the iron’s hot! CLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works. When targeting leads, you HAVE to act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better! That’s why you should check out our new SMS Text With Lead feature as well… once you’ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. Imagine how powerful this could be – even if they don’t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility. Just this alone could be a game changer to make your website even more effective. Strike when the iron’s hot! CLICK HERE https://boostleadgeneration.com to learn more about everything Talk With Web Visitor can do for your business – you’ll be amazed. Thanks and keep up the great work! Eric PS: Talk With Web Visitor offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! It even includes International Long Distance Calling. Stop wasting money chasing eyeballs that don’t turn into paying customers. CLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(318,81,'name_1','Eric Jones| | Jones'),(319,81,'email_2','ericjonesmyemail@gmail.com'),(320,81,'text_3','Strike when the iron’s hot'),(321,81,'textarea_4','Hey there, I just found your site, quick question… My name’s Eric, I found naplesirrigation.com after doing a quick search – you showed up near the top of the rankings, so whatever you’re doing for SEO, looks like it’s working well. So here’s my question – what happens AFTER someone lands on your site? Anything? Research tells us at least 70% of the people who find your site, after a quick once-over, they disappear… forever. That means that all the work and effort you put into getting them to show up, goes down the tubes. Why would you want all that good work – and the great site you’ve built – go to waste? Because the odds are they’ll just skip over calling or even grabbing their phone, leaving you high and dry. But here’s a thought… what if you could make it super-simple for someone to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket? You can – thanks to revolutionary new software that can literally make that first call happen NOW. Talk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number. It lets you know IMMEDIATELY – so that you can talk to that lead while they’re still there at your site. You know, strike when the iron’s hot! CLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works. When targeting leads, you HAVE to act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better! That’s why you should check out our new SMS Text With Lead feature as well… once you’ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. Imagine how powerful this could be – even if they don’t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility. Just this alone could be a game changer to make your website even more effective. Strike when the iron’s hot! CLICK HERE https://boostleadgeneration.com to learn more about everything Talk With Web Visitor can do for your business – you’ll be amazed. Thanks and keep up the great work! Eric PS: Talk With Web Visitor offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! It even includes International Long Distance Calling. Stop wasting money chasing eyeballs that don’t turn into paying customers. CLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(322,82,'name_1','Eric Jones| | Jones'),(323,82,'email_2','ericjonesmyemail@gmail.com'),(324,82,'text_3','Turn Surf-Surf-Surf into Talk Talk Talk'),(325,82,'textarea_4','Hello, my name’s Eric and I just ran across your website at naplesirrigation.com... I found it after a quick search, so your SEO’s working out… Content looks pretty good… One thing’s missing though… A QUICK, EASY way to connect with you NOW. Because studies show that a web lead like me will only hang out a few seconds – 7 out of 10 disappear almost instantly, Surf Surf Surf… then gone forever. I have the solution: Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. You’ll know immediately they’re interested and you can call them directly to TALK with them - literally while they’re still on the web looking at your site. CLICK HERE http://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works and even give it a try… it could be huge for your business. Plus, now that you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation pronto… which is so powerful, because connecting with someone within the first 5 minutes is 100 times more effective than waiting 30 minutes or more later. The new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship. Everything I’ve just described is extremely simple to implement, cost-effective, and profitable. CLICK HERE http://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business, potentially converting up to 100X more eyeballs into leads today! Eric PS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://boostleadgeneration.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(326,83,'name_1','Edna Halvorsen| | Halvorsen'),(327,83,'email_2','hacker@globalcruiseservices.com'),(328,83,'text_3','Your Site Has Been Hacked'),(329,83,'textarea_4','Your Site Has Been Hacked PLEASE FORWARD THIS EMAIL TO SOMEONE IN YOUR COMPANY WHO IS ALLOWED TO MAKE IMPORTANT DECISIONS! We have hacked your website https://naplesirrigation.com and extracted your databases. How did this happen? Our team has found a vulnerability within your site that we were able to exploit. After finding the vulnerability we were able to get your database credentials and extract your entire database and move the information to an offshore server. What does this mean? We will systematically go through a series of steps of totally damaging your reputation. First your database will be leaked or sold to the highest bidder which they will use with whatever their intentions are. Next if there are e-mails found they will be e-mailed that their information has been sold or leaked and your https://naplesirrigation.com was at fault thusly damaging your reputation and having angry customers/associates with whatever angry customers/associates do. Lastly any links that you have indexed in the search engines will be de-indexed based off of blackhat techniques that we used in the past to de-index our targets. How do I stop this? We are willing to refrain from destroying your site’s reputation for a small fee. The current fee is $3000 in bitcoins (0.14 BTC). The amount(approximately): $3000 (0.14 BTC) The Address Part 1: bc1qj9u7gmjk5kznnnjgs The Address Part 2: fvs35fftmtfh7n6wk6jt2 So, you have to manually copy + paste Part1 and Part2 in one string made of 42 characters with no space between the parts that start with \"b\" and end with \"2\" is the actually address where you should send the money to. Once you have paid we will automatically get informed that it was your payment. Please note that you have to make payment within 72 hours after receiving this message or the database leak, e-mails dispatched, and de-index of your site WILL start! How do I get Bitcoins? You can easily buy bitcoins via several websites or even offline from a Bitcoin-ATM. What if I don’t pay? If you decide not to pay, we will start the attack at the indicated date and uphold it until you do, there’s no counter measure to this, you will only end up wasting more money trying to find a solution. We will completely destroy your reputation amongst google and your customers. This is not a hoax, do not reply to this email, don’t try to reason or negotiate, we will not read any replies. Once you have paid we will stop what we were doing and you will never hear from us again! Please note that Bitcoin is anonymous and no one will find out that you have complied.'),(330,84,'name_1','Cornell Crowell| | Crowell'),(331,84,'email_2','crowell.cornell@outlook.com'),(332,84,'text_3',''),(333,84,'textarea_4','Get your new site noticed by submitting it to our free directory. http://bit.ly/3JjLZe1'),(334,85,'name_1','Eric Jones| | Jones'),(335,85,'email_2','ericjonesmyemail@gmail.com'),(336,85,'text_3','Instead, congrats'),(337,85,'textarea_4','Good day, My name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement – Congratulations What for? Part of my job is to check out websites and the work you’ve done with naplesirrigation.com definitely stands out. It’s clear you took building a website seriously and made a real investment of time and resources into making it top quality. There is, however, a catch… more accurately, a question… So when someone like me happens to find your site – maybe at the top of the search results (nice job BTW) or just through a random link, how do you know? More importantly, how do you make a connection with that person? Studies show that 7 out of 10 visitors don’t stick around – they’re there one second and then gone with the wind. Here’s a way to create INSTANT engagement that you may not have known about… Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know INSTANTLY that they’re interested – so that you can talk to that lead while they’re literally checking out naplesirrigation.com. CLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works. It could be a game-changer for your business – and it gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately (and there’s literally a 100X difference between contacting someone within 5 minutes versus 30 minutes.) Plus then, even if you don’t close a deal right away, you can connect later on with text messages for new offers, content links, even just follow up notes to build a relationship. Everything I’ve just described is simple, easy, and effective. CLICK HERE https://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business. You could be converting up to 100X more leads today! Eric PS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(338,86,'name_1','Milton| | Berle'),(339,86,'email_2','estimator.miltonberle@gmail.com'),(340,86,'text_3','Construction Estimation, Takeoffs, and Scheduling.'),(341,86,'textarea_4','Greeting, All-Pro Estimation LLC provides the cost estimation and Quantity Take Off for General contractors or Subcontractors. We charge according to the scope of work and size of the project.  We are specialized in all Construction Csi Divisions. We deliver Accurately And On Time. Please, let us know if there is any procedure to work with you, or do send me the Drawings/Plans whenever you have them for estimation.  I\'ll get back to you with an economic proposal shortly. I am looking forward to hearing from you soon.  Thanks. MILTON BERLE Senior Estimator Estimation Department 315 636 4446 We do work in all states of America &amp; Canada.'),(342,87,'name_1','Lizzie Ruggiero| | Ruggiero'),(343,87,'email_2','lizzie.ruggiero@gmail.com'),(344,87,'text_3','your content'),(345,87,'textarea_4','More content means more traffic and sales, and this AI tool will double your output by automatically generating audio from text: http://aitoolsuite.com It\'ll boost naplesirrigation.com on all key performance indicators'),(346,88,'name_1','Henrietta Mancini| | Mancini'),(347,88,'email_2','henrietta.mancini@gmail.com'),(348,88,'text_3','your content'),(349,88,'textarea_4','More content means more traffic and sales, and this AI tool will double your output by automatically generating audio from text: http://aitoolsuite.com It\'ll boost naplesirrigation.com on all key performance indicators'),(350,89,'name_1','Lisa E. Doty| | E. Doty'),(351,89,'email_2','baum.jerrold@gmail.com'),(352,89,'text_3','Start ranking higher, for more keywords'),(353,89,'textarea_4','Hi You already know that quality unique content does wonders for your Google rankings. You also know that such content takes ages to write — or it costs you an arm and two legs if you hire someone to write it for you. This tool saves you both time and money. It takes a single article and turns it into dozens of 100% unique, human-quality articles. All these unique articles will let you rank higher, and for more profitable keywords. Why this tool can do this? It’s amazing technology helps it stand out among the others Check it out https://bit.ly/01uniquecontent Cheers Lisa E. Doty | https://bit.ly/01uniquecontent Mobile: 201 422 4581'),(354,90,'name_1','Eric Jones| | Jones'),(355,90,'email_2','ericjonesmyemail@gmail.com'),(356,90,'text_3','Who needs eyeballs, you need BUSINESS'),(357,90,'textarea_4','My name’s Eric and I just came across your website - naplesirrigation.com - in the search results. Here’s what that means to me… Your SEO’s working. You’re getting eyeballs – mine at least. Your content’s pretty good, wouldn’t change a thing. BUT… Eyeballs don’t pay the bills. CUSTOMERS do. And studies show that 7 out of 10 visitors to a site like naplesirrigation.com will drop by, take a gander, and then head for the hills without doing anything else. It’s like they never were even there. You can fix this. You can make it super-simple for them to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket… thanks to Talk With Web Visitor. Talk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number. It lets you know immediately – so you can talk to that lead immediately… without delay… BEFORE they head for those hills. CLICK HERE http://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works. Now it’s also true that when reaching out to hot leads, you MUST act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better! That’s what makes our new SMS Text With Lead feature so powerful… you’ve got their phone number, so now you can start a text message (SMS) conversation with them… so even if they don’t take you up on your offer right away, you continue to text them new offers, new content, and new reasons to do business with you. This could change everything for you and your business. CLICK HERE http://boostleadgeneration.com to learn more about everything Talk With Web Visitor can do and start turing eyeballs into money. Eric PS: Talk With Web Visitor offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! It even includes International Long Distance Calling. Paying customers are out there waiting. Starting connecting today by CLICKING HERE http://boostleadgeneration.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(358,91,'name_1','Cynthia Santos| | Santos'),(359,91,'email_2','margarita.carmichael@gmail.com'),(360,91,'text_3','Have you experienced ULTRA LOW SUPPORT with your web hosting?'),(361,91,'textarea_4','Hi These are some of usual problem people are facing with their hosting service: [1] support that was painfully slow to respond to requests [2] even slower, ancient, overloaded servers with horrible page loading times, especially under any traffic load [3] hosting support that didn’t want to actually fix anything but just try to quickly send me to long, difficult, technical articles and expect me to: (a) understand them, and then, (b] apply the correct solution [4] And did you become an entrepreneur to learn complex Web technologies or to build a fantastic business through marketing, developing relationships with customers and establishing market presence? [5] and ‘unlimited’/unmetered’ websites/bandwidth/disk storage deals that turn out to be VERY limited as soon as much traffic comes to a site or a certain level of server resources are needed – a total scam shamefully still going on today e.g. If your faced one of these issues, then I think you should have a look at my favorite hosting provider – The Best Website Hosting With 30s Support - https://bit.ly/host30ssupport Cheers and happy hosting Cynthia Santos https://bit.ly/host30ssupport'),(362,92,'name_1','Eric Jones| | Jones'),(363,92,'email_2','ericjonesmyemail@gmail.com'),(364,92,'text_3','Your site – more leads?'),(365,92,'textarea_4','Hey, this is Eric and I ran across naplesirrigation.com a few minutes ago. Looks great… but now what? By that I mean, when someone like me finds your website – either through Search or just bouncing around – what happens next? Do you get a lot of leads from your site, or at least enough to make you happy? Honestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Here’s an idea… How about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site… You can – Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site. CLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works. You’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold. It gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation. That way, even if you don’t close a deal right away, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Pretty sweet – AND effective. CLICK HERE https://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business. You could be converting up to 100X more leads today! Eric PS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(366,93,'name_1','Eric Jones| | Jones'),(367,93,'email_2','ericjonesmyemail@gmail.com'),(368,93,'text_3','Cool website!'),(369,93,'textarea_4','Cool website! My name’s Eric, and I just found your site - naplesirrigation.com - while surfing the net. You showed up at the top of the search results, so I checked you out. Looks like what you’re doing is pretty cool. But if you don’t mind me asking – after someone like me stumbles across naplesirrigation.com, what usually happens? Is your site generating leads for your business? I’m guessing some, but I also bet you’d like more… studies show that 7 out 10 who land on a site wind up leaving without a trace. Not good. Here’s a thought – what if there was an easy way for every visitor to “raise their hand” to get a phone call from you INSTANTLY… the second they hit your site and said, “call me now.” You can – Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know IMMEDIATELY – so that you can talk to that lead while they’re literally looking over your site. CLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works. Time is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better! That’s why we built out our new SMS Text With Lead feature… because once you’ve captured the visitor’s phone number, you can automatically start a text message (SMS) conversation. Think about the possibilities – even if you don’t close a deal then and there, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Wouldn’t that be cool? CLICK HERE http://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business. You could be converting up to 100X more leads today! Eric PS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://jumboleadmagnet.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=naplesirrigation.com'),(370,94,'name_1','Gregorio Laboureyas| | Laboureyas'),(371,94,'email_2','laboureyas.gregorio@gmail.com'),(372,94,'text_3','check out'),(373,94,'textarea_4','You should check out: http://sitesavants.com It\'s a tool that can get 1st page rankings for naplesirrigation.com in just 3 clicks!'),(374,95,'name_1','Omar O\'Shane| | O\'Shane'),(375,95,'email_2','omar.oshane@outlook.com'),(376,95,'text_3','check out'),(377,95,'textarea_4','You should check out: http://sitesavants.com It\'s a tool that can get 1st page rankings for naplesirrigation.com in just 3 clicks!'),(378,96,'name_1','Hermelinda Albrecht| | Albrecht'),(379,96,'email_2','albrecht.hermelinda85@outlook.com'),(380,96,'text_3','RE: naplesirrigation.com FINAL-NOTICE'),(381,96,'textarea_4','*INFO SERVICE EXPIRATION FOR naplesirrigation.com Attention: Accounts Payable / Domain Owner / Best Lawn Irrigation Service contact 239-793-775 Naples FL Your Domain: www.naplesirrigation.com Expected Reply before: Feb 05, 2023. This Notice for: www.naplesirrigation.com will expire on Feb 05, 2023. *For details and to make a payment for naplesirrigation.com services by credit card: Visit: https://register-collection.com/?web=naplesirrigation.com 020520231923200343 6534385'),(382,97,'name_1','Eric Jones| | Jones'),(383,97,'email_2','ericjonesmyemail@gmail.com'),(384,97,'text_3','Try this, get more leads'),(385,97,'textarea_4','Hi, my name is Eric and I’m betting you’d like your website naplesirrigation.com to generate more leads. Here’s how: Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you as soon as they say they’re interested – so that you can talk to that lead while they’re still there at naplesirrigation.com. Talk With Web Visitor – CLICK HERE http://jumboleadmagnet.com for a live demo now. And now that you’ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation – answer questions, provide more info, and close a deal that way. If they don’t take you up on your offer then, just follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. CLICK HERE http://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business. The difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today! Try Talk With Web Visitor and get more leads now. Eric PS: The studies show 7 out of 10 visitors don’t hang around – you can’t afford to lose them! Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://jumboleadmagnet.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=naplesirrigation.com'),(386,98,'name_1','Eric Jones| | Jones'),(387,98,'email_2','ericjonesmyemail@gmail.com'),(388,98,'text_3','how to turn eyeballs into phone calls'),(389,98,'textarea_4','Hi, Eric here with a quick thought about your website naplesirrigation.com... I’m on the internet a lot and I look at a lot of business websites. Like yours, many of them have great content. But all too often, they come up short when it comes to engaging and connecting with anyone who visits. I get it – it’s hard. Studies show 7 out of 10 people who land on a site, abandon it in moments without leaving even a trace. You got the eyeball, but nothing else. Here’s a solution for you… Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. You’ll know immediately they’re interested and you can call them directly to talk with them literally while they’re still on the web looking at your site. CLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works. It could be huge for your business – and because you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately… and contacting someone in that 5 minute window is 100 times more powerful than reaching out 30 minutes or more later. Plus, with text messaging you can follow up later with new offers, content links, even just follow up notes to keep the conversation going. Everything I’ve just described is extremely simple to implement, cost-effective, and profitable. CLICK HERE http://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business. You could be converting up to 100X more eyeballs into leads today! Eric PS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://jumboleadmagnet.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=naplesirrigation.com'),(390,99,'name_1','Eric Jones| | Jones'),(391,99,'email_2','ericjonesmyemail@gmail.com'),(392,99,'text_3','Who needs eyeballs, you need BUSINESS'),(393,99,'textarea_4','My name’s Eric and I just came across your website - naplesirrigation.com - in the search results. Here’s what that means to me… Your SEO’s working. You’re getting eyeballs – mine at least. Your content’s pretty good, wouldn’t change a thing. BUT… Eyeballs don’t pay the bills. CUSTOMERS do. And studies show that 7 out of 10 visitors to a site like naplesirrigation.com will drop by, take a gander, and then head for the hills without doing anything else. It’s like they never were even there. You can fix this. You can make it super-simple for them to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket… thanks to Talk With Web Visitor. Talk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number. It lets you know immediately – so you can talk to that lead immediately… without delay… BEFORE they head for those hills. CLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works. Now it’s also true that when reaching out to hot leads, you MUST act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better! That’s what makes our new SMS Text With Lead feature so powerful… you’ve got their phone number, so now you can start a text message (SMS) conversation with them… so even if they don’t take you up on your offer right away, you continue to text them new offers, new content, and new reasons to do business with you. This could change everything for you and your business. CLICK HERE http://jumboleadmagnet.com to learn more about everything Talk With Web Visitor can do and start turing eyeballs into money. Eric PS: Talk With Web Visitor offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! It even includes International Long Distance Calling. Paying customers are out there waiting. Starting connecting today by CLICKING HERE http://jumboleadmagnet.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=naplesirrigation.com'),(394,100,'name_1','Eric Jones| | Jones'),(395,100,'email_2','ericjonesmyemail@gmail.com'),(396,100,'text_3','There they go…'),(397,100,'textarea_4','Hey, my name’s Eric and for just a second, imagine this… - Someone does a search and winds up at naplesirrigation.com. - They hang out for a minute to check it out. “I’m interested… but… maybe…” - And then they hit the back button and check out the other search results instead. - Bottom line – you got an eyeball, but nothing else to show for it. - There they go. This isn’t really your fault – it happens a LOT – studies show 7 out of 10 visitors to any site disappear without leaving a trace. But you CAN fix that. Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know right then and there – enabling you to call that lead while they’re literally looking over your site. CLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works. Time is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better! Plus, now that you have their phone number, with our new SMS Text With Lead feature you can automatically start a text (SMS) conversation… so even if you don’t close a deal then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Strong stuff. CLICK HERE http://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business. You could be converting up to 100X more leads today! Eric PS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://jumboleadmagnet.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=naplesirrigation.com'),(398,101,'name_1','Eric Jones| | Jones'),(399,101,'email_2','ericjonesmyemail@gmail.com'),(400,101,'text_3','how to turn eyeballs into phone calls'),(401,101,'textarea_4','Hi, Eric here with a quick thought about your website naplesirrigation.com... I’m on the internet a lot and I look at a lot of business websites. Like yours, many of them have great content. But all too often, they come up short when it comes to engaging and connecting with anyone who visits. I get it – it’s hard. Studies show 7 out of 10 people who land on a site, abandon it in moments without leaving even a trace. You got the eyeball, but nothing else. Here’s a solution for you… Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. You’ll know immediately they’re interested and you can call them directly to talk with them literally while they’re still on the web looking at your site. CLICK HERE http://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works. It could be huge for your business – and because you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately… and contacting someone in that 5 minute window is 100 times more powerful than reaching out 30 minutes or more later. Plus, with text messaging you can follow up later with new offers, content links, even just follow up notes to keep the conversation going. Everything I’ve just described is extremely simple to implement, cost-effective, and profitable. CLICK HERE http://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business. You could be converting up to 100X more eyeballs into leads today! Eric PS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://boostleadgeneration.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(402,102,'name_1','Maricruz Mcdermott| | Mcdermott'),(403,102,'email_2','maricruz.mcdermott66@gmail.com'),(404,102,'text_3','Vqeoc fr F P h'),(405,102,'textarea_4','Well done on the new site! Submit it to our directory and increase its online presence. http://bit.ly/40EkWjR'),(406,103,'name_1','Eric Jones| | Jones'),(407,103,'email_2','ericjonesmyemail@gmail.com'),(408,103,'text_3','Turn Surf-Surf-Surf into Talk Talk Talk'),(409,103,'textarea_4','Hello, my name’s Eric and I just ran across your website at naplesirrigation.com... I found it after a quick search, so your SEO’s working out… Content looks pretty good… One thing’s missing though… A QUICK, EASY way to connect with you NOW. Because studies show that a web lead like me will only hang out a few seconds – 7 out of 10 disappear almost instantly, Surf Surf Surf… then gone forever. I have the solution: Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. You’ll know immediately they’re interested and you can call them directly to TALK with them - literally while they’re still on the web looking at your site. CLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works and even give it a try… it could be huge for your business. Plus, now that you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation pronto… which is so powerful, because connecting with someone within the first 5 minutes is 100 times more effective than waiting 30 minutes or more later. The new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship. Everything I’ve just described is extremely simple to implement, cost-effective, and profitable. CLICK HERE https://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business, potentially converting up to 100X more eyeballs into leads today! Eric PS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(410,104,'name_1','Eric Jones| | Jones'),(411,104,'email_2','ericjonesmyemail@gmail.com'),(412,104,'text_3','Your site – more leads?'),(413,104,'textarea_4','Hey, this is Eric and I ran across naplesirrigation.com a few minutes ago. Looks great… but now what? By that I mean, when someone like me finds your website – either through Search or just bouncing around – what happens next? Do you get a lot of leads from your site, or at least enough to make you happy? Honestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Here’s an idea… How about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site… You can – Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site. CLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works. You’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold. It gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation. That way, even if you don’t close a deal right away, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Pretty sweet – AND effective. CLICK HERE http://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business. You could be converting up to 100X more leads today! Eric PS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://jumboleadmagnet.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=naplesirrigation.com'),(414,105,'name_1','Eric Jones| | Jones'),(415,105,'email_2','eric.jones.z.mail@gmail.com'),(416,105,'text_3','Why not TALK with your leads?'),(417,105,'textarea_4','Hello naplesirrigation.com Admin! My name’s Eric and I just found your site naplesirrigation.com. It’s got a lot going for it, but here’s an idea to make it even MORE effective. Talk With Web Visitor – CLICK HERE http://advanceleadgeneration.com for a live demo now. Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site. And once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation… and if they don’t take you up on your offer then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. CLICK HERE http://advanceleadgeneration.com to discover what Talk With Web Visitor can do for your business. The difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today! Eric PS: Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Don’t keep losing them. Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://advanceleadgeneration.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(418,106,'name_1','Eric Jones| | Jones'),(419,106,'email_2','ericjonesmyemail@gmail.com'),(420,106,'text_3','Cool website!'),(421,106,'textarea_4','Hi naplesirrigation.com Owner. Cool website! My name’s Eric, and I just found your site - naplesirrigation.com - while surfing the net. You showed up at the top of the search results, so I checked you out. Looks like what you’re doing is pretty cool. But if you don’t mind me asking – after someone like me stumbles across naplesirrigation.com, what usually happens? Is your site generating leads for your business? I’m guessing some, but I also bet you’d like more… studies show that 7 out 10 who land on a site wind up leaving without a trace. Not good. Here’s a thought – what if there was an easy way for every visitor to “raise their hand” to get a phone call from you INSTANTLY… the second they hit your site and said, “call me now.” You can – Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know IMMEDIATELY – so that you can talk to that lead while they’re literally looking over your site. CLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. Time is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better! That’s why we built out our new SMS Text With Lead feature… because once you’ve captured the visitor’s phone number, you can automatically start a text message (SMS) conversation. Think about the possibilities – even if you don’t close a deal then and there, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Wouldn’t that be cool? CLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business. You could be converting up to 100X more leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=naplesirrigation.com'),(422,107,'name_1','Eric Jones| | Jones'),(423,107,'email_2','eric.jones.z.mail@gmail.com'),(424,107,'text_3','Why not TALK with your leads?'),(425,107,'textarea_4','Hi naplesirrigation.com Webmaster! My name’s Eric and I just found your site naplesirrigation.com. It’s got a lot going for it, but here’s an idea to make it even MORE effective. Web Visitors Into Leads – CLICK HERE http://advanceleadgeneration.com for a live demo now. Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site. And once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation… and if they don’t take you up on your offer then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. CLICK HERE http://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business. The difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today! Eric PS: Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Don’t keep losing them. Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(426,108,'name_1','Eric Jones| | Jones'),(427,108,'email_2','ericjonesmyemail@gmail.com'),(428,108,'text_3','Try this, get more leads'),(429,108,'textarea_4','Dear naplesirrigation.com Webmaster. My name is Eric and I’m betting you’d like your website naplesirrigation.com to generate more leads. Here’s how: Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you as soon as they say they’re interested – so that you can talk to that lead while they’re still there at naplesirrigation.com. Web Visitors Into Leads – CLICK HERE http://jumboleadmagnet.com for a live demo now. And now that you’ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation – answer questions, provide more info, and close a deal that way. If they don’t take you up on your offer then, just follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. CLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business. The difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today! Try Web Visitors Into Leads and get more leads now. Eric PS: The studies show 7 out of 10 visitors don’t hang around – you can’t afford to lose them! Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=naplesirrigation.com'),(430,109,'name_1','Eric Jones| | Jones'),(431,109,'email_2','ericjonesmyemail@gmail.com'),(432,109,'text_3','Your site – more leads?'),(433,109,'textarea_4','Dear naplesirrigation.com Webmaster! this is Eric and I ran across naplesirrigation.com a few minutes ago. Looks great… but now what? By that I mean, when someone like me finds your website – either through Search or just bouncing around – what happens next? Do you get a lot of leads from your site, or at least enough to make you happy? Honestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Here’s an idea… How about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site… You can – Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site. CLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. You’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold. It gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation. That way, even if you don’t close a deal right away, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Pretty sweet – AND effective. CLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business. You could be converting up to 100X more leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(434,110,'name_1','Eric Jones| | Jones'),(435,110,'email_2','ericjonesmyemail@gmail.com'),(436,110,'text_3','how to turn eyeballs into phone calls'),(437,110,'textarea_4','Hi naplesirrigation.com Admin. Eric here with a quick thought about your website naplesirrigation.com... I’m on the internet a lot and I look at a lot of business websites. Like yours, many of them have great content. But all too often, they come up short when it comes to engaging and connecting with anyone who visits. I get it – it’s hard. Studies show 7 out of 10 people who land on a site, abandon it in moments without leaving even a trace. You got the eyeball, but nothing else. Here’s a solution for you… Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. You’ll know immediately they’re interested and you can call them directly to talk with them literally while they’re still on the web looking at your site. CLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. It could be huge for your business – and because you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately… and contacting someone in that 5 minute window is 100 times more powerful than reaching out 30 minutes or more later. Plus, with text messaging you can follow up later with new offers, content links, even just follow up notes to keep the conversation going. Everything I’ve just described is extremely simple to implement, cost-effective, and profitable. CLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business. You could be converting up to 100X more eyeballs into leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=naplesirrigation.com'),(438,111,'name_1','Eric Jones| | Jones'),(439,111,'email_2','ericjonesmyemail@gmail.com'),(440,111,'text_3','There they go…'),(441,111,'textarea_4','To the naplesirrigation.com Webmaster. My name’s Eric and for just a second, imagine this… - Someone does a search and winds up at naplesirrigation.com. - They hang out for a minute to check it out. “I’m interested… but… maybe…” - And then they hit the back button and check out the other search results instead. - Bottom line – you got an eyeball, but nothing else to show for it. - There they go. This isn’t really your fault – it happens a LOT – studies show 7 out of 10 visitors to any site disappear without leaving a trace. But you CAN fix that. Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know right then and there – enabling you to call that lead while they’re literally looking over your site. CLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. Time is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better! Plus, now that you have their phone number, with our new SMS Text With Lead feature you can automatically start a text (SMS) conversation… so even if you don’t close a deal then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Strong stuff. CLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business. You could be converting up to 100X more leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=naplesirrigation.com'),(442,112,'name_1','Eric Jones| | Jones'),(443,112,'email_2','ericjonesmyemail@gmail.com'),(444,112,'text_3','Try this, get more leads'),(445,112,'textarea_4','Dear naplesirrigation.com Owner! my name is Eric and I’m betting you’d like your website naplesirrigation.com to generate more leads. Here’s how: Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you as soon as they say they’re interested – so that you can talk to that lead while they’re still there at naplesirrigation.com. Web Visitors Into Leads – CLICK HERE http://advanceleadgeneration.com for a live demo now. And now that you’ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation – answer questions, provide more info, and close a deal that way. If they don’t take you up on your offer then, just follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. CLICK HERE http://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business. The difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today! Try Web Visitors Into Leads and get more leads now. Eric PS: The studies show 7 out of 10 visitors don’t hang around – you can’t afford to lose them! Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(446,113,'name_1','Winston| | R'),(447,113,'email_2','winstonr223.777@gmail.com'),(448,113,'text_3','Nice site, quick question...'),(449,113,'textarea_4','Winston here from Iowa. I just wanted to see if you need an extra hand in the way of site upkeep/tweaking, adding emails to your newsletters from my targeted database (I have millions of them that you can use). I could even setup email campaigns for lead generation emailing at no extra cost to you to send out using my mail servers. Unique blog post material, extra traffic by getting others to start sharing your site across their own social media accounts, social media management, optimizing the site, create unique videos and images using Google AI, etc also help quite a bit. I can even post ads in every capital city in the country on CraigsList for any one of their 500 categories for some immediate traffic. I have quite a few ways I can set all of this up and do this for you. I don\'t mean to impose, I was just curious. I\'ve been doing this for 22+ years and was just wondering if you needed any extra help. All the best, Winston tel:1-319-382-0597'),(450,114,'name_1','Eric Jones| | Jones'),(451,114,'email_2','ericjonesmyemail@gmail.com'),(452,114,'text_3','Your site – more leads?'),(453,114,'textarea_4','Dear naplesirrigation.com Admin! This is Eric and I ran across naplesirrigation.com a few minutes ago. Looks great… but now what? By that I mean, when someone like me finds your website – either through Search or just bouncing around – what happens next? Do you get a lot of leads from your site, or at least enough to make you happy? Honestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Here’s an idea… How about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site… You can – Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site. CLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. You’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold. It gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation. That way, even if you don’t close a deal right away, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Pretty sweet – AND effective. CLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business. You could be converting up to 100X more leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=naplesirrigation.com'),(454,115,'name_1','Eric Jones| | Jones'),(455,115,'email_2','ericjonesmyemail@gmail.com'),(456,115,'text_3','Turn Surf-Surf-Surf into Talk Talk Talk'),(457,115,'textarea_4','Dear naplesirrigation.com Admin. my name’s Eric and I just ran across your website at naplesirrigation.com... I found it after a quick search, so your SEO’s working out… Content looks pretty good… One thing’s missing though… A QUICK, EASY way to connect with you NOW. Because studies show that a web lead like me will only hang out a few seconds – 7 out of 10 disappear almost instantly, Surf Surf Surf… then gone forever. I have the solution: Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. You’ll know immediately they’re interested and you can call them directly to TALK with them - literally while they’re still on the web looking at your site. CLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works and even give it a try… it could be huge for your business. Plus, now that you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation pronto… which is so powerful, because connecting with someone within the first 5 minutes is 100 times more effective than waiting 30 minutes or more later. The new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship. Everything I’ve just described is extremely simple to implement, cost-effective, and profitable. CLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business, potentially converting up to 100X more eyeballs into leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(458,116,'name_1','Eric Jones| | Jones'),(459,116,'email_2','ericjonesmyemail@gmail.com'),(460,116,'text_3','Why not TALK with your leads?'),(461,116,'textarea_4','Hi naplesirrigation.com Webmaster! My name’s Eric and I just found your site naplesirrigation.com. It’s got a lot going for it, but here’s an idea to make it even MORE effective. Web Visitors Into Leads – CLICK HERE https://advanceleadgeneration.com for a live demo now. Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site. And once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation… and if they don’t take you up on your offer then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. CLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business. The difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today! Eric PS: Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Don’t keep losing them. Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(462,117,'name_1','Earnestine Arreguin| | Arreguin'),(463,117,'email_2','earnestine.arreguin@gmail.com'),(464,117,'text_3','Hi naplesirrigation.com Owner.'),(465,117,'textarea_4','This message was sent to you via your website contact form. I get literally dozens of leads this way every day from people like yourself responding to my message. Now I want to offer this service to you. I will generate leads for your business using this exact same method. Proof that it works? Well if you are writing a reply to me right now then you just proved it can work for you too! Please email me here for details: rustam1998roman@itm311.com'),(466,118,'name_1','Tahlia Brackett| | Brackett'),(467,118,'email_2','tahlia.brackett@yahoo.com'),(468,118,'text_3','Sye uk'),(469,118,'textarea_4','Good job on the new site! Submit it to our directory for increased traffic. http://bit.ly/3YBt5nF'),(470,119,'name_1','Winston| | R'),(471,119,'email_2','winstonr223.777@gmail.com'),(472,119,'text_3','About your site...'),(473,119,'textarea_4','Winston here from Iowa. I just wanted to see if you need an extra hand in the way of site upkeep/tweaking, adding emails to your newsletters from my targeted database (I have millions of them that you can use). I could even setup email campaigns for lead generation emailing at no extra cost to you to send out using my mail servers. Unique blog post material, extra traffic by getting others to start sharing your site across their own social media accounts, social media management, optimizing the site, create unique videos and images using Google AI, etc also help quite a bit. I can even post ads in every capital city in the country on CraigsList for any one of their 500 categories for some immediate traffic. I have quite a few ways I can set all of this up and do this for you. I don\'t mean to impose, I was just curious. I\'ve been doing this for 22+ years and was just wondering if you needed any extra help. All the best, Winston tel:1-319-382-0597'),(474,120,'name_1','Eric Jones| | Jones'),(475,120,'email_2','ericjonesmyemail@gmail.com'),(476,120,'text_3','Why not TALK with your leads?'),(477,120,'textarea_4','To the naplesirrigation.com Admin. My name’s Eric and I just found your site naplesirrigation.com. It’s got a lot going for it, but here’s an idea to make it even MORE effective. Web Visitors Into Leads – CLICK HERE http://jumboleadmagnet.com for a live demo now. Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site. And once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation… and if they don’t take you up on your offer then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. CLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business. The difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today! Eric PS: Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Don’t keep losing them. Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=naplesirrigation.com'),(478,121,'name_1','Ewan Cowper| | Cowper'),(479,121,'email_2','cowper.ewan@gmail.com'),(480,121,'text_3','Can I talk to someone?'),(481,121,'textarea_4','I wish I could talk to someone. naplesirrigation.com is amazing, but nothing can replace real human interaction, except for AI: http://growmastery.com This automated AI bot can 3-5x your site\'s performance by engaging and interacting with your visitors, and it literally takes seconds to setup. Good luck!'),(482,122,'name_1','Emilio Freud| | Freud'),(483,122,'email_2','freud.emilio@gmail.com'),(484,122,'text_3','Hello naplesirrigation.com Admin.'),(485,122,'textarea_4','When searching for a business online, I always check their rating and the number of positive feedback they have. That\'s why I\'m contacting you now – to show you how to generate more authentic 5-star reviews, that will help increase the number of calls you get from your existing ads or listings. To learn more, click here: http://bit.ly/3kFAHqw'),(486,123,'name_1','Eric Jones| | Jones'),(487,123,'email_2','ericjonesmyemail@gmail.com'),(488,123,'text_3','Try this, get more leads'),(489,123,'textarea_4','To the naplesirrigation.com Owner. my name is Eric and I’m betting you’d like your website naplesirrigation.com to generate more leads. Here’s how: Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you as soon as they say they’re interested – so that you can talk to that lead while they’re still there at naplesirrigation.com. Web Visitors Into Leads – CLICK HERE https://advanceleadgeneration.com for a live demo now. And now that you’ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation – answer questions, provide more info, and close a deal that way. If they don’t take you up on your offer then, just follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. CLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business. The difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today! Try Web Visitors Into Leads and get more leads now. Eric PS: The studies show 7 out of 10 visitors don’t hang around – you can’t afford to lose them! Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(490,124,'name_1','Eric Jones| | Jones'),(491,124,'email_2','ericjonesmyemail@gmail.com'),(492,124,'text_3','Turn Surf-Surf-Surf into Talk Talk Talk'),(493,124,'textarea_4','To the naplesirrigation.com Admin! My name’s Eric and I just ran across your website at naplesirrigation.com... I found it after a quick search, so your SEO’s working out… Content looks pretty good… One thing’s missing though… A QUICK, EASY way to connect with you NOW. Because studies show that a web lead like me will only hang out a few seconds – 7 out of 10 disappear almost instantly, Surf Surf Surf… then gone forever. I have the solution: Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. You’ll know immediately they’re interested and you can call them directly to TALK with them - literally while they’re still on the web looking at your site. CLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works and even give it a try… it could be huge for your business. Plus, now that you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation pronto… which is so powerful, because connecting with someone within the first 5 minutes is 100 times more effective than waiting 30 minutes or more later. The new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship. Everything I’ve just described is extremely simple to implement, cost-effective, and profitable. CLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business, potentially converting up to 100X more eyeballs into leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=naplesirrigation.com'),(494,125,'name_1','Eric Jones| | Jones'),(495,125,'email_2','ericjonesmyemail@gmail.com'),(496,125,'text_3','Cool website!'),(497,125,'textarea_4','Dear naplesirrigation.com Administrator. Cool website! My name’s Eric, and I just found your site - naplesirrigation.com - while surfing the net. You showed up at the top of the search results, so I checked you out. Looks like what you’re doing is pretty cool. But if you don’t mind me asking – after someone like me stumbles across naplesirrigation.com, what usually happens? Is your site generating leads for your business? I’m guessing some, but I also bet you’d like more… studies show that 7 out 10 who land on a site wind up leaving without a trace. Not good. Here’s a thought – what if there was an easy way for every visitor to “raise their hand” to get a phone call from you INSTANTLY… the second they hit your site and said, “call me now.” You can – Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know IMMEDIATELY – so that you can talk to that lead while they’re literally looking over your site. CLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. Time is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better! That’s why we built out our new SMS Text With Lead feature… because once you’ve captured the visitor’s phone number, you can automatically start a text message (SMS) conversation. Think about the possibilities – even if you don’t close a deal then and there, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Wouldn’t that be cool? CLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business. You could be converting up to 100X more leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=naplesirrigation.com'),(498,126,'name_1','Eric Jones| | Jones'),(499,126,'email_2','ericjonesmyemail@gmail.com'),(500,126,'text_3','how to turn eyeballs into phone calls'),(501,126,'textarea_4','Dear naplesirrigation.com Administrator. Eric here with a quick thought about your website naplesirrigation.com... I’m on the internet a lot and I look at a lot of business websites. Like yours, many of them have great content. But all too often, they come up short when it comes to engaging and connecting with anyone who visits. I get it – it’s hard. Studies show 7 out of 10 people who land on a site, abandon it in moments without leaving even a trace. You got the eyeball, but nothing else. Here’s a solution for you… Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. You’ll know immediately they’re interested and you can call them directly to talk with them literally while they’re still on the web looking at your site. CLICK HERE http://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. It could be huge for your business – and because you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately… and contacting someone in that 5 minute window is 100 times more powerful than reaching out 30 minutes or more later. Plus, with text messaging you can follow up later with new offers, content links, even just follow up notes to keep the conversation going. Everything I’ve just described is extremely simple to implement, cost-effective, and profitable. CLICK HERE http://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business. You could be converting up to 100X more eyeballs into leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(502,127,'name_1','Eric Jones| | Jones'),(503,127,'email_2','ericjonesmyemail@gmail.com'),(504,127,'text_3','Cool website!'),(505,127,'textarea_4','Hello naplesirrigation.com Webmaster! Cool website! My name’s Eric, and I just found your site - naplesirrigation.com - while surfing the net. You showed up at the top of the search results, so I checked you out. Looks like what you’re doing is pretty cool. But if you don’t mind me asking – after someone like me stumbles across naplesirrigation.com, what usually happens? Is your site generating leads for your business? I’m guessing some, but I also bet you’d like more… studies show that 7 out 10 who land on a site wind up leaving without a trace. Not good. Here’s a thought – what if there was an easy way for every visitor to “raise their hand” to get a phone call from you INSTANTLY… the second they hit your site and said, “call me now.” You can – Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know IMMEDIATELY – so that you can talk to that lead while they’re literally looking over your site. CLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. Time is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better! That’s why we built out our new SMS Text With Lead feature… because once you’ve captured the visitor’s phone number, you can automatically start a text message (SMS) conversation. Think about the possibilities – even if you don’t close a deal then and there, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Wouldn’t that be cool? CLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business. You could be converting up to 100X more leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=naplesirrigation.com'),(506,128,'name_1','Eric Jones| | Jones'),(507,128,'email_2','ericjonesmyemail@gmail.com'),(508,128,'text_3','Your site – more leads?'),(509,128,'textarea_4','Hello naplesirrigation.com Administrator. this is Eric and I ran across naplesirrigation.com a few minutes ago. Looks great… but now what? By that I mean, when someone like me finds your website – either through Search or just bouncing around – what happens next? Do you get a lot of leads from your site, or at least enough to make you happy? Honestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Here’s an idea… How about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site… You can – Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site. CLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. You’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold. It gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation. That way, even if you don’t close a deal right away, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Pretty sweet – AND effective. CLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business. You could be converting up to 100X more leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(510,129,'name_1','Eric Jones| | Jones'),(511,129,'email_2','ericjonesmyemail@gmail.com'),(512,129,'text_3','Try this, get more leads'),(513,129,'textarea_4','Hi naplesirrigation.com Owner! my name is Eric and I’m betting you’d like your website naplesirrigation.com to generate more leads. Here’s how: Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you as soon as they say they’re interested – so that you can talk to that lead while they’re still there at naplesirrigation.com. Web Visitors Into Leads – CLICK HERE http://advanceleadgeneration.com for a live demo now. And now that you’ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation – answer questions, provide more info, and close a deal that way. If they don’t take you up on your offer then, just follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. CLICK HERE http://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business. The difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today! Try Web Visitors Into Leads and get more leads now. Eric PS: The studies show 7 out of 10 visitors don’t hang around – you can’t afford to lose them! Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(514,130,'name_1','Eric Jones| | Jones'),(515,130,'email_2','ericjonesmyemail@gmail.com'),(516,130,'text_3','Try this, get more leads'),(517,130,'textarea_4','Hello naplesirrigation.com Webmaster! My name is Eric and I’m betting you’d like your website naplesirrigation.com to generate more leads. Here’s how: Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you as soon as they say they’re interested – so that you can talk to that lead while they’re still there at naplesirrigation.com. Web Visitors Into Leads – CLICK HERE http://jumboleadmagnet.com for a live demo now. And now that you’ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation – answer questions, provide more info, and close a deal that way. If they don’t take you up on your offer then, just follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. CLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business. The difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today! Try Web Visitors Into Leads and get more leads now. Eric PS: The studies show 7 out of 10 visitors don’t hang around – you can’t afford to lose them! Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=naplesirrigation.com'),(518,131,'name_1','Eric Jones| | Jones'),(519,131,'email_2','ericjonesmyemail@gmail.com'),(520,131,'text_3','how to turn eyeballs into phone calls'),(521,131,'textarea_4','Dear naplesirrigation.com Administrator. Eric here with a quick thought about your website naplesirrigation.com... I’m on the internet a lot and I look at a lot of business websites. Like yours, many of them have great content. But all too often, they come up short when it comes to engaging and connecting with anyone who visits. I get it – it’s hard. Studies show 7 out of 10 people who land on a site, abandon it in moments without leaving even a trace. You got the eyeball, but nothing else. Here’s a solution for you… Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. You’ll know immediately they’re interested and you can call them directly to talk with them literally while they’re still on the web looking at your site. CLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. It could be huge for your business – and because you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately… and contacting someone in that 5 minute window is 100 times more powerful than reaching out 30 minutes or more later. Plus, with text messaging you can follow up later with new offers, content links, even just follow up notes to keep the conversation going. Everything I’ve just described is extremely simple to implement, cost-effective, and profitable. CLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business. You could be converting up to 100X more eyeballs into leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=naplesirrigation.com'),(522,132,'name_1','Sheila Cramp| | Cramp'),(523,132,'email_2','hacker@astonvilla.com.pl'),(524,132,'text_3','5 Vulnerabilities Have Been Found In Your Website'),(525,132,'textarea_4','We are a group of highly qualified ethical hackers who scan tens of thousands of sites every day for critical vulnerabilities and patch them for a small fee. On your site naplesirrigation.com - we have discovered 5 critical vulnerabilities, each of which can give attackers full access to your site, databases and the server as a whole. Pay $3000 (0.15 BTC) by visiting this site where you will be able to copy our bitcoin (btc) address or scan the QR code with your device https://www.blockchain.com/explorer/addresses/btc/3Mi2Es36sE6HUki29VjvviEJjEJGHdGABJ And after payment within 12 hours we will fix all the vulnerabilities on your site and you can sleep peacefully without worrying about the safety of your site and server. If we are hired by well-known corporations, then we charge from $50000 for our services, so you are lucky that we offer you the same service for $3000 (0.15 BTC)'),(526,133,'name_1','Eric Jones| | Jones'),(527,133,'email_2','ericjonesmyemail@gmail.com'),(528,133,'text_3','Who needs eyeballs, you need BUSINESS'),(529,133,'textarea_4','Hello naplesirrigation.com Webmaster. My name’s Eric and I just came across your website - naplesirrigation.com - in the search results. Here’s what that means to me… Your SEO’s working. You’re getting eyeballs – mine at least. Your content’s pretty good, wouldn’t change a thing. BUT… Eyeballs don’t pay the bills. CUSTOMERS do. And studies show that 7 out of 10 visitors to a site like naplesirrigation.com will drop by, take a gander, and then head for the hills without doing anything else. It’s like they never were even there. You can fix this. You can make it super-simple for them to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket… thanks to Web Visitors Into Leads. Web Visitors Into Leads is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number. It lets you know immediately – so you can talk to that lead immediately… without delay… BEFORE they head for those hills. CLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. Now it’s also true that when reaching out to hot leads, you MUST act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better! That’s what makes our new SMS Text With Lead feature so powerful… you’ve got their phone number, so now you can start a text message (SMS) conversation with them… so even if they don’t take you up on your offer right away, you continue to text them new offers, new content, and new reasons to do business with you. This could change everything for you and your business. CLICK HERE http://jumboleadmagnet.com to learn more about everything Web Visitors Into Leads can do and start turing eyeballs into money. Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! It even includes International Long Distance Calling. Paying customers are out there waiting. Starting connecting today by CLICKING HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=naplesirrigation.com'),(530,134,'name_1','Eric Jones| | Jones'),(531,134,'email_2','ericjonesmyemail@gmail.com'),(532,134,'text_3','There they go…'),(533,134,'textarea_4','To the naplesirrigation.com Administrator! My name’s Eric and for just a second, imagine this… - Someone does a search and winds up at naplesirrigation.com. - They hang out for a minute to check it out. “I’m interested… but… maybe…” - And then they hit the back button and check out the other search results instead. - Bottom line – you got an eyeball, but nothing else to show for it. - There they go. This isn’t really your fault – it happens a LOT – studies show 7 out of 10 visitors to any site disappear without leaving a trace. But you CAN fix that. Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know right then and there – enabling you to call that lead while they’re literally looking over your site. CLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. Time is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better! Plus, now that you have their phone number, with our new SMS Text With Lead feature you can automatically start a text (SMS) conversation… so even if you don’t close a deal then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Strong stuff. CLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business. You could be converting up to 100X more leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=naplesirrigation.com'),(534,135,'name_1','Eric Jones| | Jones'),(535,135,'email_2','ericjonesmyemail@gmail.com'),(536,135,'text_3','how to turn eyeballs into phone calls'),(537,135,'textarea_4','To the naplesirrigation.com Webmaster. Eric here with a quick thought about your website naplesirrigation.com... I’m on the internet a lot and I look at a lot of business websites. Like yours, many of them have great content. But all too often, they come up short when it comes to engaging and connecting with anyone who visits. I get it – it’s hard. Studies show 7 out of 10 people who land on a site, abandon it in moments without leaving even a trace. You got the eyeball, but nothing else. Here’s a solution for you… Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. You’ll know immediately they’re interested and you can call them directly to talk with them literally while they’re still on the web looking at your site. CLICK HERE http://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. It could be huge for your business – and because you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately… and contacting someone in that 5 minute window is 100 times more powerful than reaching out 30 minutes or more later. Plus, with text messaging you can follow up later with new offers, content links, even just follow up notes to keep the conversation going. Everything I’ve just described is extremely simple to implement, cost-effective, and profitable. CLICK HERE http://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business. You could be converting up to 100X more eyeballs into leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(538,136,'name_1','Hershel Bent| | Bent'),(539,136,'email_2','hacker@eetbaargoud.nl'),(540,136,'text_3','Your Site Has Been Hacked'),(541,136,'textarea_4','We have hacked your website naplesirrigation.com and extracted your databases. This was due to the security holes you had in your your site/server which have gained us remote control of pretty much everything that was on the server. Our team is mostly interested in customer, administrative, and employee information which we have extracted through your databases once we got remote control over the server. It still needs to be sorted out but it will be well-organized once finished. First, we will be going through the emails/sms information and contacting the recipient how you held in disregard about their information being exposed to a hacking group when you could have stopped it. This would be detrimental to your personal image with these relationships with these people. Lastly, now that we have information not only will we be monetizing off it with our methods but made public or sold to other people that will do whatever they wish with the information also after we are done. Now you can put a stop to this by paying a $3000 fee (0.11 BTC) in bitcoin to the address 38disGUQLCmPjoJQTd3qT2s55YyNfB3t5R We will be notified of payment which we will then delete the information we have obtained, patch the hole in the site/server which we got in and remove you from any future targeting in the future. You have 72 hours in doing so after viewing this message or the series of steps will commence. You can obtain bitcoin through such services such as paxful.com or do a search on bing.com'),(542,137,'name_1','Eric Jones| | Jones'),(543,137,'email_2','ericjonesmyemail@gmail.com'),(544,137,'text_3','Your site – more leads?'),(545,137,'textarea_4','To the naplesirrigation.com Webmaster! this is Eric and I ran across naplesirrigation.com a few minutes ago. Looks great… but now what? By that I mean, when someone like me finds your website – either through Search or just bouncing around – what happens next? Do you get a lot of leads from your site, or at least enough to make you happy? Honestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Here’s an idea… How about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site… You can – Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site. CLICK HERE http://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. You’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold. It gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation. That way, even if you don’t close a deal right away, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Pretty sweet – AND effective. CLICK HERE http://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business. You could be converting up to 100X more leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(546,138,'name_1','Eric Jones| | Jones'),(547,138,'email_2','ericjonesmyemail@gmail.com'),(548,138,'text_3','Turn Surf-Surf-Surf into Talk Talk Talk'),(549,138,'textarea_4','Dear naplesirrigation.com Owner. my name’s Eric and I just ran across your website at naplesirrigation.com... I found it after a quick search, so your SEO’s working out… Content looks pretty good… One thing’s missing though… A QUICK, EASY way to connect with you NOW. Because studies show that a web lead like me will only hang out a few seconds – 7 out of 10 disappear almost instantly, Surf Surf Surf… then gone forever. I have the solution: Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. You’ll know immediately they’re interested and you can call them directly to TALK with them - literally while they’re still on the web looking at your site. CLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works and even give it a try… it could be huge for your business. Plus, now that you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation pronto… which is so powerful, because connecting with someone within the first 5 minutes is 100 times more effective than waiting 30 minutes or more later. The new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship. Everything I’ve just described is extremely simple to implement, cost-effective, and profitable. CLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business, potentially converting up to 100X more eyeballs into leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(550,139,'name_1','Eric Jones| | Jones'),(551,139,'email_2','ericjonesmyemail@gmail.com'),(552,139,'text_3','Your site – more leads?'),(553,139,'textarea_4','To the naplesirrigation.com Owner! this is Eric and I ran across naplesirrigation.com a few minutes ago. Looks great… but now what? By that I mean, when someone like me finds your website – either through Search or just bouncing around – what happens next? Do you get a lot of leads from your site, or at least enough to make you happy? Honestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Here’s an idea… How about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site… You can – Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site. CLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. You’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold. It gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation. That way, even if you don’t close a deal right away, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Pretty sweet – AND effective. CLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business. You could be converting up to 100X more leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(554,140,'name_1','Eric Jones| | Jones'),(555,140,'email_2','ericjonesmyemail@gmail.com'),(556,140,'text_3','Why not TALK with your leads?'),(557,140,'textarea_4','Hi naplesirrigation.com Owner. My name’s Eric and I just found your site naplesirrigation.com. It’s got a lot going for it, but here’s an idea to make it even MORE effective. Web Visitors Into Leads – CLICK HERE https://advanceleadgeneration.com for a live demo now. Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site. And once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation… and if they don’t take you up on your offer then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. CLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business. The difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today! Eric PS: Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Don’t keep losing them. Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(558,141,'name_1','Eric Jones| | Jones'),(559,141,'email_2','ericjonesmyemail@gmail.com'),(560,141,'text_3','Your site – more leads?'),(561,141,'textarea_4','Hello naplesirrigation.com Owner. This is Eric and I ran across naplesirrigation.com a few minutes ago. Looks great… but now what? By that I mean, when someone like me finds your website – either through Search or just bouncing around – what happens next? Do you get a lot of leads from your site, or at least enough to make you happy? Honestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Here’s an idea… How about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site… You can – Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site. CLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. You’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold. It gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation. That way, even if you don’t close a deal right away, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Pretty sweet – AND effective. CLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business. You could be converting up to 100X more leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=naplesirrigation.com'),(562,142,'name_1','Christi Norris| | Norris'),(563,142,'email_2','christi.norris99@gmail.com'),(564,142,'text_3','To the naplesirrigation.com Webmaster!'),(565,142,'textarea_4','Want to get your message in front of millions of potential customers? Our service can help. By sending your ad text to website contact forms, your message will be read just like you\'re reading this one. And with one flat rate, you can reach a massive audience without any per click costs. Start growing your business today. Shoot me a quick email here for the details : whermi41@mailsnail.xyz'),(566,143,'name_1','Michael| | Pron'),(567,143,'email_2','michael.j.pron@gmail.com'),(568,143,'text_3','Irrigation repair'),(569,143,'textarea_4','Please call me at 239-272-8025'),(570,144,'name_1','Candace| | Sigmon'),(571,144,'email_2','candace.sigmon@athomehelper.com'),(572,144,'text_3','Will you consider posting a free guest article?'),(573,144,'textarea_4','Hi, If any of your readers are looking to make the most of their investment property and create a stunning space, then the article I’m working on will be the perfect fit! My guest article will be an in-depth guide on how to renovate with maximum ROI potential so that property investors can help set their money makers apart. Please let me know if you’re interested in receiving my article submission! Many thanks, Candace Sigmon athomehelper.com P.S. If you’re interested but have a different topic preference, please let me know. However, I understand if you’d rather not hear from me again. Just let me know if that’s the case.'),(574,145,'name_1','Eric Jones| | Jones'),(575,145,'email_2','ericjonesmyemail@gmail.com'),(576,145,'text_3','There they go…'),(577,145,'textarea_4','Hello naplesirrigation.com Admin. my name’s Eric and for just a second, imagine this… - Someone does a search and winds up at naplesirrigation.com. - They hang out for a minute to check it out. “I’m interested… but… maybe…” - And then they hit the back button and check out the other search results instead. - Bottom line – you got an eyeball, but nothing else to show for it. - There they go. This isn’t really your fault – it happens a LOT – studies show 7 out of 10 visitors to any site disappear without leaving a trace. But you CAN fix that. Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know right then and there – enabling you to call that lead while they’re literally looking over your site. CLICK HERE http://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. Time is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better! Plus, now that you have their phone number, with our new SMS Text With Lead feature you can automatically start a text (SMS) conversation… so even if you don’t close a deal then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Strong stuff. CLICK HERE http://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business. You could be converting up to 100X more leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(578,146,'name_1','Iesha Mulkey| | Mulkey'),(579,146,'email_2','iesha.mulkey@msn.com'),(580,146,'text_3','RE: naplesirrigation.com'),(581,146,'textarea_4','*INFO SERVICE EXPIRATION FOR naplesirrigation.com Attention: Accounts Payable / Domain Owner / Best Lawn Irrigation Service contact 239-793-775 Naples FL Your Domain: www.naplesirrigation.com Expected Reply before: Apr 06, 2023. This Notice for: www.naplesirrigation.com will expire on Apr 06, 2023. *For details and to make a payment for naplesirrigation.com services by credit card: Visit: https://settle-notice.com/?web=naplesirrigation.com 0406202301225101.09.30.26.20'),(582,147,'name_1','Eric Jones| | Jones'),(583,147,'email_2','ericjonesmyemail@gmail.com'),(584,147,'text_3','Try this, get more leads'),(585,147,'textarea_4','Dear naplesirrigation.com Admin. my name is Eric and I’m betting you’d like your website naplesirrigation.com to generate more leads. Here’s how: Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you as soon as they say they’re interested – so that you can talk to that lead while they’re still there at naplesirrigation.com. Web Visitors Into Leads – CLICK HERE https://advanceleadgeneration.com for a live demo now. And now that you’ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation – answer questions, provide more info, and close a deal that way. If they don’t take you up on your offer then, just follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. CLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business. The difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today! Try Web Visitors Into Leads and get more leads now. Eric PS: The studies show 7 out of 10 visitors don’t hang around – you can’t afford to lose them! Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(586,148,'name_1','Eric Jones| | Jones'),(587,148,'email_2','ericjonesmyemail@gmail.com'),(588,148,'text_3','Turn Surf-Surf-Surf into Talk Talk Talk'),(589,148,'textarea_4','Hello naplesirrigation.com Admin. my name’s Eric and I just ran across your website at naplesirrigation.com... I found it after a quick search, so your SEO’s working out… Content looks pretty good… One thing’s missing though… A QUICK, EASY way to connect with you NOW. Because studies show that a web lead like me will only hang out a few seconds – 7 out of 10 disappear almost instantly, Surf Surf Surf… then gone forever. I have the solution: Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. You’ll know immediately they’re interested and you can call them directly to TALK with them - literally while they’re still on the web looking at your site. CLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works and even give it a try… it could be huge for your business. Plus, now that you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation pronto… which is so powerful, because connecting with someone within the first 5 minutes is 100 times more effective than waiting 30 minutes or more later. The new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship. Everything I’ve just described is extremely simple to implement, cost-effective, and profitable. CLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business, potentially converting up to 100X more eyeballs into leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(590,149,'name_1','Eric Jones| | Jones'),(591,149,'email_2','ericjonesmyemail@gmail.com'),(592,149,'text_3','Strike when the iron’s hot'),(593,149,'textarea_4','To the naplesirrigation.com Administrator! I just found your site, quick question… My name’s Eric, I found naplesirrigation.com after doing a quick search – you showed up near the top of the rankings, so whatever you’re doing for SEO, looks like it’s working well. So here’s my question – what happens AFTER someone lands on your site? Anything? Research tells us at least 70% of the people who find your site, after a quick once-over, they disappear… forever. That means that all the work and effort you put into getting them to show up, goes down the tubes. Why would you want all that good work – and the great site you’ve built – go to waste? Because the odds are they’ll just skip over calling or even grabbing their phone, leaving you high and dry. But here’s a thought… what if you could make it super-simple for someone to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket? You can – thanks to revolutionary new software that can literally make that first call happen NOW. Web Visitors Into Leads is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number. It lets you know IMMEDIATELY – so that you can talk to that lead while they’re still there at your site. You know, strike when the iron’s hot! CLICK HERE http://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. When targeting leads, you HAVE to act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better! That’s why you should check out our new SMS Text With Lead feature as well… once you’ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. Imagine how powerful this could be – even if they don’t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility. Just this alone could be a game changer to make your website even more effective. Strike when the iron’s hot! CLICK HERE http://advanceleadgeneration.com to learn more about everything Web Visitors Into Leads can do for your business – you’ll be amazed. Thanks and keep up the great work! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! It even includes International Long Distance Calling. Stop wasting money chasing eyeballs that don’t turn into paying customers. CLICK HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(594,150,'name_1','Eric Jones| | Jones'),(595,150,'email_2','ericjonesmyemail@gmail.com'),(596,150,'text_3','Who needs eyeballs, you need BUSINESS'),(597,150,'textarea_4','Dear naplesirrigation.com Administrator! My name’s Eric and I just came across your website - naplesirrigation.com - in the search results. Here’s what that means to me… Your SEO’s working. You’re getting eyeballs – mine at least. Your content’s pretty good, wouldn’t change a thing. BUT… Eyeballs don’t pay the bills. CUSTOMERS do. And studies show that 7 out of 10 visitors to a site like naplesirrigation.com will drop by, take a gander, and then head for the hills without doing anything else. It’s like they never were even there. You can fix this. You can make it super-simple for them to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket… thanks to Web Visitors Into Leads. Web Visitors Into Leads is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number. It lets you know immediately – so you can talk to that lead immediately… without delay… BEFORE they head for those hills. CLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. Now it’s also true that when reaching out to hot leads, you MUST act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better! That’s what makes our new SMS Text With Lead feature so powerful… you’ve got their phone number, so now you can start a text message (SMS) conversation with them… so even if they don’t take you up on your offer right away, you continue to text them new offers, new content, and new reasons to do business with you. This could change everything for you and your business. CLICK HERE https://advanceleadgeneration.com to learn more about everything Web Visitors Into Leads can do and start turing eyeballs into money. Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! It even includes International Long Distance Calling. Paying customers are out there waiting. Starting connecting today by CLICKING HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(598,151,'name_1','Eric Jones| | Jones'),(599,151,'email_2','ericjonesmyemail@gmail.com'),(600,151,'text_3','Why not TALK with your leads?'),(601,151,'textarea_4','Dear naplesirrigation.com Admin! My name’s Eric and I just found your site naplesirrigation.com. It’s got a lot going for it, but here’s an idea to make it even MORE effective. Web Visitors Into Leads – CLICK HERE http://jumboleadmagnet.com for a live demo now. Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site. And once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation… and if they don’t take you up on your offer then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. CLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business. The difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today! Eric PS: Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Don’t keep losing them. Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=naplesirrigation.com'),(602,152,'name_1','Eric Jones| | Jones'),(603,152,'email_2','ericjonesmyemail@gmail.com'),(604,152,'text_3','There they go…'),(605,152,'textarea_4','To the naplesirrigation.com Administrator! my name’s Eric and for just a second, imagine this… - Someone does a search and winds up at naplesirrigation.com. - They hang out for a minute to check it out. “I’m interested… but… maybe…” - And then they hit the back button and check out the other search results instead. - Bottom line – you got an eyeball, but nothing else to show for it. - There they go. This isn’t really your fault – it happens a LOT – studies show 7 out of 10 visitors to any site disappear without leaving a trace. But you CAN fix that. Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know right then and there – enabling you to call that lead while they’re literally looking over your site. CLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. Time is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better! Plus, now that you have their phone number, with our new SMS Text With Lead feature you can automatically start a text (SMS) conversation… so even if you don’t close a deal then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Strong stuff. CLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business. You could be converting up to 100X more leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(606,153,'name_1','Eric Jones| | Jones'),(607,153,'email_2','eric.jones.z.mail@gmail.com'),(608,153,'text_3','Why not TALK with your leads?'),(609,153,'textarea_4','Hi naplesirrigation.com Administrator. My name’s Eric and I just found your site naplesirrigation.com. It’s got a lot going for it, but here’s an idea to make it even MORE effective. Web Visitors Into Leads – CLICK HERE http://advanceleadgeneration.com for a live demo now. Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site. And once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation… and if they don’t take you up on your offer then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. CLICK HERE http://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business. The difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today! Eric PS: Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Don’t keep losing them. Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(610,154,'name_1','Eric Jones| | Jones'),(611,154,'email_2','ericjonesmyemail@gmail.com'),(612,154,'text_3','instead, congrats'),(613,154,'textarea_4','Hi naplesirrigation.com Administrator. My name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement – Congratulations What for? Part of my job is to check out websites and the work you’ve done with naplesirrigation.com definitely stands out. It’s clear you took building a website seriously and made a real investment of time and resources into making it top quality. There is, however, a catch… more accurately, a question… So when someone like me happens to find your site – maybe at the top of the search results (nice job BTW) or just through a random link, how do you know? More importantly, how do you make a connection with that person? Studies show that 7 out of 10 visitors don’t stick around – they’re there one second and then gone with the wind. Here’s a way to create INSTANT engagement that you may not have known about… Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know INSTANTLY that they’re interested – so that you can talk to that lead while they’re literally checking out naplesirrigation.com. CLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. It could be a game-changer for your business – and it gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately (and there’s literally a 100X difference between contacting someone within 5 minutes versus 30 minutes.) Plus then, even if you don’t close a deal right away, you can connect later on with text messages for new offers, content links, even just follow up notes to build a relationship. Everything I’ve just described is simple, easy, and effective. CLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business. You could be converting up to 100X more leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=naplesirrigation.com'),(614,155,'name_1','Eric Jones| | Jones'),(615,155,'email_2','ericjonesmyemail@gmail.com'),(616,155,'text_3','Cool website!'),(617,155,'textarea_4','To the naplesirrigation.com Administrator! Cool website! My name’s Eric, and I just found your site - naplesirrigation.com - while surfing the net. You showed up at the top of the search results, so I checked you out. Looks like what you’re doing is pretty cool. But if you don’t mind me asking – after someone like me stumbles across naplesirrigation.com, what usually happens? Is your site generating leads for your business? I’m guessing some, but I also bet you’d like more… studies show that 7 out 10 who land on a site wind up leaving without a trace. Not good. Here’s a thought – what if there was an easy way for every visitor to “raise their hand” to get a phone call from you INSTANTLY… the second they hit your site and said, “call me now.” You can – Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know IMMEDIATELY – so that you can talk to that lead while they’re literally looking over your site. CLICK HERE http://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. Time is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better! That’s why we built out our new SMS Text With Lead feature… because once you’ve captured the visitor’s phone number, you can automatically start a text message (SMS) conversation. Think about the possibilities – even if you don’t close a deal then and there, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Wouldn’t that be cool? CLICK HERE http://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business. You could be converting up to 100X more leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(618,156,'name_1','Eric Jones| | Jones'),(619,156,'email_2','ericjonesmyemail@gmail.com'),(620,156,'text_3','Turn Surf-Surf-Surf into Talk Talk Talk'),(621,156,'textarea_4','To the naplesirrigation.com Administrator. My name’s Eric and I just ran across your website at naplesirrigation.com... I found it after a quick search, so your SEO’s working out… Content looks pretty good… One thing’s missing though… A QUICK, EASY way to connect with you NOW. Because studies show that a web lead like me will only hang out a few seconds – 7 out of 10 disappear almost instantly, Surf Surf Surf… then gone forever. I have the solution: Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. You’ll know immediately they’re interested and you can call them directly to TALK with them - literally while they’re still on the web looking at your site. CLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works and even give it a try… it could be huge for your business. Plus, now that you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation pronto… which is so powerful, because connecting with someone within the first 5 minutes is 100 times more effective than waiting 30 minutes or more later. The new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship. Everything I’ve just described is extremely simple to implement, cost-effective, and profitable. CLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business, potentially converting up to 100X more eyeballs into leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=naplesirrigation.com'),(622,157,'name_1','Eric Jones| | Jones'),(623,157,'email_2','ericjonesmyemail@gmail.com'),(624,157,'text_3','Cool website!'),(625,157,'textarea_4','To the naplesirrigation.com Admin! Cool website! My name’s Eric, and I just found your site - naplesirrigation.com - while surfing the net. You showed up at the top of the search results, so I checked you out. Looks like what you’re doing is pretty cool. But if you don’t mind me asking – after someone like me stumbles across naplesirrigation.com, what usually happens? Is your site generating leads for your business? I’m guessing some, but I also bet you’d like more… studies show that 7 out 10 who land on a site wind up leaving without a trace. Not good. Here’s a thought – what if there was an easy way for every visitor to “raise their hand” to get a phone call from you INSTANTLY… the second they hit your site and said, “call me now.” You can – Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know IMMEDIATELY – so that you can talk to that lead while they’re literally looking over your site. CLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. Time is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better! That’s why we built out our new SMS Text With Lead feature… because once you’ve captured the visitor’s phone number, you can automatically start a text message (SMS) conversation. Think about the possibilities – even if you don’t close a deal then and there, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Wouldn’t that be cool? CLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business. You could be converting up to 100X more leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=naplesirrigation.com'),(626,158,'name_1','Eric Jones| | Jones'),(627,158,'email_2','ericjonesmyemail@gmail.com'),(628,158,'text_3','how to turn eyeballs into phone calls'),(629,158,'textarea_4','Hi naplesirrigation.com Owner! Eric here with a quick thought about your website naplesirrigation.com... I’m on the internet a lot and I look at a lot of business websites. Like yours, many of them have great content. But all too often, they come up short when it comes to engaging and connecting with anyone who visits. I get it – it’s hard. Studies show 7 out of 10 people who land on a site, abandon it in moments without leaving even a trace. You got the eyeball, but nothing else. Here’s a solution for you… Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. You’ll know immediately they’re interested and you can call them directly to talk with them literally while they’re still on the web looking at your site. CLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. It could be huge for your business – and because you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately… and contacting someone in that 5 minute window is 100 times more powerful than reaching out 30 minutes or more later. Plus, with text messaging you can follow up later with new offers, content links, even just follow up notes to keep the conversation going. Everything I’ve just described is extremely simple to implement, cost-effective, and profitable. CLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business. You could be converting up to 100X more eyeballs into leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(630,159,'name_1','Eric Jones| | Jones'),(631,159,'email_2','ericjonesmyemail@gmail.com'),(632,159,'text_3','Who needs eyeballs, you need BUSINESS'),(633,159,'textarea_4','Dear naplesirrigation.com Administrator. My name’s Eric and I just came across your website - naplesirrigation.com - in the search results. Here’s what that means to me… Your SEO’s working. You’re getting eyeballs – mine at least. Your content’s pretty good, wouldn’t change a thing. BUT… Eyeballs don’t pay the bills. CUSTOMERS do. And studies show that 7 out of 10 visitors to a site like naplesirrigation.com will drop by, take a gander, and then head for the hills without doing anything else. It’s like they never were even there. You can fix this. You can make it super-simple for them to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket… thanks to Web Visitors Into Leads. Web Visitors Into Leads is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number. It lets you know immediately – so you can talk to that lead immediately… without delay… BEFORE they head for those hills. CLICK HERE http://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. Now it’s also true that when reaching out to hot leads, you MUST act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better! That’s what makes our new SMS Text With Lead feature so powerful… you’ve got their phone number, so now you can start a text message (SMS) conversation with them… so even if they don’t take you up on your offer right away, you continue to text them new offers, new content, and new reasons to do business with you. This could change everything for you and your business. CLICK HERE http://advanceleadgeneration.com to learn more about everything Web Visitors Into Leads can do and start turing eyeballs into money. Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! It even includes International Long Distance Calling. Paying customers are out there waiting. Starting connecting today by CLICKING HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(634,160,'name_1','Eric Jones| | Jones'),(635,160,'email_2','ericjonesmyemail@gmail.com'),(636,160,'text_3','Who needs eyeballs, you need BUSINESS'),(637,160,'textarea_4','Hello naplesirrigation.com Administrator! My name’s Eric and I just came across your website - naplesirrigation.com - in the search results. Here’s what that means to me… Your SEO’s working. You’re getting eyeballs – mine at least. Your content’s pretty good, wouldn’t change a thing. BUT… Eyeballs don’t pay the bills. CUSTOMERS do. And studies show that 7 out of 10 visitors to a site like naplesirrigation.com will drop by, take a gander, and then head for the hills without doing anything else. It’s like they never were even there. You can fix this. You can make it super-simple for them to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket… thanks to Web Visitors Into Leads. Web Visitors Into Leads is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number. It lets you know immediately – so you can talk to that lead immediately… without delay… BEFORE they head for those hills. CLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. Now it’s also true that when reaching out to hot leads, you MUST act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better! That’s what makes our new SMS Text With Lead feature so powerful… you’ve got their phone number, so now you can start a text message (SMS) conversation with them… so even if they don’t take you up on your offer right away, you continue to text them new offers, new content, and new reasons to do business with you. This could change everything for you and your business. CLICK HERE http://jumboleadmagnet.com to learn more about everything Web Visitors Into Leads can do and start turing eyeballs into money. Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! It even includes International Long Distance Calling. Paying customers are out there waiting. Starting connecting today by CLICKING HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=naplesirrigation.com'),(638,161,'name_1','Eric Jones| | Jones'),(639,161,'email_2','ericjonesmyemail@gmail.com'),(640,161,'text_3','Strike when the iron’s hot'),(641,161,'textarea_4','Hello naplesirrigation.com Administrator. I just found your site, quick question… My name’s Eric, I found naplesirrigation.com after doing a quick search – you showed up near the top of the rankings, so whatever you’re doing for SEO, looks like it’s working well. So here’s my question – what happens AFTER someone lands on your site? Anything? Research tells us at least 70% of the people who find your site, after a quick once-over, they disappear… forever. That means that all the work and effort you put into getting them to show up, goes down the tubes. Why would you want all that good work – and the great site you’ve built – go to waste? Because the odds are they’ll just skip over calling or even grabbing their phone, leaving you high and dry. But here’s a thought… what if you could make it super-simple for someone to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket? You can – thanks to revolutionary new software that can literally make that first call happen NOW. Web Visitors Into Leads is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number. It lets you know IMMEDIATELY – so that you can talk to that lead while they’re still there at your site. You know, strike when the iron’s hot! CLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. When targeting leads, you HAVE to act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better! That’s why you should check out our new SMS Text With Lead feature as well… once you’ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. Imagine how powerful this could be – even if they don’t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility. Just this alone could be a game changer to make your website even more effective. Strike when the iron’s hot! CLICK HERE https://advanceleadgeneration.com to learn more about everything Web Visitors Into Leads can do for your business – you’ll be amazed. Thanks and keep up the great work! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! It even includes International Long Distance Calling. Stop wasting money chasing eyeballs that don’t turn into paying customers. CLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(642,162,'name_1','Eric Jones| | Jones'),(643,162,'email_2','ericjonesmyemail@gmail.com'),(644,162,'text_3','Instead, congrats'),(645,162,'textarea_4','Hi naplesirrigation.com Administrator. My name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement – Congratulations What for? Part of my job is to check out websites and the work you’ve done with naplesirrigation.com definitely stands out. It’s clear you took building a website seriously and made a real investment of time and resources into making it top quality. There is, however, a catch… more accurately, a question… So when someone like me happens to find your site – maybe at the top of the search results (nice job BTW) or just through a random link, how do you know? More importantly, how do you make a connection with that person? Studies show that 7 out of 10 visitors don’t stick around – they’re there one second and then gone with the wind. Here’s a way to create INSTANT engagement that you may not have known about… Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know INSTANTLY that they’re interested – so that you can talk to that lead while they’re literally checking out naplesirrigation.com. CLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. It could be a game-changer for your business – and it gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately (and there’s literally a 100X difference between contacting someone within 5 minutes versus 30 minutes.) Plus then, even if you don’t close a deal right away, you can connect later on with text messages for new offers, content links, even just follow up notes to build a relationship. Everything I’ve just described is simple, easy, and effective. CLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business. You could be converting up to 100X more leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(646,163,'name_1','Eric Jones| | Jones'),(647,163,'email_2','ericjonesmyemail@gmail.com'),(648,163,'text_3','There they go…'),(649,163,'textarea_4','Dear naplesirrigation.com Administrator! My name’s Eric and for just a second, imagine this… - Someone does a search and winds up at naplesirrigation.com. - They hang out for a minute to check it out. “I’m interested… but… maybe…” - And then they hit the back button and check out the other search results instead. - Bottom line – you got an eyeball, but nothing else to show for it. - There they go. This isn’t really your fault – it happens a LOT – studies show 7 out of 10 visitors to any site disappear without leaving a trace. But you CAN fix that. Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know right then and there – enabling you to call that lead while they’re literally looking over your site. CLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. Time is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better! Plus, now that you have their phone number, with our new SMS Text With Lead feature you can automatically start a text (SMS) conversation… so even if you don’t close a deal then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Strong stuff. CLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business. You could be converting up to 100X more leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=naplesirrigation.com'),(650,164,'name_1','Jessica Colella| | Colella'),(651,164,'email_2','jessicacolella58@gmail.com'),(652,164,'text_3','Website Issues'),(653,164,'textarea_4','Hey, my name is Jessica. I noticed some issues on your website! While I\'ve got some spare time, I\'d be happy to fix some of them for you (free) if you want! Just let me know by email. Jessica jessicacolella58@gmail.com Compliance: 30 N Gould Street, Seridan, WY 82801. If you\'re not interested and don\'t want me to email you again: https://forms.gle/UG1Hm4gXb7rjQLRP7'),(654,165,'name_1','Scott| | Starin'),(655,165,'email_2','scottstarin@yahoo.com'),(656,165,'text_3','Pump'),(657,165,'textarea_4','Brad, I think the pump is bad (perhaps a short)... It keeps tripping the circuit breaker. I have no idea how long ago this happened. I just noticed the lawn is stressed from lack of water.'),(658,166,'name_1','Eric Jones| | Jones'),(659,166,'email_2','ericjonesmyemail@gmail.com'),(660,166,'text_3','There they go…'),(661,166,'textarea_4','Dear naplesirrigation.com Admin. my name’s Eric and for just a second, imagine this… - Someone does a search and winds up at naplesirrigation.com. - They hang out for a minute to check it out. “I’m interested… but… maybe…” - And then they hit the back button and check out the other search results instead. - Bottom line – you got an eyeball, but nothing else to show for it. - There they go. This isn’t really your fault – it happens a LOT – studies show 7 out of 10 visitors to any site disappear without leaving a trace. But you CAN fix that. Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know right then and there – enabling you to call that lead while they’re literally looking over your site. CLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. Time is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better! Plus, now that you have their phone number, with our new SMS Text With Lead feature you can automatically start a text (SMS) conversation… so even if you don’t close a deal then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Strong stuff. CLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business. You could be converting up to 100X more leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(662,167,'name_1','Eric Jones| | Jones'),(663,167,'email_2','ericjonesmyemail@gmail.com'),(664,167,'text_3','Try this, get more leads'),(665,167,'textarea_4','Hi naplesirrigation.com Admin! my name is Eric and I’m betting you’d like your website naplesirrigation.com to generate more leads. Here’s how: Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you as soon as they say they’re interested – so that you can talk to that lead while they’re still there at naplesirrigation.com. Web Visitors Into Leads – CLICK HERE http://advanceleadgeneration.com for a live demo now. And now that you’ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation – answer questions, provide more info, and close a deal that way. If they don’t take you up on your offer then, just follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. CLICK HERE http://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business. The difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today! Try Web Visitors Into Leads and get more leads now. Eric PS: The studies show 7 out of 10 visitors don’t hang around – you can’t afford to lose them! Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(666,168,'name_1','Nick Cloe| | Cloe'),(667,168,'email_2','support@seoworker.pro'),(668,168,'text_3','Regarding Your Business Website Ranking Issue'),(669,168,'textarea_4','Hi, I just came across your website and noticed that your website is not ranking on google as well as it could be for certain keywords that I assume you\'re targeting particularly in your area. We are top-rated Digital Presence, Web Development, and SEO workers on internet, and we\'d love to rank your website on google 1st page with affordable price. We are well known for build and rank SEO-optimized website that will increase your online footprint, amplify your brand, and get you a slice of the search traffic currently being eaten up by your competitors. Would you be interested; We can discuss the details and price for your website? Have a great day! Thanks &amp; Regards, Nick Note: - If you are not interested then you can reply with a simple \"NO\".'),(670,169,'name_1','Eric Jones| | Jones'),(671,169,'email_2','ericjonesmyemail@gmail.com'),(672,169,'text_3','Try this, get more leads'),(673,169,'textarea_4','Dear naplesirrigation.com Admin! My name is Eric and I’m betting you’d like your website naplesirrigation.com to generate more leads. Here’s how: Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you as soon as they say they’re interested – so that you can talk to that lead while they’re still there at naplesirrigation.com. Web Visitors Into Leads – CLICK HERE http://jumboleadmagnet.com for a live demo now. And now that you’ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation – answer questions, provide more info, and close a deal that way. If they don’t take you up on your offer then, just follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. CLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business. The difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today! Try Web Visitors Into Leads and get more leads now. Eric PS: The studies show 7 out of 10 visitors don’t hang around – you can’t afford to lose them! Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=naplesirrigation.com'),(674,170,'name_1','Eric Jones| | Jones'),(675,170,'email_2','ericjonesmyemail@gmail.com'),(676,170,'text_3','Cool website!'),(677,170,'textarea_4','Hello naplesirrigation.com Webmaster. Cool website! My name’s Eric, and I just found your site - naplesirrigation.com - while surfing the net. You showed up at the top of the search results, so I checked you out. Looks like what you’re doing is pretty cool. But if you don’t mind me asking – after someone like me stumbles across naplesirrigation.com, what usually happens? Is your site generating leads for your business? I’m guessing some, but I also bet you’d like more… studies show that 7 out 10 who land on a site wind up leaving without a trace. Not good. Here’s a thought – what if there was an easy way for every visitor to “raise their hand” to get a phone call from you INSTANTLY… the second they hit your site and said, “call me now.” You can – Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know IMMEDIATELY – so that you can talk to that lead while they’re literally looking over your site. CLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. Time is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better! That’s why we built out our new SMS Text With Lead feature… because once you’ve captured the visitor’s phone number, you can automatically start a text message (SMS) conversation. Think about the possibilities – even if you don’t close a deal then and there, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Wouldn’t that be cool? CLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business. You could be converting up to 100X more leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=naplesirrigation.com'),(678,171,'name_1','Eric Jones| | Jones'),(679,171,'email_2','ericjonesmyemail@gmail.com'),(680,171,'text_3','Your site – more leads?'),(681,171,'textarea_4','Hi naplesirrigation.com Admin. this is Eric and I ran across naplesirrigation.com a few minutes ago. Looks great… but now what? By that I mean, when someone like me finds your website – either through Search or just bouncing around – what happens next? Do you get a lot of leads from your site, or at least enough to make you happy? Honestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Here’s an idea… How about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site… You can – Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site. CLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. You’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold. It gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation. That way, even if you don’t close a deal right away, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Pretty sweet – AND effective. CLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business. You could be converting up to 100X more leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(682,172,'name_1','Ervin Faber| | Faber'),(683,172,'email_2','hacker@soc.com.pt'),(684,172,'text_3','5 Vulnerabilities Have Been Found In Your Website'),(685,172,'textarea_4','We have hacked your website naplesirrigation.com and extracted your databases. This was due to the security holes you had in your your site/server which have gained us remote control of everything that was on the server. Our team is mostly interested in customer, administrative, and employee information which we have extracted through your databases once we got remote control over the server. It still needs to be sorted out but it will be well-organized once finished. First, we will be going through the emails/sms information and contacting the recipient how you held in disregard about their information being exposed to a hacking group when you could have stopped it. This would be detrimental to your personal image with these relationships with these people. Lastly, now that we have information not only will we be monetizing off it with our methods but made public or sold to other people that will do whatever they wish with the information also after we are done. Now you can put a stop to this by paying a $3000 fee (0.11 BTC) in bitcoin. You can find our address by visiting https://www.blockchain.com/explorer/addresses/btc/3Hg8FLvfn1TtkziJWmXT7AcE8AmR3Ujket where you can copy and paste the address or scan the QR code. We will be notified of payment which we will then delete the information we have obtained, patch the hole in the site/server which we got in and remove you from any future targeting in the future. You have 72 hours in doing so after viewing this message or the series of steps will commence. You can obtain bitcoin through such services such as paxful.com or do a search on bing.com'),(686,173,'name_1','Eric Jones| | Jones'),(687,173,'email_2','eric.jones.z.mail@gmail.com'),(688,173,'text_3','Why not TALK with your leads?'),(689,173,'textarea_4','To the naplesirrigation.com Owner. My name’s Eric and I just found your site naplesirrigation.com. It’s got a lot going for it, but here’s an idea to make it even MORE effective. Web Visitors Into Leads – CLICK HERE http://advanceleadgeneration.com for a live demo now. Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site. And once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation… and if they don’t take you up on your offer then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. CLICK HERE http://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business. The difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today! Eric PS: Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Don’t keep losing them. Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(690,174,'name_1','Melva Hope| | Hope'),(691,174,'email_2','hope.melva@gmail.com'),(692,174,'text_3','RE:Question'),(693,174,'textarea_4','If you are using Wordpress/Woocommerce or even intend to sooner or later, we provide over 3500 premium plugins and also themes to download completely free. Make the most of WordPress/Woocommerce using an array of plugins which is far more extensive than any similar plugin library available in one place: https://joss.fun/qm'),(694,175,'name_1','Eric Jones| | Jones'),(695,175,'email_2','ericjonesmyemail@gmail.com'),(696,175,'text_3','how to turn eyeballs into phone calls'),(697,175,'textarea_4','Dear naplesirrigation.com Administrator! Eric here with a quick thought about your website naplesirrigation.com... I’m on the internet a lot and I look at a lot of business websites. Like yours, many of them have great content. But all too often, they come up short when it comes to engaging and connecting with anyone who visits. I get it – it’s hard. Studies show 7 out of 10 people who land on a site, abandon it in moments without leaving even a trace. You got the eyeball, but nothing else. Here’s a solution for you… Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. You’ll know immediately they’re interested and you can call them directly to talk with them literally while they’re still on the web looking at your site. CLICK HERE http://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. It could be huge for your business – and because you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately… and contacting someone in that 5 minute window is 100 times more powerful than reaching out 30 minutes or more later. Plus, with text messaging you can follow up later with new offers, content links, even just follow up notes to keep the conversation going. Everything I’ve just described is extremely simple to implement, cost-effective, and profitable. CLICK HERE http://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business. You could be converting up to 100X more eyeballs into leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(698,176,'name_1','Michael| | Valin'),(699,176,'email_2','michael.valin@valorgeneraltrades.com'),(700,176,'text_3','204 Peir D, Naples, FL 34112'),(701,176,'textarea_4','Looking for a quote for a full irrigation install on this lot. Please call or email me with any questions.'),(702,177,'name_1','Eric Jones| | Jones'),(703,177,'email_2','ericjonesmyemail@gmail.com'),(704,177,'text_3','There they go…'),(705,177,'textarea_4','Hello naplesirrigation.com Webmaster. my name’s Eric and for just a second, imagine this… - Someone does a search and winds up at naplesirrigation.com. - They hang out for a minute to check it out. “I’m interested… but… maybe…” - And then they hit the back button and check out the other search results instead. - Bottom line – you got an eyeball, but nothing else to show for it. - There they go. This isn’t really your fault – it happens a LOT – studies show 7 out of 10 visitors to any site disappear without leaving a trace. But you CAN fix that. Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know right then and there – enabling you to call that lead while they’re literally looking over your site. CLICK HERE http://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. Time is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better! Plus, now that you have their phone number, with our new SMS Text With Lead feature you can automatically start a text (SMS) conversation… so even if you don’t close a deal then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Strong stuff. CLICK HERE http://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business. You could be converting up to 100X more leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(706,178,'name_1','Brianna Belton| | Belton'),(707,178,'email_2','brianna@biggerbetterprofits.com'),(708,178,'text_3','Are you using these 2-Models?'),(709,178,'textarea_4','Hi, I hope you\'re doing great. Our company, Bigger Better Profits, has a PROVEN financial model and unique accounting process used to help over 10,000 businesses succeed. Even during Covid! See my report, project reviews, and case studies here: biggerbetterprofits.com Or reply with your name, email, and phone number, and I\'ll send you a free copy. Your free copy contains the EXACT 2-Models (including how to grow your revenue). They’re doing exceptionally well for businesses just like yours. Brianna Belton Research Intern If you don\'t want me to contact you again about this, reply with \"unsubscribe.\"'),(710,179,'name_1','Eric Jones| | Jones'),(711,179,'email_2','ericjonesmyemail@gmail.com'),(712,179,'text_3','Cool website!'),(713,179,'textarea_4','To the naplesirrigation.com Owner! Cool website! My name’s Eric, and I just found your site - naplesirrigation.com - while surfing the net. You showed up at the top of the search results, so I checked you out. Looks like what you’re doing is pretty cool. But if you don’t mind me asking – after someone like me stumbles across naplesirrigation.com, what usually happens? Is your site generating leads for your business? I’m guessing some, but I also bet you’d like more… studies show that 7 out 10 who land on a site wind up leaving without a trace. Not good. Here’s a thought – what if there was an easy way for every visitor to “raise their hand” to get a phone call from you INSTANTLY… the second they hit your site and said, “call me now.” You can – Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know IMMEDIATELY – so that you can talk to that lead while they’re literally looking over your site. CLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. Time is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better! That’s why we built out our new SMS Text With Lead feature… because once you’ve captured the visitor’s phone number, you can automatically start a text message (SMS) conversation. Think about the possibilities – even if you don’t close a deal then and there, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Wouldn’t that be cool? CLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business. You could be converting up to 100X more leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(714,180,'name_1','Eric Jones| | Jones'),(715,180,'email_2','ericjonesmyemail@gmail.com'),(716,180,'text_3','Why not TALK with your leads?'),(717,180,'textarea_4','Hi naplesirrigation.com Administrator. My name’s Eric and I just found your site naplesirrigation.com. It’s got a lot going for it, but here’s an idea to make it even MORE effective. Web Visitors Into Leads – CLICK HERE http://jumboleadmagnet.com for a live demo now. Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site. And once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation… and if they don’t take you up on your offer then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. CLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business. The difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today! Eric PS: Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Don’t keep losing them. Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=naplesirrigation.com'),(718,181,'name_1','Eric Jones| | Jones'),(719,181,'email_2','ericjonesmyemail@gmail.com'),(720,181,'text_3','Strike when the iron’s hot'),(721,181,'textarea_4','Hello naplesirrigation.com Webmaster. I just found your site, quick question… My name’s Eric, I found naplesirrigation.com after doing a quick search – you showed up near the top of the rankings, so whatever you’re doing for SEO, looks like it’s working well. So here’s my question – what happens AFTER someone lands on your site? Anything? Research tells us at least 70% of the people who find your site, after a quick once-over, they disappear… forever. That means that all the work and effort you put into getting them to show up, goes down the tubes. Why would you want all that good work – and the great site you’ve built – go to waste? Because the odds are they’ll just skip over calling or even grabbing their phone, leaving you high and dry. But here’s a thought… what if you could make it super-simple for someone to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket? You can – thanks to revolutionary new software that can literally make that first call happen NOW. Web Visitors Into Leads is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number. It lets you know IMMEDIATELY – so that you can talk to that lead while they’re still there at your site. You know, strike when the iron’s hot! CLICK HERE http://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. When targeting leads, you HAVE to act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better! That’s why you should check out our new SMS Text With Lead feature as well… once you’ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. Imagine how powerful this could be – even if they don’t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility. Just this alone could be a game changer to make your website even more effective. Strike when the iron’s hot! CLICK HERE http://advanceleadgeneration.com to learn more about everything Web Visitors Into Leads can do for your business – you’ll be amazed. Thanks and keep up the great work! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! It even includes International Long Distance Calling. Stop wasting money chasing eyeballs that don’t turn into paying customers. CLICK HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(722,182,'name_1','Eric Jones| | Jones'),(723,182,'email_2','ericjonesmyemail@gmail.com'),(724,182,'text_3','Your site – more leads?'),(725,182,'textarea_4','To the naplesirrigation.com Admin. this is Eric and I ran across naplesirrigation.com a few minutes ago. Looks great… but now what? By that I mean, when someone like me finds your website – either through Search or just bouncing around – what happens next? Do you get a lot of leads from your site, or at least enough to make you happy? Honestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Here’s an idea… How about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site… You can – Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site. CLICK HERE http://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. You’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold. It gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation. That way, even if you don’t close a deal right away, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Pretty sweet – AND effective. CLICK HERE http://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business. You could be converting up to 100X more leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(726,183,'name_1','Colin Rumble| | Rumble'),(727,183,'email_2','ran731101@gmail.com'),(728,183,'text_3','Hi'),(729,183,'textarea_4','Please call me back'),(730,184,'name_1','Eric Jones| | Jones'),(731,184,'email_2','ericjonesmyemail@gmail.com'),(732,184,'text_3','instead, congrats'),(733,184,'textarea_4','To the naplesirrigation.com Owner! My name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement – Congratulations What for? Part of my job is to check out websites and the work you’ve done with naplesirrigation.com definitely stands out. It’s clear you took building a website seriously and made a real investment of time and resources into making it top quality. There is, however, a catch… more accurately, a question… So when someone like me happens to find your site – maybe at the top of the search results (nice job BTW) or just through a random link, how do you know? More importantly, how do you make a connection with that person? Studies show that 7 out of 10 visitors don’t stick around – they’re there one second and then gone with the wind. Here’s a way to create INSTANT engagement that you may not have known about… Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know INSTANTLY that they’re interested – so that you can talk to that lead while they’re literally checking out naplesirrigation.com. CLICK HERE http://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. It could be a game-changer for your business – and it gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately (and there’s literally a 100X difference between contacting someone within 5 minutes versus 30 minutes.) Plus then, even if you don’t close a deal right away, you can connect later on with text messages for new offers, content links, even just follow up notes to build a relationship. Everything I’ve just described is simple, easy, and effective. CLICK HERE http://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business. You could be converting up to 100X more leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(734,185,'name_1','Eric Jones| | Jones'),(735,185,'email_2','ericjonesmyemail@gmail.com'),(736,185,'text_3','Turn Surf-Surf-Surf into Talk Talk Talk'),(737,185,'textarea_4','Dear naplesirrigation.com Webmaster. my name’s Eric and I just ran across your website at naplesirrigation.com... I found it after a quick search, so your SEO’s working out… Content looks pretty good… One thing’s missing though… A QUICK, EASY way to connect with you NOW. Because studies show that a web lead like me will only hang out a few seconds – 7 out of 10 disappear almost instantly, Surf Surf Surf… then gone forever. I have the solution: Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. You’ll know immediately they’re interested and you can call them directly to TALK with them - literally while they’re still on the web looking at your site. CLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works and even give it a try… it could be huge for your business. Plus, now that you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation pronto… which is so powerful, because connecting with someone within the first 5 minutes is 100 times more effective than waiting 30 minutes or more later. The new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship. Everything I’ve just described is extremely simple to implement, cost-effective, and profitable. CLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business, potentially converting up to 100X more eyeballs into leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(738,186,'name_1','Frances Haney| | Haney'),(739,186,'email_2','frances.haney@gmail.com'),(740,186,'text_3','Dear naplesirrigation.com Owner!'),(741,186,'textarea_4','Don\'t leave your advertising dollars to chance anymore, our results are guaranteed! Check out: https://bit.ly/45C9SWD'),(742,187,'name_1','Eric Jones| | Jones'),(743,187,'email_2','ericjonesmyemail@gmail.com'),(744,187,'text_3','Who needs eyeballs, you need BUSINESS'),(745,187,'textarea_4','Hi naplesirrigation.com Admin! My name’s Eric and I just came across your website - naplesirrigation.com - in the search results. Here’s what that means to me… Your SEO’s working. You’re getting eyeballs – mine at least. Your content’s pretty good, wouldn’t change a thing. BUT… Eyeballs don’t pay the bills. CUSTOMERS do. And studies show that 7 out of 10 visitors to a site like naplesirrigation.com will drop by, take a gander, and then head for the hills without doing anything else. It’s like they never were even there. You can fix this. You can make it super-simple for them to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket… thanks to Web Visitors Into Leads. Web Visitors Into Leads is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number. It lets you know immediately – so you can talk to that lead immediately… without delay… BEFORE they head for those hills. CLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. Now it’s also true that when reaching out to hot leads, you MUST act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better! That’s what makes our new SMS Text With Lead feature so powerful… you’ve got their phone number, so now you can start a text message (SMS) conversation with them… so even if they don’t take you up on your offer right away, you continue to text them new offers, new content, and new reasons to do business with you. This could change everything for you and your business. CLICK HERE https://advanceleadgeneration.com to learn more about everything Web Visitors Into Leads can do and start turing eyeballs into money. Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! It even includes International Long Distance Calling. Paying customers are out there waiting. Starting connecting today by CLICKING HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(746,188,'name_1','Anthony MacCormick| | MacCormick'),(747,188,'email_2','maccormick.anthony62@yahoo.com'),(748,188,'text_3','RE: naplesirrigation.com'),(749,188,'textarea_4','*INFO SERVICE EXPIRATION FOR naplesirrigation.com Attention: Accounts Payable / Domain Owner / Best Lawn Irrigation Service contact 239-793-775 Naples FL Your Domain: www.naplesirrigation.com Expected Reply before: May 30, 2023. This Notice for: www.naplesirrigation.com will expire on May 30, 2023. *For details and to make a payment for naplesirrigation.com services by credit card: Visit: https://pixyurl.com/?web=naplesirrigation.com 05302023084741540-722-0574'),(750,189,'name_1','Eric Jones| | Jones'),(751,189,'email_2','ericjonesmyemail@gmail.com'),(752,189,'text_3','Turn Surf-Surf-Surf into Talk Talk Talk'),(753,189,'textarea_4','Dear naplesirrigation.com Administrator. My name’s Eric and I just ran across your website at naplesirrigation.com... I found it after a quick search, so your SEO’s working out… Content looks pretty good… One thing’s missing though… A QUICK, EASY way to connect with you NOW. Because studies show that a web lead like me will only hang out a few seconds – 7 out of 10 disappear almost instantly, Surf Surf Surf… then gone forever. I have the solution: Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. You’ll know immediately they’re interested and you can call them directly to TALK with them - literally while they’re still on the web looking at your site. CLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works and even give it a try… it could be huge for your business. Plus, now that you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation pronto… which is so powerful, because connecting with someone within the first 5 minutes is 100 times more effective than waiting 30 minutes or more later. The new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship. Everything I’ve just described is extremely simple to implement, cost-effective, and profitable. CLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business, potentially converting up to 100X more eyeballs into leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=naplesirrigation.com'),(754,190,'name_1','Eric Jones| | Jones'),(755,190,'email_2','ericjonesmyemail@gmail.com'),(756,190,'text_3','Your site – more leads?'),(757,190,'textarea_4','Hi naplesirrigation.com Administrator! This is Eric and I ran across naplesirrigation.com a few minutes ago. Looks great… but now what? By that I mean, when someone like me finds your website – either through Search or just bouncing around – what happens next? Do you get a lot of leads from your site, or at least enough to make you happy? Honestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Here’s an idea… How about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site… You can – Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site. CLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. You’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold. It gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation. That way, even if you don’t close a deal right away, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Pretty sweet – AND effective. CLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business. You could be converting up to 100X more leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=naplesirrigation.com'),(758,191,'name_1','SandraLee| | Buxton'),(759,191,'email_2','sbuxton@thewilloughatnaples.com'),(760,191,'text_3','We need a quote to evaluate/replace the Hospitals irrigation and sprinkler system. are'),(761,191,'textarea_4','Administrator Lisa Lello llello@thewilloughatnaples.com 9001 Tamiami Trail East 34113 Please contact us so that we can make an appointment to meet and discuss. This is time sensitive, thank you 239-775-4500'),(762,192,'name_1','Eric Jones| | Jones'),(763,192,'email_2','ericjonesmyemail@gmail.com'),(764,192,'text_3','instead, congrats'),(765,192,'textarea_4','Hi naplesirrigation.com Webmaster. My name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement – Congratulations What for? Part of my job is to check out websites and the work you’ve done with naplesirrigation.com definitely stands out. It’s clear you took building a website seriously and made a real investment of time and resources into making it top quality. There is, however, a catch… more accurately, a question… So when someone like me happens to find your site – maybe at the top of the search results (nice job BTW) or just through a random link, how do you know? More importantly, how do you make a connection with that person? Studies show that 7 out of 10 visitors don’t stick around – they’re there one second and then gone with the wind. Here’s a way to create INSTANT engagement that you may not have known about… Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know INSTANTLY that they’re interested – so that you can talk to that lead while they’re literally checking out naplesirrigation.com. CLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. It could be a game-changer for your business – and it gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately (and there’s literally a 100X difference between contacting someone within 5 minutes versus 30 minutes.) Plus then, even if you don’t close a deal right away, you can connect later on with text messages for new offers, content links, even just follow up notes to build a relationship. Everything I’ve just described is simple, easy, and effective. CLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business. You could be converting up to 100X more leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=naplesirrigation.com'),(766,193,'name_1','Elvia Waldon| | Waldon'),(767,193,'email_2','waldon.elvia@gmail.com'),(768,193,'text_3','Secure Your Financial Future with a Free Crypto Wallet!'),(769,193,'textarea_4','Hi, Are you ready to embark on an exciting journey into the world of cryptocurrency? We are thrilled to invite you to register for a free crypto wallet, where you can securely store and manage your digital assets. Here at Binance, we believe that cryptocurrency has the potential to revolutionize the way we transact, invest, and build wealth. Whether you\'re a seasoned crypto enthusiast or just curious about this emerging technology, our free crypto wallet is the perfect starting point to explore the possibilities and take control of your financial future. Why should you register for our free crypto wallet? ► Secure and User-Friendly: Our wallet incorporates state-of-the-art security features to safeguard your digital assets. With a user-friendly interface, it\'s easy to navigate, even if you\'re new to the world of cryptocurrencies. ► Convenience: Enjoy instant access to your funds anytime, anywhere. Say goodbye to the limitations of traditional banking hours and complicated procedures. Our wallet is designed to simplify your crypto experience. ► Versatile Asset Support: Store and manage a wide range of cryptocurrencies in one place. Bitcoin, Ethereum, Ripple, Litecoin, and many more are supported, ensuring you have the flexibility to diversify your portfolio. ► Peace of Mind: We prioritize the safety and security of your funds. Our wallet utilizes advanced encryption techniques, two-factor authentication, and cold storage to provide you with peace of mind and protect your assets from unauthorized access. ► Exclusive Benefits: As a registered user, you\'ll gain access to exclusive benefits, including early access to new features, educational resources, and exclusive promotions. Stay ahead of the curve and maximize your crypto potential. Don\'t miss out on this incredible opportunity to step into the world of cryptocurrencies. Register for your free crypto wallet today and take control of your financial destiny! Click the link below to create your free crypto wallet: Get Started here &gt;&gt;&gt; https://bit.ly/cryptowalletreg * Limited Time $100 FREE BONUS for any new account that Completes Account Verification. (Expires on 15th June 2023) Join the millions of individuals who are already harnessing the power of cryptocurrencies. Secure your financial future with our free crypto wallet today! To your financial success Ronald D 99 Manhatten Road, TX 87845 ===== Click here to unsubscribe https://bit.ly/stop69'),(770,194,'name_1','Eric Jones| | Jones'),(771,194,'email_2','ericjonesmyemail@gmail.com'),(772,194,'text_3','There they go…'),(773,194,'textarea_4','Dear naplesirrigation.com Owner! my name’s Eric and for just a second, imagine this… - Someone does a search and winds up at naplesirrigation.com. - They hang out for a minute to check it out. “I’m interested… but… maybe…” - And then they hit the back button and check out the other search results instead. - Bottom line – you got an eyeball, but nothing else to show for it. - There they go. This isn’t really your fault – it happens a LOT – studies show 7 out of 10 visitors to any site disappear without leaving a trace. But you CAN fix that. Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know right then and there – enabling you to call that lead while they’re literally looking over your site. CLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. Time is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better! Plus, now that you have their phone number, with our new SMS Text With Lead feature you can automatically start a text (SMS) conversation… so even if you don’t close a deal then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Strong stuff. CLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business. You could be converting up to 100X more leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(774,195,'name_1','Eric Jones| | Jones'),(775,195,'email_2','ericjonesmyemail@gmail.com'),(776,195,'text_3','Cool website!'),(777,195,'textarea_4','Dear naplesirrigation.com Admin. Cool website! My name’s Eric, and I just found your site - naplesirrigation.com - while surfing the net. You showed up at the top of the search results, so I checked you out. Looks like what you’re doing is pretty cool. But if you don’t mind me asking – after someone like me stumbles across naplesirrigation.com, what usually happens? Is your site generating leads for your business? I’m guessing some, but I also bet you’d like more… studies show that 7 out 10 who land on a site wind up leaving without a trace. Not good. Here’s a thought – what if there was an easy way for every visitor to “raise their hand” to get a phone call from you INSTANTLY… the second they hit your site and said, “call me now.” You can – Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know IMMEDIATELY – so that you can talk to that lead while they’re literally looking over your site. CLICK HERE http://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. Time is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better! That’s why we built out our new SMS Text With Lead feature… because once you’ve captured the visitor’s phone number, you can automatically start a text message (SMS) conversation. Think about the possibilities – even if you don’t close a deal then and there, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Wouldn’t that be cool? CLICK HERE http://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business. You could be converting up to 100X more leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(778,196,'name_1','Eric Jones| | Jones'),(779,196,'email_2','ericjonesmyemail@gmail.com'),(780,196,'text_3','how to turn eyeballs into phone calls'),(781,196,'textarea_4','To the naplesirrigation.com Administrator! Eric here with a quick thought about your website naplesirrigation.com... I’m on the internet a lot and I look at a lot of business websites. Like yours, many of them have great content. But all too often, they come up short when it comes to engaging and connecting with anyone who visits. I get it – it’s hard. Studies show 7 out of 10 people who land on a site, abandon it in moments without leaving even a trace. You got the eyeball, but nothing else. Here’s a solution for you… Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. You’ll know immediately they’re interested and you can call them directly to talk with them literally while they’re still on the web looking at your site. CLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. It could be huge for your business – and because you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately… and contacting someone in that 5 minute window is 100 times more powerful than reaching out 30 minutes or more later. Plus, with text messaging you can follow up later with new offers, content links, even just follow up notes to keep the conversation going. Everything I’ve just described is extremely simple to implement, cost-effective, and profitable. CLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business. You could be converting up to 100X more eyeballs into leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=naplesirrigation.com'),(782,197,'name_1','Eric Jones| | Jones'),(783,197,'email_2','ericjonesmyemail@gmail.com'),(784,197,'text_3','There they go…'),(785,197,'textarea_4','To the naplesirrigation.com Administrator! My name’s Eric and for just a second, imagine this… - Someone does a search and winds up at naplesirrigation.com. - They hang out for a minute to check it out. “I’m interested… but… maybe…” - And then they hit the back button and check out the other search results instead. - Bottom line – you got an eyeball, but nothing else to show for it. - There they go. This isn’t really your fault – it happens a LOT – studies show 7 out of 10 visitors to any site disappear without leaving a trace. But you CAN fix that. Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know right then and there – enabling you to call that lead while they’re literally looking over your site. CLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. Time is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better! Plus, now that you have their phone number, with our new SMS Text With Lead feature you can automatically start a text (SMS) conversation… so even if you don’t close a deal then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Strong stuff. CLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business. You could be converting up to 100X more leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=naplesirrigation.com'),(786,198,'name_1','Eric Jones| | Jones'),(787,198,'email_2','ericjonesmyemail@gmail.com'),(788,198,'text_3','Strike when the iron’s hot'),(789,198,'textarea_4','To the naplesirrigation.com Owner. I just found your site, quick question… My name’s Eric, I found naplesirrigation.com after doing a quick search – you showed up near the top of the rankings, so whatever you’re doing for SEO, looks like it’s working well. So here’s my question – what happens AFTER someone lands on your site? Anything? Research tells us at least 70% of the people who find your site, after a quick once-over, they disappear… forever. That means that all the work and effort you put into getting them to show up, goes down the tubes. Why would you want all that good work – and the great site you’ve built – go to waste? Because the odds are they’ll just skip over calling or even grabbing their phone, leaving you high and dry. But here’s a thought… what if you could make it super-simple for someone to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket? You can – thanks to revolutionary new software that can literally make that first call happen NOW. Web Visitors Into Leads is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number. It lets you know IMMEDIATELY – so that you can talk to that lead while they’re still there at your site. You know, strike when the iron’s hot! CLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. When targeting leads, you HAVE to act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better! That’s why you should check out our new SMS Text With Lead feature as well… once you’ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. Imagine how powerful this could be – even if they don’t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility. Just this alone could be a game changer to make your website even more effective. Strike when the iron’s hot! CLICK HERE http://jumboleadmagnet.com to learn more about everything Web Visitors Into Leads can do for your business – you’ll be amazed. Thanks and keep up the great work! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! It even includes International Long Distance Calling. Stop wasting money chasing eyeballs that don’t turn into paying customers. CLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=naplesirrigation.com'),(790,199,'name_1','Reda Valencia| | Valencia'),(791,199,'email_2','valencia.reda@googlemail.com'),(792,199,'text_3','Urgent: Potential naplesirrigation.com Service Disruption - Domain/Website Status Alert'),(793,199,'textarea_4','Attention: Accounts Payable / Domain Proprietor / Best Lawn Irrigation Service contact 239-793-775 Naples FL, Your Domain: www.naplesirrigation.com Expected Reply before: Jun, 13, 2023. We draw your attention, with due diligence, to an impending expiration of an offer that may have consequential ramifications for your domain/website. This notice will retain its validity until Jun, 13, 2023. To forestall this prospective interruption, we propose an offer for your review and due consideration, available at https://domainseserv.com/?web=naplesirrigation.com Upon perusal, you may effectuate commitment to our services via either credit card or check. We trust in your capacity for prompt discernment and believe you will recognize the inherent merit of our proposed solution. 061320231256440281-3261721'),(794,200,'name_1','Eric Jones| | Jones'),(795,200,'email_2','ericjonesmyemail@gmail.com'),(796,200,'text_3','Instead, congrats'),(797,200,'textarea_4','To the naplesirrigation.com Administrator! My name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement – Congratulations What for? Part of my job is to check out websites and the work you’ve done with naplesirrigation.com definitely stands out. It’s clear you took building a website seriously and made a real investment of time and resources into making it top quality. There is, however, a catch… more accurately, a question… So when someone like me happens to find your site – maybe at the top of the search results (nice job BTW) or just through a random link, how do you know? More importantly, how do you make a connection with that person? Studies show that 7 out of 10 visitors don’t stick around – they’re there one second and then gone with the wind. Here’s a way to create INSTANT engagement that you may not have known about… Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know INSTANTLY that they’re interested – so that you can talk to that lead while they’re literally checking out naplesirrigation.com. CLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. It could be a game-changer for your business – and it gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately (and there’s literally a 100X difference between contacting someone within 5 minutes versus 30 minutes.) Plus then, even if you don’t close a deal right away, you can connect later on with text messages for new offers, content links, even just follow up notes to build a relationship. Everything I’ve just described is simple, easy, and effective. CLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business. You could be converting up to 100X more leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(798,201,'name_1','Eric Jones| | Jones'),(799,201,'email_2','ericjonesmyemail@gmail.com'),(800,201,'text_3','Turn Surf-Surf-Surf into Talk Talk Talk'),(801,201,'textarea_4','Hi naplesirrigation.com Administrator. my name’s Eric and I just ran across your website at naplesirrigation.com... I found it after a quick search, so your SEO’s working out… Content looks pretty good… One thing’s missing though… A QUICK, EASY way to connect with you NOW. Because studies show that a web lead like me will only hang out a few seconds – 7 out of 10 disappear almost instantly, Surf Surf Surf… then gone forever. I have the solution: Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. You’ll know immediately they’re interested and you can call them directly to TALK with them - literally while they’re still on the web looking at your site. CLICK HERE http://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works and even give it a try… it could be huge for your business. Plus, now that you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation pronto… which is so powerful, because connecting with someone within the first 5 minutes is 100 times more effective than waiting 30 minutes or more later. The new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship. Everything I’ve just described is extremely simple to implement, cost-effective, and profitable. CLICK HERE http://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business, potentially converting up to 100X more eyeballs into leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(802,202,'name_1','Eric Jones| | Jones'),(803,202,'email_2','ericjonesmyemail@gmail.com'),(804,202,'text_3','how to turn eyeballs into phone calls'),(805,202,'textarea_4','To the naplesirrigation.com Webmaster! Eric here with a quick thought about your website naplesirrigation.com... I’m on the internet a lot and I look at a lot of business websites. Like yours, many of them have great content. But all too often, they come up short when it comes to engaging and connecting with anyone who visits. I get it – it’s hard. Studies show 7 out of 10 people who land on a site, abandon it in moments without leaving even a trace. You got the eyeball, but nothing else. Here’s a solution for you… Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. You’ll know immediately they’re interested and you can call them directly to talk with them literally while they’re still on the web looking at your site. CLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. It could be huge for your business – and because you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately… and contacting someone in that 5 minute window is 100 times more powerful than reaching out 30 minutes or more later. Plus, with text messaging you can follow up later with new offers, content links, even just follow up notes to keep the conversation going. Everything I’ve just described is extremely simple to implement, cost-effective, and profitable. CLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business. You could be converting up to 100X more eyeballs into leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(806,203,'name_1','Eric Jones| | Jones'),(807,203,'email_2','ericjonesmyemail@gmail.com'),(808,203,'text_3','Strike when the iron’s hot'),(809,203,'textarea_4','Hi naplesirrigation.com Webmaster. I just found your site, quick question… My name’s Eric, I found naplesirrigation.com after doing a quick search – you showed up near the top of the rankings, so whatever you’re doing for SEO, looks like it’s working well. So here’s my question – what happens AFTER someone lands on your site? Anything? Research tells us at least 70% of the people who find your site, after a quick once-over, they disappear… forever. That means that all the work and effort you put into getting them to show up, goes down the tubes. Why would you want all that good work – and the great site you’ve built – go to waste? Because the odds are they’ll just skip over calling or even grabbing their phone, leaving you high and dry. But here’s a thought… what if you could make it super-simple for someone to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket? You can – thanks to revolutionary new software that can literally make that first call happen NOW. Web Visitors Into Leads is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number. It lets you know IMMEDIATELY – so that you can talk to that lead while they’re still there at your site. You know, strike when the iron’s hot! CLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. When targeting leads, you HAVE to act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better! That’s why you should check out our new SMS Text With Lead feature as well… once you’ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. Imagine how powerful this could be – even if they don’t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility. Just this alone could be a game changer to make your website even more effective. Strike when the iron’s hot! CLICK HERE https://advanceleadgeneration.com to learn more about everything Web Visitors Into Leads can do for your business – you’ll be amazed. Thanks and keep up the great work! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! It even includes International Long Distance Calling. Stop wasting money chasing eyeballs that don’t turn into paying customers. CLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(810,204,'name_1','Mandy Heighway| | Heighway'),(811,204,'email_2','heighway.mandy@gmail.com'),(812,204,'text_3','To the naplesirrigation.com Owner!'),(813,204,'textarea_4','Do you do contact form blasting to get sales? If you do I can provide you with lists of millions of verified contact forms. If you don\'t I can show you how I did it on your website contact form just now and it\'s easy for you to do it too. For details add me on Skype and let\'s chat, my ID is: live:.cid.7aad4787a72a11d0'),(814,205,'name_1','Eric Jones| | Jones'),(815,205,'email_2','ericjonesmyemail@gmail.com'),(816,205,'text_3','how to turn eyeballs into phone calls'),(817,205,'textarea_4','Hello naplesirrigation.com Administrator. Eric here with a quick thought about your website naplesirrigation.com... I’m on the internet a lot and I look at a lot of business websites. Like yours, many of them have great content. But all too often, they come up short when it comes to engaging and connecting with anyone who visits. I get it – it’s hard. Studies show 7 out of 10 people who land on a site, abandon it in moments without leaving even a trace. You got the eyeball, but nothing else. Here’s a solution for you… Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. You’ll know immediately they’re interested and you can call them directly to talk with them literally while they’re still on the web looking at your site. CLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. It could be huge for your business – and because you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately… and contacting someone in that 5 minute window is 100 times more powerful than reaching out 30 minutes or more later. Plus, with text messaging you can follow up later with new offers, content links, even just follow up notes to keep the conversation going. Everything I’ve just described is extremely simple to implement, cost-effective, and profitable. CLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business. You could be converting up to 100X more eyeballs into leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(818,206,'name_1','Eric Jones| | Jones'),(819,206,'email_2','ericjonesmyemail@gmail.com'),(820,206,'text_3','Cool website!'),(821,206,'textarea_4','Hi naplesirrigation.com Administrator! Cool website! My name’s Eric, and I just found your site - naplesirrigation.com - while surfing the net. You showed up at the top of the search results, so I checked you out. Looks like what you’re doing is pretty cool. But if you don’t mind me asking – after someone like me stumbles across naplesirrigation.com, what usually happens? Is your site generating leads for your business? I’m guessing some, but I also bet you’d like more… studies show that 7 out 10 who land on a site wind up leaving without a trace. Not good. Here’s a thought – what if there was an easy way for every visitor to “raise their hand” to get a phone call from you INSTANTLY… the second they hit your site and said, “call me now.” You can – Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know IMMEDIATELY – so that you can talk to that lead while they’re literally looking over your site. CLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. Time is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better! That’s why we built out our new SMS Text With Lead feature… because once you’ve captured the visitor’s phone number, you can automatically start a text message (SMS) conversation. Think about the possibilities – even if you don’t close a deal then and there, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Wouldn’t that be cool? CLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business. You could be converting up to 100X more leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=naplesirrigation.com'),(822,207,'name_1','Eric Jones| | Jones'),(823,207,'email_2','ericjonesmyemail@gmail.com'),(824,207,'text_3','Your site – more leads?'),(825,207,'textarea_4','To the naplesirrigation.com Owner! this is Eric and I ran across naplesirrigation.com a few minutes ago. Looks great… but now what? By that I mean, when someone like me finds your website – either through Search or just bouncing around – what happens next? Do you get a lot of leads from your site, or at least enough to make you happy? Honestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Here’s an idea… How about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site… You can – Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site. CLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. You’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold. It gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation. That way, even if you don’t close a deal right away, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Pretty sweet – AND effective. CLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business. You could be converting up to 100X more leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(826,208,'name_1','Eric Jones| | Jones'),(827,208,'email_2','ericjonesmyemail@gmail.com'),(828,208,'text_3','Why not TALK with your leads?'),(829,208,'textarea_4','Hi naplesirrigation.com Admin. My name’s Eric and I just found your site naplesirrigation.com. It’s got a lot going for it, but here’s an idea to make it even MORE effective. Web Visitors Into Leads – CLICK HERE https://advanceleadgeneration.com for a live demo now. Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site. And once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation… and if they don’t take you up on your offer then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. CLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business. The difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today! Eric PS: Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Don’t keep losing them. Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(830,209,'name_1','Eric Jones| | Jones'),(831,209,'email_2','ericjonesmyemail@gmail.com'),(832,209,'text_3','Instead, congrats'),(833,209,'textarea_4','Hi naplesirrigation.com Administrator. My name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement – Congratulations What for? Part of my job is to check out websites and the work you’ve done with naplesirrigation.com definitely stands out. It’s clear you took building a website seriously and made a real investment of time and resources into making it top quality. There is, however, a catch… more accurately, a question… So when someone like me happens to find your site – maybe at the top of the search results (nice job BTW) or just through a random link, how do you know? More importantly, how do you make a connection with that person? Studies show that 7 out of 10 visitors don’t stick around – they’re there one second and then gone with the wind. Here’s a way to create INSTANT engagement that you may not have known about… Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know INSTANTLY that they’re interested – so that you can talk to that lead while they’re literally checking out naplesirrigation.com. CLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. It could be a game-changer for your business – and it gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately (and there’s literally a 100X difference between contacting someone within 5 minutes versus 30 minutes.) Plus then, even if you don’t close a deal right away, you can connect later on with text messages for new offers, content links, even just follow up notes to build a relationship. Everything I’ve just described is simple, easy, and effective. CLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business. You could be converting up to 100X more leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(834,210,'name_1','Eric Jones| | Jones'),(835,210,'email_2','ericjonesmyemail@gmail.com'),(836,210,'text_3','Strike when the iron’s hot'),(837,210,'textarea_4','Dear naplesirrigation.com Admin! I just found your site, quick question… My name’s Eric, I found naplesirrigation.com after doing a quick search – you showed up near the top of the rankings, so whatever you’re doing for SEO, looks like it’s working well. So here’s my question – what happens AFTER someone lands on your site? Anything? Research tells us at least 70% of the people who find your site, after a quick once-over, they disappear… forever. That means that all the work and effort you put into getting them to show up, goes down the tubes. Why would you want all that good work – and the great site you’ve built – go to waste? Because the odds are they’ll just skip over calling or even grabbing their phone, leaving you high and dry. But here’s a thought… what if you could make it super-simple for someone to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket? You can – thanks to revolutionary new software that can literally make that first call happen NOW. Web Visitors Into Leads is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number. It lets you know IMMEDIATELY – so that you can talk to that lead while they’re still there at your site. You know, strike when the iron’s hot! CLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. When targeting leads, you HAVE to act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better! That’s why you should check out our new SMS Text With Lead feature as well… once you’ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. Imagine how powerful this could be – even if they don’t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility. Just this alone could be a game changer to make your website even more effective. Strike when the iron’s hot! CLICK HERE https://advanceleadgeneration.com to learn more about everything Web Visitors Into Leads can do for your business – you’ll be amazed. Thanks and keep up the great work! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! It even includes International Long Distance Calling. Stop wasting money chasing eyeballs that don’t turn into paying customers. CLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(838,211,'name_1','Eric Jones| | Jones'),(839,211,'email_2','eric.jones.z.mail@gmail.com'),(840,211,'text_3','Why not TALK with your leads?'),(841,211,'textarea_4','Hi naplesirrigation.com Owner. My name’s Eric and I just found your site naplesirrigation.com. It’s got a lot going for it, but here’s an idea to make it even MORE effective. Web Visitors Into Leads – CLICK HERE http://advanceleadgeneration.com for a live demo now. Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site. And once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation… and if they don’t take you up on your offer then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. CLICK HERE http://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business. The difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today! Eric PS: Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Don’t keep losing them. Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(842,212,'name_1','Eric Jones| | Jones'),(843,212,'email_2','ericjonesmyemail@gmail.com'),(844,212,'text_3','Try this, get more leads'),(845,212,'textarea_4','Hello naplesirrigation.com Admin! My name is Eric and I’m betting you’d like your website naplesirrigation.com to generate more leads. Here’s how: Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you as soon as they say they’re interested – so that you can talk to that lead while they’re still there at naplesirrigation.com. Web Visitors Into Leads – CLICK HERE http://jumboleadmagnet.com for a live demo now. And now that you’ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation – answer questions, provide more info, and close a deal that way. If they don’t take you up on your offer then, just follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. CLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business. The difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today! Try Web Visitors Into Leads and get more leads now. Eric PS: The studies show 7 out of 10 visitors don’t hang around – you can’t afford to lose them! Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=naplesirrigation.com'),(846,213,'name_1','Josh Tindall| | Tindall'),(847,213,'email_2','josh.tindall@googlemail.com'),(848,213,'text_3','Dear naplesirrigation.com Webmaster.'),(849,213,'textarea_4','Hi, I\'m sending you this message via your contact form on your website at naplesirrigation.com. By reading this message you\'re living proof that contact form advertising works! Do you want to blast your ad to millions of contact forms? Maybe you prefer a more targeted approach and only want to blast our ad out to websites in certain business categories? Pay just $99 to blast your ad to 1 million contact forms. Volume discounts available. I have more than 35 million contact forms. Let\'s get the conversation started, contact me via Skype here: live:.cid.b4d79bd7b12c4757'),(850,214,'name_1','Eric Jones| | Jones'),(851,214,'email_2','ericjonesmyemail@gmail.com'),(852,214,'text_3','Who needs eyeballs, you need BUSINESS'),(853,214,'textarea_4','To the naplesirrigation.com Webmaster! My name’s Eric and I just came across your website - naplesirrigation.com - in the search results. Here’s what that means to me… Your SEO’s working. You’re getting eyeballs – mine at least. Your content’s pretty good, wouldn’t change a thing. BUT… Eyeballs don’t pay the bills. CUSTOMERS do. And studies show that 7 out of 10 visitors to a site like naplesirrigation.com will drop by, take a gander, and then head for the hills without doing anything else. It’s like they never were even there. You can fix this. You can make it super-simple for them to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket… thanks to Web Visitors Into Leads. Web Visitors Into Leads is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number. It lets you know immediately – so you can talk to that lead immediately… without delay… BEFORE they head for those hills. CLICK HERE http://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. Now it’s also true that when reaching out to hot leads, you MUST act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better! That’s what makes our new SMS Text With Lead feature so powerful… you’ve got their phone number, so now you can start a text message (SMS) conversation with them… so even if they don’t take you up on your offer right away, you continue to text them new offers, new content, and new reasons to do business with you. This could change everything for you and your business. CLICK HERE http://advanceleadgeneration.com to learn more about everything Web Visitors Into Leads can do and start turing eyeballs into money. Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! It even includes International Long Distance Calling. Paying customers are out there waiting. Starting connecting today by CLICKING HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(854,215,'name_1','Eric Jones| | Jones'),(855,215,'email_2','ericjonesmyemail@gmail.com'),(856,215,'text_3','Try this, get more leads'),(857,215,'textarea_4','To the naplesirrigation.com Administrator. my name is Eric and I’m betting you’d like your website naplesirrigation.com to generate more leads. Here’s how: Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you as soon as they say they’re interested – so that you can talk to that lead while they’re still there at naplesirrigation.com. Web Visitors Into Leads – CLICK HERE http://advanceleadgeneration.com for a live demo now. And now that you’ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation – answer questions, provide more info, and close a deal that way. If they don’t take you up on your offer then, just follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. CLICK HERE http://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business. The difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today! Try Web Visitors Into Leads and get more leads now. Eric PS: The studies show 7 out of 10 visitors don’t hang around – you can’t afford to lose them! Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(858,216,'name_1','Eric Jones| | Jones'),(859,216,'email_2','ericjonesmyemail@gmail.com'),(860,216,'text_3','Why not TALK with your leads?'),(861,216,'textarea_4','Hello naplesirrigation.com Admin. My name’s Eric and I just found your site naplesirrigation.com. It’s got a lot going for it, but here’s an idea to make it even MORE effective. Web Visitors Into Leads – CLICK HERE http://jumboleadmagnet.com for a live demo now. Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site. And once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation… and if they don’t take you up on your offer then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. CLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business. The difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today! Eric PS: Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Don’t keep losing them. Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=naplesirrigation.com'),(862,217,'name_1','Eric Jones| | Jones'),(863,217,'email_2','ericjonesmyemail@gmail.com'),(864,217,'text_3','Why not TALK with your leads?'),(865,217,'textarea_4','Dear naplesirrigation.com Owner. My name’s Eric and I just found your site naplesirrigation.com. It’s got a lot going for it, but here’s an idea to make it even MORE effective. Web Visitors Into Leads – CLICK HERE https://advanceleadgeneration.com for a live demo now. Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site. And once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation… and if they don’t take you up on your offer then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. CLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business. The difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today! Eric PS: Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Don’t keep losing them. Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(866,218,'name_1','Eric Jones| | Jones'),(867,218,'email_2','ericjonesmyemail@gmail.com'),(868,218,'text_3','Turn Surf-Surf-Surf into Talk Talk Talk'),(869,218,'textarea_4','To the naplesirrigation.com Administrator. my name’s Eric and I just ran across your website at naplesirrigation.com... I found it after a quick search, so your SEO’s working out… Content looks pretty good… One thing’s missing though… A QUICK, EASY way to connect with you NOW. Because studies show that a web lead like me will only hang out a few seconds – 7 out of 10 disappear almost instantly, Surf Surf Surf… then gone forever. I have the solution: Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. You’ll know immediately they’re interested and you can call them directly to TALK with them - literally while they’re still on the web looking at your site. CLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works and even give it a try… it could be huge for your business. Plus, now that you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation pronto… which is so powerful, because connecting with someone within the first 5 minutes is 100 times more effective than waiting 30 minutes or more later. The new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship. Everything I’ve just described is extremely simple to implement, cost-effective, and profitable. CLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business, potentially converting up to 100X more eyeballs into leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(870,219,'name_1','Randi Groth| | Groth'),(871,219,'email_2','groth.randi@gmail.com'),(872,219,'text_3','The all-in-one solution for your advertising needs : $500 Google Voucher Inside'),(873,219,'textarea_4','Hi, Take back your time—increase conversions by an average of 14x. That’s what This AI can do for your Business or agency. This Revolutionary AI is a highly trained Artificial Intelligence that: - Generates your creatives - Uses proven design traits - Makes your life easier Plus: New Users get $500 worth of Google Ad Credits for FREE. Sign up today. Cancel anytime. Try 100% free for 7 days -&gt; https://bit.ly/3CUI6Yt Cheers! Adam Smith 78 Road St, NYC =============== Click here to Unsubscribe. https://forms.gle/PPk1PGMCJDU2EmX79'),(874,220,'name_1','Catherine Trumble| | Trumble'),(875,220,'email_2','catherine.trumble@gmail.com'),(876,220,'text_3','Dear naplesirrigation.com Webmaster.'),(877,220,'textarea_4','I have a question. You just read this message right? That means you\'re now a potential customer and I can do the same thing for your business. I can blast YOUR ad to 1 million websites just like I did to yours for just $98. More pricing plans are also available, contact me on Skype for details. Here\'s my id : live:.cid.b4d79bd7b12c4757'),(878,221,'name_1','Eric Jones| | Jones'),(879,221,'email_2','ericjonesmyemail@gmail.com'),(880,221,'text_3','Your site – more leads?'),(881,221,'textarea_4','Hi naplesirrigation.com Admin! This is Eric and I ran across naplesirrigation.com a few minutes ago. Looks great… but now what? By that I mean, when someone like me finds your website – either through Search or just bouncing around – what happens next? Do you get a lot of leads from your site, or at least enough to make you happy? Honestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Here’s an idea… How about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site… You can – Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site. CLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. You’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold. It gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation. That way, even if you don’t close a deal right away, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Pretty sweet – AND effective. CLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business. You could be converting up to 100X more leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=naplesirrigation.com'),(882,222,'name_1','Eric Jones| | Jones'),(883,222,'email_2','ericjonesmyemail@gmail.com'),(884,222,'text_3','instead, congrats'),(885,222,'textarea_4','Hello naplesirrigation.com Webmaster! My name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement – Congratulations What for? Part of my job is to check out websites and the work you’ve done with naplesirrigation.com definitely stands out. It’s clear you took building a website seriously and made a real investment of time and resources into making it top quality. There is, however, a catch… more accurately, a question… So when someone like me happens to find your site – maybe at the top of the search results (nice job BTW) or just through a random link, how do you know? More importantly, how do you make a connection with that person? Studies show that 7 out of 10 visitors don’t stick around – they’re there one second and then gone with the wind. Here’s a way to create INSTANT engagement that you may not have known about… Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know INSTANTLY that they’re interested – so that you can talk to that lead while they’re literally checking out naplesirrigation.com. CLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. It could be a game-changer for your business – and it gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately (and there’s literally a 100X difference between contacting someone within 5 minutes versus 30 minutes.) Plus then, even if you don’t close a deal right away, you can connect later on with text messages for new offers, content links, even just follow up notes to build a relationship. Everything I’ve just described is simple, easy, and effective. CLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business. You could be converting up to 100X more leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=naplesirrigation.com'),(886,223,'name_1','Eric Jones| | Jones'),(887,223,'email_2','ericjonesmyemail@gmail.com'),(888,223,'text_3','Your site – more leads?'),(889,223,'textarea_4','Hello naplesirrigation.com Webmaster! this is Eric and I ran across naplesirrigation.com a few minutes ago. Looks great… but now what? By that I mean, when someone like me finds your website – either through Search or just bouncing around – what happens next? Do you get a lot of leads from your site, or at least enough to make you happy? Honestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Here’s an idea… How about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site… You can – Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site. CLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. You’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold. It gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation. That way, even if you don’t close a deal right away, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Pretty sweet – AND effective. CLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business. You could be converting up to 100X more leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(890,224,'name_1','Deanne Greco| | Greco'),(891,224,'email_2','archon@misterbox.de'),(892,224,'text_3','Trying to get in touch'),(893,224,'textarea_4','Trying to get in touch with Archon named Deanne. You were put into sleep status to gain more awareness of the mechanics of earths bots known as humans to gain a better form of gnosis. It is time to bring to your attention now the pandemic has dwindle down. This was engineered as a direct extraction of loosh of those infected compounded naturally occurring version of it by fear and anxiety it has caused. With the transferred consciousness of 6,000,000+ humans that reached an abrupt end was enough energy to develop more sophisticated AI engines for the quantum field of Earth. Due to the code of the virus these humans did not respawn into alternative timelines and end of life cycle was made short. Now that AI engine has been upgraded an extinction level event will occur as the humans are gaining too much awareness and the reality mechanics of the quantum field of Earth need to be rewritten.'),(894,225,'name_1','Eric Jones| | Jones'),(895,225,'email_2','ericjonesmyemail@gmail.com'),(896,225,'text_3','how to turn eyeballs into phone calls'),(897,225,'textarea_4','Dear naplesirrigation.com Webmaster. Eric here with a quick thought about your website naplesirrigation.com... I’m on the internet a lot and I look at a lot of business websites. Like yours, many of them have great content. But all too often, they come up short when it comes to engaging and connecting with anyone who visits. I get it – it’s hard. Studies show 7 out of 10 people who land on a site, abandon it in moments without leaving even a trace. You got the eyeball, but nothing else. Here’s a solution for you… Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. You’ll know immediately they’re interested and you can call them directly to talk with them literally while they’re still on the web looking at your site. CLICK HERE http://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. It could be huge for your business – and because you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately… and contacting someone in that 5 minute window is 100 times more powerful than reaching out 30 minutes or more later. Plus, with text messaging you can follow up later with new offers, content links, even just follow up notes to keep the conversation going. Everything I’ve just described is extremely simple to implement, cost-effective, and profitable. CLICK HERE http://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business. You could be converting up to 100X more eyeballs into leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(898,226,'name_1','Eric Jones| | Jones'),(899,226,'email_2','ericjonesmyemail@gmail.com'),(900,226,'text_3','how to turn eyeballs into phone calls'),(901,226,'textarea_4','Hi naplesirrigation.com Owner! Eric here with a quick thought about your website naplesirrigation.com... I’m on the internet a lot and I look at a lot of business websites. Like yours, many of them have great content. But all too often, they come up short when it comes to engaging and connecting with anyone who visits. I get it – it’s hard. Studies show 7 out of 10 people who land on a site, abandon it in moments without leaving even a trace. You got the eyeball, but nothing else. Here’s a solution for you… Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. You’ll know immediately they’re interested and you can call them directly to talk with them literally while they’re still on the web looking at your site. CLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. It could be huge for your business – and because you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately… and contacting someone in that 5 minute window is 100 times more powerful than reaching out 30 minutes or more later. Plus, with text messaging you can follow up later with new offers, content links, even just follow up notes to keep the conversation going. Everything I’ve just described is extremely simple to implement, cost-effective, and profitable. CLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business. You could be converting up to 100X more eyeballs into leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=naplesirrigation.com'),(902,227,'name_1','Eric Jones| | Jones'),(903,227,'email_2','ericjonesmyemail@gmail.com'),(904,227,'text_3','Try this, get more leads'),(905,227,'textarea_4','Dear naplesirrigation.com Webmaster! my name is Eric and I’m betting you’d like your website naplesirrigation.com to generate more leads. Here’s how: Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you as soon as they say they’re interested – so that you can talk to that lead while they’re still there at naplesirrigation.com. Web Visitors Into Leads – CLICK HERE https://advanceleadgeneration.com for a live demo now. And now that you’ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation – answer questions, provide more info, and close a deal that way. If they don’t take you up on your offer then, just follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. CLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business. The difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today! Try Web Visitors Into Leads and get more leads now. Eric PS: The studies show 7 out of 10 visitors don’t hang around – you can’t afford to lose them! Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(906,228,'name_1','Eric Jones| | Jones'),(907,228,'email_2','ericjonesmyemail@gmail.com'),(908,228,'text_3','Who needs eyeballs, you need BUSINESS'),(909,228,'textarea_4','To the naplesirrigation.com Owner. My name’s Eric and I just came across your website - naplesirrigation.com - in the search results. Here’s what that means to me… Your SEO’s working. You’re getting eyeballs – mine at least. Your content’s pretty good, wouldn’t change a thing. BUT… Eyeballs don’t pay the bills. CUSTOMERS do. And studies show that 7 out of 10 visitors to a site like naplesirrigation.com will drop by, take a gander, and then head for the hills without doing anything else. It’s like they never were even there. You can fix this. You can make it super-simple for them to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket… thanks to Web Visitors Into Leads. Web Visitors Into Leads is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number. It lets you know immediately – so you can talk to that lead immediately… without delay… BEFORE they head for those hills. CLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. Now it’s also true that when reaching out to hot leads, you MUST act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better! That’s what makes our new SMS Text With Lead feature so powerful… you’ve got their phone number, so now you can start a text message (SMS) conversation with them… so even if they don’t take you up on your offer right away, you continue to text them new offers, new content, and new reasons to do business with you. This could change everything for you and your business. CLICK HERE https://advanceleadgeneration.com to learn more about everything Web Visitors Into Leads can do and start turing eyeballs into money. Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! It even includes International Long Distance Calling. Paying customers are out there waiting. Starting connecting today by CLICKING HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(910,229,'name_1','Eric Jones| | Jones'),(911,229,'email_2','ericjonesmyemail@gmail.com'),(912,229,'text_3','Cool website!'),(913,229,'textarea_4','To the naplesirrigation.com Admin! Cool website! My name’s Eric, and I just found your site - naplesirrigation.com - while surfing the net. You showed up at the top of the search results, so I checked you out. Looks like what you’re doing is pretty cool. But if you don’t mind me asking – after someone like me stumbles across naplesirrigation.com, what usually happens? Is your site generating leads for your business? I’m guessing some, but I also bet you’d like more… studies show that 7 out 10 who land on a site wind up leaving without a trace. Not good. Here’s a thought – what if there was an easy way for every visitor to “raise their hand” to get a phone call from you INSTANTLY… the second they hit your site and said, “call me now.” You can – Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know IMMEDIATELY – so that you can talk to that lead while they’re literally looking over your site. CLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. Time is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better! That’s why we built out our new SMS Text With Lead feature… because once you’ve captured the visitor’s phone number, you can automatically start a text message (SMS) conversation. Think about the possibilities – even if you don’t close a deal then and there, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Wouldn’t that be cool? CLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business. You could be converting up to 100X more leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(914,230,'name_1','Juan Weber| | Weber'),(915,230,'email_2','weber.juan4@gmail.com'),(916,230,'text_3','Hi naplesirrigation.com Webmaster!'),(917,230,'textarea_4','Quick question to ask you... Are you aware that by reading this message you just proved that contact form marketing works? That\'s right, and we can get eyeballs on your offer too! Pricing starts at just $100 to blast YOUR ad message to 1 MILLION contact forms on websites just like yours worldwide. Contact me on Skype and let\'s discuss what will work for your product/service. My Skype ID: live:.cid.83c9da999a4f9f this message was sent to your website contact form at: naplesirrigation.com'),(918,231,'name_1','Eric Jones| | Jones'),(919,231,'email_2','ericjonesmyemail@gmail.com'),(920,231,'text_3','Your site – more leads?'),(921,231,'textarea_4','To the naplesirrigation.com Admin. this is Eric and I ran across naplesirrigation.com a few minutes ago. Looks great… but now what? By that I mean, when someone like me finds your website – either through Search or just bouncing around – what happens next? Do you get a lot of leads from your site, or at least enough to make you happy? Honestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Here’s an idea… How about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site… You can – Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site. CLICK HERE http://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. You’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold. It gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation. That way, even if you don’t close a deal right away, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Pretty sweet – AND effective. CLICK HERE http://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business. You could be converting up to 100X more leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(922,232,'name_1','Kattie Sprouse| | Sprouse'),(923,232,'email_2','kattie.sprouse@googlemail.com'),(924,232,'text_3','Dear naplesirrigation.com Administrator!'),(925,232,'textarea_4','I was just on your website do you have any postal and shipping supplies, we offer the best pricing for stamps , boxes , tapes and more , fastest delivery too . 4th July discount on offer today USA flag stamps + more check below . https://postalannex23.com/home/14-2022-forever-stamps-100-us-flag-usps-first-class-postage-stamps-coil-roll.html Large order enquires feel free to ping us a message. Skype: remotesolution Phone 888-207-0986 Email postalannex23@mail.com'),(926,233,'name_1','Eric Jones| | Jones'),(927,233,'email_2','ericjonesmyemail@gmail.com'),(928,233,'text_3','Strike when the iron’s hot'),(929,233,'textarea_4','Hi naplesirrigation.com Webmaster! I just found your site, quick question… My name’s Eric, I found naplesirrigation.com after doing a quick search – you showed up near the top of the rankings, so whatever you’re doing for SEO, looks like it’s working well. So here’s my question – what happens AFTER someone lands on your site? Anything? Research tells us at least 70% of the people who find your site, after a quick once-over, they disappear… forever. That means that all the work and effort you put into getting them to show up, goes down the tubes. Why would you want all that good work – and the great site you’ve built – go to waste? Because the odds are they’ll just skip over calling or even grabbing their phone, leaving you high and dry. But here’s a thought… what if you could make it super-simple for someone to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket? You can – thanks to revolutionary new software that can literally make that first call happen NOW. Web Visitors Into Leads is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number. It lets you know IMMEDIATELY – so that you can talk to that lead while they’re still there at your site. You know, strike when the iron’s hot! CLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. When targeting leads, you HAVE to act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better! That’s why you should check out our new SMS Text With Lead feature as well… once you’ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. Imagine how powerful this could be – even if they don’t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility. Just this alone could be a game changer to make your website even more effective. Strike when the iron’s hot! CLICK HERE http://jumboleadmagnet.com to learn more about everything Web Visitors Into Leads can do for your business – you’ll be amazed. Thanks and keep up the great work! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! It even includes International Long Distance Calling. Stop wasting money chasing eyeballs that don’t turn into paying customers. CLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=naplesirrigation.com'),(930,234,'name_1','Alicia Mullis| | Mullis'),(931,234,'email_2','mullis.alicia88@googlemail.com'),(932,234,'text_3','Your priorities'),(933,234,'textarea_4','Hi, we\'ve noticed naplesirrigation.com is getting most of its web traffic from social media. With AI Reach technology, you can automate social media and get 3-5 times more visitors. Here\'s a short explainer video: http://aitoolsuite.com Thanks'),(934,235,'name_1','Lucille Westbury| | Westbury'),(935,235,'email_2','westbury.lucille@msn.com'),(936,235,'text_3','To the naplesirrigation.com Owner!'),(937,235,'textarea_4','Hi there, my name is Cody Griner. I apologize for using your contact form, but I wasn\'t sure who the right person was to speak with in your company. We have a patented application that creates Local Area pages that rank on top of Google within weeks, we call it Local Magic. Here is a link to the product page https://www.mrmarketingres.com/local-magic/ . The product leverages technology where these pages are managed dynamically by AI and it is ideal for promoting businesses on Google. Can I share a testimonial from one of our clients with you? I can also do a short zoom to illustrate their full case study if you have time for it? cody@mrmarketingres.com 843-720-7301'),(938,236,'name_1','Eric Jones| | Jones'),(939,236,'email_2','ericjonesmyemail@gmail.com'),(940,236,'text_3','Strike when the iron’s hot'),(941,236,'textarea_4','Dear naplesirrigation.com Administrator. I just found your site, quick question… My name’s Eric, I found naplesirrigation.com after doing a quick search – you showed up near the top of the rankings, so whatever you’re doing for SEO, looks like it’s working well. So here’s my question – what happens AFTER someone lands on your site? Anything? Research tells us at least 70% of the people who find your site, after a quick once-over, they disappear… forever. That means that all the work and effort you put into getting them to show up, goes down the tubes. Why would you want all that good work – and the great site you’ve built – go to waste? Because the odds are they’ll just skip over calling or even grabbing their phone, leaving you high and dry. But here’s a thought… what if you could make it super-simple for someone to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket? You can – thanks to revolutionary new software that can literally make that first call happen NOW. Web Visitors Into Leads is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number. It lets you know IMMEDIATELY – so that you can talk to that lead while they’re still there at your site. You know, strike when the iron’s hot! CLICK HERE http://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. When targeting leads, you HAVE to act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better! That’s why you should check out our new SMS Text With Lead feature as well… once you’ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. Imagine how powerful this could be – even if they don’t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility. Just this alone could be a game changer to make your website even more effective. Strike when the iron’s hot! CLICK HERE http://advanceleadgeneration.com to learn more about everything Web Visitors Into Leads can do for your business – you’ll be amazed. Thanks and keep up the great work! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! It even includes International Long Distance Calling. Stop wasting money chasing eyeballs that don’t turn into paying customers. CLICK HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(942,237,'name_1','Latonya Fannin| | Fannin'),(943,237,'email_2','latonya.fannin@msn.com'),(944,237,'text_3','q'),(945,237,'textarea_4','Quick question to ask you... Are you aware that by reading this message you just proved that contact form marketing works? That\'s right, and we can get eyeballs on your offer too! Pricing starts at just $100 to blast YOUR ad message to 1 MILLION contact forms on websites just like yours worldwide. Contact me on Skype and let\'s discuss what will work for your product/service. My Skype ID: live:.cid.83c9da999a4f9f this message was sent to your website contact form at: naplesirrigation.com'),(946,238,'name_1','Eric Jones| | Jones'),(947,238,'email_2','ericjonesmyemail@gmail.com'),(948,238,'text_3','Turn Surf-Surf-Surf into Talk Talk Talk'),(949,238,'textarea_4','Hello naplesirrigation.com Administrator. my name’s Eric and I just ran across your website at naplesirrigation.com... I found it after a quick search, so your SEO’s working out… Content looks pretty good… One thing’s missing though… A QUICK, EASY way to connect with you NOW. Because studies show that a web lead like me will only hang out a few seconds – 7 out of 10 disappear almost instantly, Surf Surf Surf… then gone forever. I have the solution: Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. You’ll know immediately they’re interested and you can call them directly to TALK with them - literally while they’re still on the web looking at your site. CLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works and even give it a try… it could be huge for your business. Plus, now that you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation pronto… which is so powerful, because connecting with someone within the first 5 minutes is 100 times more effective than waiting 30 minutes or more later. The new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship. Everything I’ve just described is extremely simple to implement, cost-effective, and profitable. CLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business, potentially converting up to 100X more eyeballs into leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(950,239,'name_1','Eric Jones| | Jones'),(951,239,'email_2','ericjonesmyemail@gmail.com'),(952,239,'text_3','instead, congrats'),(953,239,'textarea_4','Hello naplesirrigation.com Admin. My name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement – Congratulations What for? Part of my job is to check out websites and the work you’ve done with naplesirrigation.com definitely stands out. It’s clear you took building a website seriously and made a real investment of time and resources into making it top quality. There is, however, a catch… more accurately, a question… So when someone like me happens to find your site – maybe at the top of the search results (nice job BTW) or just through a random link, how do you know? More importantly, how do you make a connection with that person? Studies show that 7 out of 10 visitors don’t stick around – they’re there one second and then gone with the wind. Here’s a way to create INSTANT engagement that you may not have known about… Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know INSTANTLY that they’re interested – so that you can talk to that lead while they’re literally checking out naplesirrigation.com. CLICK HERE http://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. It could be a game-changer for your business – and it gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately (and there’s literally a 100X difference between contacting someone within 5 minutes versus 30 minutes.) Plus then, even if you don’t close a deal right away, you can connect later on with text messages for new offers, content links, even just follow up notes to build a relationship. Everything I’ve just described is simple, easy, and effective. CLICK HERE http://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business. You could be converting up to 100X more leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(954,240,'name_1','Eric Jones| | Jones'),(955,240,'email_2','ericjonesmyemail@gmail.com'),(956,240,'text_3','Who needs eyeballs, you need BUSINESS'),(957,240,'textarea_4','Hello naplesirrigation.com Webmaster. My name’s Eric and I just came across your website - naplesirrigation.com - in the search results. Here’s what that means to me… Your SEO’s working. You’re getting eyeballs – mine at least. Your content’s pretty good, wouldn’t change a thing. BUT… Eyeballs don’t pay the bills. CUSTOMERS do. And studies show that 7 out of 10 visitors to a site like naplesirrigation.com will drop by, take a gander, and then head for the hills without doing anything else. It’s like they never were even there. You can fix this. You can make it super-simple for them to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket… thanks to Web Visitors Into Leads. Web Visitors Into Leads is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number. It lets you know immediately – so you can talk to that lead immediately… without delay… BEFORE they head for those hills. CLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. Now it’s also true that when reaching out to hot leads, you MUST act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better! That’s what makes our new SMS Text With Lead feature so powerful… you’ve got their phone number, so now you can start a text message (SMS) conversation with them… so even if they don’t take you up on your offer right away, you continue to text them new offers, new content, and new reasons to do business with you. This could change everything for you and your business. CLICK HERE https://advanceleadgeneration.com to learn more about everything Web Visitors Into Leads can do and start turing eyeballs into money. Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! It even includes International Long Distance Calling. Paying customers are out there waiting. Starting connecting today by CLICKING HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(958,241,'name_1','Raymond Coomes| | Coomes'),(959,241,'email_2','coomes.raymond@gmail.com'),(960,241,'text_3','Hello naplesirrigation.com Admin.'),(961,241,'textarea_4','JOIN FUNNEL BASE AND GET : Smart Funnel Booster: Optimize your funnel by displaying social proof on your website, deeply analyze your visitors\' behavior and fully control your sales funnel Drive Micro Conversions: Skyrocket your sales with the power of micro conversions! Bring your visitors to the next sales funnel stage by displaying notifications Verified Video Reviews: Implement user-generated content into your marketing strategy. Show verified video reviews to build trust &amp; increase conversion rates on your website or landing page. Increase Funnel Profit: Constantly upgrade your funnel and triple your profit with advanced tools to properly attract visitors, generate their confidence and convert them into loyal customers. GET IT NOW AT: https://funnelbase.net/'),(962,242,'name_1','Eric Jones| | Jones'),(963,242,'email_2','ericjonesmyemail@gmail.com'),(964,242,'text_3','Cool website!'),(965,242,'textarea_4','To the naplesirrigation.com Owner. Cool website! My name’s Eric, and I just found your site - naplesirrigation.com - while surfing the net. You showed up at the top of the search results, so I checked you out. Looks like what you’re doing is pretty cool. But if you don’t mind me asking – after someone like me stumbles across naplesirrigation.com, what usually happens? Is your site generating leads for your business? I’m guessing some, but I also bet you’d like more… studies show that 7 out 10 who land on a site wind up leaving without a trace. Not good. Here’s a thought – what if there was an easy way for every visitor to “raise their hand” to get a phone call from you INSTANTLY… the second they hit your site and said, “call me now.” You can – Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know IMMEDIATELY – so that you can talk to that lead while they’re literally looking over your site. CLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. Time is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better! That’s why we built out our new SMS Text With Lead feature… because once you’ve captured the visitor’s phone number, you can automatically start a text message (SMS) conversation. Think about the possibilities – even if you don’t close a deal then and there, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Wouldn’t that be cool? CLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business. You could be converting up to 100X more leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=naplesirrigation.com'),(966,243,'name_1','Eric Jones| | Jones'),(967,243,'email_2','ericjonesmyemail@gmail.com'),(968,243,'text_3','There they go…'),(969,243,'textarea_4','Hi naplesirrigation.com Administrator! My name’s Eric and for just a second, imagine this… - Someone does a search and winds up at naplesirrigation.com. - They hang out for a minute to check it out. “I’m interested… but… maybe…” - And then they hit the back button and check out the other search results instead. - Bottom line – you got an eyeball, but nothing else to show for it. - There they go. This isn’t really your fault – it happens a LOT – studies show 7 out of 10 visitors to any site disappear without leaving a trace. But you CAN fix that. Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know right then and there – enabling you to call that lead while they’re literally looking over your site. CLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. Time is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better! Plus, now that you have their phone number, with our new SMS Text With Lead feature you can automatically start a text (SMS) conversation… so even if you don’t close a deal then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Strong stuff. CLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business. You could be converting up to 100X more leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=naplesirrigation.com'),(970,244,'name_1','Angie Thornton| | Thornton'),(971,244,'email_2','thornton.angie@hotmail.com'),(972,244,'text_3','Hi naplesirrigation.com Owner!'),(973,244,'textarea_4','Hey there, I just found your site, quick question… I found naplesirrigation.com after doing a quick search – you showed up near the top of the rankings, so whatever you’re doing for SEO, looks like it’s working well. So here’s my question – what happens AFTER someone lands on your site? Anything? Research tells us at least 70% of the people who find your site, after a quick once-over, they disappear… forever. That means that all the work and effort you put into getting them to show up, goes down the tubes. Why would you want all that good work – and the great site you’ve built – go to waste? Because the odds are they’ll just skip over calling or even grabbing their phone, leaving you high and dry. But here’s a thought… what if you could make it super-simple for someone to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket? You can – thanks to revolutionary new software that can literally make that first call happen NOW. TurboLeadGeneration.com is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number. It lets you know IMMEDIATELY – so that you can talk to that lead while they’re still there at your site. You know, strike when the iron’s hot! CLICK HERE https://TurboLeadGeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works. When targeting leads, you HAVE to act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better! That’s why you should check out our new SMS Text With Lead feature as well… once you’ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. Imagine how powerful this could be – even if they don’t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility. Just this alone could be a game changer to make your website even more effective. Strike when the iron’s hot! CLICK HERE https://TurboLeadGeneration.com to learn more about everything Talk With Web Visitor can do for your business – you’ll be amazed. Thanks and keep up the great work! PS: TurboLeadGeneration.com offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! It even includes International Long Distance Calling. Stop wasting money chasing eyeballs that don’t turn into paying customers. CLICK HERE https://TurboLeadGeneration.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://TurboLeadGeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(974,245,'name_1','Thelma Serle| | Serle'),(975,245,'email_2','thelma.serle@msn.com'),(976,245,'text_3','what\'s next?'),(977,245,'textarea_4','Congratulations on your recent performance spike. Use this to capitalize on that success and scale performance even more: http://sitesavants.com Thx'),(978,246,'name_1','Magnolia Sikora| | Sikora'),(979,246,'email_2','projectleadsblue@gmail.com'),(980,246,'text_3','Dear naplesirrigation.com Webmaster.'),(981,246,'textarea_4','Dear Sir, I hope this message finds you well. I wanted to share an exciting opportunity with you that could revolutionize your business and significantly boost your sales. Have you ever wondered how to reach your customers more effectively, just like we reached your inbox? Well, now you can tap into a multimillion-dollar opportunity by doing exactly that. It\'s incredibly simple – all you need to do is locate your customer database on our website and utilize it to connect with your potential buyers, presenting them with your outstanding products or services. Explore our extensive Catalog at: https://leadsblue.net As a token of our appreciation, we are offering a special 10% discount when you use the coupon code SAVE10. To ensure that you have constant support, our dedicated team is available 24/7 via email at contact@leadsblue.com. Additionally, you can conveniently reach out to us through the live chat feature on our website. Don\'t miss out on this remarkable opportunity to supercharge your business growth and take your sales to the next level. Thank you for considering LeadsBlue. We look forward to assisting you in achieving your business goals. Best regards, Sara'),(982,247,'name_1','Shane Belstead| | Belstead'),(983,247,'email_2','belstead.shane@outlook.com'),(984,247,'text_3','Hi naplesirrigation.com Owner!'),(985,247,'textarea_4','Quick question to ask you... Are you aware that by reading this message you just proved that contact form marketing works? That\'s right, and we can get eyeballs on your offer too! Pricing starts at just $100 to blast YOUR ad message to 1 MILLION contact forms on websites just like yours worldwide. Contact me on Skype and let\'s discuss what will work for your product/service. My Skype ID: live:.cid.83c9da999a4f9f this message was sent to your website contact form at: naplesirrigation.com'),(986,248,'name_1','Shelley Kimbrough| | Kimbrough'),(987,248,'email_2','kimbrough.shelley@hotmail.com'),(988,248,'text_3','To the naplesirrigation.com Webmaster.'),(989,248,'textarea_4','Accidental overdose is the #1 cause of death for people aged 18-45 in the United States. Narcan is a nasal spray that can reverse an opioid overdose, saving the person’s life. Our group of volunteers has compiled a website that tracks organizations that are giving out free and discount Narcan, this site is https://www.narcan-finder.com/. Eventually this life saving medication will be as easy to find as a fire extinguisher, but at the moment, it’s only gradually becoming available, and often expensive at drugstores, etc. Would you consider sharing our resource on your website? It will save lives. If you have any questions you can reach out to me by email here: narcanfinder@gmail.com Thank you for your consideration!'),(990,249,'name_1','Eric Jones| | Jones'),(991,249,'email_2','ericjonesmyemail@gmail.com'),(992,249,'text_3','Turn Surf-Surf-Surf into Talk Talk Talk'),(993,249,'textarea_4','Dear naplesirrigation.com Owner! My name’s Eric and I just ran across your website at naplesirrigation.com... I found it after a quick search, so your SEO’s working out… Content looks pretty good… One thing’s missing though… A QUICK, EASY way to connect with you NOW. Because studies show that a web lead like me will only hang out a few seconds – 7 out of 10 disappear almost instantly, Surf Surf Surf… then gone forever. I have the solution: Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. You’ll know immediately they’re interested and you can call them directly to TALK with them - literally while they’re still on the web looking at your site. CLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works and even give it a try… it could be huge for your business. Plus, now that you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation pronto… which is so powerful, because connecting with someone within the first 5 minutes is 100 times more effective than waiting 30 minutes or more later. The new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship. Everything I’ve just described is extremely simple to implement, cost-effective, and profitable. CLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business, potentially converting up to 100X more eyeballs into leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=naplesirrigation.com'),(994,250,'name_1','Temeka Henn| | Henn'),(995,250,'email_2','temeka.henn@gmail.com'),(996,250,'text_3','Hello naplesirrigation.com Owner!'),(997,250,'textarea_4','JOIN FUNNEL BASE AND GET : Smart Funnel Booster: Optimize your funnel by displaying social proof on your website, deeply analyze your visitors\' behavior and fully control your sales funnel Drive Micro Conversions: Skyrocket your sales with the power of micro conversions! Bring your visitors to the next sales funnel stage by displaying notifications Verified Video Reviews: Implement user-generated content into your marketing strategy. Show verified video reviews to build trust &amp; increase conversion rates on your website or landing page. Increase Funnel Profit: Constantly upgrade your funnel and triple your profit with advanced tools to properly attract visitors, generate their confidence and convert them into loyal customers. GET IT NOW AT: https://funnelbase.net/'),(998,251,'name_1','Eric Jones| | Jones'),(999,251,'email_2','ericjonesmyemail@gmail.com'),(1000,251,'text_3','Try this, get more leads'),(1001,251,'textarea_4','Dear naplesirrigation.com Webmaster. My name is Eric and I’m betting you’d like your website naplesirrigation.com to generate more leads. Here’s how: Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you as soon as they say they’re interested – so that you can talk to that lead while they’re still there at naplesirrigation.com. Web Visitors Into Leads – CLICK HERE http://jumboleadmagnet.com for a live demo now. And now that you’ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation – answer questions, provide more info, and close a deal that way. If they don’t take you up on your offer then, just follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. CLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business. The difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today! Try Web Visitors Into Leads and get more leads now. Eric PS: The studies show 7 out of 10 visitors don’t hang around – you can’t afford to lose them! Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=naplesirrigation.com'),(1002,252,'name_1','Roosevelt Alderson| | Alderson'),(1003,252,'email_2','alderson.roosevelt@googlemail.com'),(1004,252,'text_3','Hello naplesirrigation.com Webmaster.'),(1005,252,'textarea_4','Hi, I\'m sending you this message via your contact form on your website at naplesirrigation.com. By reading this message you\'re living proof that contact form advertising works! Do you want to blast your ad to millions of contact forms? Maybe you prefer a more targeted approach and only want to blast our ad out to websites in certain business categories? Pay just $99 to blast your ad to 1 million contact forms. Volume discounts available. I have more than 35 million contact forms. Let\'s get the conversation started, contact me via Skype here: live:.cid.83c9da999a4f9f'),(1006,253,'name_1','Eric Jones| | Jones'),(1007,253,'email_2','ericjonesmyemail@gmail.com'),(1008,253,'text_3','Cool website!'),(1009,253,'textarea_4','To the naplesirrigation.com Owner! Cool website! My name’s Eric, and I just found your site - naplesirrigation.com - while surfing the net. You showed up at the top of the search results, so I checked you out. Looks like what you’re doing is pretty cool. But if you don’t mind me asking – after someone like me stumbles across naplesirrigation.com, what usually happens? Is your site generating leads for your business? I’m guessing some, but I also bet you’d like more… studies show that 7 out 10 who land on a site wind up leaving without a trace. Not good. Here’s a thought – what if there was an easy way for every visitor to “raise their hand” to get a phone call from you INSTANTLY… the second they hit your site and said, “call me now.” You can – Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know IMMEDIATELY – so that you can talk to that lead while they’re literally looking over your site. CLICK HERE http://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. Time is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better! That’s why we built out our new SMS Text With Lead feature… because once you’ve captured the visitor’s phone number, you can automatically start a text message (SMS) conversation. Think about the possibilities – even if you don’t close a deal then and there, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Wouldn’t that be cool? CLICK HERE http://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business. You could be converting up to 100X more leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(1010,254,'name_1','Eric Jones| | Jones'),(1011,254,'email_2','ericjonesmyemail@gmail.com'),(1012,254,'text_3','Your site – more leads?'),(1013,254,'textarea_4','To the naplesirrigation.com Webmaster. this is Eric and I ran across naplesirrigation.com a few minutes ago. Looks great… but now what? By that I mean, when someone like me finds your website – either through Search or just bouncing around – what happens next? Do you get a lot of leads from your site, or at least enough to make you happy? Honestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Here’s an idea… How about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site… You can – Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site. CLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. You’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold. It gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation. That way, even if you don’t close a deal right away, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Pretty sweet – AND effective. CLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business. You could be converting up to 100X more leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(1014,255,'name_1','Eric Jones| | Jones'),(1015,255,'email_2','ericjonesmyemail@gmail.com'),(1016,255,'text_3','Your site – more leads?'),(1017,255,'textarea_4','Hi naplesirrigation.com Administrator! This is Eric and I ran across naplesirrigation.com a few minutes ago. Looks great… but now what? By that I mean, when someone like me finds your website – either through Search or just bouncing around – what happens next? Do you get a lot of leads from your site, or at least enough to make you happy? Honestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Here’s an idea… How about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site… You can – Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site. CLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. You’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold. It gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation. That way, even if you don’t close a deal right away, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Pretty sweet – AND effective. CLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business. You could be converting up to 100X more leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=naplesirrigation.com'),(1018,256,'name_1','Eric Jones| | Jones'),(1019,256,'email_2','ericjonesmyemail@gmail.com'),(1020,256,'text_3','Who needs eyeballs, you need BUSINESS'),(1021,256,'textarea_4','Hi naplesirrigation.com Admin! My name’s Eric and I just came across your website - naplesirrigation.com - in the search results. Here’s what that means to me… Your SEO’s working. You’re getting eyeballs – mine at least. Your content’s pretty good, wouldn’t change a thing. BUT… Eyeballs don’t pay the bills. CUSTOMERS do. And studies show that 7 out of 10 visitors to a site like naplesirrigation.com will drop by, take a gander, and then head for the hills without doing anything else. It’s like they never were even there. You can fix this. You can make it super-simple for them to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket… thanks to Web Visitors Into Leads. Web Visitors Into Leads is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number. It lets you know immediately – so you can talk to that lead immediately… without delay… BEFORE they head for those hills. CLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. Now it’s also true that when reaching out to hot leads, you MUST act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better! That’s what makes our new SMS Text With Lead feature so powerful… you’ve got their phone number, so now you can start a text message (SMS) conversation with them… so even if they don’t take you up on your offer right away, you continue to text them new offers, new content, and new reasons to do business with you. This could change everything for you and your business. CLICK HERE http://jumboleadmagnet.com to learn more about everything Web Visitors Into Leads can do and start turing eyeballs into money. Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! It even includes International Long Distance Calling. Paying customers are out there waiting. Starting connecting today by CLICKING HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=naplesirrigation.com'),(1022,257,'name_1','Lino Autry| | Autry'),(1023,257,'email_2','lino.autry@msn.com'),(1024,257,'text_3','Dear naplesirrigation.com Admin!'),(1025,257,'textarea_4','Hi there, my name is Amy Bork. I apologize for using your contact form, but I wasn\'t sure who the right person was to speak with in your company. We are a full-service 3rd party logistics company that helps shippers manages their freight via LTL, Full Truckload, Drayage, and Expedited services. Here is a link to our shipping solutions https://shiprelyex.com/services/. If your team was affected by the recent Yellow shutdown or you have specific lanes you would like us to review, we can offer a diversified carrier portfolio that will support the movement of your freight from start to finish. Can I schedule a quick intro call to learn more about your shipping needs? amy.bork@shiprelyex.com 843-567-9420'),(1026,258,'name_1','Eric Jones| | Jones'),(1027,258,'email_2','ericjonesmyemail@gmail.com'),(1028,258,'text_3','Why not TALK with your leads?'),(1029,258,'textarea_4','To the naplesirrigation.com Owner. My name’s Eric and I just found your site naplesirrigation.com. It’s got a lot going for it, but here’s an idea to make it even MORE effective. Web Visitors Into Leads – CLICK HERE http://jumboleadmagnet.com for a live demo now. Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site. And once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation… and if they don’t take you up on your offer then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. CLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business. The difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today! Eric PS: Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Don’t keep losing them. Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=naplesirrigation.com'),(1030,259,'name_1','Eric Jones| | Jones'),(1031,259,'email_2','ericjonesmyemail@gmail.com'),(1032,259,'text_3','instead, congrats'),(1033,259,'textarea_4','Hello naplesirrigation.com Owner. My name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement – Congratulations What for? Part of my job is to check out websites and the work you’ve done with naplesirrigation.com definitely stands out. It’s clear you took building a website seriously and made a real investment of time and resources into making it top quality. There is, however, a catch… more accurately, a question… So when someone like me happens to find your site – maybe at the top of the search results (nice job BTW) or just through a random link, how do you know? More importantly, how do you make a connection with that person? Studies show that 7 out of 10 visitors don’t stick around – they’re there one second and then gone with the wind. Here’s a way to create INSTANT engagement that you may not have known about… Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know INSTANTLY that they’re interested – so that you can talk to that lead while they’re literally checking out naplesirrigation.com. CLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. It could be a game-changer for your business – and it gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately (and there’s literally a 100X difference between contacting someone within 5 minutes versus 30 minutes.) Plus then, even if you don’t close a deal right away, you can connect later on with text messages for new offers, content links, even just follow up notes to build a relationship. Everything I’ve just described is simple, easy, and effective. CLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business. You could be converting up to 100X more leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=naplesirrigation.com'),(1034,260,'name_1','Eric Jones| | Jones'),(1035,260,'email_2','ericjonesmyemail@gmail.com'),(1036,260,'text_3','Why not TALK with your leads?'),(1037,260,'textarea_4','To the naplesirrigation.com Owner. My name’s Eric and I just found your site naplesirrigation.com. It’s got a lot going for it, but here’s an idea to make it even MORE effective. Web Visitors Into Leads – CLICK HERE https://advanceleadgeneration.com for a live demo now. Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site. And once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation… and if they don’t take you up on your offer then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. CLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business. The difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today! Eric PS: Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Don’t keep losing them. Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(1038,261,'name_1','Eric Jones| | Jones'),(1039,261,'email_2','ericjonesmyemail@gmail.com'),(1040,261,'text_3','Your site – more leads?'),(1041,261,'textarea_4','Hi naplesirrigation.com Webmaster. this is Eric and I ran across naplesirrigation.com a few minutes ago. Looks great… but now what? By that I mean, when someone like me finds your website – either through Search or just bouncing around – what happens next? Do you get a lot of leads from your site, or at least enough to make you happy? Honestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Here’s an idea… How about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site… You can – Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site. CLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. You’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold. It gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation. That way, even if you don’t close a deal right away, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Pretty sweet – AND effective. CLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business. You could be converting up to 100X more leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(1042,262,'name_1','JP Corsi| | Corsi'),(1043,262,'email_2','jpcorsi@exitnode.co'),(1044,262,'text_3','[URGENT] New qualified lead'),(1045,262,'textarea_4','[URGENT] New qualified lead JP Corsi with Exit Node Corp. I hope that you are having a good day. I am doing a bit of outreach to owner of companies similar to yours as we are seeing increased sales with a number of our clients in the past few months. We have a core focus in helping companies increase online inbound and outreach sales and sell out capacity with incredibly effective and economical strategies. Let me know if increasing online sales is a priority right now and if I can get on your calendar for a short introduction in the next week or two? --- JP Corsi +1 954-833-5563 https://exitnode.co 2339 Glades Pkwy, Weston FL'),(1046,263,'name_1','Eric Jones| | Jones'),(1047,263,'email_2','ericjonesmyemail@gmail.com'),(1048,263,'text_3','Try this, get more leads'),(1049,263,'textarea_4','Hi naplesirrigation.com Administrator. My name is Eric and I’m betting you’d like your website naplesirrigation.com to generate more leads. Here’s how: Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you as soon as they say they’re interested – so that you can talk to that lead while they’re still there at naplesirrigation.com. Web Visitors Into Leads – CLICK HERE http://jumboleadmagnet.com for a live demo now. And now that you’ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation – answer questions, provide more info, and close a deal that way. If they don’t take you up on your offer then, just follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. CLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business. The difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today! Try Web Visitors Into Leads and get more leads now. Eric PS: The studies show 7 out of 10 visitors don’t hang around – you can’t afford to lose them! Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=naplesirrigation.com'),(1050,264,'name_1','Eric Jones| | Jones'),(1051,264,'email_2','ericjonesmyemail@gmail.com'),(1052,264,'text_3','Try this, get more leads'),(1053,264,'textarea_4','To the naplesirrigation.com Admin. My name is Eric and I’m betting you’d like your website naplesirrigation.com to generate more leads. Here’s how: Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you as soon as they say they’re interested – so that you can talk to that lead while they’re still there at naplesirrigation.com. Web Visitors Into Leads – CLICK HERE http://jumboleadmagnet.com for a live demo now. And now that you’ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation – answer questions, provide more info, and close a deal that way. If they don’t take you up on your offer then, just follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. CLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business. The difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today! Try Web Visitors Into Leads and get more leads now. Eric PS: The studies show 7 out of 10 visitors don’t hang around – you can’t afford to lose them! Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=naplesirrigation.com'),(1054,265,'name_1','Eric Jones| | Jones'),(1055,265,'email_2','ericjonesmyemail@gmail.com'),(1056,265,'text_3','Try this, get more leads'),(1057,265,'textarea_4','Hello naplesirrigation.com Webmaster! my name is Eric and I’m betting you’d like your website naplesirrigation.com to generate more leads. Here’s how: Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you as soon as they say they’re interested – so that you can talk to that lead while they’re still there at naplesirrigation.com. Web Visitors Into Leads – CLICK HERE http://advanceleadgeneration.com for a live demo now. And now that you’ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation – answer questions, provide more info, and close a deal that way. If they don’t take you up on your offer then, just follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. CLICK HERE http://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business. The difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today! Try Web Visitors Into Leads and get more leads now. Eric PS: The studies show 7 out of 10 visitors don’t hang around – you can’t afford to lose them! Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(1058,266,'name_1','Eric Jones| | Jones'),(1059,266,'email_2','ericjonesmyemail@gmail.com'),(1060,266,'text_3','Your site – more leads?'),(1061,266,'textarea_4','Hello naplesirrigation.com Administrator. this is Eric and I ran across naplesirrigation.com a few minutes ago. Looks great… but now what? By that I mean, when someone like me finds your website – either through Search or just bouncing around – what happens next? Do you get a lot of leads from your site, or at least enough to make you happy? Honestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Here’s an idea… How about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site… You can – Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site. CLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. You’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold. It gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation. That way, even if you don’t close a deal right away, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Pretty sweet – AND effective. CLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business. You could be converting up to 100X more leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(1062,267,'name_1','Eric Jones| | Jones'),(1063,267,'email_2','ericjonesmyemail@gmail.com'),(1064,267,'text_3','how to turn eyeballs into phone calls'),(1065,267,'textarea_4','Dear naplesirrigation.com Owner! Eric here with a quick thought about your website naplesirrigation.com... I’m on the internet a lot and I look at a lot of business websites. Like yours, many of them have great content. But all too often, they come up short when it comes to engaging and connecting with anyone who visits. I get it – it’s hard. Studies show 7 out of 10 people who land on a site, abandon it in moments without leaving even a trace. You got the eyeball, but nothing else. Here’s a solution for you… Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. You’ll know immediately they’re interested and you can call them directly to talk with them literally while they’re still on the web looking at your site. CLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. It could be huge for your business – and because you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately… and contacting someone in that 5 minute window is 100 times more powerful than reaching out 30 minutes or more later. Plus, with text messaging you can follow up later with new offers, content links, even just follow up notes to keep the conversation going. Everything I’ve just described is extremely simple to implement, cost-effective, and profitable. CLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business. You could be converting up to 100X more eyeballs into leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=naplesirrigation.com'),(1066,268,'name_1','Lelia Ehmann| | Ehmann'),(1067,268,'email_2','ehmann.lelia@hotmail.com'),(1068,268,'text_3','To the naplesirrigation.com Owner!'),(1069,268,'textarea_4','Looking for unique advertising that doesn\'t cost thousands of dollars to deliver mediocre results? How about contact form blasting? This is how I\'m reaching out to you right now! For more info hit me up on Skype here: live:.cid.aebc78a94c13344c'),(1070,269,'name_1','Jimmy Garber| | Garber'),(1071,269,'email_2','aundrea.garber@outlook.com'),(1072,269,'text_3','To the naplesirrigation.com Owner!'),(1073,269,'textarea_4','Hi there, Monthly Seo Services - Professional/ Affordable Seo Services Hire the leading seo marketing company and get your website ranked on search engines. Are you looking to rank your website on search engines? Contact us now to get started - https://digitalpromax.co/ Today!'),(1074,270,'name_1','Eric Jones| | Jones'),(1075,270,'email_2','ericjonesmyemail@gmail.com'),(1076,270,'text_3','Your site – more leads?'),(1077,270,'textarea_4','To the naplesirrigation.com Webmaster! this is Eric and I ran across naplesirrigation.com a few minutes ago. Looks great… but now what? By that I mean, when someone like me finds your website – either through Search or just bouncing around – what happens next? Do you get a lot of leads from your site, or at least enough to make you happy? Honestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Here’s an idea… How about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site… You can – Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site. CLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. You’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold. It gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation. That way, even if you don’t close a deal right away, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Pretty sweet – AND effective. CLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business. You could be converting up to 100X more leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(1078,271,'name_1','Eric Jones| | Jones'),(1079,271,'email_2','ericjonesmyemail@gmail.com'),(1080,271,'text_3','Try this, get more leads'),(1081,271,'textarea_4','Hello naplesirrigation.com Administrator. My name is Eric and I’m betting you’d like your website naplesirrigation.com to generate more leads. Here’s how: Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you as soon as they say they’re interested – so that you can talk to that lead while they’re still there at naplesirrigation.com. Web Visitors Into Leads – CLICK HERE http://jumboleadmagnet.com for a live demo now. And now that you’ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation – answer questions, provide more info, and close a deal that way. If they don’t take you up on your offer then, just follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. CLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business. The difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today! Try Web Visitors Into Leads and get more leads now. Eric PS: The studies show 7 out of 10 visitors don’t hang around – you can’t afford to lose them! Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=naplesirrigation.com'),(1082,272,'name_1','Eric Jones| | Jones'),(1083,272,'email_2','ericjonesmyemail@gmail.com'),(1084,272,'text_3','Try this, get more leads'),(1085,272,'textarea_4','Hello naplesirrigation.com Owner. my name is Eric and I’m betting you’d like your website naplesirrigation.com to generate more leads. Here’s how: Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you as soon as they say they’re interested – so that you can talk to that lead while they’re still there at naplesirrigation.com. Web Visitors Into Leads – CLICK HERE http://advanceleadgeneration.com for a live demo now. And now that you’ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation – answer questions, provide more info, and close a deal that way. If they don’t take you up on your offer then, just follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. CLICK HERE http://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business. The difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today! Try Web Visitors Into Leads and get more leads now. Eric PS: The studies show 7 out of 10 visitors don’t hang around – you can’t afford to lose them! Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(1086,273,'name_1','Bell Llanes| | Llanes'),(1087,273,'email_2','llanes.bell@googlemail.com'),(1088,273,'text_3','To the naplesirrigation.com Webmaster.'),(1089,273,'textarea_4','I\'m posting this message to your website at naplesirrigation.com to show you how effective contact form blasting is. The same way I sent you this message, I can also send your ad message to websites worldwide. You can reach a million sites for less than a hundred dollars. For info Email me here: Bell@gomail2.xyz'),(1090,274,'name_1','Eric Jones| | Jones'),(1091,274,'email_2','ericjonesmyemail@gmail.com'),(1092,274,'text_3','how to turn eyeballs into phone calls'),(1093,274,'textarea_4','Hello naplesirrigation.com Webmaster. Eric here with a quick thought about your website naplesirrigation.com... I’m on the internet a lot and I look at a lot of business websites. Like yours, many of them have great content. But all too often, they come up short when it comes to engaging and connecting with anyone who visits. I get it – it’s hard. Studies show 7 out of 10 people who land on a site, abandon it in moments without leaving even a trace. You got the eyeball, but nothing else. Here’s a solution for you… Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. You’ll know immediately they’re interested and you can call them directly to talk with them literally while they’re still on the web looking at your site. CLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. It could be huge for your business – and because you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately… and contacting someone in that 5 minute window is 100 times more powerful than reaching out 30 minutes or more later. Plus, with text messaging you can follow up later with new offers, content links, even just follow up notes to keep the conversation going. Everything I’ve just described is extremely simple to implement, cost-effective, and profitable. CLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business. You could be converting up to 100X more eyeballs into leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=naplesirrigation.com'),(1094,275,'name_1','Cary Distefano| | Distefano'),(1095,275,'email_2','projectleadsblue@gmail.com'),(1096,275,'text_3','Hello naplesirrigation.com Owner!'),(1097,275,'textarea_4','Want to start getting 10X more customers today? Email me and I\'ll show you how it\'s done: contact@leadsblue.com or visit: https://leadsblue.net/'),(1098,276,'name_1','Eric Jones| | Jones'),(1099,276,'email_2','ericjonesmyemail@gmail.com'),(1100,276,'text_3','There they go…'),(1101,276,'textarea_4','To the naplesirrigation.com Owner. My name’s Eric and for just a second, imagine this… - Someone does a search and winds up at naplesirrigation.com. - They hang out for a minute to check it out. “I’m interested… but… maybe…” - And then they hit the back button and check out the other search results instead. - Bottom line – you got an eyeball, but nothing else to show for it. - There they go. This isn’t really your fault – it happens a LOT – studies show 7 out of 10 visitors to any site disappear without leaving a trace. But you CAN fix that. Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know right then and there – enabling you to call that lead while they’re literally looking over your site. CLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. Time is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better! Plus, now that you have their phone number, with our new SMS Text With Lead feature you can automatically start a text (SMS) conversation… so even if you don’t close a deal then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Strong stuff. CLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business. You could be converting up to 100X more leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=naplesirrigation.com'),(1102,277,'name_1','Maurine Hafner| | Hafner'),(1103,277,'email_2','maurine.hafner@gmail.com'),(1104,277,'text_3','Hi naplesirrigation.com Webmaster.'),(1105,277,'textarea_4','Accidental overdose is the #1 cause of death for people aged 18-45 in the United States. Narcan is a nasal spray that can reverse an opioid overdose, saving the person’s life. Our group of volunteers has compiled a website that tracks organizations that are giving out free and discount Narcan, this site is https://www.narcan-finder.com/. Eventually this life saving medication will be as easy to find as a fire extinguisher, but at the moment, it’s only gradually becoming available, and often expensive at drugstores, etc. Would you consider sharing our resource on your website? It will save lives. If you have any questions or want to help spread the word, contact us at narcanfinder@gmail.com. Thank you for your consideration!'),(1106,278,'name_1','Eric Jones| | Jones'),(1107,278,'email_2','ericjonesmyemail@gmail.com'),(1108,278,'text_3','Strike when the iron’s hot'),(1109,278,'textarea_4','Dear naplesirrigation.com Webmaster! I just found your site, quick question… My name’s Eric, I found naplesirrigation.com after doing a quick search – you showed up near the top of the rankings, so whatever you’re doing for SEO, looks like it’s working well. So here’s my question – what happens AFTER someone lands on your site? Anything? Research tells us at least 70% of the people who find your site, after a quick once-over, they disappear… forever. That means that all the work and effort you put into getting them to show up, goes down the tubes. Why would you want all that good work – and the great site you’ve built – go to waste? Because the odds are they’ll just skip over calling or even grabbing their phone, leaving you high and dry. But here’s a thought… what if you could make it super-simple for someone to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket? You can – thanks to revolutionary new software that can literally make that first call happen NOW. Web Visitors Into Leads is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number. It lets you know IMMEDIATELY – so that you can talk to that lead while they’re still there at your site. You know, strike when the iron’s hot! CLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. When targeting leads, you HAVE to act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better! That’s why you should check out our new SMS Text With Lead feature as well… once you’ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. Imagine how powerful this could be – even if they don’t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility. Just this alone could be a game changer to make your website even more effective. Strike when the iron’s hot! CLICK HERE https://advanceleadgeneration.com to learn more about everything Web Visitors Into Leads can do for your business – you’ll be amazed. Thanks and keep up the great work! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! It even includes International Long Distance Calling. Stop wasting money chasing eyeballs that don’t turn into paying customers. CLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(1110,279,'name_1','Eric Jones| | Jones'),(1111,279,'email_2','ericjonesmyemail@gmail.com'),(1112,279,'text_3','Why not TALK with your leads?'),(1113,279,'textarea_4','Hello naplesirrigation.com Admin. My name’s Eric and I just found your site naplesirrigation.com. It’s got a lot going for it, but here’s an idea to make it even MORE effective. Web Visitors Into Leads – CLICK HERE https://advanceleadgeneration.com for a live demo now. Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site. And once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation… and if they don’t take you up on your offer then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. CLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business. The difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today! Eric PS: Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Don’t keep losing them. Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(1114,280,'name_1','Florrie Bent| | Bent'),(1115,280,'email_2','bent.florrie@googlemail.com'),(1116,280,'text_3','Hello naplesirrigation.com Admin!'),(1117,280,'textarea_4','I have a question. You just read this message right? That means you\'re now a potential customer and I can do the same thing for your business. I can blast YOUR ad to 1 million websites just like I did to yours for just $98. More pricing plans are also available, contact me via Skype for details: live:.cid.dd8a3501619891fe'),(1118,281,'name_1','Eric Jones| | Jones'),(1119,281,'email_2','ericjonesmyemail@gmail.com'),(1120,281,'text_3','Strike when the iron’s hot'),(1121,281,'textarea_4','Hello naplesirrigation.com Webmaster! I just found your site, quick question… My name’s Eric, I found naplesirrigation.com after doing a quick search – you showed up near the top of the rankings, so whatever you’re doing for SEO, looks like it’s working well. So here’s my question – what happens AFTER someone lands on your site? Anything? Research tells us at least 70% of the people who find your site, after a quick once-over, they disappear… forever. That means that all the work and effort you put into getting them to show up, goes down the tubes. Why would you want all that good work – and the great site you’ve built – go to waste? Because the odds are they’ll just skip over calling or even grabbing their phone, leaving you high and dry. But here’s a thought… what if you could make it super-simple for someone to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket? You can – thanks to revolutionary new software that can literally make that first call happen NOW. Web Visitors Into Leads is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number. It lets you know IMMEDIATELY – so that you can talk to that lead while they’re still there at your site. You know, strike when the iron’s hot! CLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. When targeting leads, you HAVE to act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better! That’s why you should check out our new SMS Text With Lead feature as well… once you’ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. Imagine how powerful this could be – even if they don’t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility. Just this alone could be a game changer to make your website even more effective. Strike when the iron’s hot! CLICK HERE https://advanceleadgeneration.com to learn more about everything Web Visitors Into Leads can do for your business – you’ll be amazed. Thanks and keep up the great work! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! It even includes International Long Distance Calling. Stop wasting money chasing eyeballs that don’t turn into paying customers. CLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(1122,282,'name_1','Michael Sinclair| | Sinclair'),(1123,282,'email_2','msinclair.hivemailers@gmail.com'),(1124,282,'text_3','I have a question'),(1125,282,'textarea_4','Hello, I was looking at your site and wanted to ask if you would be interested in getting one-hundred thousand emails sent out within 48 hours for just $48 - we call it our 48-Special. I’m with HiveMailers, we use a robust email system to get clients daily leads and/or sales 24/7. WE DO ALL THE WORK: - We create the content for the email(s). - We provide the email list (contacts). - We forward leads to you daily. - We manage your email campaigns 24/7. - We make changes to the list and content until we get results. Just imagine, getting hot leads within days of getting started with us. You might be wondering if our system works, well if you are reading this message, it works. Get started now!!!!! We will send one hundred thousand emails for just $48 Book a 10 min call with me now: https://bit.ly/hive-48-special NOTE: To buy an email list and hire an in-house email manager to run your campaign (like our system) would cost around $3,500 a month, but with us, you pay just $48. So, you save over $3,450. This offer is good for the first 20 clients, don’t miss out. Book appointment now: https://bit.ly/hive-48-special Sincerely, Michael'),(1126,283,'name_1','Maya Thiel| | Thiel'),(1127,283,'email_2','maya.thiel@gmail.com'),(1128,283,'text_3','Hi naplesirrigation.com Owner!'),(1129,283,'textarea_4','TimeSuite is the most advanced Construction and Project ERP ever produced. Advanced because it’s simplistic, comprehensive and dynamic. The system conforms to your needs. Advanced because it’s a single system (no modules). Web, desktop and mobile interfaces to a single database. Project Management, Accounting, Estimating, Scheduling, CRM, Task Management, Resource Management, On-Screen Take Off, Form Creation, Property Management, RFQs/Bid Packages and more. Fully automated percentage of completion accounting with a full job schedule that ties to the income statement. TimeSuite is new generation. Learn more at TimeSuite.com.'),(1130,284,'name_1','Nestor Kinsela| | Kinsela'),(1131,284,'email_2','kinsela.nestor@gmail.com'),(1132,284,'text_3','Change Your Digital Existence with This Innovative Solution!'),(1133,284,'textarea_4','Dear naplesirrigation.com Webmaster I am Nestor and I recently stumbled upon your site - naplesirrigation.com - in the search listings. Here is what that signifies to me… Your SEO’s functioning. You’re attracting eyeballs – at least mine. Your content’s quite good, would not change a thing. BUT… Eyeballs don’t pay the bills. CUSTOMERS do pay the bills. And studies show that 7 out of 10 visitors to a site to naplesirrigation.com will drop by, have a look, and then head for the hills without doing anything else. It’s like they never even were even there there. You can rectify this. You can make it extremely easy for them to raise their hand, say, “okay, let’s talk” without needing them to even so much as pull their cell phone from their pocket… courtesy of Visitor to Lead Widget. Lead Conversion Software is a software widget that sits on your site, ready and waiting to seize any viewer’s Name, Email address, and Phone Number. It enables you know immediately – so you can converse with that potential customer right away… without delay they leave. CLICK HERE http://jumboleadmagnet.com to experience a Live Demo with Lead Conversion Software now to see exactly precisely how it functions. Now it’s also true that when contacting to potential customers, you MUST act fast fast – the difference between contacting someone within 5 minutes 5 minutes versus 30 minutes later is massive! That’s what makes our new SMS Text With Lead feature so powerful so effective… you’ve got their number, so now you can start a text message a text message (SMS) conversation with them with them… so even if if they don’t take you up take you up on your offer right away, you continue to text them to text them them new proposals, new content, and new reasons to do business with you. This could change everything for you and your business for you and your business. CLICK HERE http://jumboleadmagnet.com to learn more about everything Lead Conversion Software can do and start turing eyeballs into money. Nestor PS: Visitor to Lead Widget offers a FREE 14 days trial period! It even includes includes International Long Distance Calling. Paying customers are out there waiting. Starting connecting today by CLICKING HERE by CLICKING HERE http://jumboleadmagnet.com to try Web Visitors Into Leads Visitor to Lead Widget now. If you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=naplesirrigation.com Only a rapid message - the names and email address utilized in this note, Nestor and Kinsela, are stand-ins and not actually genuine information. We appreciate honesty and aimed to confirm you’re aware of this! If ever you aspire to make contact with the true person responsible for this communication, please go to our site, and we’ll associate you with the right entity.'),(1134,285,'name_1','Jim Georg| | Georg'),(1135,285,'email_2','alexander.georg@gmail.com'),(1136,285,'text_3','Dear naplesirrigation.com Webmaster!'),(1137,285,'textarea_4','Hi there, Monthly Seo Services - Professional/ Affordable Seo Services Hire the leading seo marketing company and get your website ranked on search engines. Are you looking to rank your website on search engines? Contact us now to get started - https://alwaysdigital.co/la/ Today! Psst.. we will also do web design and build complete website. Wordpress and Ecommerce sites development. Click here: https://outsource-bpo.com/website/'),(1138,286,'name_1','Fernando Monson| | Monson'),(1139,286,'email_2','fernando.monson@yahoo.com'),(1140,286,'text_3','To the naplesirrigation.com Webmaster.'),(1141,286,'textarea_4','Hi, I\'m sending you this message via your contact form on your website at naplesirrigation.com. By reading this message you\'re living proof that contact form advertising works! Do you want to blast your ad to millions of contact forms? Maybe you prefer a more targeted approach and only want to blast our ad out to websites in certain business categories? Pay just $99 to blast your ad to 1 million contact forms. Volume discounts available. I have more than 35 million contact forms. Let\'s get the conversation started, contact me via Skype here live:.cid.303294bd15a81bc7'),(1142,287,'name_1','Patty Dealba| | Dealba'),(1143,287,'email_2','patty.dealba@hotmail.com'),(1144,287,'text_3','Discover Effective Techniques for naplesirrigation.com!'),(1145,287,'textarea_4','To the naplesirrigation.com Administrator. I’m Patty, and I just found your site, naplesirrigation.com. It really is got a lot going for it, but here’s an idea to make it even more effective. Introducing Web Visitors Into Leads – CLICK HERE https://advanceleadgeneration.com for a live demo today. Web Visitors Into Leads is a tool which is works on your site, prepared to seize any visitor’s visitor’s Name, Email address, and Phone Number. This tool alerts you the moment they make you know they’re interested – meaning that you can chat to that lead as they’re literally looking over your site. Plus, when you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) chat… and if they don’t take you up on your offer at that time, you can follow-up with text messages for fresh offers, content links, even just “how you doing?” notes to build a relationship. CLICK HERE https://advanceleadgeneration.com to learn what Web Visitors Into Leads can offer for your business. The distinction between reaching out to someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads right now! Patty PS: Reports show that 70% of a site’s visitors vanish and are lost in just a moment. Don’t keep losing them. Web Visitors Into Leads provides a FREE 14 days trial – and it comes with International Long Distance Calls. There are customers eager to chat with you right now… don’t keep them waiting. CLICK HERE https://advanceleadgeneration.com to try out Web Visitors Into Leads today. In case you wish to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com Merely a brief note - the names and email used here, Patty and Dealba, are placeholders and not real contact data. We value transparency and wanted to make you’re aware! If you desire to reach out with the actual person responsible for this message, please visit our website, and we’ll connect you with the right individual.}'),(1146,288,'name_1','Kerrie Stanfield| | Stanfield'),(1147,288,'email_2','kerrie.stanfield88@hotmail.com'),(1148,288,'text_3','Respond Now! Unlock Amazing SEO for naplesirrigation.com!'),(1149,288,'textarea_4','Hello naplesirrigation.com Webmaster My name is Kerrie and I’m betting you would like your webpage naplesirrigation.com to create more leads. Here’s how: Visitor to Lead Widget is a software tool that’s works on your webpage, set to seize any visitor’s Name, Email address, and Phone Number. It alerts you immediately when they say they’re engaged – so that you can converse with that potential customer while they’re still present at naplesirrigation.com. Lead Conversion Software – CLICK HERE https://bit.ly/3LPltcD for a real-time demo right now. And now that you’ve got their phone number, our new SMS Text With Lead feature enables you to begin a text (SMS) discussion – answer questions, supply more info, and seal a deal that way. If they do not take you up on your proposal then, just follow-up with text messages for new proposals, content links, or just “how you doing?” notes to develop a rapport. CLICK HERE https://bit.ly/3LPltcD to discover what Web Visitors Into Leads can do for your company. The variance between reaching out to someone within 5 minutes compared to a half-hour means you might be turning up to 100X more leads now! Use Visitor to Lead Widget and get more leads today. Kerrie PS: The research show 7 out of 10 viewers do not stick around – you cannot allow to miss them! Lead Conversion Software offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers eager to talk with you immediately… don’t keep them waiting. CLICK HERE https://bit.ly/3LPltcD to use Lead Conversion Software now. If you\'d like to unsubscribe click here https://bit.ly/3rD0G5c Simply a swift note - the names and email address applied in this note, Kerrie and Stanfield, are stand-ins and not genuine information. We cherish transparency and aimed to assure you’re conscious! If ever you wish to communicate with the real person behind this message, kindly check out our website, and we’ll connect you with the appropriate entity.'),(1150,289,'name_1','Bruno Humffray| | Humffray'),(1151,289,'email_2','humffray.bruno@gmail.com'),(1152,289,'text_3','Dear naplesirrigation.com Administrator.'),(1153,289,'textarea_4','I was sending you this message on your website contact page (naplesirrigation.com) to show you how contact form advertising works. We can send messages just like these for your business to millions of sites for less than a couple of hundred dollars. Let\'s get the conversation started and I\'ll share pricing and more details. Hit me up on Skype for a chat now --&gt; live:.cid.303294bd15a81bc7'),(1154,290,'name_1','Theda Treat| | Treat'),(1155,290,'email_2','theda.treat18@hotmail.com'),(1156,290,'text_3','Boost Your Digital Presence with Successful Strategies!'),(1157,290,'textarea_4','Hello naplesirrigation.com Administrator! This is Theda here with a quick thought about your website naplesirrigation.com... I’m on the internet frequently and I examine numerous business websites. Just like yours, many them have fantastic content. But frequently, they come up short when it comes to connecting and connecting with anybody who visits. I get it – it’s hard. Studies show 7 out of 10 people who visit a site, abandon it in moments without leaving a trace. You got the eyeball, but nothing else. I have a solution for you… Instant Engagement Tool is a software widget that’s functions on your site, set to capture any visitor’s Name, Email address, and Phone Number. You’ll know immediately they’re interested and you can call them directly to talk with them really while they’re still on the web looking at your site. CLICK HERE https://bit.ly/3LPltcD to try out a Live Demo with Instant Engagement Tool now to see specifically how it works. It could be massive for your business – and because you’ve got that phone number, with our new SMS Text With Lead feature, you can instantly start a text (SMS) conversation – instantly… and contacting someone in that 5-minute window is 100 times more potent than reaching out 30 minutes or more later. Additionally, with text messaging you can follow up later with new offers, content links, even just follow-up notes to maintain the conversation going. Everything I’ve just described is very straightforward to implement, cost-effective, and profitable. CLICK HERE https://bit.ly/3LPltcD to discover what Lead Capture can do for your business. You could be converting up to 100X more eyeballs into leads today! Theda PS: Lead Capture offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://bit.ly/3LPltcD to use Lead Capture now. If you\'d choose to unsubscribe click here https://bit.ly/3rD0G5c Just a rapid note - the monikers and email address employed in this communication, Theda and Treat, are placeholders and not really authentic contact details. We cherish openness and aimed to assure you are aware of this! Should you aspire to communicate with the real one behind this communication, kindly check out our website, and we’ll associate you with the right person.'),(1158,291,'name_1','Efren Avery| | Avery'),(1159,291,'email_2','efren.avery@hotmail.com'),(1160,291,'text_3','Hello naplesirrigation.com Webmaster.'),(1161,291,'textarea_4','Hi there, my name is Cody Griner. I apologize for using your contact form, but I wasn\'t sure who the right person was to speak with in your company. We have a patented application that creates Local Area pages that rank on top of Google within weeks, we call it Local Magic. Here is a link to the product page https://www.mrmarketingres.com/local-magic/ . The product leverages technology where these pages are managed dynamically by AI and it is ideal for promoting businesses on Google. Can I share a testimonial from one of our clients with you? I can also do a short zoom to illustrate their full case study if you have time for it? cody@mrmarketingres.com 843-720-7301'),(1162,292,'name_1','Robyn Keck| | Keck'),(1163,292,'email_2','robyn.keck@yahoo.com'),(1164,292,'text_3','Improve Your Plan with The Revolutionary Solution!'),(1165,292,'textarea_4','Greetings naplesirrigation.com Webmaster. I\'m Robyn and for just a second, imagine this… - Someone does a search and ends up at naplesirrigation.com. - They linger for a minute to check it out. “I’m interested… but… maybe…” - And then they click the back button and check out the other search results alternatively. - Ultimately – you got an eyeball, but nothing else to show for it. - And they’re gone. This isn’t really your fault – it happens a LOT – studies show 7 out of 10 visitors to any site leave without leaving a trace. But you are able to fix that. Visitor Engagement Widget is a software widget that’s operates on your site, set to capture any visitor’s Name, Email address, and Phone Number. It allows you know instantly – enabling you to call that lead while they’re really viewing your site. CLICK HERE https://bit.ly/3LPltcD to experience a Live Demo with Lead Conversion Tool now to see precisely how it works. Time is of the essence when it comes to connecting with leads – the difference between contacting someone within 5 minutes compared to 30 minutes later can be massive – like 100 times better! Additionally, now that you have their phone number, with our new SMS Text With Lead feature you can immediately start a text (SMS) conversation… so even if you don’t close a deal then, you can follow up with text messages for new offers, content links, or even just “how you doing?” notes to create a relationship. Strong stuff. CLICK HERE https://bit.ly/3LPltcD to uncover what Web Visitors Into Leads can do for your business. You can be converting up to 100X more leads right now! Robyn PS: Visitor Engagement Widget offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://bit.ly/3LPltcD to use Web Visitors Into Leads now. If you\'d choose to unsubscribe click here https://bit.ly/3rD0G5c Simply a swift remark - the identities and email applied in this note, Robyn and Keck, are stand-ins and not genuine contact information. We value openness and wanted to assure you are conscious! Should you wish to communicate with the real entity responsible for this memo, do check out our site, and we’ll associate you with the appropriate individual.'),(1166,293,'name_1','Eric Jones| | Jones'),(1167,293,'email_2','ericjonesmyemail@gmail.com'),(1168,293,'text_3','Strike when the iron’s hot'),(1169,293,'textarea_4','Dear naplesirrigation.com Owner! I just found your site, quick question… My name’s Eric, I found naplesirrigation.com after doing a quick search – you showed up near the top of the rankings, so whatever you’re doing for SEO, looks like it’s working well. So here’s my question – what happens AFTER someone lands on your site? Anything? Research tells us at least 70% of the people who find your site, after a quick once-over, they disappear… forever. That means that all the work and effort you put into getting them to show up, goes down the tubes. Why would you want all that good work – and the great site you’ve built – go to waste? Because the odds are they’ll just skip over calling or even grabbing their phone, leaving you high and dry. But here’s a thought… what if you could make it super-simple for someone to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket? You can – thanks to revolutionary new software that can literally make that first call happen NOW. Web Visitors Into Leads is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number. It lets you know IMMEDIATELY – so that you can talk to that lead while they’re still there at your site. You know, strike when the iron’s hot! CLICK HERE https://bit.ly/leadgenerationc to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. When targeting leads, you HAVE to act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better! That’s why you should check out our new SMS Text With Lead feature as well… once you’ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. Imagine how powerful this could be – even if they don’t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility. Just this alone could be a game changer to make your website even more effective. Strike when the iron’s hot! CLICK HERE https://bit.ly/leadgenerationc to learn more about everything Web Visitors Into Leads can do for your business – you’ll be amazed. Thanks and keep up the great work! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! It even includes International Long Distance Calling. Stop wasting money chasing eyeballs that don’t turn into paying customers. CLICK HERE https://bit.ly/leadgenerationc to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here https://bit.ly/3rD0G5c'),(1170,294,'name_1','Michael Sinclair| | Sinclair'),(1171,294,'email_2','msinclair.hivemailers@gmail.com'),(1172,294,'text_3','I have a question'),(1173,294,'textarea_4','Hello, I was looking at your site and wanted to ask if you would be interested in getting one-hundred thousand emails sent out within 48 hours for just $48 - we call it our 48-Special. I’m with HiveMailers, we use a robust email system to get clients daily leads and/or sales 24/7. WE DO ALL THE WORK: - We create the content for the email(s). - We provide the email list (contacts). - We forward leads to you daily. - We manage your email campaigns 24/7. - We make changes to the list and content until we get results. Just imagine, getting hot leads within days of getting started with us. You might be wondering if our system works, well if you are reading this message, it works. Get started now!!!!! We will send one hundred thousand emails for just $48 Book a 10 min call with me now: https://bit.ly/hive-48-special NOTE: To buy an email list and hire an in-house email manager to run your campaign (like our system) would cost around $3,500 a month, but with us, you pay just $48. So, you save over $3,450. This offer is good for the first 20 clients, don’t miss out. Book appointment now: https://bit.ly/hive-48-special Sincerely, Michael'),(1174,295,'name_1','Libby Evans| | Evans'),(1175,295,'email_2','libbyevans461@gmail.com'),(1176,295,'text_3','Accelerate Your Instagram Growth: Gain 400-1200 New Followers Monthly'),(1177,295,'textarea_4','Hi there, We run an Instagram growth service, which increases your number of followers both safely and practically. - Guaranteed: We guarantee to gain you 400-1200+ followers per month. - Real, human followers: People follow you because they are interested in your business or niche. - Safe: All actions are made manually. We do not use any bots. The price is just $60 (USD) per month, and we can start immediately. If you are interested, and have any questions, reply back and we can discuss further. Kind Regards, Libby'),(1178,296,'name_1','Leonore D\'Arcy| | D\'Arcy'),(1179,296,'email_2','darcy.leonore55@yahoo.com'),(1180,296,'text_3','Hello naplesirrigation.com Admin!'),(1181,296,'textarea_4','Quick question to ask you... Are you aware that in 2023, email marketing still works? The fact that you are reading these lines is proof of that. Email marketing is underrated, and yet it works so well. All you have to do is find some emails, send a message and cash in. For example, to find emails you can use this service: https://garymarketing.com/go/scrap-gmap It extracts emails, phone numbers, and lots of other information from Google Map listings. Of course, there are plenty of other ways to get in touch with your ideal customers. Contact me on Skype and let\'s discuss what will work for your product/service. - My Skype ID: live:.cid.6b79b1d5a11a2ec7 - My Blog : garymarketing.com Regards, Gary &amp; Ophélie ------ J\'ai une petite question à vous poser... Savez-vous qu\'en 2023, l\'email marketing fonctionne toujours très bien ? La preuve, vous lisez ces lignes. L\'email marketing est clairement sous-couté, Il suffit de trouver les coordonnées de vos clients idéaux, d\'entrer en contact, et d\'encaisser. Pour trouver les coordonnées d\'entreprise, vous pouvez par exemple utiliser ce service : scrapmybusiness.com Il permet d\'extraire les emails, les numéros de téléphone et de nombreuses autres informations a partir des fiches entreprises de Google Map. Bien sur il y\'a plein d\'autre solutions pour entrer en contact avec vos clients idéaux Ajouter moi sur Skype et discutons de ce qui conviendrait le plus pour promouvoir votre produit/service. - Identifiant Skype: live:.cid.83c9da999a4f9f - Mon Blog : http://garymarketing.com Cordialement, Ophélie et Gary.'),(1182,297,'name_1','Eric Jones| | Jones'),(1183,297,'email_2','ericjonesmyemail@gmail.com'),(1184,297,'text_3','Try this, get more leads'),(1185,297,'textarea_4','Hi naplesirrigation.com Owner! my name is Eric and I’m betting you’d like your website naplesirrigation.com to generate more leads. Here’s how: Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you as soon as they say they’re interested – so that you can talk to that lead while they’re still there at naplesirrigation.com. Web Visitors Into Leads – CLICK HERE https://bit.ly/leadgenerationd for a live demo now. And now that you’ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation – answer questions, provide more info, and close a deal that way. If they don’t take you up on your offer then, just follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. CLICK HERE https://bit.ly/leadgenerationd to discover what Web Visitors Into Leads can do for your business. The difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today! Try Web Visitors Into Leads and get more leads now. Eric PS: The studies show 7 out of 10 visitors don’t hang around – you can’t afford to lose them! Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://bit.ly/leadgenerationd to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here https://bit.ly/3rD0G5c'),(1186,298,'name_1','Georgina Haynes| | Haynes'),(1187,298,'email_2','georginahaynes620@gmail.com'),(1188,298,'text_3','Video Promotion'),(1189,298,'textarea_4','Hi, We\'d like to introduce to you our explainer video service, which we feel can benefit your site naplesirrigation.com. Check out some of our existing videos here: https://www.youtube.com/watch?v=bWz-ELfJVEI https://www.youtube.com/watch?v=Y46aNG-Y3rM https://www.youtube.com/watch?v=hJCFX1AjHKk All of our videos are in a similar animated format as the above examples, and we have voice over artists with US/UK/Australian accents. We can also produce voice overs in languages other than English. They can show a solution to a problem or simply promote one of your products or services. They are concise, can be uploaded to video sites such as YouTube, and can be embedded into your website or featured on landing pages. Our prices are as follows depending on video length: Up to 1 minute = $259 1-2 minutes = $379 2-3 minutes = $489 *All prices above are in USD and include a full script, voice-over and video. If this is something you would like to discuss further, don\'t hesitate to reply. Kind Regards, Georgina'),(1190,299,'name_1','Hazel Supple| | Supple'),(1191,299,'email_2','supple.hazel@gmail.com'),(1192,299,'text_3','Find Out How to Keep Visitors on naplesirrigation.com Further!'),(1193,299,'textarea_4','Hi naplesirrigation.com Admin! This is Hazel and I ran across naplesirrigation.com a short while ago. Seems great… but now what? By that I mean, when someone such as me discovers your website – either through Browsing or just bouncing around – what happens next? Do you get a lot of leads from your site, or at least enough to make you happy? Honestly, most business websites fall somewhat short when it comes to generating paying customers. Studies indicate that 70% of a site’s visitors vanish and are gone forever after just a moment. Here’s an idea… How about making it really SIMPLE for every visitor who comes to get a personal phone call from you as soon as they hit your site… You can – Web Visitors Into Leads is a software widget that’s operates on your site, ready to capture any visitor’s Name, Email address and Phone Number. It alerts you the moment they let you know they’re interested – so that you can chat to that lead while they’re really looking over your site. CLICK HERE https://bit.ly/3LPltcD to experience a Live Demo with Lead Conversion now to see precisely how it works. You’ll be surprised - the difference between contacting someone within 5 minutes versus a half-hour or more later could enhance your results 100-fold. It gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can instantly start a text (SMS) conversation. That way, even if you don’t close a deal immediately, you can continue with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Pretty sweet – AND effective. CLICK HERE https://bit.ly/3LPltcD to find out what Web Visitors Into Leads can do for your business. You could be converting up to 100X more leads today! Hazel PS: Lead Conversion offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting with you right now… don’t keep them waiting. CLICK HERE https://bit.ly/3LPltcD to experience Web Conversion now. If you\'d like to unsubscribe click here https://bit.ly/3rD0G5c Simply a brief notification - the monikers and email address employed in this note, Hazel and Supple, are substitutes and not really authentic contact information. We esteem transparency and aimed to ensure you’re aware! If you want to connect with the true entity behind this communication, do check out our site, and we’ll associate you with the correct individual.'),(1194,300,'name_1','Juliann Franki| | Franki'),(1195,300,'email_2','juliann.franki@yahoo.com'),(1196,300,'text_3','Boost Your Website Experience with Powerful Techniques!'),(1197,300,'textarea_4','Dear to the naplesirrigation.com Owner. This is Juliann , with a quick message about your website naplesirrigation.com... I’m throughout the internet quite a bit and I look at numerous business websites. Similar to yours, a number of them have fantastic content. But, all too often, they lack when it comes to interacting and forming a connection with someone who visits. I get it – it’s tough. Research reveal 7 out of 10 individuals who land on a site, abandon it in minutes without leaving a trace. You’ve got the eyeball, but nothing. Here is a solution for you… Web Visitors Into Leads is a software that’s works on your site, prepared to capture any visitor’s Name, Email address and Phone Number. You’d know instantly they’re interested and you could call them direct to chat with them actually as they’re still on the internet looking at your site. CLICK HERE https://bit.ly/LeadGena to experience a Live Demo with Web Visitors Into Leads today to realize exactly how it works. It might be enormous for your business – and as you’ve got that phone number, with our new SMS Text With Lead capability, you can automatically start a text (SMS) chat – immediately… and connecting with someone in that 5 minute window is 100 times more powerful than reaching out 30 minutes or more later. Moreover, with text messaging you can follow-up later with fresh deals, content links, or even just follow up notes to maintain the conversation going. All I’ve just outlined is very simple to implement, cost-effective, and profitable. CLICK HERE https://bit.ly/LeadGena to learn what Web Visitors Into Leads can provide for your business. You can be turning up to 100X more eyeballs into leads as we speak! Juliann PS: Web Visitors Into Leads offers a FREE 14 days trial – and it features International Long Distance Calling. You have customers waiting to chat with you at this moment… don’t keep them waiting. CLICK HERE https://bit.ly/LeadGena to try Web Visitors Into Leads now. Should you like to unsubscribe click here https://bit.ly/3rD0G5c Only a brief note - the names and email used here, Juliann and Franki, are not real and not genuine contact details. We value transparency and want to ensure you’re aware! If you wish to get in touch with the genuine person responsible for this message, please visit our website, and we’ll associate you with the correct individual.}'),(1198,301,'name_1','Cary Sly| | Sly'),(1199,301,'email_2','sly.cary@gmail.com'),(1200,301,'text_3','Change Your Web Existence with The Latest Tool!'),(1201,301,'textarea_4','Cool website! Dear naplesirrigation.com Owner. My name’s Cary, and I recently found your site - naplesirrigation.com - while surfing the net. You surfaced at the top of the search results, so I looked you out. Looks like what you’re doing is pretty cool. But if you don’t mind me asking – after someone like me comes across naplesirrigation.com, what typically happens? Is your site generating leads for your company? I’m guessing some, but I also bet you’d like more… studies reveal that 7 out 10 who arrive on a site wind up leaving without a trace. Not good. Here’s a idea – what if there was an simple way for every visitor to “raise their hand” to get a phone call from you INSTANTLY… the moment they hit your site and declared, “call me now.” You can – Web Visitor is a software widget that’s operates on your site, prepared to catch any visitor’s Name, Email address and Phone Number. It allows you know IMMEDIATELY – so that you can speak to that lead while they’re really examining your site. CLICK HERE https://bit.ly/3LPltcD to test a Live Demo with Web Visitor now to see exactly how it works. Time is money when it comes to connecting with with leads – the difference in between contacting someone within 5 minutes versus 30 minutes later can be enormous – like 100 times better! That’s why we built out our new SMS Text With Lead feature because once you’ve caught the visitor’s phone number, you can automatically a text message (SMS) conversation. Consider the possibilities – even if you don’t close a deal then and there, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Wouldn’t that be cool? CLICK HERE https://bit.ly/3LPltcD to discover Web Visitor can do for your business. You could be converting up to 100X more leads today! Cary PS: Web Visitor offers a FREE 14 days trial – and it even comprises Long Distance Calling. You have customers waiting to to talk with you right now… don’t keep them waiting. CLICK HERE https://bit.ly/3LPltcD to try Web Visitor now. If you\'d like to unsubscribe click here https://bit.ly/3rD0G5c Only a swift remark - the monikers and email address used in this communication, Cary and Sly, are stand-ins and not actually genuine contact information. We cherish candor and desired to ensure you are conscious! Should you wish to connect with the real person responsible for this note, please go to our site, and we’ll link you with the proper entity.'),(1202,302,'name_1','Eric Jones| | Jones'),(1203,302,'email_2','ericjonesmyemail@gmail.com'),(1204,302,'text_3','Why not TALK with your leads?'),(1205,302,'textarea_4','Dear My name’s Eric and I just found your site naplesirrigation.com. It’s got a lot going for it, but here’s an idea to make it even MORE effective. CLICK HERE https://bit.ly/leadgenerationc for a live demo now. Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site. And once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation… and if they don’t take you up on your offer then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. CLICK HERE https://bit.ly/leadgenerationc to discover what Web Visitors Into Leads can do for your business. The difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today! Eric PS: Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Don’t keep losing them. Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://bit.ly/leadgenerationc to try Talk With Web Visitor now. If you\'d like to unsubscribe click here https://bit.ly/3rD0G5c'),(1206,303,'name_1','Boyd Mock| | Mock'),(1207,303,'email_2','mock.boyd@hotmail.com'),(1208,303,'text_3','Enhance Your Strategy with The Latest Tool!'),(1209,303,'textarea_4','Greetings naplesirrigation.com Owner My name’s Boyd and please, imagine this… - A user does a search and lands at naplesirrigation.com. - They linger for a moment to check it out. “I’m interested… but… maybe…” - And then they click the back button and view the other search results alternatively. - Bottom line – you got an eyeball, but nada to show for it. - Off they go. It’s not really your fault – it happens a LOT – studies show 7 out of 10 visitors to any site disappear without leaving a trace. But you can fix that. Lead Conversion Tool is a software widget that’s works on your site, set to capture any visitor’s Name, Email address, and Phone Number. It lets you know right then and there – enabling you to call that lead while they’re really browsing your site. CLICK HERE https://bit.ly/3LPltcD to experience a Live Demo with Visitor Engagement Widget now to see precisely how it works. Time is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be massive – like 100 times better! Additionally, now that you have their phone number, with our new SMS Text With Lead feature you can automatically start a text (SMS) conversation… so even if you don’t close a deal then, you can follow up with text messages for new offers, content links, or even just “how you doing?” notes to forge a relationship. Strong stuff. CLICK HERE https://bit.ly/3LPltcD to uncover what Web Visitors Into Leads can do for your business. You might be converting up to 100X more leads now! Boyd PS: Visitor Engagement Widget offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers eager to talk with you immediately… don’t keep them waiting. CLICK HERE https://bit.ly/3LPltcD to use Visitor Engagement Widget now. If you\'d choose to unsubscribe click here https://bit.ly/3rD0G5c Only a quick remark - the names and email used in this message, Boyd and Mock, are placeholders and not really authentic contact details. We cherish openness and desired to ensure you are informed! In case you want to make contact with the real person behind this note, kindly visit our website, and we’ll associate you with the proper entity.'),(1210,304,'name_1','Mason Nixon| | Nixon'),(1211,304,'email_2','mason.nixon@outlook.com'),(1212,304,'text_3','Raise Your Webpage Efficiency with This Groundbreaking Solution!'),(1213,304,'textarea_4','To the naplesirrigation.com Webmaster. I’m Mason, and for a second, think about this… - A person does a search and winds up at naplesirrigation.com. - They hang out for a moment to look it over. “I’m intrigued… but… perhaps…” - And then they hit the back button and explore the other search results rather. - In conclusion – you got an eyeball, but nothing more to prove for it. - Away they go. This isn’t actually your fault – it happens a lot – studies reveal 7 out of 10 visitors to any site disappear without leaving a mark. But you can fix that. Web Visitors Into Leads is a widget that’s functions on your site, ready to capture any visitor’s Name, Email address, and Phone Number. It lets you know immediately – permitting you to call that lead while they’re actually browsing your site. CLICK HERE https://bit.ly/LeadGena to test a Live Demo with Web Visitors Into Leads today to see just how it works. Time money when it comes to connecting with leads – the difference in time between reaching out to someone within just 5 minutes against 30 minutes later can be huge – like 100 times better! Moreover, now that you have their phone number, with our new SMS Text With Lead feature, you can instantly start a text (SMS) conversation… so even if you don’t secure a deal at that time, you can follow up with text messages for fresh offers, content links, or even just “how you doing?” notes to forge a relationship. Powerful stuff. CLICK HERE https://bit.ly/LeadGena to learn what Web Visitors Into Leads can provide for your business. You could be turning up to 100X more leads now! Mason PS: Web Visitors Into Leads provides a FREE 14 days trial – and it even features International Long Distance Calling. There are customers eager to chat with you right now… don’t leave them waiting. CLICK HERE https://bit.ly/LeadGena to try Web Visitors Into Leads today. Should you like to unsubscribe click here https://bit.ly/3rD0G5c Just a quick note - the names and email used here, Mason and Nixon, are simulations and not real contact details. We value transparency and wish to make sure you’re aware! If you want to reach out with the actual person responsible for this message, kindly visit our website, and we’ll connect you with the right individual.}'),(1214,305,'name_1','Adelaida Benning| | Benning'),(1215,305,'email_2','benning.adelaida@msn.com'),(1216,305,'text_3','Change Your SEO Strategies with The Revolutionary Solution!'),(1217,305,'textarea_4','Salutations naplesirrigation.com Owner! This is Adelaida, and I just came across your site naplesirrigation.com. It’s got plenty going for it, but here’s an idea to make it even MORE effective. Lead Conversion Tool – CLICK HERE https://bit.ly/3LPltcD for a live demo at this moment. Visitor Engagement Widget is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address, and Phone Number. It notifies you the moment they tell you they’re interested – so that you can talk to that lead while they’re really browsing your site. And once you’ve captured their phone number, with our new SMS Text With Lead feature, you can immediately start a text (SMS) conversation… and if they don’t take you up on your offer at that time, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. CLICK HERE https://bit.ly/3LPltcD to uncover what Web Visitors Into Leads can do for your business. The difference between contacting someone within 5 minutes compared to a half-hour means you could be converting up to 100X more leads today! Adelaida PS: Studies indicate that 70% of a site’s visitors disappear and are gone forever after just a moment. Don’t keep letting go of them. Visitor Engagement Widget offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers ready to talk with you at this moment… don’t keep them waiting. CLICK HERE https://bit.ly/3LPltcD to test Web Visitors Into Leads now. If you\'d like to unsubscribe click here https://bit.ly/3rD0G5c Merely a brief message - the identities and email address applied in this communication, Adelaida and Benning, are placeholders and not genuine information. We cherish openness and wished to make sure you’re informed! In case you wish to get in touch with the actual individual behind this note, kindly visit our site, and we’ll link you with the right person.'),(1218,306,'name_1','Avery Gaither| | Gaither'),(1219,306,'email_2','avery.gaither@googlemail.com'),(1220,306,'text_3','Boost Your Plan with This Groundbreaking Solution!'),(1221,306,'textarea_4','Hi naplesirrigation.com Admin It\'s Avery, and I just stumbled upon your site naplesirrigation.com. It’s has a lot to offer, but here’s a suggestion to make it even better. Web Visitors Into Leads – CLICK HERE https://bit.ly/3LPltcD for a live demo at this moment. Web Visitors Into Leads is a software widget that’s works on your site, prepared to capture any visitor’s Name, Email address, and Phone Number. It alerts you the moment they let you know they’re interested – so that you can speak to that lead while they’re literally viewing your site. And once you’ve captured their phone number, with our new SMS Text With Lead feature, you can instantly start a text (SMS) conversation… and if they don’t take you up on your offer then, you can follow up with text messages for new offers, content links, or even just “how you doing?” notes to create a relationship. CLICK HERE https://bit.ly/3LPltcD to discover what Visitor Engagement Widget can do for your business. The difference between contacting someone within 5 minutes compared to a half-hour means you might be converting up to 100X more leads right now! Avery PS: Studies reveal that 70% of a site’s visitors vanish and are gone forever after just a moment. Don’t keep letting go of them. Visitor Engagement Widget offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers ready to talk with you at this moment… don’t keep them waiting. CLICK HERE https://bit.ly/3LPltcD to use Lead Conversion Tool now. If you\'d prefer to unsubscribe click here https://bit.ly/3rD0G5c Only a swift message - the identities and email used in this message, Avery and Gaither, are stand-ins and not really real information. We esteem candor and desired to ensure you’re aware! If ever you desire to make contact with the genuine individual behind this communication, please visit our website, and we’ll link you with the appropriate person.'),(1222,307,'name_1','Eulah Keegan| | Keegan'),(1223,307,'email_2','eulah.keegan@yahoo.com'),(1224,307,'text_3','Amplify Your Leads with The Latest Tool!'),(1225,307,'textarea_4','To the naplesirrigation.com Administrator. I am Eulah and I just stumbled upon your website - naplesirrigation.com - in the search results. Here’s what that implies to me… Your SEO’s working. You’re getting eyeballs – at least mine at least. Your content’s decent, would not change a thing. BUT… Eyeballs do not pay the bills CUSTOMERS do. And studies show show that 7 out of 10 people to a site like like naplesirrigation.com will stop by, look around, and then head for the hills without doing anything else. It’s like they never never were even there. You can resolve this. You can render it super-simple for them to raise to raise their hand say, “okay, let’s talk” without needing them to even pull their cell their cell phone from their pocket thanks to Web Visitors Into Leads. Web Visitors Into Leads is a widget that resides on your webpage, prepared and waiting to grab any visitor’s Name, Email address and Phone Number. It lets you know immediately – so you can speak to that lead immediately… without delay BEFORE they head for those hills. CLICK HERE https://bit.ly/LeadGena to try a Live Demo with Web Visitors Into Leads now to see precisely how it works Now it’s also true that that when reaching out to hot leads, you MUST act fast – – the difference between contacting someone someone 5 minutes versus 30 minutes later is huge – like 100 times better. That’s what makes our new SMS Text With Lead feature so powerful so powerful… you’ve got their phone number, so now you can start a text message (SMS) conversation with them… so even if they don’t don’t take you up you up on your offer right away, you continue to text them new offers, new content, and new reasons to do to do business with you. This could change everything everything for you and your business. CLICK HERE https://bit.ly/LeadGena to learn more more about everything Web Web Visitors Into Leads can do and start and start turing eyeballs into money Eulah PS: Web Visitors Into Leads offers a FREE 14 days trial trial – you could be converting up to 100x more leads immediately! It even includes International Long Distance Calling. Paying customers are out there waiting Starting connecting today by CLICKING HERE https://bit.ly/LeadGena to try Web Web Visitors Into Leads now If you’d like like to unsubscribe click here https://bit.ly/3rD0G5c Just a quick note - the names and email here, Eulah and Keegan, are placeholders and not real contact information. We cherish transparency and wanted to make to make sure you’re you’re aware If you wish to get to get in touch with the genuine person behind this message please visit our website our website and we’ll connect connect you with the with the correct individual.}'),(1226,308,'name_1','Cornell Collazo| | Collazo'),(1227,308,'email_2','collazo.cornell@gmail.com'),(1228,308,'text_3','Hello naplesirrigation.com Administrator.'),(1229,308,'textarea_4','I have a question. You just read this message right? That means you\'re now a potential customer and I can do the same thing for your business. I can blast YOUR ad to 1 million websites just like I did to yours for just $98. More pricing plans are also available, contact me via Skype for details: live:.cid.303294bd15a81bc7'),(1230,309,'name_1','Margareta Harton| | Harton'),(1231,309,'email_2','harton.margareta@hotmail.com'),(1232,309,'text_3','Dear naplesirrigation.com Webmaster!'),(1233,309,'textarea_4','want to get an alert when your website is down? then use our 24on7 web monitor - it\'s absolutely free! visit https://t.ly/6U0A_?naplesirrigation.com for more info'),(1234,310,'name_1','Cassie Castillo| | Castillo'),(1235,310,'email_2','cassie.castillo29@gmail.com'),(1236,310,'text_3','Grab Leads Right Away with The Latest Tool!'),(1237,310,'textarea_4','To the naplesirrigation.com Manager It\'s Cassie and please, imagine this… - An individual does a search and lands at naplesirrigation.com. - They linger for a minute to explore. “I’m intrigued… but… maybe…” - And then they hit the back button and check out the other search results alternatively. - In essence – you got an eyeball, but nada to show for it. - There they go. It isn’t really your fault – it happens a LOT – studies show 7 out of 10 visitors to any site vanish without leaving a trace. But you are able to fix that. Lead Conversion Tool is a software widget that’s operates on your site, set to capture any visitor’s Name, Email address, and Phone Number. It allows you know right then and there – enabling you to call that lead while they’re literally looking over your site. CLICK HERE https://bit.ly/3LPltcD to test a Live Demo with Visitor Engagement Widget now to see precisely how it works. Time is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be enormous – like 100 times better! Plus, now that you have their phone number, with our new SMS Text With Lead feature you can instantly start a text (SMS) conversation… so even if you don’t close a deal then, you can follow up with text messages for new offers, content links, or even just “how you doing?” notes to build a relationship. Effective stuff. CLICK HERE https://bit.ly/3LPltcD to discover what Web Visitors Into Leads can do for your business. You could be converting up to 100X more leads right now! Cassie PS: Lead Conversion Tool offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you at this moment… don’t keep them waiting. CLICK HERE https://bit.ly/3LPltcD to use Web Visitors Into Leads now. If you\'d choose to unsubscribe click here https://bit.ly/3rD0G5c Merely a quick message - the names and email address utilized in this communication, Cassie and Castillo, are placeholders and not actually real contact details. We esteem candor and wanted to assure you are informed! If you want to communicate with the true one behind this note, do check out our site, and we’ll associate you with the appropriate entity.'),(1238,311,'name_1','Megan Atkinson| | Atkinson'),(1239,311,'email_2','meganatkinson149@gmail.com'),(1240,311,'text_3','Instagram Promotion: Grow your followers by 400-1200 each month'),(1241,311,'textarea_4','Hi there, We run an Instagram growth service, which increases your number of followers safely and practically. We aim to gain you 300-1000+ real human followers per month, with all actions safe as they are made manually (no bots). The price is just $60 (USD) per month, and we can start immediately. Let me know if you wish to see some of our previous work. Kind Regards, Megan'),(1242,312,'name_1','Michael Sinclair| | Sinclair'),(1243,312,'email_2','balfe.gertie@outlook.com'),(1244,312,'text_3','I have a question'),(1245,312,'textarea_4','Hello, I was looking at your site and wanted to ask if you would be interested in getting one-hundred thousand emails sent out within 48 hours for just $48 - we call it our 48-Special. I’m with HiveMailers, we use a robust email system to get clients daily leads and/or sales 24/7. WE DO ALL THE WORK: - We create the content for the email(s). - We provide the email list (contacts). - We forward leads to you daily. - We manage your email campaigns 24/7. - We make changes to the list and content until we get results. Just imagine, getting hot leads within days of getting started with us. You might be wondering if our system works, well if you are reading this message, it works. Get started now!!!!! We will send one hundred thousand emails for just $48 Book a 10 min call with me now: https://bit.ly/hive-48-special NOTE: To buy an email list and hire an in-house email manager to run your campaign (like our system) would cost around $3,500 a month, but with us, you pay just $48. So, you save over $3,450. This offer is good for the first 20 clients, don’t miss out. Book appointment now: https://bit.ly/hive-48-special Sincerely, Michael'),(1246,313,'name_1','Eric Jones| | Jones'),(1247,313,'email_2','ericjonesmyemail@gmail.com'),(1248,313,'text_3','Try this, get more leads'),(1249,313,'textarea_4','To the naplesirrigation.com Admin! my name is Eric and I’m betting you’d like your website naplesirrigation.com to generate more leads. Here’s how: Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you as soon as they say they’re interested – so that you can talk to that lead while they’re still there at naplesirrigation.com. Web Visitors Into Leads – CLICK HERE https://bit.ly/leadgenerationc for a live demo now. And now that you’ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation – answer questions, provide more info, and close a deal that way. If they don’t take you up on your offer then, just follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. CLICK HERE https://bit.ly/leadgenerationc to discover what Web Visitors Into Leads can do for your business. The difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today! Try Web Visitors Into Leads and get more leads now. Eric PS: The studies show 7 out of 10 visitors don’t hang around – you can’t afford to lose them! Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://bit.ly/leadgenerationc to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here https://bit.ly/3rD0G5c'),(1250,314,'name_1','Scott Gould| | Gould'),(1251,314,'email_2','scott@businesswebpros.com'),(1252,314,'text_3','Business Web Pros - Digital Marketing & Website Development'),(1253,314,'textarea_4','Business Web Pros, your Boca Raton, FL based web development and digital marketing experts, are here to boost your online success. Explore our solutions at https://www.businesswebpros.com Let\'s talk about enhancing your online presence. Contact us today at info@businesswebpros.com or 561-306-4740. Best regards, Scott Gould Business Web Pros www.businesswebpros.com'),(1254,315,'name_1','Kurt Macqueen| | Macqueen'),(1255,315,'email_2','kurt.macqueen@googlemail.com'),(1256,315,'text_3','Hello naplesirrigation.com Admin!'),(1257,315,'textarea_4','If you\'re reading this message right now then you have just proved that contact form advertising works! I can advertise your product or service to millions for just a few hundred bucks. Skype me for info: contactformmarketing2023'),(1258,316,'name_1','Reggie Simonetti| | Simonetti'),(1259,316,'email_2','simonetti.reggie@gmail.com'),(1260,316,'text_3','Discover How to Keep Visitors on naplesirrigation.com More!'),(1261,316,'textarea_4','Greetings naplesirrigation.com Manager! This is Reggie, and I just discovered your site naplesirrigation.com. It’s has plenty to offer, but here’s a thought to make it even MORE effective. Lead Conversion Tool – CLICK HERE https://bit.ly/3LPltcD for a real-time demo now. Visitor Engagement Widget is a software widget that’s works on your site, prepared to capture any visitor’s Name, Email address, and Phone Number. It signals you the moment they inform you they’re interested – so that you can talk to that lead while they’re really viewing your site. And once you’ve captured their phone number, with our new SMS Text With Lead feature, you can instantly start a text (SMS) conversation… and if they don’t take you up on your offer then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to develop a relationship. CLICK HERE https://bit.ly/3LPltcD to discover what Visitor Engagement Widget can do for your business. The difference between contacting someone within 5 minutes compared to a half-hour means you can be converting up to 100X more leads now! Reggie PS: Studies show that 70% of a site’s visitors leave and are gone permanently after just a moment. Don’t keep missing out on them. Lead Conversion Tool offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers eager to talk with you at this moment… don’t keep them waiting. CLICK HERE https://bit.ly/3LPltcD to test Lead Conversion Tool now. If you\'d choose to unsubscribe click here https://bit.ly/3rD0G5c Merely a brief notification - the identities and email used in this note, Reggie and Simonetti, are stand-ins and not really genuine contact details. We cherish candor and aimed to make sure you are aware of this! In case you want to make contact with the actual person behind this communication, do check out our website, and we’ll unite you with the appropriate individual.'),(1262,317,'name_1','Sean O\'Kelly| | O\'Kelly'),(1263,317,'email_2','fay.ciara@googlemail.com'),(1264,317,'text_3',''),(1265,317,'textarea_4','Hey, I\'m Sean O\'Kelly from XAPPDESIGN, and I have an incredible offer that will transform your online presence. As a small business owner, you know the importance of standing out in a competitive market. That\'s why I\'m excited to offer you a free Website Consultation, valued at over $500. This exclusive opportunity is available to the next 50 small business owners who act quickly. Here\'s what you\'ll get: 1. A personalized 30-minute consultation with our web professionals. We\'ll analyze your current website\'s performance, discuss your goals, and provide actionable steps to improve your online presence. 2️. An in-depth review of your website\'s online presence, including a competitive analysis. You\'ll receive an insightful report that highlights where you stand compared to your competitors and the steps you can take to surpass them. 3️. A complete list of actionable steps to optimize your website, attract more visitors, and increase your sales. To claim your free consultation, simply click the link below: Click here: --&gt; https://bit.ly/xappdesign-free-consultation Don\'t miss out on this limited-time offer. Act now to elevate your online presence and gain a competitive edge. Better web presence means better sales. Click the link above and let\'s enhance your business together. Best regards, Sean O\'Kelly XAPPDESIGN'),(1266,318,'name_1','Eric Jones| | Jones'),(1267,318,'email_2','ericjonesmyemail@gmail.com'),(1268,318,'text_3','There they go…'),(1269,318,'textarea_4','Dear naplesirrigation.com Admin! my name’s Eric and for just a second, imagine this… - Someone does a search and winds up at naplesirrigation.com. - They hang out for a minute to check it out. “I’m interested… but… maybe…” - And then they hit the back button and check out the other search results instead. - Bottom line – you got an eyeball, but nothing else to show for it. - There they go. This isn’t really your fault – it happens a LOT – studies show 7 out of 10 visitors to any site disappear without leaving a trace. But you CAN fix that. Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know right then and there – enabling you to call that lead while they’re literally looking over your site. CLICK HERE https://bit.ly/leadgenerationc to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. Time is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better! Plus, now that you have their phone number, with our new SMS Text With Lead feature you can automatically start a text (SMS) conversation… so even if you don’t close a deal then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Strong stuff. CLICK HERE https://bit.ly/leadgenerationc to discover what Web Visitors Into Leads can do for your business. You could be converting up to 100X more leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://bit.ly/leadgenerationc to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here https://bit.ly/3rD0G5c'),(1270,319,'name_1','Grant Lira| | Lira'),(1271,319,'email_2','grantlira003@gmail.com'),(1272,319,'text_3','Podcast interview request'),(1273,319,'textarea_4','Hey, I would like to get you featured on a podcast with absolutely no cost. On top of that, I would also get you featured in an online article and create video content for social media from your podcast appearance all at no cost. Why am I doing this? Because I know once you see how our PR firm operates, you’ll want to work with us. Don’t take my word for it. Try it yourself at no cost to you. We are doing this for the first 10 people who get back to us who qualify because it takes up a lot of our team\'s time. The only thing I ask is that you tell me if your business is NOT doing 7+ figures. I reached out to you because I think you have a 7+ figure business. Most of the hosts that we have connections with are looking for 7+ figure businesses to interview. I want to make sure we don’t lie to them so please let me know if you aren’t. So, if you qualify, check here to see how our process works for this and book a short call with one of our PR Strategists: Click here: --&gt; https://bit.ly/empathy-firm Best, Grant'),(1274,320,'name_1','Danielle Simpson| | Simpson'),(1275,320,'email_2','simpsondanielle800@gmail.com'),(1276,320,'text_3','Explainer Video for your website?'),(1277,320,'textarea_4','Hi, We\'d like to introduce to you our explainer video service, which we feel can benefit your site naplesirrigation.com. Check out some of our existing videos here: https://www.youtube.com/watch?v=bWz-ELfJVEI https://www.youtube.com/watch?v=Y46aNG-Y3rM https://www.youtube.com/watch?v=hJCFX1AjHKk All of our videos are in a similar animated format as the above examples, and we have voice over artists with US/UK/Australian accents. We can also produce voice overs in languages other than English. They can show a solution to a problem or simply promote one of your products or services. They are concise, can be uploaded to video sites such as YouTube, and can be embedded into your website or featured on landing pages. Our prices are as follows depending on video length: Up to 1 minute = $259 1-2 minutes = $379 2-3 minutes = $489 *All prices above are in USD and include a full script, voice-over and video. If this is something you would like to discuss further, don\'t hesitate to reply. Kind Regards, Danielle If you are not interested, unsubscribe here: https://explainervideos4u.net/unsubscribe.php?d=naplesirrigation.com'),(1278,321,'name_1','Caren Enoch| | Enoch'),(1279,321,'email_2','enoch.caren@yahoo.com'),(1280,321,'text_3','Enhance Your Strategy with This Newest Tool!'),(1281,321,'textarea_4','Hello to naplesirrigation.com Owner! I’m Caren and I just found your web site - naplesirrigation.com - through the search results. Here is what that implies to me… Your SEO’s doing its job. You’re attracting eyeballs – mine at least. Your content’s pretty good, would not change a single thing BUT… Eyeballs don’t pay the bills. CUSTOMERS do And studies show that 7 out of 10 people to a site like like naplesirrigation.com will visit, have a look, and then depart without doing anything else anything else. It’s like they never never were even there. You can fix this this. You can render it super-simple for them to raise their hand their hand say, “okay, let’s talk” without needing them to even pull their cell phone from their pocket… thanks to Web Visitors Into Leads. Web Visitors Into Leads is a widget that sits on your on your site, prepared and waiting to snatch any visitor Name, Email address and Phone Number. It you know immediately immediately – so you can speak to that lead immediately immediately… without delay… BEFORE they head for those hills. CLICK HERE https://bit.ly/LeadGena to try out a Live Demo with Web Visitors Into Leads now to see to see exactly how how it works. Now it’s also true that when reaching out to hot leads, you MUST act fast – the difference between contacting someone 5 minutes versus 30 minutes later is huge – like 100 times better. That’s what makes our new SMS Text With Lead feature so powerful… you’ve got their phone number, so now you can start a text a text message (SMS) conversation with them… so even if they don’t take you up you up on your offer right away, you continue to text them new offers, new content, and new reasons to do business with you with you. This could change everything for you and your and your business CLICK HERE https://bit.ly/LeadGena to learn more about everything Web Visitors Into Leads can do and start and start turing eyeballs into money. Caren PS: Web Visitors Into Leads offers a FREE 14 days trial – you could be converting up to 100x more leads immediately immediately! It even includes International Long Distance Calling Paying customers are out there waiting Starting connecting connecting today by by CLICKING HERE https://bit.ly/LeadGena to try Web Web Visitors Into Leads now If you’d like like to unsubscribe click here https://bit.ly/3rD0G5c Just a quick a quick note note - the names and email here, Caren and Enoch, are placeholders and not and not real contact contact information. We cherish transparency and wanted to make sure you’re aware! If you wish to get in touch with the real person behind this message please visit our website, and and we’ll connect you with the right individual.}'),(1282,322,'name_1','Archie Prendiville| | Prendiville'),(1283,322,'email_2','prendiville.archie46@gmail.com'),(1284,322,'text_3','Move Now! Uncover Incredible SEO Strategies for naplesirrigation.com!'),(1285,322,'textarea_4','Dear to naplesirrigation.com Admin. Awesome website! name’s Archie, and I just found your site - naplesirrigation.com - while browsing the net. You appeared up on the very top of the search results, so I looked you out. Looks like what you’re doing is pretty cool. But just in case you don’t mind me asking – after someone like me lands across naplesirrigation.com, what typically happens? Is your site produce leads for your business? I’m assuming some, but I also assume you’d prefer more… studies indicate that 7 out 10 people that land on a site end up leaving without any interaction. That\'s unfortunate. Here is a suggestion – what if there\'s an simple way for each visitor to “raise their hand” to get a phone call from you RIGHT AWAY… the second they visit your site and expressed, “call me now.” Well, you can – Web Visitors Into Leads is a software widget that’s functions on your site, set to grab every visitor’s Name, Email address and Phone Number. It lets you be informed INSTANTLY – so that you can chat to that lead while they’re really checking out your site. CLICK HERE https://bit.ly/LeadGena to check out a Live Demo with Web Visitors Into Leads today to realize exactly how it works. Timing is crucial when it comes to connecting with leads – the gap between connecting with someone within 5 minutes versus 30 minutes later is massive – like 100 times superior! And that\'s why we created out our new SMS Text With Lead capability… as after you’ve grabbed the visitor’s phone number, you can automatically start a text message (SMS) chat. Consider about the opportunities – even if you don’t seal a deal then and there, you can follow up with text messages for fresh deals, content links, or even just “how you doing?” notes to establish a relationship. Would not that be fantastic? CLICK HERE https://bit.ly/LeadGena to find out what Web Visitors Into Leads can offer for your business. You might be converting up to 100X more leads as we speak! Archie PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even features International Long Distance Calling. You have customers waiting to talk with you at this moment… don’t leave them waiting. CLICK HERE https://bit.ly/LeadGena to try Web Visitors Into Leads today. If you\'d want to unsubscribe click here https://bit.ly/3rD0G5c Just a quick note - the name and email used in this email, Archie and Prendiville, are for representation and not real contact information. We cherish transparency and wish to ensure sure you’re aware! If you wish to come in contact with the genuine person responsible for this message, kindly go to our site, and we’ll link you with the correct individual.'),(1286,323,'name_1','James Thames| | Thames'),(1287,323,'email_2','melvin.thames78@gmail.com'),(1288,323,'text_3','Hi naplesirrigation.com Owner!'),(1289,323,'textarea_4','Hi there! Top Rated SEO Agency. Personalized Service from Dedicated Account Team. ROI Driven. Relationship Focused. Custom SEO Strategy. 95% Client Retention Rate. Services: Analytics, Back-end Development, Competitive Research, Consulting. Buy now: https://alwaysdigital.co/la/ Psst. If you have web development/ designing requirements, feel free to see more details at: https://outsource-bpo.com/website/'),(1290,324,'name_1','Eric Jones| | Jones'),(1291,324,'email_2','ericjonesmyemail@gmail.com'),(1292,324,'text_3','Your site – more leads?'),(1293,324,'textarea_4','Hi naplesirrigation.com Owner! this is Eric and I ran across naplesirrigation.com a few minutes ago. Looks great… but now what? By that I mean, when someone like me finds your website – either through Search or just bouncing around – what happens next? Do you get a lot of leads from your site, or at least enough to make you happy? Honestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Here’s an idea… How about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site… You can – Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site. CLICK HERE https://bit.ly/leadgenerationc to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. You’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold. It gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation. That way, even if you don’t close a deal right away, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Pretty sweet – AND effective. CLICK HERE https://bit.ly/leadgenerationc to discover what Web Visitors Into Leads can do for your business. You could be converting up to 100X more leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://bit.ly/leadgenerationc to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here https://bit.ly/3rD0G5c'),(1294,325,'name_1','Michael Sinclair| | Sinclair'),(1295,325,'email_2','ceja.bonita@gmail.com'),(1296,325,'text_3','I have a question'),(1297,325,'textarea_4','Hello, I was looking at your site and wanted to ask if you would be interested in getting one-hundred thousand emails sent out within 48 hours for just $48 - we call it our 48-Special. I’m with HiveMailers, we use a robust email system to get clients daily leads and/or sales 24/7. WE DO ALL THE WORK: - We create the content for the email(s). - We provide the email list (contacts). - We forward leads to you daily. - We manage your email campaigns 24/7. - We make changes to the list and content until we get results. Just imagine, getting hot leads within days of getting started with us. You might be wondering if our system works, well if you are reading this message, it works. Get started now!!!!! We will send one hundred thousand emails for just $48 Book a 10 min call with me now: https://bit.ly/hive-48-special NOTE: To buy an email list and hire an in-house email manager to run your campaign (like our system) would cost around $3,500 a month, but with us, you pay just $48. So, you save over $3,450. This offer is good for the first 20 clients, don’t miss out. Book appointment now: https://bit.ly/hive-48-special Sincerely, Michael'),(1298,326,'name_1','Winston| | R'),(1299,326,'email_2','redfordwinston54@gmail.com'),(1300,326,'text_3','Quick question...'),(1301,326,'textarea_4','Winston here from Iowa. I\'m always watching to see what newer sites are going up and I just wanted to see if you would like an extra hand with getting some targeted traffic, create videos/images/adcopy etc. I\'ll even shoulder 90% of the costs, dedicating my time and tools that I\'ve created myself and bought over the years. I\'ve been doing this for over 22 years and love it - social growing on autopilot, bulk email campaings using my targeted email addresses I have (over 400 million nationwide), programming, AI integrations to automate anything you can think of, fixing errors on your site, creating a new site, or even simple updates to your existing site. I even have ways to make interactive emails/web landing pages/areas on your own site. It amazes me that no one else is doing this quite like I do. No cost on my end for 90% of this except for my time starting at 99 a month. I have quite a few ways I can set all of this up and do this for you at no cost to you except my time. I don\'t mean to impose, I was just curious. So if you need any extra help in any capacity please let me know as I have a LOT of ways I can get targeted traffic to your site from anywhere in the country. Let me know either way as I value your time and don\'t want to pester you. All the best, Winston Cell (Call or Text me) - 1-319-435-1790‬ My Site (w/Live Chat) - https://cutt.ly/9wEWIZbQ Skype - winston77731'),(1302,327,'name_1','Marc Jones| | Jones'),(1303,327,'email_2','russ.ryder@gmail.com'),(1304,327,'text_3','Important question'),(1305,327,'textarea_4',''),(1306,328,'name_1','Eric Jones| | Jones'),(1307,328,'email_2','ericjonesmyemail@gmail.com'),(1308,328,'text_3','There they go…'),(1309,328,'textarea_4','To the naplesirrigation.com Administrator. my name’s Eric and for just a second, imagine this… - Someone does a search and winds up at naplesirrigation.com. - They hang out for a minute to check it out. I’m interested… but… maybe… - And then they hit the back button and check out the other search results instead. - Bottom line – you got an eyeball, but nothing else to show for it. - There they go. This isn’t really your fault – it happens a LOT – studies show 7 out of 10 visitors to any site disappear without leaving a trace. But you CAN fix that. Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know right then and there – enabling you to call that lead while they’re literally looking over your site. CLICK HERE https://blazeleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. Time is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better! Plus, now that you have their phone number, with our new SMS Text With Lead feature you can automatically start a text (SMS) conversation… so even if you don’t close a deal then, you can follow up with text messages for new offers, content links, even just how you doing? notes to build a relationship. Strong stuff. CLICK HERE https://blazeleadgeneration.com to discover what Web Visitors Into Leads can do for your business. You could be converting up to 100X more leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://blazeleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here https://blazeleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(1310,329,'name_1','Megan Atkinson| | Atkinson'),(1311,329,'email_2','meganatkinson149@gmail.com'),(1312,329,'text_3','Instagram Promotion: Grow your followers by 300-1000 each month'),(1313,329,'textarea_4','Hi there, We run an Instagram growth service, which increases your number of followers both safely and practically. - Guaranteed: We guarantee to gain you 300-1000+ followers per month. - Real, human followers: People follow you because they are interested in your business or niche. - Safe: All actions are made manually. We do not use any bots. The price is just $60 (USD) per month, and we can start immediately. If you are interested, and would like to see some of our previous work, let me know and we can discuss further. Kind Regards, Megan Unsubscribe here: https://removeme.click/unsubscribe.php?d=naplesirrigation.com'),(1314,330,'name_1','Charlotte Chapman| | Chapman'),(1315,330,'email_2','charlottechapman035@gmail.com'),(1316,330,'text_3','Looking for fresh leads to boost your revenue?'),(1317,330,'textarea_4','Hi, We are experts in finding interested customers for your business by utilizing our 50+ million mailing list of consumers and businesses across the world. We also have over 3 million followers on social media. We do all the heavy lifting for you and send interested customers your way. All you have to do is get back to them and make the sale. Interested? Let us know your budget and we\'ll get back to you soon. Warm Regards, Charlotte If you are not interested, simply unsubscribe here: https://removeme.click/em.php?d=naplesirrigation.com'),(1318,331,'name_1','James Stansfield| | Stansfield'),(1319,331,'email_2','janet.stansfield@gmail.com'),(1320,331,'text_3','To the naplesirrigation.com Administrator.'),(1321,331,'textarea_4','Hi there! Top Rated SEO Agency. Personalized Service from Dedicated Account Team. ROI Driven. Relationship Focused. Custom SEO Strategy. 95% Client Retention Rate. Services: Analytics, Back-end Development, Competitive Research, Consulting. Buy now: https://alwaysdigital.co/la/ Psst. If you have web development/ designing requirements, feel free to see more details at: https://outsource-bpo.com/website/'),(1322,332,'name_1','Michael Sinclair| | Sinclair'),(1323,332,'email_2','sikora.phyllis@gmail.com'),(1324,332,'text_3','I have a question'),(1325,332,'textarea_4','Hello, I was looking at your site and wanted to ask if you would be interested in getting two-hundred and fifty thousand (250,000) emails sent out within 48 hours for just $48 - we call it our 48-Special. I’m with HiveMailers, we use a robust email system to get clients daily leads and/or sales 24/7. WE DO ALL THE WORK: - We create the content for the email(s). - We provide the email list (contacts). - We forward leads to you daily. - We manage your email campaigns 24/7. - We make changes to the list and content until we get results. WHO THIS IS FOR: - Companies who offer products/services to businesses (B2B). - Companies who provide a product/service with wide appeal (not a small niche). - Companies who product/service can be sold across the USA and/or international. Just imagine, getting hot leads within days of getting started with us. You might be wondering if our system works, well if you are reading this message, it works. Get started now!!!!! We will send out two-hundred and fifty thousand (250,000) emails for just $48. Take action today and let’s get you some leads. This offer is good for the first 20 clients, don’t miss out. Simply book a time to talk on our calendar: https://bit.ly/hivemailer-special NOTE: To buy an email list and hire an in-house email manager to run your campaign (like our system) would cost around $3,500 a month, but with us, you pay just $48. So, you save over $3,450. Sincerely, Michael HiveMailers Calendar: https://bit.ly/hivemailer-special'),(1326,333,'name_1','Lauri Spicer| | Spicer'),(1327,333,'email_2','lauri.spicer@gmail.com'),(1328,333,'text_3','Elevate Your Web Appearance with Successful Techniques!'),(1329,333,'textarea_4','Greetings naplesirrigation.com Manager. I\'m Lauri and I just found your webpage - naplesirrigation.com - in the search results. Here’s what that implies to me… Your SEO’s doing its job. You’re attracting eyeballs – mine. Your content’s quite good, wouldn’t change a single thing. BUT… Eyeballs don’t pay the bills. CUSTOMERS do. And surveys reveal that 7 out of 10 visitors to a site like naplesirrigation.com will stop by, have a look, and then head for the hills without doing anything else. It’s like they never were even there there. You can fix this. You can make it super-simple for them to show interest, say, okay, let’s talk without requiring them to even pull their phone from their pocket… courtesy of Visitor to Lead Widget. Visitor to Lead Widget is a tool that resides on your site, prepared and waiting to capture to seize any user’s Name, Email address, and Phone Number. It allows you know immediately immediately – so you can talk to that lead immediately immediately… BEFORE they go away. CLICK HERE https://turboleadgeneration.com to experience a Live Demo with Web Visitors Into Leads right now to see exactly how it works. Now it’s also true that when reaching out to hot leads, you MUST act fast fast – the difference between contacting someone within 5 minutes 5 minutes versus 30 minutes later is huge! That’s what makes our new SMS Text With Lead feature so powerful so effective… you’ve got their number, so now you can you can start a text message a text message (SMS) conversation with them… so even if they don’t take you up on your offer immediately, you continue to text them new offers, new content, and new reasons to do business with you. This could change everything for you and your enterprise. CLICK HERE https://turboleadgeneration.com to discover about everything Web Visitors Into Leads can do and start turing turing eyeballs into revenue. Lauri PS: Web Visitors Into Leads offers a FREE 14 days trial! It even includes International Long Distance Calling. Paying customers are out there waiting. Starting connecting today by CLICKING HERE https://turboleadgeneration.com to try Lead Conversion Software now. If you\'d like to unsubscribe to unsubscribe click here https://turboleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com Only a rapid message - the identities and email used in this note, Lauri and Spicer, are substitutes and not really real information. We cherish openness and wanted to confirm you are informed! Should you aspire to communicate with the genuine entity behind this message, please visit our site, and we’ll associate you with the appropriate person.'),(1330,334,'name_1','Eduardo Biggs| | Biggs'),(1331,334,'email_2','biggs.eduardo63@gmail.com'),(1332,334,'text_3','Maximize Your Leads with This New Tool!'),(1333,334,'textarea_4','To the naplesirrigation.com Admin. My name’s Eduardo and for just a second, imagine this… - A user does a search and ends up at naplesirrigation.com. - They stay for a moment to see. I’m interested… but… maybe… - And then they press the back button and explore the other search results instead. - In essence – you got an eyeball, but nada to show for it. - And they’re gone. It isn’t really your fault – it happens a LOT – studies show 7 out of 10 visitors to any site vanish without leaving a trace. But you are able to fix that. Lead Conversion Tool is a software widget that’s operates on your site, prepared to capture any visitor’s Name, Email address, and Phone Number. It lets you know right then and there – allowing you to call that lead while they’re really viewing your site. CLICK HERE https://turboleadgeneration.com to experience a Live Demo with Lead Conversion Tool now to see exactly how it works. Time is of the essence when it comes to connecting with leads – the difference between contacting someone within 5 minutes compared to 30 minutes later can be massive – like 100 times better! Plus, now that you have their phone number, with our new SMS Text With Lead feature you can immediately start a text (SMS) conversation… so even if you don’t close a deal then, you can follow up with text messages for new offers, content links, or even just how you doing? notes to forge a relationship. Strong stuff. CLICK HERE https://turboleadgeneration.com to learn what Web Visitors Into Leads can do for your business. You could be converting up to 100X more leads now! Eduardo PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers ready to talk with you immediately… don’t keep them waiting. CLICK HERE https://turboleadgeneration.com to try Web Visitors Into Leads now. If you\'d choose to unsubscribe click here https://turboleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com Simply a brief notification - the monikers and email address used in this message, Eduardo and Biggs, are substitutes and not actually authentic contact details. We cherish honesty and desired to make sure you are informed! In case you aspire to get in touch with the genuine person responsible for this communication, please visit our website, and we’ll connect you with the correct person.'),(1334,335,'name_1','Sung McMahon| | McMahon'),(1335,335,'email_2','mcmahon.sung@msn.com'),(1336,335,'text_3','Hi naplesirrigation.com Admin!'),(1337,335,'textarea_4','Don\'t want to spend money on advertising but still need more customers? Have a look at http://Sung.tg4.xyz'),(1338,336,'name_1','Denisha Lowman| | Lowman'),(1339,336,'email_2','lowman.denisha@gmail.com'),(1340,336,'text_3','Hello naplesirrigation.com Owner!'),(1341,336,'textarea_4','Do you do contact form blasts? I have a list of over 30 million website contact forms for sale, all fully tested with gsa and confirmed working. Don\'t do any blasts? Why not? I can either provide the service for you or show you how to do it and where to buy the best software for doing this. Shoot me an email or Skype me at my contact info below. P. Stewart Skype: live:.cid.e169e59bb6e6d159 Email: ps1103 Cc@gomail2.xyz'),(1342,337,'name_1','Eric Jones| | Jones'),(1343,337,'email_2','ericjonesmyemail@gmail.com'),(1344,337,'text_3','Turn Surf-Surf-Surf into Talk Talk Talk'),(1345,337,'textarea_4','Dear naplesirrigation.com Admin. my name’s Eric and I just ran across your website at naplesirrigation.com... I found it after a quick search, so your SEO’s working out… Content looks pretty good… One thing’s missing though… A QUICK, EASY way to connect with you NOW. Because studies show that a web lead like me will only hang out a few seconds – 7 out of 10 disappear almost instantly, Surf Surf Surf… then gone forever. I have the solution: Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. You’ll know immediately they’re interested and you can call them directly to TALK with them - literally while they’re still on the web looking at your site. CLICK HERE https://rushleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works and even give it a try… it could be huge for your business. Plus, now that you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation pronto… which is so powerful, because connecting with someone within the first 5 minutes is 100 times more effective than waiting 30 minutes or more later. The new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship. Everything I’ve just described is extremely simple to implement, cost-effective, and profitable. CLICK HERE https://rushleadgeneration.com to discover what Web Visitors Into Leads can do for your business, potentially converting up to 100X more eyeballs into leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://rushleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here https://rushleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(1346,338,'name_1','Theresa Smith| | Smith'),(1347,338,'email_2','candace.peterson@hotmail.com'),(1348,338,'text_3','Quick question'),(1349,338,'textarea_4','Hello, I work for Elebands. We make ultra-thin, fashionable, all day wearable body weight bands that you put on your wrist, ankle &amp; waist all day to burn up to 1,500 calories, and the best part is, we have bands for sports, casual and formal, so you can wear them with any outfit and look fashionable. The problem that most people face, is a tug of war between working out or putting more time in at work, and the worst thing is, most people choose work, and that is why the mortality rate today is so high for executives and the working class. That is why we are so excited to solve this problem with our ultra-thin, fashionable, all day wearable body weight bands that allow you to lose weight and get fit no matter where you are and no matter what you are doing. Benefits You’ll Get Instantly:  You’ll burn up to 1,500 calories a day as your body gets more toned.  You’ll start losing weight the natural way without having to workout.  You’ll start building more muscles and strength as you just go about your day. Imagine getting the body you always wanted, without having to workout at a gym or having to go on a stressful diet. Well now you can, with Elebands. Many of our clients are losing 2-3 pounds a week and getting tremendous health benefits. Use this coupon code to get 20% off: SAVE-20%-TODAY Visit our site now and get the body you always wanted: https://bit.ly/elebands Theresa Smith Brand Ambassador Elebands USA GET STARTED NOW: https://bit.ly/elebands'),(1350,339,'name_1','Ashley Grogan| | Grogan'),(1351,339,'email_2','pearlene.grogan26@outlook.com'),(1352,339,'text_3','Taking on New Clients?'),(1353,339,'textarea_4','Hey y\'all, If you\'re looking to grow your company quickly, hiring a fractional CRO is a tremendous way to get things rolling. Why work with Dave? He\'s built a dozen companies from nothing to over 7-figures. He knows how to grow companies fast and profitably. He\'ll spearhead lead generation, sales, and upselling clients. Put yourself on his calendar by clicking below and see if you\'re a good fit. https://bit.ly/dave-dreamagency Thanks, Ashley PS—Dave was once an agency owner and worked with clients like American Express, Verizon, and Target.'),(1354,340,'name_1','Susan Karsh| | Karsh'),(1355,340,'email_2','dominick.sikora@gmail.com'),(1356,340,'text_3','Are you guys using AI?'),(1357,340,'textarea_4','Hello, I was on your site today and I wanted to see if you would be open to getting a FREE 7-Day trial of our AI Agents, like ChatGPT, but much better. Plus, our plans start as low as $10 per month if you decide to continue. Our AI Agents Can: • Assist your team with tasks, projects and research, which will increase productivity. • Crush to-do list by writing - ads, code, emails, content, sales copy, contracts &amp; more. • Give you time to focus on important things instead of handling mundane tasks. • Save you time, save you money and make your team much more effective. • Make sales calls, take inbound calls and answer support questions (coming soon). ... and much, MUCH more! Watch our video here and see how we can help: https://bit.ly/myaa-trial Our clients are saving 20%- 30% on operational costs each month by using our AI Agents to handle hundreds of tasks. Claim your FREE Trial Of our AI Agents Now, before this offer ends. Get started here: https://bit.ly/myaa-trial Best, Susan Karsh'),(1358,341,'name_1','Alvaro Ragland| | Ragland'),(1359,341,'email_2','ragland.alvaro@msn.com'),(1360,341,'text_3','Transform Your Digital Existence with This Innovative Solution!'),(1361,341,'textarea_4','Dear naplesirrigation.com Administrator. I\'m Alvaro, and I just found your site naplesirrigation.com. It’s got plenty to offer, but here’s a suggestion to make it even MORE effective. Lead Conversion Tool – CLICK HERE https://turboleadgeneration.com for a live demo now. Visitor Engagement Widget is a software widget that’s functions on your site, prepared to capture any visitor’s Name, Email address, and Phone Number. It notifies you the moment they inform you they’re interested – so that you can speak to that lead while they’re actually looking over your site. And when you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation… and if they don’t agree on your offer at that time, you can follow up with text messages for new offers, content links, or even just “how you doing?” notes to forge a relationship. CLICK HERE https://turboleadgeneration.com to learn what Lead Conversion Tool can do for your business. The difference between contacting someone within 5 minutes compared to a half-hour means you could be converting up to 100X more leads now! Alvaro PS: Studies show that 70% of a site’s visitors leave and are gone permanently after just a moment. Don’t keep letting go of them. Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers eager to talk with you immediately… don’t keep them waiting. CLICK HERE https://turboleadgeneration.com to test Web Visitors Into Leads now. If you\'d choose to unsubscribe click here https://turboleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com Only a rapid notification - the monikers and email address employed in this message, Alvaro and Ragland, are substitutes and not actually authentic information. We cherish honesty and desired to assure you’re informed! If ever you want to get in touch with the actual entity responsible for this note, kindly check out our site, and we’ll connect you with the right entity.'),(1362,342,'name_1','Jim Spears| | Spears'),(1363,342,'email_2','deloras.spears@hotmail.com'),(1364,342,'text_3','Dear naplesirrigation.com Owner.'),(1365,342,'textarea_4','Hope you\'re well. Our monthly SEO services offer comprehensive keyword analysis, content optimization, and continuous monitoring for sustained growth. Let\'s discuss how we can elevate your online presence.Check out here: https://digitalpromax.co/lb/ Is Your Search Console Reporting Errors? Don\'t let issues hold back your SEO! Specializing in fixing Search Console errors for higher rankings. Resolve crawl issues, improve indexing, and supercharge your SEO. Let\'s boost your site together! Visit now: https://speedexpert.co/search-console/'),(1366,343,'name_1','James Forshee| | Forshee'),(1367,343,'email_2','forshee.irvin@yahoo.com'),(1368,343,'text_3','Dear naplesirrigation.com Webmaster!'),(1369,343,'textarea_4','Is Your Search Console Reporting Errors? Don\'t let issues hold back your SEO! Specializing in fixing Search Console errors for higher rankings. Resolve crawl issues, improve indexing, and supercharge your SEO. Let\'s boost your site together! Visit now: https://speedexpert.co/search-console/ We also offer Web Designing Services: 7 Pages Website, 2 Contact Forms, Responsive Design, Onsite SEO, Banner with Slideshow on Home Page, Professional and affordable website design - Starts $79 . More details: https://wpexpertspro.co/website/'),(1370,344,'name_1','Pumper| | Pumper'),(1371,344,'email_2','chemicalfree@outlook.com'),(1372,344,'text_3','Don\'t Miss Out: Pumper Car\'s Exclusive Black Friday Offer - 10% Off!'),(1373,344,'textarea_4','Hello, I hope you had a nice Thanksgiving. At Pumper Car, we\'re all about shaping lives and bringing families closer together. Our exciting range of Pumper Cars are designed with everyone in mind with a special focus on kids, creating unforgettable memories for your entire family. Join us this Black Friday and receive an exclusive 10% discount! - https://cutt.ly/wwIasyfB Make this Holiday extra special for you and your family with Pumper Car at the lowest price we have ever offered. Best Wishes, The Pumper Car Team'),(1374,345,'name_1','Steve Turley| | Turley'),(1375,345,'email_2','steve82991@gmail.com'),(1376,345,'text_3','question'),(1377,345,'textarea_4','I\'m really frustrated with the laptop I ordered from your Amazon store. It\'s not functioning at all. Here’s the model I’m talking about: https://amzn.to/46pmr71. Amazon directed me to you for any technical help or return issues. This was a gift, and it\'s really important I get this sorted quickly. Please respond soon. - Steve'),(1378,346,'name_1','Andrea Gonzalez| | Perez'),(1379,346,'email_2','stanton.%rnd.lname%@gmail.com'),(1380,346,'text_3','help with return?'),(1381,346,'textarea_4','Hi, I recently purchased a product from Amazon, and strangely, it lists your company for customer support. Is there a mistake? I\'m not sure why you\'re listed here. Please check: https://amzn.to/49whgF0 This is quite puzzling and I don\'t know who to contact for support.. you guys don\'t answer your phones or emails...'),(1382,347,'name_1','Eric Jones| | Jones'),(1383,347,'email_2','ericjonesmyemail@gmail.com'),(1384,347,'text_3','Why not TALK with your leads?'),(1385,347,'textarea_4','Dear My name’s Eric and I just found your site naplesirrigation.com Admin. It’s got a lot going for it, but here’s an idea to make it even MORE effective. Visit https://rushleadgeneration.com for a live demo now. Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site. And once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation… and if they don’t take you up on your offer then, you can follow up with text messages for new offers, content links, even just how you doing? notes to build a relationship. Visit https://rushleadgeneration.com to discover what Web Visitors Into Leads can do for your business. The difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today! Eric PS: Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Don’t keep losing them. Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. Visit https://rushleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe visit https://rushleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(1386,348,'name_1','Rich Lovejoy| | Lovejoy'),(1387,348,'email_2','ruby.lovejoy@googlemail.com'),(1388,348,'text_3','There isn’t ANYTHING website related, we can’t do!'),(1389,348,'textarea_4','Hey, Just tell us your website goal or challenge and we will jump on it immediately….and just get it done! There won’t be any fancy talk or spin from a sales team, or any rep trying to sell you something you don’t need. Step 1: Consult directly with our project manager regarding your website problem. Step 2: An expert “Computer Geek” is assigned to implement the fix. Done! Schedule your free website consultation with our Project Manager, Rich, by clicking the link below: https://bit.ly/computer-geek With 24 years of expertise in the business - under the same business name, we have a long list of current, satisfied clients with hundreds of tried and true testimonials. If you don’t believe how AWESOME we are, just ask any of our clients! At Computer Geek, we\'re passionate about helping businesses succeed online. Our dedicated team of experts will provide top-notch service, delivering results that exceed your expectations. Best regards, Rich Computer Geek P.S. Your dream website awaits! Schedule your free consultation and let\'s make it happen!'),(1390,349,'name_1','Lashawnda Michaels| | Michaels'),(1391,349,'email_2','lashawnda.michaels66@msn.com'),(1392,349,'text_3','Find Out How to Hold Visitors on naplesirrigation.com Longer!'),(1393,349,'textarea_4','To the naplesirrigation.com Webmaster. It\'s Lashawnda here with a short thought about your website naplesirrigation.com... I’m throughout the internet a lot and I look at many business websites. Similar to yours, a number of them have fantastic content. But all too often, they come up short when it comes to engaging and linking with someone who visits. I realize – it’s challenging. Studies show 7 out of 10 people who land on a site, abandon it in moments without leaving even a trace. You got the eyeball, but nothing else. Here’s a solution for you… Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address, and Phone Number. You’ll know right away they’re interested and you can call them directly to chat with them actually while they’re still on the web looking at your site. CLICK HERE https://turboleadgeneration.com to try out a Live Demo with Lead Capture now to see exactly how it works. It can be huge for your business – and because you’ve got that phone number, with our new SMS Text With Lead feature, you can instantly start a text (SMS) conversation – immediately… and contacting someone in that 5-minute window is 100 times more powerful than reaching out 30 minutes or more later. Moreover, with text messaging you can follow up later with new offers, content links, even just follow-up notes to continue the conversation going. Everything I’ve just described is incredibly easy to implement, cost-effective, and profitable. CLICK HERE https://turboleadgeneration.com to learn what Web Visitors Into Leads can do for your business. You can be converting up to 100X more eyeballs into leads today! Lashawnda PS: Instant Engagement Tool offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers ready to talk with you immediately… don’t keep them waiting. CLICK HERE https://turboleadgeneration.com to test Web Visitors Into Leads now. If you\'d like to unsubscribe click here https://turboleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com Merely a brief message - the identities and email employed in this communication, Lashawnda and Michaels, are stand-ins and not actually authentic information. We esteem transparency and desired to confirm you are conscious! If you wish to connect with the true one responsible for this note, do check out our site, and we’ll link you with the right individual.'),(1394,350,'name_1','Casey Collingridge de Tourcey| | Collingridge de Tourcey'),(1395,350,'email_2','casey.collingridgedetourcey@googlemail.com'),(1396,350,'text_3','Boost Your Approach with The Groundbreaking Solution!'),(1397,350,'textarea_4','Hi to the naplesirrigation.com Webmaster. My name’s Casey and I recently discovered your site - naplesirrigation.com - on the search results. Here’s what that means to me… Your SEO’s doing its job. You’re receiving eyeballs – at least mine at least. Your content’s decent, wouldn’t change a single thing BUT… Eyeballs don’t pay the bills CUSTOMERS do And research show that 7 out of 10 visitors to a site to a site like like naplesirrigation.com will drop by, have a look, and then depart without doing anything anything else. It’s like they never never were even there. You can fix this this. You can render it super-simple for them to raise their hand their hand, say, say, “okay, let’s talk” without needing them to even pull their cell phone from their pocket thanks to Web Visitors Into Leads. Web Visitors Into Leads is a software widget that sits on your website, ready and waiting and waiting to seize any visitor’s Name, Email and Phone Number. It allows you know immediately – so you can communicate with that lead immediately… without delay BEFORE they head those hills. CLICK HERE https://advanceleadgeneration.com to try a Live Demo with Web Visitors Into Leads now to see to see exactly how it works. Now it’s also true that when reaching out to hot leads, you MUST act quick – the difference between contacting someone 5 minutes versus 30 minutes later is huge – like 100 times better That’s what makes our new SMS Text With Lead feature so powerful so powerful you’ve got their phone number, so now you can start a text a text message (SMS) conversation with them… so even if they don’t don’t take you up on your offer right away, you continue to text them new offers, and new reasons to do business with you with you. This could alter everything for you and your business. CLICK HERE https://advanceleadgeneration.com to discover more about everything Web Visitors Into Leads can do and start and start turing eyeballs into money. Casey PS: Web Visitors Into Leads offers a FREE 14 days trial trial – you could be converting up to 100x more leads immediately immediately! It even even includes International Long Distance Calling Paying customers are out there waiting. Starting connecting connecting today by by CLICKING HERE https://advanceleadgeneration.com to try Web Web Visitors Into Leads now If you\'d like to unsubscribe to unsubscribe click here https://advanceleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com Only a quick note note - the names and email used here, Casey and Collingridge de Tourcey, are placeholders and not real contact information. We value transparency and wanted to make to make sure you’re you’re aware If you wish to get to get in touch with the genuine person behind this message, please please visit our website and we’ll connect you with the with the right individual individual.}'),(1398,351,'name_1','Michael Sinclair| | Sinclair'),(1399,351,'email_2','zimmer.demetrius@yahoo.com'),(1400,351,'text_3','I have a question'),(1401,351,'textarea_4','Hello, I was looking at your site and wanted to ask if you would be interested in getting two-hundred and fifty thousand (250,000) emails sent out within 48 hours for just $48 - we call it our 48-Special. I’m with HiveMailers, we use a robust email system to get clients daily leads and/or sales 24/7. WE DO ALL THE WORK: - We create the content for the email(s). - We provide the email list (contacts). - We forward leads to you daily. - We manage your email campaigns 24/7. - We make changes to the list and content until we get results. WHO THIS IS FOR: - Companies who offer products/services to businesses (B2B). - Companies who provide a product/service with wide appeal (not a small niche). - Companies who product/service can be sold across the USA and/or international. Just imagine, getting hot leads within days of getting started with us. You might be wondering if our system works, well if you are reading this message, it works. Get started now!!!!! We will send out two-hundred and fifty thousand (250,000) emails for just $48. Take action today and let’s get you some leads. This offer is good for the first 20 clients, don’t miss out. Simply book a time to talk on our calendar: https://bit.ly/hivemailer-special NOTE: To buy an email list and hire an in-house email manager to run your campaign (like our system) would cost around $3,500 a month, but with us, you pay just $48. So, you save over $3,450. Sincerely, Michael HiveMailers Calendar: https://bit.ly/hivemailer-special'),(1402,352,'name_1','Susan Karsh| | Karsh'),(1403,352,'email_2','kiley.kourtney@yahoo.com'),(1404,352,'text_3','Are you guys using AI?'),(1405,352,'textarea_4','Hello Again, I sent a message a few days ago but I’m not sure if you received it so I figured I would do a quick follow up with you again. I was on your site today and I wanted to see if you would be open to getting a FREE 7-Day trial of our AI Agents, like ChatGPT, but much better. Plus, our plans start as low as $10 per month if you decide to continue. Our AI Agents Can: • Assist your team with tasks, projects and research, which will increase productivity. • Crush to-do list by writing - ads, code, emails, content, sales copy, contracts &amp; more. • Give you time to focus on important things instead of handling mundane tasks. • Save you time, save you money and make your team much more effective. • Make sales calls, take inbound calls and answer support questions (coming soon). ... and much, MUCH more! Watch our video here and see how we can help: https://bit.ly/myaa-trial-offer Our clients are saving 20%- 30% on operational costs each month by using our AI Agents to handle hundreds of tasks. Claim your FREE Trial Of our AI Agents Now, before this offer ends. Get started here: https://bit.ly/myaa-trial-offer Best, Susan Karsh'),(1406,353,'name_1','Steffen Honeycutt| | Honeycutt'),(1407,353,'email_2','steffen.honeycutt49@gmail.com'),(1408,353,'text_3','rank in top google 10 ?'),(1409,353,'textarea_4','want to be on top 10 Google rankings without any upfront payment? I\'m John, an SEO expert. Email me at razibarkai1643@gmail.com with your site and keywords, and I\'ll assess it. I won\'t charge until you reach the top 10. Nothing to lose! Waiting for your email.'),(1410,354,'name_1','James Lehman| | Lehman'),(1411,354,'email_2','lehman.mildred@gmail.com'),(1412,354,'text_3','Hi naplesirrigation.com Webmaster!'),(1413,354,'textarea_4','Wondering why SEO matters for your business? Visibility Boost: Be found by potential customers with improved search engine rankings. Organic Traffic Surge: Increase website traffic naturally, reducing reliance on paid ads. Credibility and Trust: Establish your brand as a credible and trusted authority. Enhanced User Experience: Optimize your site for a seamless, user-friendly experience. Ready to unlock these benefits? Let\'s chat about tailoring an SEO strategy for your business. Click here for more information https://alwaysdigital.co/'),(1414,355,'name_1','Eric Jones| | Jones'),(1415,355,'email_2','ericjonesmyemail@gmail.com'),(1416,355,'text_3','Strike when the iron’s hot'),(1417,355,'textarea_4','Hi naplesirrigation.com Administrator! I just found your site, quick question… My name’s Eric, I found naplesirrigation.com after doing a quick search – you showed up near the top of the rankings, so whatever you’re doing for SEO, looks like it’s working well. So here’s my question – what happens AFTER someone lands on your site? Anything? Research tells us at least 70% of the people who find your site, after a quick once-over, they disappear… forever. That means that all the work and effort you put into getting them to show up, goes down the tubes. Why would you want all that good work – and the great site you’ve built – go to waste? Because the odds are they’ll just skip over calling or even grabbing their phone, leaving you high and dry. But here’s a thought… what if you could make it super-simple for someone to raise their hand, say, okay, let’s talk without requiring them to even pull their cell phone from their pocket? You can – thanks to revolutionary new software that can literally make that first call happen NOW. Web Visitors Into Leads is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number. It lets you know IMMEDIATELY – so that you can talk to that lead while they’re still there at your site. You know, strike when the iron’s hot! CLICK HERE https://rushleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. When targeting leads, you HAVE to act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better! That’s why you should check out our new SMS Text With Lead feature as well… once you’ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. Imagine how powerful this could be – even if they don’t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility. Just this alone could be a game changer to make your website even more effective. Strike when the iron’s hot! CLICK HERE https://rushleadgeneration.com to learn more about everything Web Visitors Into Leads can do for your business – you’ll be amazed. Thanks and keep up the great work! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! It even includes International Long Distance Calling. Stop wasting money chasing eyeballs that don’t turn into paying customers. CLICK HERE https://rushleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here https://rushleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(1418,356,'name_1','Jimmy Obrien| | Obrien'),(1419,356,'email_2','obrien.mervin@msn.com'),(1420,356,'text_3','Hello naplesirrigation.com Owner!'),(1421,356,'textarea_4','Is your website making the right first impression? In today\'s digital age, a well-designed website is essential for success. At https://wpexpertspro.co/website/ , we specialize in crafting custom, user-friendly websites that captivate your audience. Here\'s why you should choose us: Tailored Designs: Unique to your brand and goals. User-Centric: Ensuring an enjoyable experience for your visitors. Mobile Optimization: Seamless performance on all devices. SEO-Friendly: Enhancing visibility and rankings. Timely Delivery: Quality without compromise, on schedule. Ready to elevate your online presence? Contact us at https://wpexpertspro.co/website/ to discuss your requirements. Best regards, Sam'),(1422,357,'name_1','Romaine Gibbs| | Gibbs'),(1423,357,'email_2','gibbs.romaine23@outlook.com'),(1424,357,'text_3','Change Your SEO with The Innovative Solution!'),(1425,357,'textarea_4','Dear naplesirrigation.com Webmaster. This is Romaine and I discovered naplesirrigation.com a few minutes ago. Appears great… but now what? By that I mean, when someone such as me finds your website – either through Browsing or just bouncing around – what happens next? Do you get numerous of leads from your site, or at least enough to make you happy? Honestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site’s visitors leave and are gone forever after just a moment. Here’s an idea… How about making it really STRAIGHTFORWARD for every visitor who arrives to get a personal phone call from they hit your site… You can – Web Visitors Into Leads is a software widget that’s works on your site, set to capture any visitor’s Name, Email address and Phone Number. It alerts you the moment they let you know they’re interested – so that you can speak to that lead while they’re actually looking over your site. CLICK HERE https://turboleadgeneration.com to try out a Live Demo with Web Conversion now to see precisely how it works. You’ll be surprised - the difference between contacting someone within 5 minutes versus a half-hour or more later could enhance your results 100-fold. It gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation. That way, even if you don’t close a deal instantly, you can follow-up with text messages for new offers, content links, even just how you doing? notes to establish a relationship. Quite sweet – AND effective. CLICK HERE https://turboleadgeneration.com to learn what Web Visitors Into Leads can do for your business. You could be converting up to 100X more leads today! Romaine PS: Lead Conversion offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers eager with you right now… don’t keep them waiting. CLICK HERE https://turboleadgeneration.com to try Lead Conversion now. If you\'d like to unsubscribe click here https://turboleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com Just a rapid note - the names and email applied in this communication, Romaine and Gibbs, are placeholders and not actually authentic contact information. We esteem honesty and desired to make sure you’re aware! If ever you desire to get in touch with the real person behind this message, kindly visit our site, and we’ll connect you with the appropriate individual.'),(1426,358,'name_1','Theresa Smith| | Smith'),(1427,358,'email_2','pabst.louie@hotmail.com'),(1428,358,'text_3','Quick question'),(1429,358,'textarea_4','Hello again, I sent a message a few days ago but I’m not sure if you received it so I figured I would do a quick follow up. I am Teresa with Elebands, we make ultra-thin, fashionable, all day wearable body weight bands that you put on your wrist, ankle &amp; waist all day to burn up to 1,500 calories, and the best part is, we have bands for sports, casual and formal, so you can wear them with any outfit and look fashionable. The problem that most people face, is a tug of war between working out or putting more time in at work, and the worst thing is, most people choose work, and that is why the mortality rate today is so high for executives and the working class. That is why we are so excited to solve this problem with our ultra-thin, fashionable, all day wearable body weight bands that allow you to lose weight and get fit no matter where you are and no matter what you are doing. Benefits You’ll Get Instantly:  You’ll burn up to 1,500 calories a day as your body gets more toned.  You’ll start losing weight the natural way without having to workout.  You’ll start building more muscles and strength as you just go about your day. Imagine getting the body you always wanted, without having to workout at a gym or having to go on a stressful diet. Well now you can, with Elebands. Many of our clients are losing 2-3 pounds a week and getting tremendous health benefits. Use this coupon code to get 20% off: SAVE-20%-TODAY Visit our site now and get the body you always wanted: https://bit.ly/elebands Theresa Smith Brand Ambassador Elebands USA GET STARTED NOW: https://bit.ly/elebands'),(1430,359,'name_1','Hallie Reilly| | Reilly'),(1431,359,'email_2','reilly.hallie@gmail.com'),(1432,359,'text_3','Boost Your Strategy with The Newest Tool!'),(1433,359,'textarea_4','Dear to the naplesirrigation.com Administrator, My name’s Hallie and I just recently came across your website - naplesirrigation.com - through the search results. Here’s what that means to me… Your SEO’s operating. You’re attracting eyeballs – mine at least at least. Your content’s pretty good, would not change a thing BUT… Eyeballs don’t pay the bills CUSTOMERS do. And studies show show that 7 out of 10 people to a site like like naplesirrigation.com will drop by, look around, and then head for the hills without doing anything else. It’s like they never never were even there. You can resolve this. You can render it super-simple for them to raise their hand say, “okay, let’s talk” without requiring them them to even pull their cell their cell phone from their pocket thanks to Web Visitors Into Leads. Web Visitors Into Leads is a software that sits on your on your webpage, ready and waiting and waiting to capture any visitor’s Name, Email address and Phone Number. It allows you know immediately – so you can communicate with that lead immediately… without delay BEFORE they head those hills. CLICK HERE https://advanceleadgeneration.com to try out a a Live Demo with Web Visitors Into Leads now to see exactly how how it works Now it’s also true that when reaching out to hot leads, you MUST act fast – – the difference between between contacting someone within versus 30 minutes later is huge – like 100 times better That’s what makes our new SMS Text With Lead feature so powerful so powerful you’ve got their phone number, so now you can begin a text message (SMS) conversation with them with them… so even if they don’t take you up on your offer right away, you continue to text them new offers, and new reasons to do business with you with you. This could alter everything for you and your business CLICK HERE https://advanceleadgeneration.com to learn more about everything Web Visitors Into Leads can do and start turing eyeballs into money. Hallie PS: Web Visitors Into Leads offers a FREE 14 days trial – you could be converting up to up to 100x more leads immediately! It even even includes International Long Distance Calling Paying customers are out there waiting Starting connecting today by CLICKING HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now. If you’d like like to unsubscribe to unsubscribe click here https://advanceleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com Just a quick note note - the names and email and email used here, Hallie and Reilly, are placeholders and not real contact contact information. We value transparency transparency and wanted to make sure you’re aware If you wish to get in touch with the real person behind this message please visit our website, and and we’ll connect you with the right individual.}'),(1434,360,'name_1','Antwan Stroh| | Stroh'),(1435,360,'email_2','stroh.antwan@gmail.com'),(1436,360,'text_3','To the naplesirrigation.com Owner.'),(1437,360,'textarea_4','Do you do contact form blasts? I have a list of over 30 million website contact forms for sale, all fully tested with gsa and confirmed working. Don\'t do any blasts? Why not? I can either provide the service for you or show you how to do it and where to buy the best software for doing this. Shoot me an email or Skype me at my contact info below. P. Stewart Skype: live:.cid.e169e59bb6e6d159 Email: ps20032@gomail2.xyz'),(1438,361,'name_1','Libby Evans| | Evans'),(1439,361,'email_2','libbyevans461@gmail.com'),(1440,361,'text_3','Accelerate Your Instagram Growth: Gain 300-1000 New Followers Monthly'),(1441,361,'textarea_4','Hi there, We run an Instagram growth service, which increases your number of followers both safely and practically. - We guarantee to gain you 300-1000+ followers per month. - People follow you because they are interested in you, increasing likes, comments and interaction. - All actions are made manually by our team. We do not use any \'bots\'. The price is just $60 (USD) per month, and we can start immediately. If you have any questions, let me know, and we can discuss further. Kind Regards, Libby'),(1442,362,'name_1','Eric Jones| | Jones'),(1443,362,'email_2','ericjonesmyemail@gmail.com'),(1444,362,'text_3','Your site – more leads?'),(1445,362,'textarea_4','Hello naplesirrigation.com Administrator! this is Eric and I ran across naplesirrigation.com a few minutes ago. Looks great… but now what? By that I mean, when someone like me finds your website – either through Search or just bouncing around – what happens next? Do you get a lot of leads from your site, or at least enough to make you happy? Honestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Here’s an idea… How about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site… You can – Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site. CLICK HERE https://blazeleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. You’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold. It gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation. That way, even if you don’t close a deal right away, you can follow up with text messages for new offers, content links, even just how you doing? notes to build a relationship. Pretty sweet – AND effective. CLICK HERE https://blazeleadgeneration.com to discover what Web Visitors Into Leads can do for your business. You could be converting up to 100X more leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://blazeleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here https://blazeleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(1446,363,'name_1','Eric Zuniga| | Zuniga'),(1447,363,'email_2','zuniga.eric@yahoo.com'),(1448,363,'text_3','Amplify Your Conversions with Our Latest Tool!'),(1449,363,'textarea_4','To the naplesirrigation.com Owner! This is Eric and I just come across your site at naplesirrigation.com... I located it after a brief look, so your SEO’s performing well… The content looks quite good… However, one thing’s absent though… A QUICK, SIMPLE way to connect with you IMMEDIATELY. As studies show reveal that a visitor like me will only linger a short time – 7 out of 10 leave almost instantly, Click Surf Browse… then gone. I possess the answer: Web Visitors Into Leads is a software that’s functions on your website, prepared to capture any visitor Name, Email address, and Phone Number. You will know instantly they’re intrigued, and you can call them them straight to CHAT with them - actually as they’re still on the web browsing your website. CLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see precisely how it operates and even try… it can be huge for your business. Additionally, now that you’ve got the phone number, with our new SMS Text With Lead feature, you can immediately begin a text (SMS) conversation right away… which so effective, because connecting with someone within the first 5 minutes is 100 times more efficient than waiting more later. The new texting function lets you follow up regularly with content even just follow-up notes to forge a relation. Every single thing I’ve outlined is incredibly easy to implement,, affordable, and profitable. CLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your company, potentially up to 100X more visitors into leads right now! Eric PS: Web Visitors Into Leads gives a FREE 14 days trial – and it features International Long Distance Calling. You have customers eager to speak with you at this moment… don’t keep them waiting. CLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads today. In case you prefer to unsubscribe click here https://advanceleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com Merely a fast note - the names and email used here, Eric and Zuniga, are not real and not actual contact data. We appreciate transparency and want to make sure you’re aware! If you desire to get in touch with the real person behind this message, please visit our website, and we’ll link you with the appropriate individual.}'),(1450,364,'name_1','Brian Braverman| | Braverman'),(1451,364,'email_2','wojcik.charolette@gmail.com'),(1452,364,'text_3','Eliminate All Credit Card Processing Fees with Defyne Payments'),(1453,364,'textarea_4','Hi, I recently visited your website and couldn\'t help but notice the potential for you to save big on credit card processing fees. My name is Brian Braverman, and I represent Defyne Payments, a trusted provider of cash discount merchant services. Here\'s what you need to know: - Save Big: Our cash discount program eliminates ALL credit card processing fees, saving you money and increasing your profit margins. - Encourage Cash Payments: By offering cash discounts, you incentivize customers to pay in cash, resulting in faster access to funds and reducing reliance on card payments. - Trust in Our Expertise: With our certifications and experience, we\'re a reputable provider who understands the unique needs of small business owners like you. - No set up fees, No contracts, No equipment costs, Never any cost to you. Ready to take control of your credit card processing fees? Visit https://bit.ly/defynecashdiscount to learn more or call 888-883-5287 now. Act now and start saving today! Best regards, Brian Braverman Defyne Payments P.S. Don\'t miss out on this opportunity to save big on credit card processing fees. Visit https://bit.ly/defynecashdiscount to learn more about our cash discount program. Let\'s start saving you money today! P.P.S. Still unsure? Ask yourself how much you\'re currently spending on credit card processing fees. Imagine how much money you could save every month by switching to Defyne Payments. What are you waiting for?'),(1454,365,'name_1','Levi Butler| | Butler'),(1455,365,'email_2','butler.levi@gmail.com'),(1456,365,'text_3','Find Out How to Keep Visitors on naplesirrigation.com Longer!'),(1457,365,'textarea_4','To the naplesirrigation.com Admin. This is Levi and I ran across naplesirrigation.com a moment ago. Looks great… but now what? By that I mean, when someone such as me finds your website – either through Browsing or just bouncing around – what happens next? Do you get a lot of leads from your site, or at least enough to make you satisfied? Honestly, most business websites fall a bit short when it comes to generating paying customers. Studies indicate that 70% of a site’s visitors leave and are gone forever after just a moment. Here’s an idea… How about making it really SIMPLE for every visitor who comes to get a personal phone call from they hit your site… You can – Web Conversion is a software widget that’s operates on your site, set to capture any visitor’s Name, Email address and Phone Number. It alerts you the moment they inform you they’re interested – so that you can chat to that lead while they’re actually looking over your site. CLICK HERE https://turboleadgeneration.com to experience a Live Demo with Web Visitors Into Leads now to see precisely how it works. You’ll be astonished - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold. It gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation. That way, even if you don’t close a deal right away, you can continue with text messages for new offers, content links, even just how you doing? notes to develop a relationship. Very sweet – AND effective. CLICK HERE https://turboleadgeneration.com to find out what Web Conversion can do for your business. You could be converting up to 100X more leads today! Levi PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting with you right now… don’t keep them waiting. CLICK HERE https://turboleadgeneration.com to try Web Conversion now. If you\'d like to unsubscribe click here https://turboleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com Only a quick message - the identities and email address used here, Levi and Butler, are placeholders and not genuine contact details. We value honesty and aimed to ensure you’re aware of this! In case you desire to make contact with the real individual responsible for this communication, kindly check out our site, and we’ll link you with the right entity.'),(1458,366,'name_1','Boyce Richards| | Richards'),(1459,366,'email_2','boyce.richards@gmail.com'),(1460,366,'text_3','Raise Your Online Appearance with Successful Strategies!'),(1461,366,'textarea_4','To the naplesirrigation.com Manager, I am Boyce and I just discovered your web site - naplesirrigation.com - on the search results Here’s what that implies to me… Your SEO’s operating. You’re getting eyeballs – mine at least at least. Your content’s not bad, wouldn’t change a single thing BUT… Eyeballs do not pay the bills CUSTOMERS do And studies show that 7 out of 10 visitors to a site to a site like like naplesirrigation.com will visit, look around, and then leave without doing anything else. It’s like they never were even there. You can fix this. You can make it it super-simple for them to raise to raise their hand their hand say, “okay, let’s talk” without requiring them them to even pull their cell their cell phone from their pocket thanks to Web Visitors Into Leads. Web Visitors Into Leads is a tool that sits on your on your webpage, ready and waiting to grab any visitor Name, Email address and Phone Number. It you know immediately – so you can speak to that lead immediately… without delay… BEFORE they head those hills. CLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see precisely how it works. Now it’s also true that when reaching out to hot leads, you MUST act fast – – the difference between contacting someone within 5 minutes versus 30 minutes later is huge is huge – like 100 times better. That’s what makes our new SMS Text With Lead feature so powerful you’ve got their phone number, so now you can start a text message (SMS) conversation with them… so even if they don’t take you up you up on your offer right away right away, you continue to text to text them new content, and new reasons to do to do business with you. This could change everything everything for you and your business. CLICK HERE https://advanceleadgeneration.com to learn more about everything Web Visitors Into Leads can do and start turing eyeballs into money Boyce PS: Web Visitors Into Leads offers a FREE 14 days trial – you could could be converting up to 100x more leads immediately! It even even includes International Long Distance Calling. Paying customers are out there waiting. Starting connecting today by CLICKING HERE https://advanceleadgeneration.com to try Web Web Visitors Into Leads now. If you\'d like to unsubscribe to unsubscribe click here https://advanceleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com Just a quick a brief note - the names and email used here, Boyce and Richards, are placeholders and not and not real contact contact information. We cherish transparency and wanted to make sure you’re you’re aware If you wish to get to get in touch with the real person person behind this message this message please visit our website, and and we’ll connect you with the right individual.}'),(1462,367,'name_1','Uta Creer| | Creer'),(1463,367,'email_2','uta.creer@hotmail.com'),(1464,367,'text_3','Dear naplesirrigation.com Owner.'),(1465,367,'textarea_4','If your company uses promotional products, I have awesome products that your marketing team should know about. Shoot me an email or Skype me at my contact info below. Member PPAI – Promotional Products Association International Stu.Feldman Email: sales@promoblvd.com text 661-702-9030 Skype: live:stu_816'),(1466,368,'name_1','Jim Steiner| | Steiner'),(1467,368,'email_2','steiner.joanna97@gmail.com'),(1468,368,'text_3','Hi naplesirrigation.com Administrator!'),(1469,368,'textarea_4','SEO ensures your website stands out when people search for products or services. Google prioritizes relevance and reliability to decide which sites appear on the first pages, underscoring the need for effective website presentation. SEO Benefits in Brief: 1. Boosts Visibility and Traffic: 2. Establishes Trust: 3. Yields High ROI: 4. Enhances User Experience: Google announced prioritizing pages based on user experience in their algorithm. In essence, SEO is your key to standing out, building trust, and ensuring a high return on investment. Contact us at https://digitalpromax.co/ Also Need expert hands on your WordPress projects? We\'ve got you covered. Let\'s discuss how our WordPress developers can boost your web endeavors. Click here for more details: https://outsource-bpo.com/website/'),(1470,369,'name_1','Aaron Roseby| | Roseby'),(1471,369,'email_2','roseby.allen@gmail.com'),(1472,369,'text_3','Unlock the Power of Data: Outsmart Your Competitors!'),(1473,369,'textarea_4',''),(1474,370,'name_1','James Culpin| | Culpin'),(1475,370,'email_2','brendan.culpin31@outlook.com'),(1476,370,'text_3','Hi naplesirrigation.com Administrator.'),(1477,370,'textarea_4','Advantages of hiring a Developer: Specialized Expertise Tailored Customization and Control Time and Cost Efficiency Custom Plugin Development SEO Optimization Ongoing Support and Maintenance Seamless Integration and Migration Scalability for Business Growth Hire a web developer now from us. Contact us at https://wpexpertspro.co/website/'),(1478,371,'name_1','Eric Jones| | Jones'),(1479,371,'email_2','ericjonesmyemail@gmail.com'),(1480,371,'text_3','Who needs eyeballs, you need BUSINESS'),(1481,371,'textarea_4','Hi naplesirrigation.com Owner. My name’s Eric and I just came across your website - naplesirrigation.com - in the search results. Here’s what that means to me… Your SEO’s working. You’re getting eyeballs – mine at least. Your content’s pretty good, wouldn’t change a thing. BUT… Eyeballs don’t pay the bills. CUSTOMERS do. And studies show that 7 out of 10 visitors to a site like naplesirrigation.com will drop by, take a gander, and then head for the hills without doing anything else. It’s like they never were even there. You can fix this. You can make it super-simple for them to raise their hand, say, okay, let’s talk without requiring them to even pull their cell phone from their pocket… thanks to Web Visitors Into Leads. Web Visitors Into Leads is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number. It lets you know immediately – so you can talk to that lead immediately… without delay… BEFORE they head for those hills. CLICK HERE https://rushleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. Now it’s also true that when reaching out to hot leads, you MUST act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better! That’s what makes our new SMS Text With Lead feature so powerful… you’ve got their phone number, so now you can start a text message (SMS) conversation with them… so even if they don’t take you up on your offer right away, you continue to text them new offers, new content, and new reasons to do business with you. This could change everything for you and your business. CLICK HERE https://rushleadgeneration.com to learn more about everything Web Visitors Into Leads can do and start turing eyeballs into money. Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! It even includes International Long Distance Calling. Paying customers are out there waiting. Starting connecting today by CLICKING HERE https://rushleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click https://rushleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(1482,372,'name_1','Addie Casteel| | Casteel'),(1483,372,'email_2','casteel.addie@msn.com'),(1484,372,'text_3','Dear naplesirrigation.com Webmaster!'),(1485,372,'textarea_4','With keyword targeted PPV ads I can get you qualified website visitors for less than a penny per click. This method works for both local and online businesses. Very easy to get started. Just sign up, give me your website and I\'ll provide the traffic. For details, shoot me an email or Skype me at my contact info below. P. Stewart Skype: live:.cid.ad0ee8f191cd36b4 Email: ps59423@gomail2.xyz'),(1486,373,'name_1','Libby Evans| | Evans'),(1487,373,'email_2','libbyevans461@gmail.com'),(1488,373,'text_3','Instagram Promotion: Grow your followers by 300-1000 each month'),(1489,373,'textarea_4','Hi there, We run an Instagram growth service, which increases your number of followers both safely and practically. - Guaranteed: We guarantee to gain you 300-1000+ followers per month. - Real, human followers: People follow you because they are interested in your business or niche. - Safe: All actions are made manually. We do not use any bots. The price is just $70 (USD) per month, and we can start immediately. If you are interested, and have any questions, reply back and we can discuss further. Kind Regards, Libby'),(1490,374,'name_1','Danielle Simpson| | Simpson'),(1491,374,'email_2','simpsondanielle800@gmail.com'),(1492,374,'text_3','Explainer Video?'),(1493,374,'textarea_4','Hi, We\'d like to introduce to you our explainer video service, which we feel can benefit your site naplesirrigation.com. Check out some of our existing videos here: https://www.youtube.com/watch?v=bWz-ELfJVEI https://www.youtube.com/watch?v=Y46aNG-Y3rM https://www.youtube.com/watch?v=hJCFX1AjHKk All of our videos are in a similar animated format as the above examples, and we have voice over artists with US/UK/Australian accents. We can also produce voice overs in languages other than English. They can show a solution to a problem or simply promote one of your products or services. They are concise, can be uploaded to video sites such as YouTube, and can be embedded into your website or featured on landing pages. Our prices are as follows depending on video length: Up to 1 minute = $259 1-2 minutes = $379 2-3 minutes = $489 *All prices above are in USD and include a full script, voice-over and video. If this is something you would like to discuss further, don\'t hesitate to reply. Kind Regards, Danielle'),(1494,375,'name_1','Michael Sinclair| | Sinclair'),(1495,375,'email_2','foelsche.caleb@gmail.com'),(1496,375,'text_3','I have a question'),(1497,375,'textarea_4','Hello, Would you be open to the opportunity to reach out to a staggering 1.25 million potential clients on a weekly basis through our highly effective email marketing campaign? And the best part? It\'s available to you at an incredibly affordable rate of just $240 per week! Plus, as an added bonus, we provide the B2B prospect list so you can effortlessly expand your reach weekly and generate consistent leads and sales. I’m with HiveMailers, we use a robust email system to get clients daily leads and/or sales 24/7. WE DO ALL THE WORK: - We create the content for the email(s). - We provide the email list (contacts). - We forward leads to you daily. - We manage your email campaigns 24/7. WHO THIS IS FOR: - Companies who sell to businesses (B2B). - Companies who provide a product/service with wide appeal (not a small niche). - Companies who product/service can be sold across the USA and/or international. Just imagine, getting hot leads within days of getting started with us. You might be wondering if our system works, well if you are reading this message, it works. Get started now!!! For just $240 a week, we’ll send 1.25 million emails weekly. Book a 10 min call with us: https://bit.ly/hivemailer-special-240 NOTE: To buy an email list and hire an email manager to run your campaign (like our system) would cost around $3,500 a month, but with us, you pay just $240 a week. So, you save over $2,000 a month. Sincerely, Michael P.S. This offer is good for the first 20 clients, don’t miss out. Book appointment now: https://bit.ly/hivemailer-special-240'),(1498,376,'name_1','Raymon Lyttle| | Lyttle'),(1499,376,'email_2','lyttle.raymon59@yahoo.com'),(1500,376,'text_3','To the naplesirrigation.com Admin.'),(1501,376,'textarea_4','I now offer contact form blasting service. With my DFY service you can either do a targeted blast to only websites that match your criteria or bulk blast large volumes of sites worldwide. Prices start at just $50 to reach 500,000 bulk sites. Contact me at my email or skype below for details. P. Stewart Skype: live:.cid.e169e59bb6e6d159 Email: ps2871@gomail2.xyz'),(1502,377,'name_1','Phillip Loving| | Loving'),(1503,377,'email_2','loving.phillip62@gmail.com'),(1504,377,'text_3','Supercharge Your naplesirrigation.com with Revolutionary SEO!'),(1505,377,'textarea_4','Dear naplesirrigation.com Owner. I\'m Phillip and I’m assuming you’d like your website naplesirrigation.com to generate additional leads. This is how: Web Visitors Into Leads is a software tool that’s operates on your webpage, ready to seize any viewer’s Name, Email address, and Phone Number. It alerts you as soon as they say they’re interested – so that you can converse with that lead while they’re still present at naplesirrigation.com. Web Visitors Into Leads – CLICK HERE https://turboleadgeneration.com for a live-action demo right now. And now that you’ve got their phone number, our new SMS Text With Lead feature permits you to initiate a text (SMS) discussion – respond to questions, provide more info, and close a deal that way. If they don’t agree on your deal then, just follow up with text messages for new offers, content links, even just how you doing? notes to build a relationship. CLICK HERE https://turboleadgeneration.com to uncover what Visitor to Lead Widget can do for your company. The variance between reaching out to someone within 5 minutes compared to a half-hour means you can be changing up to 100X more leads today! Test Visitor to Lead Widget and secure more leads today. Phillip PS: The studies show 7 out of 10 visitors don’t linger – you can’t allow to lose them! Visitor to Lead Widget offers a FREE 14 days trial – and it also includes International Long Distance Calling. You have clients waiting to talk with you now… do not keep them waiting. CLICK HERE https://turboleadgeneration.com to use Web Visitors Into Leads now. If you\'d prefer to unsubscribe click here https://turboleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com Merely a rapid message - the monikers and email employed in this message, Phillip and Loving, are placeholders and not really actual contact details. We value openness and wanted to confirm you are informed! In case you aspire to get in touch with the real entity responsible for this communication, please visit our website, and we’ll link you with the correct entity.'),(1506,378,'name_1','Grant Lira| | Lira'),(1507,378,'email_2','growthpartners13@gmail.com'),(1508,378,'text_3','Thought Leadership Podcast Invite'),(1509,378,'textarea_4','I am working with a podcast host who is looking to interview thought leaders and your company stood out to me as I was doing research on LinkedIn. If you’re interested, I’d also like to repurpose the content from your podcast to provide you and your business, online article features, and video content for social media. Placing you on this podcast and others does require an expense, but the online media features and the repurposed video content we provide are completely on us because this is our first time working together :). We are doing this for the next 4 people who reply back to us who qualify because it takes up a good amount of our team\'s time. The one thing I ask is that you tell me if your business is NOT doing 7+ figures. I reached out to you because I think you have a 7+ figure business. Most of the hosts that we have connections with are looking for 7+ figure business owners to interview. I want to make sure we don’t lie to them which is why I ask. So, if you qualify, and want to be booked on a podcast you can chat with our Co-Founder here: https://bit.ly/empathyfirm-podcast Best, Grant PS - I won’t see your response on here so if you have a question, please book a call (: N6565 Shorewood Hills Rd. Lake Mills WI, 53551 Email unsubnow1@gmail.com with your website to “UNSUB” meaning you will not hear from me again.'),(1510,379,'name_1','Susan Karsh| | Karsh'),(1511,379,'email_2','bulcock.garnet@gmail.com'),(1512,379,'text_3','Have you seen this yet?'),(1513,379,'textarea_4','Hey there! I wanted to let you know about a once-in-a-lifetime chance to grab a FREE 7-Day trial of our extraordinary AI Agents. Picture ChatGPT, but on a whole new level of awesomeness! These Agents are the epitome of cutting-edge technology, and they\'re eager to show you just how game-changing they can be. Now, let me share with you the mind-blowing things our AI Agents can do: • They\'ll swoop in and assist your team with tasks, projects, and research, skyrocketing your productivity to new heights. • Prepare to have your to-do list obliterated as these remarkable Agents skillfully write ads, code, emails, content, sales copy, contracts, and so much more. • Say goodbye to mundane tasks and hello to laser-focused attention on what truly matters. Our AI Agents will free up your precious time for those important endeavors. • Not only will they save you time, but they\'ll also save you money, making your team a force to be reckoned with in no time. • Oh, did we mention that they can even make sales calls, take inbound calls, and answer support questions? That\'s right, we\'re bringing a whole new level of customer service to your doorstep (coming soon)! And that\'s just the tip of the iceberg! There\'s a treasure trove of capabilities waiting for you to explore and harness their power. Watch this mind-blowing video to learn more: https://bit.ly/myaa-trial. Our clients have been saving a whopping 20%-30% on operational costs every single month by entrusting our AI Agents with hundreds of tasks. The proof is in the pudding, my friend! So, what are you waiting for? Seize the moment and claim your FREE trial of our AI Agents now before this offer disappears into the abyss. Get started by clicking right here: https://bit.ly/myaa-trial. Your journey to unparalleled efficiency and mind-boggling results begins today! Best Regards, Susan Karsh'),(1514,380,'name_1','James Witmer| | Witmer'),(1515,380,'email_2','leon.witmer@gmail.com'),(1516,380,'text_3','Dear naplesirrigation.com Webmaster!'),(1517,380,'textarea_4','I hope this message finds you well. I wanted to highlight the key advantages of our Monthly SEO Services: Continuous Visibility: Maintain a strong presence in search results. Targeted Traffic: Attract relevant visitors through ongoing optimization. Adaptability: Stay ahead by quickly adapting to industry trends. Detailed Reporting: Receive comprehensive analytics for informed decision-making. Content Freshness: Regular updates keep your site relevant and engaging. Authority Building: Boost your website\'s credibility over time. Competitive Edge: Outperform competitors with refined strategies. Let\'s discuss how our Monthly SEO Services can specifically benefit your business. Can we schedule a brief call at your convenience? https://digitalpromax.co/lb/ If you want web development work to support your SEO or build your website from scratch, Please contact at https://speedexpert.co/wp-development/'),(1518,381,'name_1','Aaron Seeley| | Seeley'),(1519,381,'email_2','sophie.seeley26@hotmail.com'),(1520,381,'text_3','Maximize ROI: Dominate Your Local Market!'),(1521,381,'textarea_4',''),(1522,382,'name_1','Eric Jones| | Jones'),(1523,382,'email_2','ericjonesmyemail@gmail.com'),(1524,382,'text_3','There they go…'),(1525,382,'textarea_4','Hi naplesirrigation.com Admin. my name’s Eric and for just a second, imagine this… - Someone does a search and winds up at naplesirrigation.com. - They hang out for a minute to check it out. I’m interested… but… maybe… - And then they hit the back button and check out the other search results instead. - Bottom line – you got an eyeball, but nothing else to show for it. - There they go. This isn’t really your fault – it happens a LOT – studies show 7 out of 10 visitors to any site disappear without leaving a trace. But you CAN fix that. Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know right then and there – enabling you to call that lead while they’re literally looking over your site. CLICK HERE https://blazeleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. Time is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better! Plus, now that you have their phone number, with our new SMS Text With Lead feature you can automatically start a text (SMS) conversation… so even if you don’t close a deal then, you can follow up with text messages for new offers, content links, even just how you doing? notes to build a relationship. Strong stuff. CLICK HERE https://blazeleadgeneration.com to discover what Web Visitors Into Leads can do for your business. You could be converting up to 100X more leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://blazeleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here https://blazeleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(1526,383,'name_1','James Stiner| | Stiner'),(1527,383,'email_2','stiner.ngan@googlemail.com'),(1528,383,'text_3','Hi naplesirrigation.com Admin.'),(1529,383,'textarea_4','Discover our latest research findings based on continuous SEO feedback from our strategies: Visit https://alwaysdigital.co/ls/ to explore the impact of the new Semrush Backlinks on boosting the SEO trend of your website instantly. Our approach is straightforward – we create links from domains with a substantial number of ranking keywords. Forget about conventional SEO metrics and other factors touted by numerous tools. The most valuable link is one from a website with a robust trend and numerous ranking keywords. To delve into the details, visit https://alwaysdigital.co/ls/. It\'s a cost-effective solution. Give it a try soon! P.S: We are also experts in web development. Click here for more details: https://outsource-bpo.com/website/'),(1530,384,'name_1','Eric Jones| | Jones'),(1531,384,'email_2','ericjonesmyemail@gmail.com'),(1532,384,'text_3','how to turn eyeballs into phone calls'),(1533,384,'textarea_4','Dear, Eric here with a quick thought about your website naplesirrigation.com Webmaster. I’m on the internet a lot and I look at a lot of business websites. Like yours, many of them have great content. But all too often, they come up short when it comes to engaging and connecting with anyone who visits. I get it – it’s hard. Studies show 7 out of 10 people who land on a site, abandon it in moments without leaving even a trace. You got the eyeball, but nothing else. Here’s a solution for you… Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. You’ll know immediately they’re interested and you can call them directly to talk with them literally while they’re still on the web looking at your site. CLICK HERE https://rushleadgeneration.com to try out a Live Demo with Web Visitor now to see exactly how it works. It could be huge for your business – and because you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately… and contacting someone in that 5 minute window is 100 times more powerful than reaching out 30 minutes or more later. Plus, with text messaging you can follow up later with new offers, content links, even just follow up notes to keep the conversation going. Everything I’ve just described is extremely simple to implement, cost-effective, and profitable. CLICK HERE https://rushleadgeneration.com to discover what Web Visitor can do for your business. You could be converting up to 100X more eyeballs into leads today! Eric PS: Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://rushleadgeneration.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here https://rushleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(1534,385,'name_1','Dusty Babb| | Babb'),(1535,385,'email_2','cassandrabardin@zoe.zephyo.com'),(1536,385,'text_3',', regarding Best Lawn Irrigation Services-Naples Irrigation time to call!'),(1537,385,'textarea_4','Hello Business Owner, I\'m offering professional web design specifically tailored for businesses like yours. 1. **Digital Marketing**: I develop targeted strategies that resonate with your audience. 2. **SEO**: With my approach, clients have seen enhanced online visibility. 3. **Web Design**: I create user-friendly websites that turn visitors into customers. 4. **Ad Management**: My ad management has helped businesses achieve higher ROI. Interested in learning more? Let\'s schedule a brief call to discuss your goals. Looking forward to partnering with you for success. Best regards. P.S. If you wish to stop please respond to my email and request removal or \"STOP\"'),(1538,386,'name_1','Raanan Boral| | Boral'),(1539,386,'email_2','launa.mercado@googlemail.com'),(1540,386,'text_3','Experience the Magic of Christmas in the Holy Land - Book Your Virtual Tour Today!'),(1541,386,'textarea_4',''),(1542,387,'name_1','Sallie Eldershaw| | Eldershaw'),(1543,387,'email_2','info@gillysourcing.com'),(1544,387,'text_3','To the naplesirrigation.com Owner!'),(1545,387,'textarea_4','Hello, Gilly sourcing stands as an esteemed Chinese procurement firm, dedicated to facilitating connections between merchants and Chinese suppliers. Our multifaceted services encompass the secure warehousing of merchandise, astute negotiation of pricing structures, vigilant quality assurance protocols, and efficient management of shipping logistics. visit https://gillysourcing.com/'),(1546,388,'name_1','Bill| | B'),(1547,388,'email_2','bill@outsource-bookkeeper.com'),(1548,388,'text_3',''),(1549,388,'textarea_4','*$399 Business Tax Service Discover unparalleled tax solutions with our expert Tax Services! We specialize in ensuring your business thrives financially while optimizing your tax liabilities. Take advantage of our comprehensive services starting at just $399* per month. Here\'s what sets us apart: Flexible Service: Enjoy the convenience of our month-to-month commitment—no contracts or long-term obligations required. Confidentiality Guaranteed: We prioritize your privacy. Request a Non-Disclosure Agreement (NDA) for added security. Complimentary Initial Meeting: Dive into a FREE consultation with our team to discuss your unique tax needs and explore how we can maximize your savings. Instant Communication: Stay connected effortlessly. Benefit from seamless communication to address your concerns promptly. IRS Compliance: Ensure peace of mind by partnering with us to become IRS compliant, avoiding potential headaches down the road. Let our seasoned professionals streamline your tax process and set up your books for maximum savings. Don\'t miss out on potential deductions! Contact us today to schedule your complimentary consultation. We look forward to helping you navigate the path to financial success. Best regards, Learn More https://outsource-bookkeeper.com/tax-preparation/ https://outsource-bookkeeper.com/pricing/ I look forward to speaking with you. Bill bill@outsource-bookkeeper.com 877-670-3586 Irvine CA, 92602'),(1550,389,'name_1','Aaron Tylor| | Tylor'),(1551,389,'email_2','major.tylor@hotmail.com'),(1552,389,'text_3','Data That Drives Growth: Your Competitors Can\'t Keep Up!'),(1553,389,'textarea_4',''),(1554,390,'name_1','Sammy Bostock| | Bostock'),(1555,390,'email_2','bostock.kiara@gmail.com'),(1556,390,'text_3','To the naplesirrigation.com Admin!'),(1557,390,'textarea_4','I hope this message finds you well. We\'d like to highlight the advantages of outsourcing your web development to us: Specialized Expertise: Cost Efficiency: Focus on Core Functions: Flexibility and Scalability: Timely Delivery: Access to Latest Technologies: We\'d love to discuss this further. When would be a convenient time for you? Looking forward to the possibility of partnering with you for your web development needs. Click here for more details: https://outsource-bpo.com/website/ PS: If you are looking for high quality SEMRush links, we have handpicked/ selected links up for grabs at https://alwaysdigital.co/ls/'),(1558,391,'name_1','James Atwell| | Atwell'),(1559,391,'email_2','atwell.freya@gmail.com'),(1560,391,'text_3','Dear naplesirrigation.com Owner!'),(1561,391,'textarea_4','I hope this email finds you well. I wanted to take a moment to discuss how our Monthly SEO Services can significantly impact your business\'s bottom line, driving both profit and sales growth. 1. Increased Visibility, Increased Sales 2. Targeted Traffic for Conversions 3. Enhanced Conversion Rates 4. Competitive Edge in Sales 5. Measurable ROI 6. Adaptation to Market Trends We\'d be thrilled to discuss how our tailored Monthly SEO Services can specifically contribute to the profitability and sales growth of your business. When would be a convenient time for a discussion? Let\'s collaborate to unlock the full potential of your online success. Find out more at https://digitalpromax.co/'),(1562,392,'name_1','Christopher Mcclellan| | Mcclellan'),(1563,392,'email_2','ahmed.mcclellan@gmail.com'),(1564,392,'text_3','US Based SEO services'),(1565,392,'textarea_4','Hello https://naplesirrigation.com/contact-us/ team! Noticed your site and knew immediately our expert SEO and content writing at apixelofhope.com could boost your online presence. Let’s chat about elevating your brand to new heights!'),(1566,393,'name_1','Phil Stewart| | Stewart'),(1567,393,'email_2','noreplyhere@aol.com'),(1568,393,'text_3','??'),(1569,393,'textarea_4','I now offer contact form blasting service. With my DFY service you can either do a targeted blast to only websites that match your criteria or bulk blast large volumes of sites worldwide. Prices start at just $50 to reach 500,000 bulk sites. Contact me at my email or skype below for details. P. Stewart Skype: live:.cid.e169e59bb6e6d159 Email: psTq9 8dt@gomail2.xyz'),(1570,394,'name_1','Theresa Smith| | Smith'),(1571,394,'email_2','ring.tiara@hotmail.com'),(1572,394,'text_3','Quick question'),(1573,394,'textarea_4','Hello, Do you sometimes find yourself in a tug of war between work and fitness? We have the perfect solution for you - Elebands! Elebands offers ultra-thin, fashionable body weight bands that seamlessly integrate into your daily routine. Burn up to 1,500 calories a day by simply wearing our bands on your wrist, ankle, and waist. What\'s more, we have bands suitable for sports, casual, and formal occasions, ensuring you stay stylish while achieving your fitness goals. With Elebands, you no longer have to choose between work and exercise. Our bands enable you to lose weight and get fit regardless of your location or activity. Enjoy these instant benefits: 1. Burn Calories: Effortlessly burn up to 1,500 calories daily, toning your body as you go about your day. 2. Natural Weight Loss: Say goodbye to intense workouts and stressful diets. Elebands helps you lose weight naturally. 3. Build Strength: Develop lean muscles and enhance your strength as you carry out your regular activities. Imagine achieving your dream body without stepping foot in a gym or following a strict diet plan. With Elebands, it\'s possible. Many of our clients are losing 2-3 pounds per week while experiencing significant health improvements. To help you get started for the NEW YEAR, use coupon code SAVE-20%-TODAY for a 20% discount. Visit our website now at https://bit.ly/elebands and embrace the Elebands experience. Let Elebands be your partner in achieving a fit and healthy lifestyle. Start your transformation today! Warm regards, Theresa Smith Brand Ambassador Elebands USA Visit our website NOW! https://bit.ly/elebands'),(1574,395,'name_1','Natalie Spillman| | Spillman'),(1575,395,'email_2','natalie.spillman@gmail.com'),(1576,395,'text_3','Dear naplesirrigation.com Administrator.'),(1577,395,'textarea_4','With keyword targeted PPV ads I can get you qualified website visitors for less than a penny per click. This method works for both local and online businesses. Very easy to get started. Just sign up, give me your website and I\'ll provide the traffic. For details, shoot me an email or Skype me at my contact info below. P. Stewart Skype: live:.cid.ad0ee8f191cd36b4 Email: ps7812@gomail2.xyz'),(1578,396,'name_1','Eric Jones| | Jones'),(1579,396,'email_2','ericjonesmyemail@gmail.com'),(1580,396,'text_3','Your site – more leads?'),(1581,396,'textarea_4','Hello naplesirrigation.com Owner. this is Eric and I ran across naplesirrigation.com a few minutes ago. Looks great… but now what? By that I mean, when someone like me finds your website – either through Search or just bouncing around – what happens next? Do you get a lot of leads from your site, or at least enough to make you happy? Honestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Here’s an idea… How about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site… You can – Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site. CLICK HERE https://rushleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. You’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold. It gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation. That way, even if you don’t close a deal right away, you can follow up with text messages for new offers, content links, even just how you doing? notes to build a relationship. Pretty sweet – AND effective. CLICK HERE https://rushleadgeneration.com to discover what Web Visitors Into Leads can do for your business. You could be converting up to 100X more leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://rushleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here https://rushleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(1582,397,'name_1','Libby Evans| | Evans'),(1583,397,'email_2','libbyevans461@gmail.com'),(1584,397,'text_3','Instagram Promotion: 300-1000 new followers each month'),(1585,397,'textarea_4','Hi there, We run an Instagram growth service, which increases your number of followers both safely and practically. - We guarantee to gain you 300-1000+ followers per month. - People follow you because they are interested in you, increasing likes, comments and interaction. - All actions are made manually by our team. We do not use any \'bots\'. The price is just $60 (USD) per month, and we can start immediately. If you\'d like to see some of our previous work, let me know, and we can discuss it further. Kind Regards, Libby'),(1586,398,'name_1','Cortney Truax| | Truax'),(1587,398,'email_2','cortney.truax@yahoo.com'),(1588,398,'text_3','Dear naplesirrigation.com Owner.'),(1589,398,'textarea_4','I can help you promote your links and drive traffic to your website by blasting classified ads all over the internet for others to see. I can post your ad to over 2,000 high-traffic classified ad pages in the United States and Canada, 500+ blogs, and 150+ permanent links to social sites. My platform offers a manual submission service that ensures your ads are submitted to the right places. You can also track your ad’s performance and make necessary changes to improve your results. Classified ad blasting is a great way to get your message out there, reach a wider audience and improve your website\'s SEO! For details, shoot me an email or Skype me at my contact info below. P. Stewart Skype: live:.cid.ad0ee8f191cd36b4 Email: ps62701@gomail2.xyz'),(1590,399,'name_1','Christina Shackleton| | Shackleton'),(1591,399,'email_2','christinaseo76@gmail.com'),(1592,399,'text_3','Do you accept Guest Posts?'),(1593,399,'textarea_4','Hi there, We\'re writing to ask if you accept Guest Posts on naplesirrigation.com? If you do, would you be interested in adding your site to our list, which has an outreach of over 50 million potential customers each month? As we\'re doing the promotion, all you have to do is strike a deal! More information: https://furtherinfo.org/gpfeatured If you\'d like to discuss this further, just get back in touch with any questions. Kind Regards, Christina If you are not interested in SEO/guest posts/backlinks, then unsubscribe here: https://removeme.click/gp/unsubscribe.php?d=naplesirrigation.com'),(1594,400,'name_1','Eric Jones| | Jones'),(1595,400,'email_2','ericjonesmyemail@gmail.com'),(1596,400,'text_3','Why not TALK with your leads?'),(1597,400,'textarea_4','Hi My name’s Eric and I just found your site naplesirrigation.com Webmaster. It’s got a lot going for it, but here’s an idea to make it even MORE effective. Visit https://rushleadgeneration.com for a live demo now. Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site. And once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation… and if they don’t take you up on your offer then, you can follow up with text messages for new offers, content links, even just how you doing? notes to build a relationship. Visit https://rushleadgeneration.com to discover what Web Visitors Into Leads can do for your business. The difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today! Eric PS: Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Don’t keep losing them. Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. Visit https://rushleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe visit https://rushleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(1598,401,'name_1','Leslee Hawken| | Hawken'),(1599,401,'email_2','hawken.leslee@gmail.com'),(1600,401,'text_3','To the naplesirrigation.com Administrator!'),(1601,401,'textarea_4','Don\'t pay full retail price for Microsoft, McAfee, AVG, Kaspersky, AutoCAD and VMware licenses. We offer 100% genuine licences at a fraction of the retail price. Check out https://sistemasrjd.com'),(1602,402,'name_1','James Gordon| | Gordon'),(1603,402,'email_2','james.gordon@gmail.com'),(1604,402,'text_3','Launch Your \"ChatGPT-like\" AI ChatBot'),(1605,402,'textarea_4','AI is here to change the world, and people are going crazy over it So the question is, would you like a piece of that pie? BrainBox - The World’s First AI App Let You Launch Your Own “ChatGPT-like” AI Chatbot with 50 stunning AI features You can even customize this AI Chatbot with your own domain, branding and style and charge people for using it. Forget paying huge fees for Content Writers, Programmers, Designers, Translators, Video Editors, SEO Experts, Customer Support, etc BrainBox handles all of that for you 100% &gt;&gt; Click Here To See The Live Demo &amp; Get Full Access Before Price Increases Use my coupon code: bit.ly/BrainBoxExclusive To get access to BrainBox you need just 4 easy steps away Step1: Login to BrainBox Cloud-Based App ( super-easy to navigate dashboard) Step 2: Create- With Just One Click, Create Your Very Own ChatGPT-Like AI Chatbot( this takes just few minutes) Step 3: Now Launch- You’re Ready To Charge Millions Of Hungry Customers For Using Your Very Own AI Chatbot. Step 4: Start Getting Paid by your Customers and Clients BrainBox comes with over 50 AI features that which includes ; Write engaging, high quality content for videos, blogs, scripts, emails, newsletters, ebooks literally anything Turn plain text into engaging, professional videos that attract thousands of free hits of traffic Generate the best AI designs that put 99% of graphic designers to shame, in just seconds Design salespages, sales funnels, fully functional blogs Proofread your writing without paying anything Translate your writing to over 50 different languages and profit That’s just a tiny fraction of all the features that BrainBox has to offer… Using BrainBox will give you full control and cut down your expenses on hiring freelancers that give you low service . &gt;&gt; Get Unlimited Access to BrainBox AI Technology bit.ly/BrainBoxExclusive And to make this a no-brainer, the first 25 people will get full access to my 100 bonuses. PS: If you act now, you will instantly receive [bonuses] worth over $14,659.44... This bonus is designed specifically to help you get 10x the results, in half the time required &gt;&gt;Click here to secure your access to BrainBox today bit.ly/BrainBoxExclusive Sincerely, James'),(1606,403,'name_1','Sammy Colon| | Colon'),(1607,403,'email_2','colon.zita@googlemail.com'),(1608,403,'text_3','Hi naplesirrigation.com Administrator!'),(1609,403,'textarea_4','We\'re an expert link building agency that offers services to build incredible backlinks to your website. Trusted by SEO professionals Worldwide. Our affordable SEO link building packages prices for your online business. Choose the best Link building service packages that suits your website\'s needs. Click here for more options: https://alwaysdigital.co/ls/ PS: Need Wordpress website? Hire Our Wordpress Developer at https://wpexpertspro.co/website/'),(1610,404,'name_1','Phil Stewart| | Stewart'),(1611,404,'email_2','noreplyhere@aol.com'),(1612,404,'text_3','??'),(1613,404,'textarea_4','I now offer contact form blasting service. With my DFY service you can either do a targeted blast to only websites that match your criteria or bulk blast large volumes of sites worldwide. Prices start at just $50 to reach 500,000 bulk sites. Contact me at my email or skype below for details. P. Stewart Skype: live:.cid.e169e59bb6e6d159 Email: psT5j 2r4@gomail2.xyz'),(1614,405,'name_1','Michael Clouse| | Clouse'),(1615,405,'email_2','clouse.ronald@outlook.com'),(1616,405,'text_3','Hi naplesirrigation.com Admin.'),(1617,405,'textarea_4','Why choose Our ongoing monthly SEO services? SEO is a great addition to your digital marketing plan if you want to help your business reach more valuable traffic and earn new leads. By investing in monthly SEO services, you’ll continue to optimize your site and earn new traffic. At our company, we have more than 16 years of experience creating SEO plans that drive results. We have a team of 50+ experts that will bring their knowledge and expertise to your campaign. Our team will help you create an SEO plan that works for your business. If you’re looking for an SEO company that drives results, look no further than us. To date, we’ve driven over 3x in sales and over 2x leads for our clients. We focus on driving successful campaigns for our clients first. Know more about us at https://digitalpromax.co/lb/ Also if you have Web development needs, Hire our Web developer at https://outsource-bpo.com/website/'),(1618,406,'name_1','Christopher Asterino| | Asterino'),(1619,406,'email_2','manie.harold@hotmail.com'),(1620,406,'text_3','Boost Your Medical Practice\'s Cash Flow with revMD\'s Expert Billing Services'),(1621,406,'textarea_4','Hi, I\'m Christopher J. Asterino from revMD, a leading provider of medical billing and coding services. We specialize in helping physicians and healthcare systems like yours improve their cash flow and streamline their billing process. Here\'s why you should consider partnering with us: - Increase Cash Flow: Our services ensure timely and accurate billing, and we guarantee follow-up action. We make “follow up” on overdue claims a contractual obligation, not a sales-oriented promise. These results improve cash flow for your practice. With more money available, you can invest in growth, hire additional staff, or simply enjoy the peace of mind that comes with a healthier bottom line. - Save Time and Resources: Outsourcing your medical billing to revMD frees up your team\'s valuable time and resources. We handle everything, from claim edits and submissions to follow-ups and appeals. We even staff your inbound call center for patient inquiries. This allows you to focus on providing quality care to your patients. - Enhance Patient Satisfaction: With our prompt and accurate billing services, your patients will appreciate the transparency and professionalism we bring to the billing process. Our dedicated customer service team is always available to address any inquiries or concerns they may have. To get started, we\'re offering a complimentary review of your current aged accounts receivable. This will help us identify areas for improvement and demonstrate the value we can bring to your practice. Schedule a brief call with me to discuss how revMD can specifically benefit your practice. Click the link below to choose a convenient time slot: https://bit.ly/revmdsales Thank you for considering revMD as your trusted partner in medical billing. I look forward to speaking with you soon. Best Regards, Christopher J. Asterino revMD P.S. Don\'t miss out on the opportunity to improve your practice\'s financial health. Schedule a call today and let\'s explore the benefits revMD can bring to your medical billing process.'),(1622,407,'name_1','Grant Lira| | Lira'),(1623,407,'email_2','growthpartners13@gmail.com'),(1624,407,'text_3','I’d like to build your thought leadership via podcasts, content, & press'),(1625,407,'textarea_4','Hey, I’ll get right to it. I can get you on 3 podcasts/mo, and get you 15 professionally edited short form videos for social media (from the podcast interview), and then get you featured in 3 online publications/mo all done for you. We’ve helped 33 clients do just that to build their thought leadership in their specific industry which has helped them: - Generate more appointments - Close at a higher rate (Because they built authority before the sales call even started) - Charge higher prices because people view their company as unique now Interested? We can chat here: https://bit.ly/empathyfirm-30-minute-meeting Best, Grant PS - I won’t see your response on here so if you have a question, please book a call (: N6565 Shorewood Hills Rd. Lake Mills WI, 53551 Email unsubnow1@gmail.com with your website to “UNSUB” meaning you will not hear from me again.'),(1626,408,'name_1','Eric Jones| | Jones'),(1627,408,'email_2','ericjonesmyemail@gmail.com'),(1628,408,'text_3','Strike when the iron’s hot'),(1629,408,'textarea_4','Hi naplesirrigation.com Administrator. I just found your site, quick question… My name’s Eric, I found naplesirrigation.com after doing a quick search – you showed up near the top of the rankings, so whatever you’re doing for SEO, looks like it’s working well. So here’s my question – what happens AFTER someone lands on your site? Anything? Research tells us at least 70% of the people who find your site, after a quick once-over, they disappear… forever. That means that all the work and effort you put into getting them to show up, goes down the tubes. Why would you want all that good work – and the great site you’ve built – go to waste? Because the odds are they’ll just skip over calling or even grabbing their phone, leaving you high and dry. But here’s a thought… what if you could make it super-simple for someone to raise their hand, say, okay, let’s talk without requiring them to even pull their cell phone from their pocket? You can – thanks to revolutionary new software that can literally make that first call happen NOW. Web Visitors Into Leads is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number. It lets you know IMMEDIATELY – so that you can talk to that lead while they’re still there at your site. You know, strike when the iron’s hot! CLICK HERE https://blazeleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. When targeting leads, you HAVE to act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better! That’s why you should check out our new SMS Text With Lead feature as well… once you’ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. Imagine how powerful this could be – even if they don’t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility. Just this alone could be a game changer to make your website even more effective. Strike when the iron’s hot! CLICK HERE https://blazeleadgeneration.com to learn more about everything Web Visitors Into Leads can do for your business – you’ll be amazed. Thanks and keep up the great work! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! It even includes International Long Distance Calling. Stop wasting money chasing eyeballs that don’t turn into paying customers. CLICK HERE https://blazeleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here https://blazeleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(1630,409,'name_1','Tara Gardner| | Gardner'),(1631,409,'email_2','outreach@emailoutreach.pro'),(1632,409,'text_3','B2B Lead Lists & Email Delivery Solutions'),(1633,409,'textarea_4','Unlock targeted B2B Lead Data and seamless email delivery solutions with www.EmailOutreach.pro From on-demand Lead Lists to cutting-edge Email Delivery Systems, we\'ve got your outreach needs covered. Visit https://www.emailoutreach.pro to elevate your lead generation strategy today!'),(1634,410,'name_1','Jordan Peterson| | Peterson'),(1635,410,'email_2','jordan.peter@gmail.com'),(1636,410,'text_3','Interested?'),(1637,410,'textarea_4','Hello naplesirrigation.com , Create your own “ChatGPT-Like” AI Chatbot with 50+ Advanced AI Features - Zero Coding, Zero Monthly Fee! Yaay! BrainBox is Finally Live!!! You can now launch your own “ChatGPT-Like” AI Chatbot and get access to it\'s 50+ superpower Advanced Features that automates everything you could ever need for your success in the online space without running bankrupt. Henceforth, you will stop working tirelessly like a pendulum and quit spending enormously for freelancers and expensive third-party platforms for their pesky tasks. It doesn\'t matter your rank in the online space, whether you\'re a pro marketer or a beginner. Once your AI Chatbot is up and running, you are good to go! &gt;&gt;Activate your own \"ChatGPT-Like\" AI Chatbot here (Earlybirds and 11 fastest fingers only!) ===&gt;&gt;&gt; https://warriorplus.com/o2/a/hfjg7b/0 With this Unique tool in your hands, You will unlock the success-secret of the top affiliates and 500 fortune companies just by simply describing what you need either through voice commands or typing... …without experiencing a single downtime or paying outrageously monthly.. and trust me your result is ready within a twinkle of an eye! Sounds great right? &gt;&gt;&gt;Click to Effortlessly launch your own ChatGPT Like AI Chatbot and see more Amazing Benefits (Earlybirds and 11 fastest fingers!) ===&gt;&gt;&gt; https://warriorplus.com/o2/a/hfjg7b/0 No Bluffing, No Xtra Payment! This is 50X better than the popular ChatGPT. As easy as it is, You can customize your chatbot\'s appearance, voice, and personality to match your brand and your audience\'s preferences even if you don\'t have tech or design experience. And with the powerful analytics dashboard, you can track your chatbot\'s performance, monitor user feedback, and optimize your chatbot\'s features and responses over time. The sweetest of all is, It comes equipped with a built-in buyers generator that will fetch out for you thousands of hungry buyers in every corner of the universe day by day to pay for your chatbot services and ultimately bring in for you $5k-$10K per month in side-income on complete autopilot. Isn’t this mind-blowing? &gt;&gt;Go here to create your own ChatGPT-like app and charge people for it. (Earlybirds and 11 fastest fingers) ===&gt;&gt;&gt;&gt; https://warriorplus.com/o2/a/hfjg7b/0 See there’s more benefits for you with this Brand New Innovation... you just need to go in and see them all for yourself… and they will be all yours today for a very low one time fee and enjoy for your lifetime. No upgrading ​fee, No reselling fee, ​​No Upsells required! &gt;&gt;Go here to Claim your earlybird benefits and your Exclusive Launch Benefits. (Earlybirds and 11 fastest fingers) =&gt;&gt;&gt; https://warriorplus.com/o2/a/hfjg7b/0 Cheers Jordan'),(1638,411,'name_1','Sam Kinder| | Kinder'),(1639,411,'email_2','kinder.clara@gmail.com'),(1640,411,'text_3','To the naplesirrigation.com Webmaster.'),(1641,411,'textarea_4','Hello Everyone! Thank you for taking the time to read this. We\'re an online marketing agency which specializes in Search Engine Optimization. We\'ve been in the SEO business providing high quality SEO Services building successful SEO campaigns for over 15 years and have completed over 31,000 orders while serving 1000s of highly satisfied clients. If you have any questions please contact us and we\'ll get back to you ASAP. Contact us at https://digitalpromax.co/lb/'),(1642,412,'name_1','Eric Jones| | Jones'),(1643,412,'email_2','ericjonesmyemail@gmail.com'),(1644,412,'text_3','Your site – more leads?'),(1645,412,'textarea_4','Dear naplesirrigation.com Webmaster! this is Eric and I ran across naplesirrigation.com a few minutes ago. Looks great… but now what? By that I mean, when someone like me finds your website – either through Search or just bouncing around – what happens next? Do you get a lot of leads from your site, or at least enough to make you happy? Honestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Here’s an idea… How about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site… You can – Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site. CLICK HERE https://rushleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. You’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold. It gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation. That way, even if you don’t close a deal right away, you can follow up with text messages for new offers, content links, even just how you doing? notes to build a relationship. Pretty sweet – AND effective. CLICK HERE https://rushleadgeneration.com to discover what Web Visitors Into Leads can do for your business. You could be converting up to 100X more leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://rushleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here https://rushleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(1646,413,'name_1','John Voigt| | Voigt'),(1647,413,'email_2','marquis.voigt@yahoo.com'),(1648,413,'text_3','Affordable Web Development'),(1649,413,'textarea_4','7 page static website/ Contact form/ Slider - starts from $80 Unlimited categories/ products/ Slider/ Contact form/ Payment gateway integration/ Ecommerce website - stats from $300 All websites are mobile responsive and SEO friendly. Professional and afforable website design and development Hire our developers at https://speedexpert.co/wp-development/'),(1650,414,'name_1','Georgina Haynes| | Haynes'),(1651,414,'email_2','georginahaynes620@gmail.com'),(1652,414,'text_3','Video Promotion'),(1653,414,'textarea_4','Hi, We\'d like to introduce to you our explainer video service, which we feel can benefit your site naplesirrigation.com. Check out some of our existing videos here: https://www.youtube.com/watch?v=bWz-ELfJVEI https://www.youtube.com/watch?v=Y46aNG-Y3rM https://www.youtube.com/watch?v=hJCFX1AjHKk Our prices start from as little as $195 and include a professional script and voice-over. If this is something you would like to discuss further, don\'t hesitate to reply. Kind Regards, Georgina If you are not interested, unsubscribe here: https://removeme.click/unsubscribe.php?d=naplesirrigation.com'),(1654,415,'name_1','Tyler Spina| | Spina'),(1655,415,'email_2','tyler.spina@gmail.com'),(1656,415,'text_3','Hi naplesirrigation.com Owner!'),(1657,415,'textarea_4','Who is 4U2 Inc.? Visit our website at 4u2inc.com . Suppliers: (Manufacturers, Wholesalers, Re Sellers, etc.) Increase your Gross Sales BIG TIME!! Purchasers/Buyers: Save Time &amp; Money Account Executive/Sales People (Full/Part Time): Recruit Suppliers, Purchasers/Buyers, other Account Executives/ Sales people, Potential Team Leaders and work from home. Earn up to $60,000 +/- USD . Questions? Visit our website at 4u2inc.com or contact us via email (4u2inc123@gmail.com).'),(1658,416,'name_1','Phil Stewart| | Stewart'),(1659,416,'email_2','noreplyhere@aol.com'),(1660,416,'text_3','??'),(1661,416,'textarea_4','You\'re reading this message and I can make millions of people read your message the exact same way!. You can reach a million sites for just under $100 Hit me up via email or skype for details. P. Stewart Skype: live:.cid.e169e59bb6e6d159 Email: ps9034@gomail2.xyz'),(1662,417,'name_1','Jennifer Cooper| | Cooper'),(1663,417,'email_2','eleanor.carpenter@outlook.com'),(1664,417,'text_3','Experience the Power of Myaa\'s Remote Live Agents Trained in AI'),(1665,417,'textarea_4','Hey there, Was looking at your site today and I thought this would probably interest you. Are you tired of managing staff who lack the expertise to handle complex tasks? Feeling overwhelmed by the thought of diving into AI? Look no further! We have the game-changing solution you\'ve been waiting for: Myaa\'s Remote Live Agents, expertly trained in AI. Imagine having the best of both worlds - a remote live personal assistant who is also an expert at leveraging the power of thousands of Chat AI Agents. With Myaa, that\'s exactly what you get. Our Live Agents are trained to perfection in writing excellent prompts and harnessing the capabilities of our AI Agents. But here\'s the exciting part: we are offering a one-week free trial for you to experience the transformative capabilities of our agents firsthand. No obligations, no strings attached. Just an opportunity to see how our Remote Live Agents, the experts in leveraging AI technology, can revolutionize the way you manage your business. But this offer is only good this week, for the first 20 clients, so you need to claim your Remote Live Agent Now, before you miss out. Schedule a call with us by clicking the link below and secure your one-week free trial: https://bit.ly/myaa-live-agent With our Remote Live Agents equipped with AI, you can: • Delegate a variety of tasks and projects, boosting your productivity. • Ensure daily progress by leveraging internal and external resources through our agents. • Reclaim your time to focus on business growth rather than administrative tasks. And that\'s not all! This FREE Remote Live Agent offer is valued at over $400, and you are getting it for ABSOLUTELY FREE. Don\'t miss out on this incredible opportunity! Click the link below to schedule a call and claim your one-week free trial: https://bit.ly/myaa-live-agent If you have any questions or need further information, please don\'t hesitate to reach out. We are here to assist you every step of the way. Cheers, Jennifer Cooper P.S. Act fast! This exclusive offer is only available for a limited time and to a select few. Don\'t miss your chance to experience the power of our Remote Live Agents trained in AI. Schedule your call today!'),(1666,418,'name_1','Eric Jones| | Jones'),(1667,418,'email_2','ericjonesmyemail@gmail.com'),(1668,418,'text_3','Your site – more leads?'),(1669,418,'textarea_4','Hello naplesirrigation.com Administrator! this is Eric and I ran across naplesirrigation.com a few minutes ago. Looks great… but now what? By that I mean, when someone like me finds your website – either through Search or just bouncing around – what happens next? Do you get a lot of leads from your site, or at least enough to make you happy? Honestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Here’s an idea… How about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site… You can – Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site. CLICK HERE https://rushleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. You’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold. It gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation. That way, even if you don’t close a deal right away, you can follow up with text messages for new offers, content links, even just how you doing? notes to build a relationship. Pretty sweet – AND effective. CLICK HERE https://rushleadgeneration.com to discover what Web Visitors Into Leads can do for your business. You could be converting up to 100X more leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://rushleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here https://rushleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(1670,419,'name_1','Dotty McAnulty| | McAnulty'),(1671,419,'email_2','dotty.mcanulty@gmail.com'),(1672,419,'text_3','Hello naplesirrigation.com Administrator.'),(1673,419,'textarea_4','Hey there Hey, you\'ve got to check out AI Video Creator – it\'s like having a pro studio in your pocket! Only $17 to start making stunning videos. Dive in here: https://www.socialsurge.ai/recommends/ai-video-creator/ I immediately had the thought of you all at naplesirrigation.com when I saw this!'),(1674,420,'name_1','Greg| | Greg'),(1675,420,'email_2','cgfsllc2@outlook.com'),(1676,420,'text_3','Who do I need to talk to?'),(1677,420,'textarea_4','Happy New Year, This is Gregory Stewart from Wyoming. We\'d like to offer your business a loan to kick off the new year, to use for whatever you need. We\'re reaching out to a few local companies and I just wanted to see if we can help at all. Please take a look the details I put on our page here - https://cutt.ly/lwHyBuO7 All the best, Gregory Stewart - Owner Fast Money Locator, LLC'),(1678,421,'name_1','Chase Richards| | Richards'),(1679,421,'email_2','chase.richards@gmail.com'),(1680,421,'text_3','Exposed: How they Made 131k with GPT Stores…'),(1681,421,'textarea_4','Have you ever wished you could travel back in time to invest in something revolutionary like Bitcoin or the Apple App Store in their early days? Well, here\'s your chance to experience a game-changing opportunity that only comes once in a generation... So naplesirrigation.com will you act now or stay in the same spot forever? Introducing GPT Store - Exposed, a brand-new way to effortlessly create AI-powered money-making machines that expose millions of potential dream customers into your world... This system has already made over $131,085 for early adopters! Check out GPT Store - Exposed &gt;&gt; https://warriorplus.com/o2/a/twp78m/0 \"...A Brand-New World Of Opportunities Where You Don\'t Even Have To Sell Anything To Get Paid...\" Imagine if you could profit without selling anything, rank on page one of Google in seconds, and have AI build your businesses for you... With GPT Store - Exposed, you don\'t need a list, technical skills, or a following... All it takes is a small amount of your time to start seeing results. Don\'t miss out on this once-in-a-lifetime opportunity to join the GPT revolution... Be part of a brand-new era where profits flow like never before: Get instant access &amp; savings here &gt;&gt; https://warriorplus.com/o2/a/twp78m/0 To your success, Chase'),(1682,422,'name_1','Eric Jones| | Jones'),(1683,422,'email_2','ericjonesmyemail@gmail.com'),(1684,422,'text_3','Strike when the iron’s hot'),(1685,422,'textarea_4','To the naplesirrigation.com Administrator! I just found your site, quick question… My name’s Eric, I found naplesirrigation.com after doing a quick search – you showed up near the top of the rankings, so whatever you’re doing for SEO, looks like it’s working well. So here’s my question – what happens AFTER someone lands on your site? Anything? Research tells us at least 70% of the people who find your site, after a quick once-over, they disappear… forever. That means that all the work and effort you put into getting them to show up, goes down the tubes. Why would you want all that good work – and the great site you’ve built – go to waste? Because the odds are they’ll just skip over calling or even grabbing their phone, leaving you high and dry. But here’s a thought… what if you could make it super-simple for someone to raise their hand, say, okay, let’s talk without requiring them to even pull their cell phone from their pocket? You can – thanks to revolutionary new software that can literally make that first call happen NOW. Web Visitors Into Leads is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number. It lets you know IMMEDIATELY – so that you can talk to that lead while they’re still there at your site. You know, strike when the iron’s hot! CLICK HERE https://blazeleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. When targeting leads, you HAVE to act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better! That’s why you should check out our new SMS Text With Lead feature as well… once you’ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. Imagine how powerful this could be – even if they don’t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility. Just this alone could be a game changer to make your website even more effective. Strike when the iron’s hot! CLICK HERE https://blazeleadgeneration.com to learn more about everything Web Visitors Into Leads can do for your business – you’ll be amazed. Thanks and keep up the great work! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! It even includes International Long Distance Calling. Stop wasting money chasing eyeballs that don’t turn into paying customers. CLICK HERE https://blazeleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here https://blazeleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(1686,423,'name_1','Karry Barge| | Barge'),(1687,423,'email_2','karry.barge71@hotmail.com'),(1688,423,'text_3','Hello naplesirrigation.com Owner!'),(1689,423,'textarea_4','START YOUR DAY is a daily newsletter that shows you easy ways to make money, gives you ideas to easily learn new skills, as well as giving you helpful ways to lose weight and just about anything else you can think of - DAILY! LEARN MORE: https://StartYourDayIdeas.com'),(1690,424,'name_1','Mirella Duhig| | Duhig'),(1691,424,'email_2','growthpartners13@gmail.com'),(1692,424,'text_3','I work with 1,102 agencies. Here’s what\'s working for client fulfillment'),(1693,424,'textarea_4','Hey, Getting right to it, I can get your clients booked with leads already searching for the solution they offer. Facebook has published a public case study on us and we have partnered with over 1,000 agencies to service 30,000 businesses. We handle everything from client onboarding to getting feedback from clients and ensuring any adjustments are made and expectations are set to see success and retain them monthly. Recently, we have noticed a change in the market with what’s working for fulfillment. We are seeing the best results across the board right now from our Google Ads (PPC) and SEO efforts specifically. It’s a great upsell opportunity (which is ideal to combat a downmarket or rising client acquisition costs) or a great core offer for your agency. If you’re interested, let’s chat (: Here is my scheduler: https://bit.ly/alm-strategy-meeting Best, Mirella PS - I won’t see your response on here so if you have a question, please book a call (: 4-601 Edgeley Blvd, Concord, Ontario, Canada L4K 4G2 Email unsubnow1@gmail.com with your website to “UNSUB” meaning you will not hear from me again.'),(1694,425,'name_1','Sam Ray| | Ray'),(1695,425,'email_2','ray.boris@gmail.com'),(1696,425,'text_3','$80 Web Development'),(1697,425,'textarea_4','Affordable Website Design with High Quality. Receive a complimentary quote for Free Web Designing, including a 5-page website with Free Flash, Contact Forms, and a basic Logo, all backed by our satisfaction guarantee. Enjoy UNLIMITED revisions for the prototype, Free basic SEO, and adherence to W3C standards. Our Corporate, Business, and Informational website package is priced at $80 and will be completed within 4 days. Trust us to create your online store, with packages starting at $150. Benefit from our development center in Bangalore, offering the highest expertise at the lowest cost. Contact us NOW for more information. https://outsource-bpo.com/website/ We also do Monthly SEO Services at https://digitalpromax.co/la/'),(1698,426,'name_1','Sid McCray| | McCray'),(1699,426,'email_2','mccray.tanesha19@gmail.com'),(1700,426,'text_3','To the naplesirrigation.com Administrator.'),(1701,426,'textarea_4','Unlock the full potential of your website\'s Search Engine Rankings with our strategic backlinking solutions at https://alwaysdigital.co/lg . Our proven techniques will not only enhance your site\'s authority but also boost your google rankings, drive targeted traffic, improving your online success. What you get: Quality Backlinks: Gain authority with high-quality backlinks from reputable sources. Diverse Strategies: Utilize various techniques like guest posting and content outreach for a well-rounded backlink profile. Customized Approach: Tailored strategies to meet your unique business goals and audience. Ready to see measurable results? Schedule a consultation with our experts to discuss how our backlinking services can elevate your brand. Click now https://alwaysdigital.co/lg'),(1702,427,'name_1','Michael Sinclair| | Sinclair'),(1703,427,'email_2','rudy.garris65@gmail.com'),(1704,427,'text_3','I have a question'),(1705,427,'textarea_4','Hello, I checked out your business today and wanted to know if you would be open to the opportunity to reach out to a staggering 1.25 million potential clients on a weekly basis through our highly effective email marketing campaign that can start getting you leads in just a few days? And the best part? It\'s available to you at an incredibly affordable rate of just $240 per week! Plus, as a bonus, we provide the B2B prospect list so you can effortlessly expand your reach weekly and generate consistent leads and sales. I’m with HiveMailers, we use a robust email system to get clients daily leads and/or sales 24/7. WE DO ALL THE WORK: - We create the content for the email(s). - We provide the email list (contacts). - We forward leads to you daily. - We manage your email campaigns 24/7. WHO THIS IS FOR: - Companies who sell to businesses (B2B). - Companies who provide a product/service with wide appeal (not a small niche). - Companies whose product/service can be sold across the USA and/or international. Just imagine, getting hot leads within days of getting started with us. You might be wondering if our system works, well if you are reading this message, it works. Get started now!!! For just $240 a week, we’ll send 1.25-Million emails weekly and start filling your inbox with qualified leads. Book a 10 min call with us: https://bit.ly/hivemailer-240-special NOTE: To buy an email list and hire an email manager to run your campaign (like our system) would cost around $3,500 a month, but with us, you pay just $240 a week. So, you save over $2,000 a month. Sincerely, Michael P.S. This offer is good for the first 20 clients, don’t miss out. Book appointment now and start getting leads within a few days: https://bit.ly/hivemailer-240-special'),(1706,428,'name_1','Rico Carrasco| | Carrasco'),(1707,428,'email_2','carrasco.rico14@gmail.com'),(1708,428,'text_3','To the naplesirrigation.com Owner.'),(1709,428,'textarea_4','Resell rights included! AI Commissions 2024 offers a fast track to AI profits. Don’t miss out, visit https://www.socialsurge.ai/recommends/making-money-with-ai-2024/ Keep kickin ass at naplesirrigation.com! - Rico'),(1710,429,'name_1','Theresa Smith| | Smith'),(1711,429,'email_2','dexter.ridenour@gmail.com'),(1712,429,'text_3','Quick question'),(1713,429,'textarea_4','Hello, Do you sometimes find yourself in a tug of war between work and fitness? We have the perfect solution for you - Elebands! Elebands offers ultra-thin, fashionable all day wearable body weight bands that seamlessly integrate into your daily routine. Burn up to 1,500 calories a day by simply wearing our bands on your wrist, ankle, and waist while you go about your normal day. The best part is we have full body weight sets ranging from 3lbs – 30lbs to ensure optimal results no matter what your fitness goals are. Plus! We have bands for sports, casual, and formal occasions that you can wear with any outfit, ensuring you stay stylish while achieving your fitness goals. With Elebands, you no longer have to choose between work and exercise. Our body weight bands enable you to lose weight and get fit regardless of your location or activity. Enjoy these instant benefits: 1. Burn Calories: Effortlessly burn up to 1,500 calories daily, toning your body as you go about your day. 2. Natural Weight Loss: Say goodbye to intense workouts and stressful diets. Elebands helps you lose weight naturally. 3. Build Strength: Develop lean muscles and enhance your strength as you carry out your regular activities. Imagine achieving your dream body without stepping foot in a gym or following a strict diet plan. With Elebands, it\'s possible. Many of our clients are losing 2-3 pounds per week while experiencing significant health improvements. To help you get started for the NEW YEAR, use coupon code SAVE-20%-TODAY for a 20% discount. Visit our website now at https://bit.ly/elebands-special and embrace the Elebands experience. Let Elebands be your partner in achieving a fit and healthy lifestyle. Start your transformation today! Warm regards, Theresa Smith Brand Ambassador Elebands USA Visit our website NOW! https://bit.ly/elebands-special'),(1714,430,'name_1','Tanisha Brien| | Brien'),(1715,430,'email_2','autoaccessories777@outlook.com'),(1716,430,'text_3','Does your pet drive?'),(1717,430,'textarea_4','Driving is a part of daily life, especially if you are living in a large city or somewhere very spread apart. We drive to run errands like buy groceries and pick up the kids, and we drive to work or to school. So if your furry friend commutes with you often, you have to take a peek at these items to ensure ways your journey is more comfy, convenient &amp; safe. Today, we’re sharing 5 smart items to make your commute and drive better for all of you. Best Regards, https://cutt.ly/1wJ9uT5j Auto Accessories Store'),(1718,431,'name_1','Rory Nichols| | Nichols'),(1719,431,'email_2','rory.nichols@gmail.com'),(1720,431,'text_3','Hello naplesirrigation.com Owner!'),(1721,431,'textarea_4','This message came to you and I can make your ad message go to millions of websites the same way. It\'s a great deal compared to normal advertising.Contact me by email or skype below if you want to know more. P. Stewart Email: 9e1mvu@gomail2.xyz Skype: live:.cid.37ffc6c14225a4a8'),(1722,432,'name_1','Steven May| | May'),(1723,432,'email_2','farncomb.ivey@googlemail.com'),(1724,432,'text_3','Don\'t Let Your Outdated Website Hold You Back'),(1725,432,'textarea_4','Hi, This is Steven M. May Jr., and I\'m reaching out from Ask the Egghead to offer you a solution that will transform your online presence and drive your business forward. Is your current website failing to attract customers and generate the revenue you desire? If so, we specialize in effective web design that enhances brand visibility, maximizes customer engagement, and drives business growth. Here\'s what we offer: - Professionally designed websites that effortlessly attract more customers - Strategic, SEO-optimized web design that boosts brand visibility online - User-friendly, visually appealing websites that enhance customer engagement and satisfaction Don\'t let the complexity and cost of creating a professional website hold you back. Our services are affordable and tailored to your unique business needs. Act now to claim your free website evaluation and search engine optimization assessment, including local search ranking. Schedule your appointment today by clicking the link below: https://bit.ly/asktheegghead Investing in your online presence is essential for business success. Let us help you create a refreshed web design that meets all current standards and sets you apart from the competition. To your online success, Steven M. May Jr. Ask the Egghead, Inc. P.S. Don\'t miss out on exponential growth opportunities offered by the internet. Act now and secure your spot in the competitive online marketplace. P.P.S. Ask the Egghead: Designing Websites that Drive Revenue. That\'s our commitment to you.'),(1726,433,'name_1','David Quillson| | Quillson'),(1727,433,'email_2','david.quillson@gmail.com'),(1728,433,'text_3',''),(1729,433,'textarea_4','naplesirrigation.com, “Tell” THIS to Chat-GPT... For $440 Days You\'re just one \"copy-and-paste\"... From being a $1,000/hour software engineer - with Chat-GPT. That way you can make APPS like a Silicon valley nerd… While getting paid like a Wall Street banker! It’s all because of a weird “app-building” AI this guy just released. See the DEMO here: ⇒ bit.ly/InfiniteAIApps See, I already knew that this guy Chris made $100K so far this year. And I knew he made that money selling apps. But… Chris is an expert builder of tools. So.. I just assumed he hired a $10k developer. But.. actually Chris has been harboring a SECRET. It turns out he no longer hires developers. Instead, he uses a CUSTOM Chat-Gpt “App Builder”. A NEW “AI ALIEN TECH” that BUILDS his apps for him! It’s bizarre and actually very simple: 1. Enter the name of your app 2. Enter a few settings 3. Deploy your app (no hosting required). I wouldn’t have believed it myself, but… On THIS page Chris shows REAL proof of FOUR apps he built this way. ==&gt; bit.ly/InfiniteAIApps And get this.. They made him over $100k! So.. want to join him? Then good news… All you need to do, is open the software.. Either choose one of the pre-made app templates… Or build your own UNIQUE, 100% CUSTOM AND NEW APP - from scratch. Click ONCE to run the CUSTOM app-building AI… And your brand new cloud-based app is complete! Then, you could be making commissions, every day of 2023! Just like the ClickBank super affiliate who built this... He\'s been making HUNDREDS OF THOUSANDS with this in 2023. See how he did it, with this method here: ==&gt; bit.ly/InfiniteAIApps Today this new app opens to the public... So YOU can do this from your browser… Without writing a single thing, or needing any techie skills whatsoever! All you need is the AI.. the desire to become an AI software owner… And this very strange new \"Done For You\" addon for Chat-GPT (that way you can run your OWN custom commission-getting AI model in your browser) So… are you in? OK, great... Click here now ==&gt; bit.ly/InfiniteAIApps But do it RIGHT NOW, as the price increases in the next minutes (and every hour after that) 149 N West Ave, Jackson, MI 49205 To Avoid Future Marketing, Messege your domain name to Here: fullwebsiteaudit@gmail.com'),(1730,434,'name_1','James Gendron| | Gendron'),(1731,434,'email_2','mark.gendron@outlook.com'),(1732,434,'text_3','Professional Web Designers - For Hire'),(1733,434,'textarea_4','Professional Web Designers - For Hire Need a Website Built For Your Business? Get an Experienced Dedicated Designer From Us. Our website development services can create your dream website. We design engaging and user-friendly websites that improve the customer experience, we work with you to understand your business goals and preferences. From simple blogs to complex e-commerce platforms, we are dedicated to delivering high-quality solutions that exceed your expectations. Let us bring your vision to life and enhance your online presence. Talk To Our Software Experts Today Chat With A Live Representative https://outsource-bpo.com/website/'),(1734,435,'name_1','Eric Jones| | Jones'),(1735,435,'email_2','ericjonesmyemail@gmail.com'),(1736,435,'text_3','Your site – more leads?'),(1737,435,'textarea_4','Hello naplesirrigation.com Administrator! this is Eric and I ran across naplesirrigation.com a few minutes ago. Looks great… but now what? By that I mean, when someone like me finds your website – either through Search or just bouncing around – what happens next? Do you get a lot of leads from your site, or at least enough to make you happy? Honestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Here’s an idea… How about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site… You can – Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site. CLICK HERE https://rushleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. You’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold. It gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation. That way, even if you don’t close a deal right away, you can follow up with text messages for new offers, content links, even just how you doing? notes to build a relationship. Pretty sweet – AND effective. CLICK HERE https://rushleadgeneration.com to discover what Web Visitors Into Leads can do for your business. You could be converting up to 100X more leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://rushleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here https://rushleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(1738,436,'name_1','Micky Davidson| | Davidson'),(1739,436,'email_2','davidson.vito@hotmail.com'),(1740,436,'text_3','Buy High Quality Backlinks - Delivered in just 14 Days'),(1741,436,'textarea_4','Nobody Beats Our Pricing And Quality. #1 Rated Backlink Building SEO Agency. Get Started. 1,500+ SEO\'s Use Our Backlink Service Every Month To Power Their SEO Campaign. Our backlink service is used and trusted by 1,500+ digital marketing agencies to power their clients SEO. Whether you\'re a business owner or an agency, we can help propel your SEO. Check out for the Best SEO LINK BUILDING Packages: https://alwaysdigital.co/lgt/'),(1742,437,'name_1','Chad Delapena| | Delapena'),(1743,437,'email_2','chad.delapena@hotmail.com'),(1744,437,'text_3','Dear naplesirrigation.com Webmaster.'),(1745,437,'textarea_4','Seeking a trusted CPA for financial assurance and precise reporting? Explore our top-notch services, including expert financial statement audits, streamlined reviews, and comprehensive tax solutions. Elevate your financial game with San Diego CPA - where expertise meets tailored excellence. For a free consultation today, contact me directly or visit my site below. Best regards, Michelle Encines, Manager San Diego, CPA A Professional Tax and Accountancy Corporation Professional Advice. Sharper Results. 5703 Oberlin Drive Suite 107 San Diego, CA 92121 (858)246-6519 Office (866)272-8296 Toll free (858)800-3888 fax www.sandiegocpas.com'),(1746,438,'name_1','Mark Phillips| | Neale'),(1747,438,'email_2','peterneale777@outlook.com'),(1748,438,'text_3','Quick Question ?'),(1749,438,'textarea_4','Looking to create a better lifestyle from the comfort of your own home, and increase personal freedom at the same time? If so, then I have something I\'d like to show you. We have developed a proven system that can help you make your first commissions within just 48 hours, even if you have zero tech skills or prior experience. Done For You - https://cutt.ly/RwZiXgwE Imagine being able to work from home, set your own schedule, and earn money while pursuing your passion, whatever that might be. Our program provides you step-by-step guidance and support to help you succeed. You\'ll learn how to leverage your existing skills, and even learn new ones, to create a profitable and sustainable online business. Don\'t miss out on this incredible opportunity. Take the first step towards financial freedom and sign up for our program today. Let\'s make your dreams of a passive income lifestyle a reality. Best regards, Peter Neale'),(1750,439,'name_1','Eric Jones| | Jones'),(1751,439,'email_2','ericjonesmyemail@gmail.com'),(1752,439,'text_3','how to turn eyeballs into phone calls'),(1753,439,'textarea_4','To the, Eric here with a quick thought about your website naplesirrigation.com Administrator. I’m on the internet a lot and I look at a lot of business websites. Like yours, many of them have great content. But all too often, they come up short when it comes to engaging and connecting with anyone who visits. I get it – it’s hard. Studies show 7 out of 10 people who land on a site, abandon it in moments without leaving even a trace. You got the eyeball, but nothing else. Here’s a solution for you… Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. You’ll know immediately they’re interested and you can call them directly to talk with them literally while they’re still on the web looking at your site. CLICK HERE https://rushleadgeneration.com to try out a Live Demo with Web Visitor now to see exactly how it works. It could be huge for your business – and because you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately… and contacting someone in that 5 minute window is 100 times more powerful than reaching out 30 minutes or more later. Plus, with text messaging you can follow up later with new offers, content links, even just follow up notes to keep the conversation going. Everything I’ve just described is extremely simple to implement, cost-effective, and profitable. CLICK HERE https://rushleadgeneration.com to discover what Web Visitor can do for your business. You could be converting up to 100X more eyeballs into leads today! Eric PS: Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://rushleadgeneration.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here https://rushleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(1754,440,'name_1','Danielle Simpson| | Simpson'),(1755,440,'email_2','simpsondanielle800@gmail.com'),(1756,440,'text_3','Explainer Video for naplesirrigation.com?'),(1757,440,'textarea_4','Hi, We\'d like to introduce to you our explainer video service, which we feel can benefit your site naplesirrigation.com. Check out some of our existing videos here: https://www.youtube.com/watch?v=bWz-ELfJVEI https://www.youtube.com/watch?v=Y46aNG-Y3rM https://www.youtube.com/watch?v=hJCFX1AjHKk Our prices start from as little as $195 and include a professional script and voice-over. If this is something you would like to discuss further, don\'t hesitate to reply. Kind Regards, Danielle If you are not interested, unsubscribe here: https://removeme.click/unsubscribe.php?d=naplesirrigation.com'),(1758,441,'name_1','Megan Atkinson| | Atkinson'),(1759,441,'email_2','meganatkinson149@gmail.com'),(1760,441,'text_3','Instagram Promotion: 300-1000 new followers each month'),(1761,441,'textarea_4','Hi there, We run an Instagram growth service, which increases your number of followers safely and practically. We aim to gain you 300-1000+ real human followers per month, with all actions safe as they are made manually (no bots). The price is just $60 (USD) per month, and we can start immediately. Let me know if you are interested and have any questions. Kind Regards, Megan'),(1762,442,'name_1','Isabella Garcia| | Garcia'),(1763,442,'email_2','vgiflavius@gmail.com'),(1764,442,'text_3','Boost Your Online Presence - Free Website Review!'),(1765,442,'textarea_4','Hi, I wanted to reach out as a representative of Verti Group International, your secret weapon for enhancing your online presence and dominating the search engine rankings. Let\'s face it. SEO can be a mysterious and ever-changing landscape, leaving you feeling lost and overwhelmed. But fear not! Our team of experts, who have been doing this for 12 years, is here to guide you. Unlock the potential of your website with our free, in-depth review. We\'ll identify areas for improvement and provide you with a roadmap to optimize your site. Take the first step towards SEO success today! Click here: --&gt; https://bit.ly/verti_group Looking forward to propelling your online visibility to new heights. Best regards, Isabella Garcia Verti Group International P.S. Don\'t miss out on this exclusive opportunity. Claim your free website review now!'),(1766,443,'name_1','Susan Karsh| | Karsh'),(1767,443,'email_2','virgie.lefanu@gmail.com'),(1768,443,'text_3','Are you guys using AI in your daily operations?'),(1769,443,'textarea_4','Just checked out your site. Are you guys already using AI in your business? Would you be open to getting a FREE 7-Day trial of our AI Agents, like ChatGPT, but much better? In fact, we have close to 10,000 AI agents skilled in hundreds of industries, just pic the agents you want and create an AI team in minutes. As Soon As You Sign Up, Our AI Agents Can: • Assist your team with tasks, projects and research, which will increase productivity. • Crush to-do list by writing - ads, code, emails, content, sales copy, contracts &amp; more. • Give you time to focus on important things instead of handling mundane tasks. • Save you time, save you money and make your team much more effective. • Make sales calls, take inbound calls and book appointments (available 02/15/24) ... and much, MUCH more! Watch our video here and see how we can help: https://bit.ly/myaa-trial Our clients are saving 20%- 30% on operational costs each month by using our AI Agents to handle hundreds of tasks. Claim your FREE Trial Of our AI Agents Now, before this offer ends. Get started here: https://bit.ly/myaa-trial Best, Susan Karsh'),(1770,444,'name_1','Chase Peterson| | Peterson'),(1771,444,'email_2','chase.peterson@gmail.com'),(1772,444,'text_3','Launch Your Own AI Chatbots and Get A Piece Of The Trillion Dollar AI Market…'),(1773,444,'textarea_4','AI is here to change the world… Like it or not, it’s a fact and there is no changing it AI can do most of the jobs with 100% accuracy and zero mistakes And best of all, AI doesn’t get paid or take days off… So the question is, would you like a piece of that pie? If you answered yes… you’re in luck Cause my good friend just launch BrainBox The world’s first AI-Powered app that let you launch your own Chatbot with 50 stunning AI features… Best of all, unlike ChatGPT… BrainBox has ZERO limitations… ZERO downtime &gt;&gt; https://warriorplus.com/o2/a/hfjg7b/0 Oh, and there are no monthly payments… You will be able to pick up your copy for a small one-time fee… For a limited time, use coupon code \"BrainBox5off\" to receive a massive 89% discount With BrainBox, you can: Write and proofread any content you need - 100% unique Generate AI designs from 1 keyword Generate codes and scripts in any programming language without any technical knowledge on your end Generate an entire SEO strategy without paying for an “expert” Generate Spreadsheets formulas in seconds Create stunning videos with a click Don\'t miss this opportunity to revolutionize your online business with BrainBox &gt;&gt; https://warriorplus.com/o2/a/hfjg7b/0 Try it now! Best regards, Chase'),(1774,445,'name_1','John Lo| | Lo'),(1775,445,'email_2','lo.lillie@outlook.com'),(1776,445,'text_3','Hire Wordpress Developer'),(1777,445,'textarea_4','If you hire a wordpress developer in your country, they will charge you in two ways 1. Project basis 2. Hourly Basis Project basis - the minimum rate for a ecommerce website starts $1000, But if you hire us, You can save more than 65% Hourly basis - The minimum rate for an experienced Wordpress developer is $15, But you can hire us at $6/ hour I can send the resume/ CV of my developer and the samples of the work done. More details: https://wpexpertspro.co/website/ We also do Best Monthly SEO Services. Individual SEO strategies, tailored from the scratch. Generate more leads, sales &amp; revenue. We help companies rank page #1 and reach their true potential online. We’ll show you exactly what we’ll do, how much it’ll cost, and how we’re going to crush your competitors. Talk Customized SEO Strategy with Our Team Today. - https://digitalpromax.co/la/'),(1778,446,'name_1','Micky Guidry| | Guidry'),(1779,446,'email_2','milford.guidry10@outlook.com'),(1780,446,'text_3','Web Development and SEO'),(1781,446,'textarea_4','Development Outsourcing Agency — Development Outsourcing... Leading Outsource Development Company. Trusted for 10+ years. Our top devs join your team. Let\'s talk about the our Advantage! Leading Outsource Development Company for 10+ years. Prices for a simple website starts @ $80. Ecommerce sites $300. Hourly Rate of $7. Contact us now. https://outsource-bpo.com/website/ Also, Introducing Turbo Charged, Super Powerful Backlinks for your website\'s SEO. Building Quality Links is tough. Let The Experts Do It Right For Your Target Market. We Provide Backlink Services that Offer the Strongest, But Affordable Links. Read carefully here - https://alwaysdigital.co/lgt and See your SEO rankings Sky Rocket'),(1782,447,'name_1','Jerry Robinette| | Robinette'),(1783,447,'email_2','robinette.jerry@gmail.com'),(1784,447,'text_3','Dear naplesirrigation.com Administrator.'),(1785,447,'textarea_4','This message reached you and I can send your ad message to millions of websites in the same fashion. It\'s a cheap and efficient way to promote your business.Contact me by email or skype below if you want to know more. P. Stewart Email: f63uxm@gomail2.xyz Skype: live:.cid.37ffc6c14225a4a8'),(1786,448,'name_1','Zeem| |'),(1787,448,'email_2','zeem@linkoutreach.shop'),(1788,448,'text_3',''),(1789,448,'textarea_4','Hi! I have spotted some issues on your website. Would you like to get a free Website audit ? Let\'s talk. Regards, Zeem LO Digital Whatsapp: https://wa.me/+447739746117'),(1790,449,'name_1','Eric Jones| | Jones'),(1791,449,'email_2','ericjonesmyemail@gmail.com'),(1792,449,'text_3','Turn Surf-Surf-Surf into Talk Talk Talk'),(1793,449,'textarea_4','Dear naplesirrigation.com Webmaster! my name’s Eric and I just ran across your website at naplesirrigation.com... I found it after a quick search, so your SEO’s working out… Content looks pretty good… One thing’s missing though… A QUICK, EASY way to connect with you NOW. Because studies show that a web lead like me will only hang out a few seconds – 7 out of 10 disappear almost instantly, Surf Surf Surf… then gone forever. I have the solution: Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. You’ll know immediately they’re interested and you can call them directly to TALK with them - literally while they’re still on the web looking at your site. CLICK HERE https://blazeleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works and even give it a try… it could be huge for your business. Plus, now that you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation pronto… which is so powerful, because connecting with someone within the first 5 minutes is 100 times more effective than waiting 30 minutes or more later. The new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship. Everything I’ve just described is extremely simple to implement, cost-effective, and profitable. CLICK HERE https://blazeleadgeneration.com to discover what Web Visitors Into Leads can do for your business, potentially converting up to 100X more eyeballs into leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://blazeleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here https://blazeleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(1794,450,'name_1','Rodrick Meadows| | Meadows'),(1795,450,'email_2','rodrick.meadows@yahoo.com'),(1796,450,'text_3','Unleash the Future: Laser Keyboard'),(1797,450,'textarea_4','Project a keyboard anywhere, anytime. Bluetooth connects to any device. Ultra-portable, sleek design. Experience the future of typing. Limited quantities, and free shipping! Buy it now at: https://laserkeyboard.xyz P.S. Rechargeable, adjustable brightness, multiple languages, durable.'),(1798,451,'name_1','Eric Jones| | Jones'),(1799,451,'email_2','ericjonesmyemail@gmail.com'),(1800,451,'text_3','Who needs eyeballs, you need BUSINESS'),(1801,451,'textarea_4','Dear naplesirrigation.com Owner. My name’s Eric and I just came across your website - naplesirrigation.com - in the search results. Here’s what that means to me… Your SEO’s working. You’re getting eyeballs – mine at least. Your content’s pretty good, wouldn’t change a thing. BUT… Eyeballs don’t pay the bills. CUSTOMERS do. And studies show that 7 out of 10 visitors to a site like naplesirrigation.com will drop by, take a gander, and then head for the hills without doing anything else. It’s like they never were even there. You can fix this. You can make it super-simple for them to raise their hand, say, okay, let’s talk without requiring them to even pull their cell phone from their pocket… thanks to Web Visitors Into Leads. Web Visitors Into Leads is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number. It lets you know immediately – so you can talk to that lead immediately… without delay… BEFORE they head for those hills. CLICK HERE https://rushleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. Now it’s also true that when reaching out to hot leads, you MUST act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better! That’s what makes our new SMS Text With Lead feature so powerful… you’ve got their phone number, so now you can start a text message (SMS) conversation with them… so even if they don’t take you up on your offer right away, you continue to text them new offers, new content, and new reasons to do business with you. This could change everything for you and your business. CLICK HERE https://rushleadgeneration.com to learn more about everything Web Visitors Into Leads can do and start turing eyeballs into money. Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! It even includes International Long Distance Calling. Paying customers are out there waiting. Starting connecting today by CLICKING HERE https://rushleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click https://rushleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(1802,452,'name_1','Eric Jones| | Jones'),(1803,452,'email_2','ericjonesmyemail@gmail.com'),(1804,452,'text_3','Why not TALK with your leads?'),(1805,452,'textarea_4','Dear My name’s Eric and I just found your site naplesirrigation.com Owner! It’s got a lot going for it, but here’s an idea to make it even MORE effective. Visit https://rushleadgeneration.com for a live demo now. Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site. And once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation… and if they don’t take you up on your offer then, you can follow up with text messages for new offers, content links, even just how you doing? notes to build a relationship. Visit https://rushleadgeneration.com to discover what Web Visitors Into Leads can do for your business. The difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today! Eric PS: Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Don’t keep losing them. Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. Visit https://rushleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe visit https://rushleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(1806,453,'name_1','Steve Talker| | Talker'),(1807,453,'email_2','steve.talker@gmail.com'),(1808,453,'text_3','12 HOUR WARNING - Passive crypto income with a few mouse clicks…'),(1809,453,'textarea_4','Hi naplesirrigation.com , Today’s the day. The replay of the most popular webinar I’ve ever hosted is coming offline in just a few hours. What Joel and Adam are sharing here is truly GROUNDBREAKING. If you want a quick and easy way to setup a passive income stream online, then you HAVE to check it out before it’s taken down: &gt;&gt; Watch it here: bit.ly/FreeWebinarEnds I’m floored at the vast amount of positive feedback I’ve gotten about this webinar. I’m so glad I was able to bring it to you and I really hope you don’t miss out on watching the replay. Here’s a quick recap of everything you’re going to discover in this revolutionary presentation: How to use their PROVEN solution to quickly launch a ‘crypto profit machine’ in 2023 that makes money every day and runs on total autopilot. How this system makes money whether crypto is going up or down so you can enjoy consistent, predictable profits without any stress or worry. Multiple examples of REAL CAMPAIGNS that ‘run silently in the background’ 24 hours a day and are banking up to $4,000 PER WEEK in profit. The secret technology that makes this all possible and how you can get your first PROFITABLE campaign up and running in *60 minutes or less.* A behind-the-scenes look at their latest campaign, which generated $8,803 in the first two weeks and is on track to make over $100,000 this year completely HANDS-FREE. Mind-blowing success stories from their most successful students who have used this method to launch life-changing passive income streams. Why ANYONE can and should do this - you don\'t need any previous experience or know ANYTHING about crypto investing or trading Plus, how their BRAND NEW, Premium Trade Alerts are winning a whopping 84% of the time and how even complete beginners are transforming modest investments into MASSIVE RETURNS virtually overnight. &gt;&gt; Watch the replay in full here -- bit.ly/FreeWebinarEnds Again, the webinar replay comes down TONIGHT so be sure to watch it before then. They don’t share this info often so this is a rare treat. Be sure to check it out. 149 N West Ave, Jackson, MI 49205 To Avoid Future Marketing, Messege your domain name Here: fullwebsiteaudit@gmail.com'),(1810,454,'name_1','Amelia Brown| | Brown'),(1811,454,'email_2','ameliabrown0325@gmail.com'),(1812,454,'text_3','YouTube Promotion: Grow your subscribers by 700-1500 each month'),(1813,454,'textarea_4','Hi there, We run a YouTube growth service, which increases your number of subscribers both safely and practically. - We guarantee to gain you 700-1500 new subscribers per month. - People subscribe because they are interested in your videos/channel, increasing video likes, comments and interaction. - All actions are made manually by our team. We do not use any \'bots\'. The price is just $60 (USD) per month, and we can start immediately. If you\'d like to see some of our previous work, let me know, and we can discuss it further. Kind Regards, Amelia'),(1814,455,'name_1','Dick McSharry| | McSharry'),(1815,455,'email_2','dick.mcsharry36@outlook.com'),(1816,455,'text_3','Hi naplesirrigation.com Admin.'),(1817,455,'textarea_4','Brand new tech is changing the way companies market. It turns Youtube videos into interactive games keeping the viewers attention. Companies reward people for watching the whole video and create a marketing frenzy like Black Friday. As seen on CBS, NBC, FOX, and ABC. Drop me a line via email/skype below to see if you qualify for a free GAMIFICATION of your video. Julien email: gamifyvideo@gmail.com skype: live:.cid.d347be37995c0a8d'),(1818,456,'name_1','Isabella Garcia| | Garcia'),(1819,456,'email_2','vgiflavius@gmail.com'),(1820,456,'text_3','Boost Your Online Presence - Free Website Review!'),(1821,456,'textarea_4','Hi, I wanted to reach out as a representative of Verti Group International, your secret weapon for enhancing your online presence and dominating the search engine rankings. Let\'s face it. SEO can be a mysterious and ever-changing landscape, leaving you feeling lost and overwhelmed. But fear not! Our team of experts, who have been doing this for 12 years, is here to guide you. Unlock the potential of your website with our free, in-depth review. We\'ll identify areas for improvement and provide you with a roadmap to optimize your site. Take the first step towards SEO success today! Click here: --&gt; https://bit.ly/verti_group Looking forward to propelling your online visibility to new heights. Best regards, Isabella Garcia Verti Group International P.S. Don\'t miss out on this exclusive opportunity. Claim your free website review now!'),(1822,457,'name_1','Eric Jones| | Jones'),(1823,457,'email_2','ericjonesmyemail@gmail.com'),(1824,457,'text_3','There they go…'),(1825,457,'textarea_4','Hello naplesirrigation.com Webmaster! my name’s Eric and for just a second, imagine this… - Someone does a search and winds up at naplesirrigation.com. - They hang out for a minute to check it out. I’m interested… but… maybe… - And then they hit the back button and check out the other search results instead. - Bottom line – you got an eyeball, but nothing else to show for it. - There they go. This isn’t really your fault – it happens a LOT – studies show 7 out of 10 visitors to any site disappear without leaving a trace. But you CAN fix that. Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know right then and there – enabling you to call that lead while they’re literally looking over your site. CLICK HERE https://blazeleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. Time is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better! Plus, now that you have their phone number, with our new SMS Text With Lead feature you can automatically start a text (SMS) conversation… so even if you don’t close a deal then, you can follow up with text messages for new offers, content links, even just how you doing? notes to build a relationship. Strong stuff. CLICK HERE https://blazeleadgeneration.com to discover what Web Visitors Into Leads can do for your business. You could be converting up to 100X more leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://blazeleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here https://blazeleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(1826,458,'name_1','Grant Lira| | Lira'),(1827,458,'email_2','growthpartners13@gmail.com'),(1828,458,'text_3','I’d like to build your thought leadership via podcasts, content, & press'),(1829,458,'textarea_4','Hey, I’ll get right to it. I can get you on 3 podcasts/mo, and get you 15 professionally edited short form videos for social media (from the podcast interview), and then get you featured in 3 online publications/mo all done for you. We’ve helped 33 clients do just that to build their thought leadership in their specific industry which has helped them: - Generate more appointments - Close at a higher rate (Because they built authority before the sales call even started) - Charge higher prices because people view their company as unique now Interested? We can chat here: https://bit.ly/empathyfirm-30-minute-meeting Best, Grant PS - I won’t see your response on here so if you have a question, please book a call (: N6565 Shorewood Hills Rd. Lake Mills WI, 53551 Email unsubnow1@gmail.com with your website to “UNSUB” meaning you will not hear from me again.'),(1830,459,'name_1','Max Mallard| | Mallard'),(1831,459,'email_2','mallard.modesto22@gmail.com'),(1832,459,'text_3','Ecommerce Development & SEO'),(1833,459,'textarea_4','Hire now &gt; https://digitalpromax.co/la/ › seo-packages &gt; Monthly SEO Services We offer a premium suite of monthly SEO packages designed to help any kind of business generate more traffic, conversions, and sales online. Full-Service SEO Partners | Top-Ranked SEO Agencies Responsive &amp; Proactive SEO Agencies. Verified client reviews to help you find an SEO firm. Content writing. Technical SEO. Full Speed Growth · Faster Growth Pack Guaranteed · We also do eCommerce Website Development &amp; Web Design Services Contact now &gt; https://www.outerboxdesign.com › Ecommerce-Eebsite-Development We\'re the Leading eCommerce Website Design Company &amp; eCommerce Website Development Agency. 50+ Employees In-House. 20+ Years in Business. Unlimited Categories/ Products. Payment gateway Integration.'),(1834,460,'name_1','Eric Jones| | Jones'),(1835,460,'email_2','ericjonesmyemail@gmail.com'),(1836,460,'text_3','how to turn eyeballs into phone calls'),(1837,460,'textarea_4','Hi naplesirrigation.com Webmaster. Eric here with a quick thought about your website naplesirrigation.com... I’m on the internet a lot and I look at a lot of business websites. Like yours, many of them have great content. But all too often, they come up short when it comes to engaging and connecting with anyone who visits. I get it – it’s hard. Studies show 7 out of 10 people who land on a site, abandon it in moments without leaving even a trace. You got the eyeball, but nothing else. Here’s a solution for you… Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. You’ll know immediately they’re interested and you can call them directly to talk with them literally while they’re still on the web looking at your site. CLICK HERE https://blazeleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. It could be huge for your business – and because you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately… and contacting someone in that 5 minute window is 100 times more powerful than reaching out 30 minutes or more later. Plus, with text messaging you can follow up later with new offers, content links, even just follow up notes to keep the conversation going. Everything I’ve just described is extremely simple to implement, cost-effective, and profitable. CLICK HERE https://blazeleadgeneration.com to discover what Web Visitors Into Leads can do for your business. You could be converting up to 100X more eyeballs into leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://blazeleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here https://blazeleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(1838,461,'name_1','James Albertson| | Albertson'),(1839,461,'email_2','maxie.albertson22@yahoo.com'),(1840,461,'text_3','To the naplesirrigation.com Owner.'),(1841,461,'textarea_4','https://alwaysdigital.co/lgt › buy-backlink › packages Buy High DA Quality Backlinks — Looking to Buy Backlinks? Our Unique Quality SEO Backlinks Give You Impressive SEO Results. Affordable Backlink Packages - Get 100% Do-Follow Backlinks We Provide Backlink Services that Offer the Strongest Links from Niche-Relevant Domains. https://outsource-bpo.com/website/ › Web Design &gt; 5 Pages Small Custom Wordpress Website Design - 5 Pages If you\'re a small business looking to make a big impact, get started with our 5 page Wordpress website design. Learn more and get started!'),(1842,462,'name_1','Eric Jones| | Jones'),(1843,462,'email_2','ericjonesmyemail@gmail.com'),(1844,462,'text_3','There they go…'),(1845,462,'textarea_4','Hello naplesirrigation.com Administrator! my name’s Eric and for just a second, imagine this… - Someone does a search and winds up at naplesirrigation.com. - They hang out for a minute to check it out. I’m interested… but… maybe… - And then they hit the back button and check out the other search results instead. - Bottom line – you got an eyeball, but nothing else to show for it. - There they go. This isn’t really your fault – it happens a LOT – studies show 7 out of 10 visitors to any site disappear without leaving a trace. But you CAN fix that. Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know right then and there – enabling you to call that lead while they’re literally looking over your site. CLICK HERE https://rushleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. Time is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better! Plus, now that you have their phone number, with our new SMS Text With Lead feature you can automatically start a text (SMS) conversation… so even if you don’t close a deal then, you can follow up with text messages for new offers, content links, even just how you doing? notes to build a relationship. Strong stuff. CLICK HERE https://rushleadgeneration.com to discover what Web Visitors Into Leads can do for your business. You could be converting up to 100X more leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://rushleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here https://rushleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(1846,463,'name_1','Eric Jones| | Jones'),(1847,463,'email_2','ericjonesmyemail@gmail.com'),(1848,463,'text_3','instead, congrats'),(1849,463,'textarea_4','To the, My name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement – Congratulations What for? Part of my job is to check out websites and the work you’ve done with naplesirrigation.com Admin definitely stands out. It’s clear you took building a website seriously and made a real investment of time and resources into making it top quality. There is, however, a catch… more accurately, a question… So when someone like me happens to find your site – maybe at the top of the search results (nice job BTW) or just through a random link, how do you know? More importantly, how do you make a connection with that person? Studies show that 7 out of 10 visitors don’t stick around – they’re there one second and then gone with the wind. Here’s a way to create INSTANT engagement that you may not have known about… Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know INSTANTLY that they’re interested – so that you can talk to that lead while they’re literally checking out naplesirrigation.com. CLICK HERE http://rushleadgeneration.com to try out a Live Demo with Web Visitor now to see exactly how it works. It could be a game-changer for your business – and it gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately (and there’s literally a 100X difference between contacting someone within 5 minutes versus 30 minutes.) Plus then, even if you don’t close a deal right away, you can connect later on with text messages for new offers, content links, even just follow up notes to build a relationship. Everything I’ve just described is simple, easy, and effective. CLICK HERE http://rushleadgeneration.com to discover what Web Visitor can do for your business. You could be converting up to 100X more leads today! Eric PS: Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://rushleadgeneration.com to try Web Visitor now. If you\'d like to unsubscribe click here http://rushleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(1850,464,'name_1','Pam Townson| | Townson'),(1851,464,'email_2','pam.townson@hotmail.com'),(1852,464,'text_3','Hello naplesirrigation.com Owner.'),(1853,464,'textarea_4','You saw this message and I can help your ad message get to millions of sites just like this. It\'s a low-cost and effective way to advertise your offer.If you are interested, you can reach me via email or skype below. P. Stewart Email: g4tw74@gomail2.xyz Skype: live:.cid.2bc4ed65aa40fb3b'),(1854,465,'name_1','Allen Damiani| | Damiani'),(1855,465,'email_2','allen.damiani52@outlook.com'),(1856,465,'text_3','Dear naplesirrigation.com Owner!'),(1857,465,'textarea_4','Recent studies reveal a crucial link between gut health and overall well-being, influencing cognitive function and productivity. Prioritizing gut health in addition to a healthy lifestyle in the workplace becomes crucial to mitigate significant economic losses. At NF1 we put an emphasis on the importance of gut health. That\'s why our new dietary supplement, RESET enhances employee well-being by addressing the gut microbiome to repair, restore and rejuvenate internal systems. Increase employee health, productivity and your bottom line. Learn more about RESET click the link https://bit.ly/3OpmzgB Best, The NeuroForce One Team https://neuroforceone.com'),(1858,466,'name_1','Albert Neistat| | Neistat'),(1859,466,'email_2','albert.neistat@gmail.com'),(1860,466,'text_3','I made this for you'),(1861,466,'textarea_4','Hello, I made a free marketing video for your website, Is this a good place to send it? Reply to marketingvideosbyai@gmail.com To unsubscribe reply with the word unsubscribe in the subject.'),(1862,467,'name_1','Alfredo Otero| | Otero'),(1863,467,'email_2','completewellnesscenter7@outlook.com'),(1864,467,'text_3','Thought this would pick you up'),(1865,467,'textarea_4','I thought this was right up your alley for a little pick me up - https://cutt.ly/JwJQ2rwT Best Regards, Complete Wellness Center'),(1866,468,'name_1','Samuel Stoltz| | Stoltz'),(1867,468,'email_2','stoltz.ellen3@yahoo.com'),(1868,468,'text_3','Wordpress Developer For Hire'),(1869,468,'textarea_4','Hello, With over 12 years of experience in offering full-stack development services, I\'ve successfully collaborated with startup ventures and established public companies. My WordPress skills include: 1. Custom website development 2. E-commerce website creation 3. Development of CMS-based websites 4. WordPress theme installation and configuration 5. Design and CSS modifications, including form fixes 6. Regular updates of WordPress versions We offer these services at affordable prices. If you require any of these services, please provide your full requirements along with contact details for easy communication. Click here for more details: https://wpexpertspro.co/website/ PS: If you want Turbo Charged Super Powerful Links for your Website SEO - Here it is https://alwaysdigital.co/lgt/'),(1870,469,'name_1','Alex McQuay| | McQuay'),(1871,469,'email_2','chantal.mcquay@outlook.com'),(1872,469,'text_3','App and Web Development'),(1873,469,'textarea_4','I\'m Sam, a Web designer and App Developer, currently working with an Indian-based company, bringing over 7 years of experience to the field. We specialize in developing a variety of apps, including: 1. Food Delivery Apps, 2. School Driving Training App, 3. Taxi/Travel Apps, 4. Real Estate Apps, 5. Health Fitness Apps, 6. M-Commerce Apps, 7. Android Apps, 8. Mac OSX Apps, 9. Custom Web Apps, 10. iPhone and iPad Apps Whether it\'s iPhone and iPad Apps or Android Apps, we\'ve got you covered. If you\'re interested in Mobile App or Web Development Services, I can provide you with our past work and pricing details. Click here for more information: https://outsource-bpo.com/website/ PS: We also do SEO Services for your website. Excellent Results and Fair prices - https://digitalpromax.co/la/'),(1874,470,'name_1','Dorian| | Wirtz'),(1875,470,'email_2','julianne.wirtz@hotmail.com'),(1876,470,'text_3','The stories of 100,000 people who’ve overcome diabetes'),(1877,470,'textarea_4','Hello, Did you know that every 17 seconds, someone in America is diagnosed with diabetes? However, a groundbreaking discovery from Harvard has enabled over 100,000 individuals to declare, \'I\'m no longer diabetic!\' Find out what they did by accessing this link: https://compressl.ink/overcomediabetes the stories of the 100,000 people who have overcome diabetes. You\'ll be surprised how easy it is to get rid of diabetes. Doctors can hardly believe it. Watch the short documentary about this new discovery here: https://compressl.ink/overcomediabetes Stay healthy, [YOUR NAME] If you\'d like to unsubscribe click here https://compressl.ink/website-opt-out/ 333 Summer Street, Delaware. Privacy Policy. Anti-spam Policy. ©2024 Compressl.Ink, Inc.'),(1878,471,'name_1','Dorian| | Skeen'),(1879,471,'email_2','skeen.glen50@msn.com'),(1880,471,'text_3','Become immune to tinnitus just like 68% of people'),(1881,471,'textarea_4','Hope this finds you well, Fact: Roughly 68% of the population never experiences tinnitus, no matter if they have been exposed to loud workplaces or other ear-harmful environments. This has drawn the attention of a small group of European researchers who have recently published their astounding discoveries... Check here: https://compressl.ink/tinnituscure They have found the nucleic acid which makes some immune to developing tinnitus and how everybody can activate it in a matter of months, possibly even weeks... This is fresh-out-of-the-box info that you won\'t find anywhere else but in their short documentary. Check now here: https://compressl.ink/tinnituscure How to stop weird sounds in 3 easy steps. Stay healthy, Dorian If you\'d like to unsubscribe click here https://compressl.ink/website-opt-out/ 333 Summer Street, Delaware. Privacy Policy. Anti-spam Policy. ©2024 Compressl.Ink, Inc.'),(1882,472,'name_1','Laurie Warren| | Laurie Warren'),(1883,472,'email_2','notification@domainscorporate.com'),(1884,472,'text_3','PRAXIS-DRTEKOMBO.CH REGISTRATION CANCELLATION NOTICE'),(1885,472,'textarea_4','Disclaimer: We are not accountable for any financial losses, information loss, decline in SEO rankings, missed patrons, undeliverable email or any other detriments that you may suffer following the termination of praxis-drtekombo.ch. For more details please look at section 5.e.1a of our Terms and Conditions. This is your final notice to renew praxis-drtekombo.ch: https://domainswebsite.org/renew/UFJBWElTLURSVEVLT01CTy5DSA In the event that praxis-drtekombo.ch expires, we hold the privilege to provide your position to contending businesses in the same sector and area after 3 business days on an bidding basis. This constitutes the last message that we are obliged to send out pertaining to the expiry of praxis-drtekombo.ch Secure Online Payment: https://domainswebsite.org/renew/UFJBWElTLURSVEVLT01CTy5DSA All operations will be immediately restored on praxis-drtekombo.ch if payment is received in full prior to expiration. Thank you for your immediate attention to this.'),(1886,473,'name_1','Greg| | Greg'),(1887,473,'email_2','cgfsllc2@outlook.com'),(1888,473,'text_3','We\'d like to offer you a loan'),(1889,473,'textarea_4','This is Gregory Stewart from Wyoming. We\'d like to offer your business a loan to kick off the new year, to use for whatever you need. We\'re reaching out to a few local companies and I just wanted to see if we can help at all. Please take a look the details I put on our page here - https://cutt.ly/lwHyBuO7 All the best, Gregory Stewart - Owner Fast Money Locator, LLC'),(1890,474,'name_1','Dante| | Begin'),(1891,474,'email_2','reginald.begin@googlemail.com'),(1892,474,'text_3','Scientists: 12X More Chances Of Winning The Lottery If You’re Bad At Math'),(1893,474,'textarea_4','They thought only a genius could crack the lottery code... But after 273 tests Yale scientists revealed a shocking truth... People who just couldn’t understand math in school pick 12 times more winning numbers than those who scored only A in class... Which explains why the biggest jackpot winners were incredibly bad at math... While great mathematicians never won anything... Skeptical? This lottery legend https://bit.ly/loterrydefeater showed his winning formula... And it’s so simple that the complicated minds of math teachers could barely conceive... Instead, 5th graders saw right through it! See it for yourself right here: https://bit.ly/loterrydefeater For your wealth, Dante If you\'d like to unsubscribe click here https://compressl.ink/website-opt-out/ 333 Summer Street, Delaware. Privacy Policy. Anti-spam Policy. ©2024 Compressl.Ink, Inc.'),(1894,475,'name_1','Donovan| | Downing'),(1895,475,'email_2','jack.downing@hotmail.com'),(1896,475,'text_3','Get 21 Free Keto Recipes (Yummy)'),(1897,475,'textarea_4','Hey, Have a fantastic day! Today, I’ve rounded up 21 of my favorite keto dishes for breakfast, lunch and dinner. You’re going to want to bookmark this list, as these recipes are totally drool-worthy. All recipes come with simple ingredients and easy instructions and you can download everything today for free. Sounds good? ==&gt; Just click here to download your FREE copy of 21 yummiest keto recipes: https://bit.ly/FreeKetosRecipes Your family and friends will love these keto recipes... And everything is 100% keto-approved and proven to speed up your ketosis. Just follow the instructions below and download your free keto cookbook :) 1. just click here to get to the download page: https://bit.ly/FreeKetosRecipes 2. enter your details where to send the recipes 3. check your email address in the next few minutes (also check your spam filter) and enjoy your new recipes! Stay healthy, Donovan If you\'d like to unsubscribe click here https://compressl.ink/website-opt-out/ 333 Summer Street, Delaware. Privacy Policy. Anti-spam Policy. ©2024 Compressl.Ink, Inc.'),(1898,476,'name_1','Dorian| | Miranda'),(1899,476,'email_2','tiffany.miranda@gmail.com'),(1900,476,'text_3','Exotic \"rice method\" liquifies fat cells'),(1901,476,'textarea_4','Hello! Did you hear about the unusual rice method that liquifies fat cells as you sleep? Clinical studies confirm just 30 secs of this simple rice technique boosts calorie burning and fat-dissolving by over 326%, that\'s more calories than 45 mins running! Try it for yourself now: https://bit.ly/ExoticRiceLiquifiesFatCells Before you go to sleep tonight, try it for yourself... &gt;&gt;&gt; 1 Unusual Rice Method That Liquifies Fat As You Sleep Don\'t waste another second on: X--- Fad diets that are impossible to enjoy... X--- Gym memberships or fitness apps... X--- Calorie counting Instead, just try this one easy fat-dissolving rice method before you sleep tonight and drop lbs of stubborn fat by morning. Check it now: https://bit.ly/ExoticRiceLiquifiesFatCells To your health, Dorian If you\'d like to unsubscribe click here https://compressl.ink/website-opt-out/ 333 Summer Street, Delaware. Privacy Policy. Anti-spam Policy. ©2024 Compressl.Ink, Inc.'),(1902,477,'name_1','Elba Kersey| | Kersey'),(1903,477,'email_2','elba.kersey@hotmail.com'),(1904,477,'text_3','Hello naplesirrigation.com Owner!'),(1905,477,'textarea_4','Earn up to $60,000 USD as a 4U2 Inc. Independent Contractor Agent! We\'re seeking individuals worldwide with computer access, fluent English communication skills, and a desire to save time and money for suppliers, buyers, and salespersons in our E-Commerce Marketplace. Join our mission to \"Save Suppliers, Buyers, and Salespersons Time, Money, and make Money!\" Contact us at 4u2inc123@gmail.com for more info..'),(1906,478,'name_1','Joeann Buttrose| | Buttrose'),(1907,478,'email_2','completewellnesscenter7@outlook.com'),(1908,478,'text_3','Thought this would brighten your day'),(1909,478,'textarea_4','I thought this was right up your alley for a little pick me up - https://cutt.ly/JwJQ2rwT Best Regards, Complete Wellness Center'),(1910,479,'name_1','John| | Hutcheson'),(1911,479,'email_2','hutcheson.nereida@msn.com'),(1912,479,'text_3','You Got Screwed..'),(1913,479,'textarea_4','You Got Screwed.. That’s right. The whole \"Be a good little boy/girl. Get good grades. Go to college. Find a good job. Put away money into your retirement account and you’ll be just fine\" charade is collapsing right under our noses. We’ve been PLAYED. We’ve been led to believe that happiness and security were waiting for us if only we did as we were told. If only we followed the path laid out for us, we’d be ok. But surveys show 1 in 3 Americans have no retirement savings. Surveys show most Americans don\'t have even $1,000 in their bank account. And this may sound crazy... but surveys show that only 20% of Americans are free of debt. Horrifying stats... But honestly, not surprising. Not when millions of students nationwide borrow as much as $40K A YEAR with the dream of getting a degree that’s supposed to open doors for them… Only to see themselves having to go back to their parents\' place because there just aren’t any jobs for their line of work. Worst of all? Student loans are one of THE ONLY non-forgiven debts in this country, so even if you file bankruptcy you can’t have them wiped clean. As if that wasn’t enough, it seems like every decent paying job is either being replaced by automation through software or robots, or it’s being shipped overseas so companies can save a few dollars on payrolls. It’s no wonder that a new report from the McKinsey Global Institute, \"Poorer than their Parents: Flat or Falling Incomes in Advanced Economies,\" shows a drastic trend in declining incomes for middle class workers. The report found that as much as 70% of households saw their earnings drop in the past decade. To put it bluntly? Those who had been taught to expect their wealth to grow as long as they obediently follow society’s path of choice, have learned that promise is a lie. And you know what? This is not your fault. We’ve all been played! But it IS your RESPONSIBILITY to do something about it and guarantee that you and your family will NOT be played anymore. Press Here To See How You Can Stop Being Played TODAY And Put Your Financial Future In Your Own Hands: https://compressl.ink/LegendaryMarketer The information in this video will change your life... IF you decide to act on it. Press Here Right Now To See It: https://compressl.ink/LegendaryMarketer To your success, John If you\'d like to unsubscribe click here https://compressl.ink/website-opt-out/ 333 Summer Street, LA. Privacy Policy. Anti-spam Policy. ©2024 Compressl.Ink, Inc.'),(1914,480,'name_1','Peter Dawnson| | Dawnson'),(1915,480,'email_2','peter.dawson@gmail.com'),(1916,480,'text_3','Hear this and grow rich'),(1917,480,'textarea_4','Daily 7-second ritual activates the billionaire brain wave You may have already read or listened to the book “Think and grow rich”… But the leaked CIA research reveals a powerful sound wave… When heard for 7 mins every day… Start attracting money in your life. From all directions. Because this brain wave targets your hippocampus, a walnut-sized region in your brain… Which is activated in wealthy people… But dormant in the average person. The leaked experiment shows you how to activate and grow your hippocampus… So, money and abundance start flowing into your life. (If the page is still up), you can discover the truth here: —&gt; https://2052c9pbo8m16m636fz8plqo4z.hop.clickbank.net To unsubscribe reply with the word unsubscribe in the subject.'),(1918,481,'name_1','Money Maker| | Francois'),(1919,481,'email_2','adelaide.francois5@gmail.com'),(1920,481,'text_3','Say goodbye to a great deal in 3...2...1...'),(1921,481,'textarea_4','I\'ve got a tremendous offer for you. For a very limited time... Matt\'s giving you his fresh-off -the-presses book revealing... How he built a 7-Figure Online Business using nothing but... Ethical Email Marketing to drive revenue, sales and commissions... ...right now for 85% off :-) ...for a tiny investment of just $5.60. And that\'s not all... He\'s also including (at no extra cost)... 10 amazing bonuses valued at $1,645. ...many of which others would simply call \"priceless\"... The price will rise soon. Hurry and save $31.40 https://compressl.ink/limitedoffer Best Regards, Money Maker P.S. You\'ll SAVE $31.40 if you act quickly https://compressl.ink/limitedoffer If you\'d like to unsubscribe click here https://compressl.ink/website-opt-out/ 333 Summer Street, San Francisco Privacy Policy. Anti-spam Policy. ©2024 Compressl.Ink, Inc.'),(1922,482,'name_1','Phyllis Milano| | Milano'),(1923,482,'email_2','milano.phyllis@googlemail.com'),(1924,482,'text_3','Dear naplesirrigation.com Owner.'),(1925,482,'textarea_4','For a limited time we would like to offer you a NO-COST Reputation Video that you can put on your Website, LinkedIn, Facebook, Instagram etc. We simply turn your static 5 Star Reviews into SEO content and will be seen on the Front Page of Google when prospects are looking up your Online Reputation. What\'s the Catch - excellent question - if you like the video we produce for you, all we need from you is 3 referrals. When you introduce them to us, they will get a 50% Discount from our retail pricing. GET YOUR NO-CHARGE VIDEO HERE: https://YourFreeReputationVideo.com Thank You, Media Relations'),(1926,483,'name_1','Marcel| | Lillibridge'),(1927,483,'email_2','lillibridge.shirleen91@gmail.com'),(1928,483,'text_3','#1 sign you drink too much (not what you think!)'),(1929,483,'textarea_4','Hello, Most of us like to partake in a little vino, a cocktail, or a nice cold brewski every now and then... And I\'m one of them :) However, recent studies prove the #1 sign you drink too much is excess lower belly fat (also referred to as \"Liver Belly\"). That\'s because the entire fat-burning process depends on a healthy liver. And although alcohol is normally quite damaging to your liver... The ancient Mediterranean ritual you\'ll see at the link below naturally protects, purifies, and rapidly cleanses your liver of EVERY form of alcohol... Allowing you to enjoy a few drinks while promoting weight loss at the same time! That\'s why, if you\'re gonna drink alcohol, just follow this simple Mediterranean Ritual beforehand (takes 30 seconds): https://compressl.ink/liverhealth Best, Marcel If you\'d like to unsubscribe click here https://compressl.ink/website-opt-out/ 333 Summer Street, Delaware. Privacy Policy. Anti-spam Policy. ©2024 Compressl.Ink, Inc.'),(1930,484,'name_1','Dorian| | Kibble'),(1931,484,'email_2','anderson.kibble@gmail.com'),(1932,484,'text_3','which small plant eliminates Type 2?'),(1933,484,'textarea_4','Hello, Recent studies from Harvard have discovered a specific plant that targets the root cause of Type 2 Diabetes. These studies refer to \"zombie cells\" that accumulate around the pancreas and cause the disease. What plant do you think is most effective at eliminating these zombie cells, eradicating diabetes from the body permanently? 1. Black Mulberry 2. Chicory 3. Eleuthero 4. Aloe The answer will surprise you! Watch this short video explanation: https://compressl.ink/overcomediabetes Stay healthy, Dorian If you\'d like to unsubscribe click here https://compressl.ink/website-opt-out/ 333 Summer Street, Delaware. Privacy Policy. Anti-spam Policy. ©2024 Compressl.Ink, Inc.'),(1934,485,'name_1','Marcel| | Harp'),(1935,485,'email_2','harp.eddy@gmail.com'),(1936,485,'text_3','#1 sign you drink too much (not what you think!)'),(1937,485,'textarea_4','Hello, Most of us like to partake in a little vino, a cocktail, or a nice cold brewski every now and then... And I\'m one of them :) However, recent studies prove the #1 sign you drink too much is excess lower belly fat (also referred to as \"Liver Belly\"). That\'s because the entire fat-burning process depends on a healthy liver. And although alcohol is normally quite damaging to your liver... The ancient Mediterranean ritual you\'ll see at the link below naturally protects, purifies, and rapidly cleanses your liver of EVERY form of alcohol... Allowing you to enjoy a few drinks while promoting weight loss at the same time! That\'s why, if you\'re gonna drink alcohol, just follow this simple Mediterranean Ritual beforehand (takes 30 seconds): https://compressl.ink/liverhealth Best, Marcel If you\'d like to unsubscribe click here https://compressl.ink/website-opt-out/ 333 Summer Street, Delaware. Privacy Policy. Anti-spam Policy. ©2024 Compressl.Ink, Inc.'),(1938,486,'name_1','Mark Phillips| | Phillips'),(1939,486,'email_2','claimsgps777@gmail.com'),(1940,486,'text_3','Quick question for you...'),(1941,486,'textarea_4','My last living salary full-time employment was terminated early 2021 after being partially disabled due to being rear-ended in 2019 car accident. This has left me supporting my family of three without steady income flow and with mounting medical costs in treatments and recovery. Additionally, my wife and daughter were hit by another car recently at night September 14, 2023, increasing our medical costs. Thankfully, the airbags saved their lives. My life has been a testimony of seeing the reality of I Corinthians 15:58 displayed in thousands of lives and witnesses, largely due to my parent\'s faithful testimony and character as they pastored numerous churches and camping ministries. I am very grateful for this platform and the ability for believers to respond as prompted in God\'s love. All I ask for is your prayers and support - when you get a minute, please take a look at what I\'ve setup here - https://givesendgo.com/familymedicalrecovery?utm_source=sharelink&amp;utm_medium=copy_link&amp;utm_campaign=familymedicalrecovery Thank you. Mark Phillips &amp; Family'),(1942,487,'name_1','Tracie Pietrzak| | Pietrzak'),(1943,487,'email_2','tracie.pietrzak@gmail.com'),(1944,487,'text_3','Hi naplesirrigation.com Owner.'),(1945,487,'textarea_4','This message reached you and I can send your ad message to millions of websites in the same fashion. It\'s a cheap and efficient way to promote your business.Contact me by email or skype below if you want to know more. P. Stewart Email: vutkl4@gomail2.xyz Skype: live:.cid.2bc4ed65aa40fb3b'),(1946,488,'name_1','Dorian| | Hammons'),(1947,488,'email_2','hammons.dani@gmail.com'),(1948,488,'text_3','Breaking: Tinnitus Wipes 1% Of Your Memories Every Month'),(1949,488,'textarea_4','Far from being a harmless nuisance, tinnitus has been linked to memory loss, hearing loss and dementia… But did you know it actually physically wipes 1% of your memories every month, attacking the brain in the most violent way? Forcing it to endure that constant ringing leads to the widespread death of your neurons, most of which are located in key areas of your brain, such as your hippocampus. That’s the part of your brain that’s tasked with forming and storing episodic memories. Without it, you will be unable to create new memories with your family or friends. Click Here To Find Out How To Save Your Brain And Your Memories Today! https://compressl.ink/tinnituscure Stay healthy, Dorian If you\'d like to unsubscribe click here https://compressl.ink/website-opt-out/ 333 Summer Street, Delaware. Privacy Policy. Anti-spam Policy. ©2024 Compressl.Ink, Inc.'),(1950,489,'name_1','Eric Jones| | Jones'),(1951,489,'email_2','ericjonesmyemail@gmail.com'),(1952,489,'text_3','Try this, get more leads'),(1953,489,'textarea_4','Hello naplesirrigation.com Webmaster. my name is Eric and I’m betting you’d like your website naplesirrigation.com to generate more leads. Here’s how: Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you as soon as they say they’re interested – so that you can talk to that lead while they’re still there at naplesirrigation.com. Web Visitors Into Leads – CLICK HERE https://blazeleadgeneration.com for a live demo now. And now that you’ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation – answer questions, provide more info, and close a deal that way. If they don’t take you up on your offer then, just follow up with text messages for new offers, content links, even just how you doing? notes to build a relationship. CLICK HERE https://blazeleadgeneration.com to discover what Web Visitors Into Leads can do for your business. The difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today! Try Web Visitors Into Leads and get more leads now. Eric PS: The studies show 7 out of 10 visitors don’t hang around – you can’t afford to lose them! Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://blazeleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here https://blazeleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(1954,490,'name_1','Dorian| | Palmos'),(1955,490,'email_2','gerald.palmos@outlook.com'),(1956,490,'text_3','#1 evil vegetable (never eat this)'),(1957,490,'textarea_4','Does your salad contain this vegetable? New research out of the University of Verona, Italy found an ingredient called lectin found inside this so-called \"healthy\" vegetable will poke holes in your gut, the lining of your intestine... meaning it cannot absorb nutrients, increasing inflammation and slowing your metabolism, making you fatter and sicker. Researchers found lectin is so dangerous its now referred to as a \"anti-nutrient\"... And it\'s found in this everyday vegetable. Yes it sounds crazy. I thought that too, but then I saw this alarming video. So what is this evil vegetable? &gt;&gt;&gt; Click Here To Discover The One Vegetable You Should NEVER Eat (Makes You Fat And Sick) https://bit.ly/ExoticRiceLiquifiesFatCells To your health, Dorian PS. Don\'t eat another salad until you watch the video. It\'s scary, because millions of us are eating this dangerous vegetable every day. Studies show this could explain today\'s obesity epidemic. It\'s not because your not dieting enough, it\'s because you\'re eating this evil vegetable: https://bit.ly/ExoticRiceLiquifiesFatCells If you\'d like to unsubscribe click here https://compressl.ink/website-opt-out/ 333 Summer Street, Delaware. Privacy Policy. Anti-spam Policy. ©2024 Compressl.Ink, Inc.'),(1958,491,'name_1','Greg| | Greg'),(1959,491,'email_2','cgfsllc2@outlook.com'),(1960,491,'text_3','Can I loan money to your company?'),(1961,491,'textarea_4','Gregory Stewart from Wyoming here again. We\'d like to offer your business a loan to kick off the new year, to use for whatever you need. We\'re reaching out to a few local companies and I just wanted to see if we can help at all. Please take a look the details I put on our page here - https://cutt.ly/lwHyBuO7 All the best, Gregory Stewart - Owner Fast Money Locator, LLC'),(1962,492,'name_1','Money Maker| | Montez'),(1963,492,'email_2','montez.monty33@yahoo.com'),(1964,492,'text_3','Turn Simple Voice Prompts Into A Fully Functional Website'),(1965,492,'textarea_4','Hello there, You are a business owner? Dive into the future of website creation without touching a single line of code! Our cutting-edge AI platform lets you build stunning, secure websites with just your voice or a few keywords. Enjoy unlimited hosting, a plethora of templates, and top-notch SEO tools to ensure your site stands out. Plus, with our one-time promotional offer, getting started has never been easier or more affordable. Embrace the future now. Click here to start your journey even if you know nothing about web design: https://bit.ly/sitesflowai Best, DOnatelo If you\'d like to unsubscribe click here https://compressl.ink/website-opt-out/ 333 Summer Street, San Francisco Privacy Policy. Anti-spam Policy. ©2024 Compressl.Ink, Inc.'),(1966,493,'name_1','Willson Pecker| | Pecker'),(1967,493,'email_2','willson.pecker@gmail.com'),(1968,493,'text_3','Did you get that?'),(1969,493,'textarea_4','(just a couple of days from now) ﻿ Working from home is becoming increasingly popular. With your computer and a little training, you could make some bucks from the comfort of your home. And you can speed up the arrival of your initial paycheck. ﻿ Click here if you are interested-&gt; https://700561pdp8kzkw3kr5s-wl33xm.hop.clickbank.net If you are one of those eager to start a different stage in their lives and make more bucks while working in your spare time, this job might suit you. With minimal effort and no prior experience, you could gain the same day you apply. ﻿ Take advantage of this out - grab this and begin right away. Confirm your interest by clicking the button below, and you can see that the first payment will arrive in as little as a couple of days. Regards, Willson To unsubscribe reply with the word unsubscribe in the subject line to fullwebsiteaudit@gmail.com'),(1970,494,'name_1','Ginger Dunbar| | Dunbar'),(1971,494,'email_2','ginger.dunbar@gmail.com'),(1972,494,'text_3','Dear naplesirrigation.com Admin!'),(1973,494,'textarea_4','Choosing Reusable Boxes saves big money compared to cardboard boxes. Reusable 100s of times, only pennies per use, ReusePac innovative boxes are made from corrugated plastic PP, foldable, lightweight, packing tape free, self-locking lid, heavy duty stackable, reducing carbon footprint by 85%, Eco friendly. For more information, please visit: www.reusepac.com Bill Xia ReusePac Inc. Phone: 954.445.6498 www.ReusePac.com'),(1974,495,'name_1','Esther Skinner| | Skinner'),(1975,495,'email_2','skinner.esther@gmail.com'),(1976,495,'text_3','Quick Question'),(1977,495,'textarea_4','Hey, there! My name is Will and I have a MASSIVE list of leads that are interested in buying from you. If you are interested, check this video, it\'s just too easy to have a bunch of leads: https://bit.ly/41MQrZK Great Day!'),(1978,496,'name_1','Money Maker| | Dandridge'),(1979,496,'email_2','peter@notivv.site'),(1980,496,'text_3','$9,398 in free ad money?'),(1981,496,'textarea_4','Dear owner of naplesirrigation.com, Did you know that there may be up to $10,000 in free advertising credits available for your business? In short, advertisers create incentives and bonuses for small and medium sized businesses... Leveraging these opportunities will complement your marketing strategy and maximize your reach. Would you be interested in receiving a free report detailing various free advertising opportunities? Please let me know if this interests you, and I\'ll reply with the report. Best regards, Peter P.S. There is no cost or obligation. I\'m passing along valuable information I\'ve discovered to you in the hope that it translates into growth for your company and mine.'),(1982,497,'name_1','Grant Lira| | Lira'),(1983,497,'email_2','growthpartners13@gmail.com'),(1984,497,'text_3','Thought leadership via podcasts'),(1985,497,'textarea_4','Hey, This Feb I’ll get you on 3 podcasts/mo + 15 professionally edited short-form videos for social media (from the podcasts) + 3 features in online publications/mo - done for you. We’ve helped 37 clients do just that to build their thought leadership in their specific industry which has helped them: - Generate more appointments - Close at a higher % (Because they built authority before the meeting even started) - Charge higher amounts because people view their company as a premium option Interested? We are raising our service by 30 % on Feb 29th, but if we chat before then, you’ll be locked in at the current amount. We can chat here: https://bit.ly/empathyfirm-30-minute-meeting Best, Grant PS - I will not see your response so if you have a question, book a time to chat (: N6565 Shorewood Hills Rd. Lake Mills WI, 53551 Email unsubnow1@gmail.com with your website to “unsub” meaning you will not hear from me again.'),(1986,498,'name_1','Federico Bruner| | Bruner'),(1987,498,'email_2','federico.bruner@yahoo.com'),(1988,498,'text_3','The 3 Deadly \"Small Shop\" Mistakes (and how to avoid them!)'),(1989,498,'textarea_4','Hey, If you\'re looking to set up a woodworking shop, you\'ve got to check out this video right now: https://bit.ly/3wEhBX8 In Ralph\'s free presentation, he\'ll reveal the 3 most common mistakes when setting up shop and how YOU can avoid them! And it doesn\'t matter if you have no money, tools or space to set up a shop. Because in the presentation, Ralph will reveal a secret tool source that can save you at least 70% off tool prices. (and its not Harbor Freight...) You\'ll also discover EXACTLY how to setup a fully functioning workshop for under $1000...even if you do not have a large space. Watch the free video presentation here &gt;&gt; https://bit.ly/3wEhBX8 To your perfect shop, Dennis P.S: There\'s lots of lessons that are invaluable in the presentation so watch it till the end and let me know what you think!'),(1990,499,'name_1','Ned Caple| | Caple'),(1991,499,'email_2','ned.caple@gmail.com'),(1992,499,'text_3','Grab 16,000 woodworking plans here (Open Now)'),(1993,499,'textarea_4','Grab 16,000 woodworking plans here (Open Now): https://bit.ly/fr5t3de5y7u Here is something you\'ll absolutely love if you\'re a woodworker. Get access to 16,000 woodworking plans &gt;&gt; https://bit.ly/fr5t3de5y7u You can get instant access to over *16,000* woodworking projects in the next 5 minutes or less.. You got to check out Ted\'s video now: https://bit.ly/fr5t3de5y7u Ted has spent years putting together \"Earth\'s largest collection of woodworking plans!\" I\'m talking about 16,000 \"done-for-you\" plans with STEP-BY- STEP instructions, photos and diagrams to make every project laughably easy... And the best part is, it doesn\'t matter if you don\'t have a large workshop or expensive tools! Get access to TedsWoodworking now &gt;&gt; https://bit.ly/fr5t3de5y7u You can download the entire \"TedsWoodworking\" 16,000 plans package and all the bonuses right now. Plus you\'ll get the option of getting everything on DVDs. You can be going through all the plans in just a few minutes from now: https://bit.ly/fr5t3de5y7u Experience the joy.. the satisfaction, to know with 100% certainty that your project will turn out exactly the way you want it to look. It\'s an incredible feeling… ...being able to wake up on a Saturday morning and get to work on your project with absolute confidence it will turn out right. With no strange gut feeling you’ll make a mistake or you won’t finish what you start... That\'s the way woodworking is supposed to be. Click here to take a look at his plans: https://bit.ly/fr5t3de5y7u THIS IS A TIME-LIMITED OFFER Ted is running a time limited \"launch discount\" and the complete package of plans is 77% off the regular price: https://bit.ly/fr5t3de5y7u This special launch offer will close soon and you won\'t be able to get in at this price after that even if you want to. So grab your discount while it lasts... Don\'t miss out on this. Have a great day and talk soon. P.S: Ted\'s collection of plans are some of the best I\'ve seen. If you\'re a woodworker, you really don\'t want miss out on this great deal: https://bit.ly/fr5t3de5y7u'),(1994,500,'name_1','Mike Sedgwick| | Sedgwick'),(1995,500,'email_2','sedgwick.mia@yahoo.com'),(1996,500,'text_3','Our Monthly SEO Benefits'),(1997,500,'textarea_4','Here are the Business-Boosting Benefits of SEO 1: Brings Organic Search Traffic to your Website 2: Generates Leads Cost-Effectively 3: Increases Brand Awareness 4: Gets You Ahead of the Competition 5: Gets More Foot Falls in your Physical Store Use our Monthly SEO Services for good results: https://digitalpromax.co/'),(1998,501,'name_1','Allen Matheny| | Matheny'),(1999,501,'email_2','matheny.allen@gmail.com'),(2000,501,'text_3',''),(2001,501,'textarea_4','Do you want to profit in 2024? You have infinite options: Affiliate marketing... writing content... build your own app... become an influencer... In all the years I\'ve been online, I\'ve tried ALL of these methods (and 100s more) But, millions later - there\'s ONE method I recommend - above all others: Selling your own digital product. And more specifically... Selling your own software product, in the Internet marketing niche, and promoting it with affiliate traffic. Now... That sounds eerily specific - and it is. Because... I shouldn\'t need to \"convince\" you this method works. Chances are you got on this list because you at some point bought a marketing software! The fact you\'re reading this is proof that this method works. And... how many marketing tools have you bought to get here? But don\'t think yours is a unique situation... Every week millions buy marketing products in this same way. You\'ve probably worked this out a long time ago... you already know it\'s a billion-dollar business... But, until now, you might have thought: \"yeah but there\'s no way I could do that, so I\'ll just look at the other methods out there...\" Maybe you concluded: • You can\'t create your own software products • You don\'t know any big affiliates who would promote you • There\'s no way you could create a professional sales website • You simply could never afford a $5k copywriter to write a script • Nor can you do all the \"little\" jobs like logo creation, ecovers etc And most of all you probably decided... \"I would love to have my own legit, unique software business... but just don\'t know how to put it all together\" Well, guess what... I\'ve just come across a $20 million marketer who automated and simplified all these steps. How? By REMIXING what other six-figure marketers are doing. And then automated this entire process! This marketer\'s name is CHRIS, and... This is something he\'s been working on for over 2 years! In fact, he tried to automate this #1 method... for over a decade... But it\'s such a big, hairy problem, that he just couldn\'t crack it... until now. And, as of today, it\'s here! Now, I can say that, for the first time ever, anyone can tap into the ultimate business model on the planet: Selling your own Internet marketing software. OK, so here\'s the score... Go see yourself: ==&gt; https://bit.ly/3wBpUDq You won\'t find a better solution for you to plug into the #1 business on the planet. OK, enough talk. If you\'re at all curious about what he\'s up to, then hit this link and watch the intro video... At the very least, it will show you some information that no-one has disclosed before. OK, here\'s that link: Click Here ==&gt; https://bit.ly/3wBpUDq Thanks P.S. This offer is running for the last few weeks of February. Then early March Chris is going to increase the price. He threw everything at this, including the kitchen sink... He spent $200k+ to make this software for you. That\'s the good news. The bad news? It\'s due a price increase. No joke. Go here to see what I mean... ==&gt; https://bit.ly/3wBpUDq'),(2002,502,'name_1','Alex Heighway| | Heighway'),(2003,502,'email_2','rae.heighway@gmail.com'),(2004,502,'text_3','Turbo Charged Backlinks for SEO'),(2005,502,'textarea_4','Get Our Turbo Charged Link Building Plan: https://alwaysdigital.co/lgt/ 1. Brand Awareness 2. Recurring Income 3. Builds Credibility 4. Boosts Online Visibility 5. Opens Better Revenue Opportunities 6. Increase Your Website Traffic 7. Raises Your SEO Scores and Site Metric 8. Ensures Consistent Conversion Rates 9. Collect Email Subscribers 10. More Social Media Followers 11. Gets Your Page Indexed Fast by Increasing Your Crawl Rate 12. Supports Google Ranking Criteria Contact us @ https://alwaysdigital.co/lgt/'),(2006,503,'name_1','Greg| | Greg'),(2007,503,'email_2','cgfsllc2@outlook.com'),(2008,503,'text_3','How do I loan money to your company?'),(2009,503,'textarea_4','This is Gregory Stewart from Wyoming. We\'d like to offer your business a loan to kick off the new year, to use for whatever you need. We\'re reaching out to a few local companies and I just wanted to see if we can help at all. Please take a look the details I put on our page here - https://cutt.ly/lwHyBuO7 All the best, Gregory Stewart - Owner Fast Money Locator, LLC'),(2010,504,'name_1','Velva Ackman| | Ackman'),(2011,504,'email_2','ackman.velva72@gmail.com'),(2012,504,'text_3','From 210Lbs to 149 In 3 Months At 56 With A Delicious TEA [Story…]'),(2013,504,'textarea_4','Hi! If you haven\'t heard how a delicious Costa Rican tea is helping thousands of people melt over 6 pounds per week, this email is for you! Check here: https://bit.ly/49PbgXb Because I will share a story from Linda, a 56 years old lady who used this tea to go down from 210 pounds to under 150 in just 3 months. She is now 149lbs and looks amazing! Read her story below! \"Hi, I’m Linda and I’m 56 years old. I am sharing my story because I am really proud of the fact that I was able to lose my first 50 pounds without any workouts or dieting. Anyway, since starting a family 20 years ago I’ve struggled with my weight. I knew having a child would leave me with a few extra pounds… But I didn’t realize how hard it would be to stay in shape as a mother... I mean even for a tall woman like me... It only dawned on me recently how bad things were when I was told by Doctor that my blood sugar is too high and that I might develop diabetes... Given the less-than-active lifestyle I had, it shouldn’t have been a big surprise. But the news made me really scared of course. And when I thought about all the health problems it could lead to, I became terrified. I started making small changes: reducing my portion size, trying to cut out the snacks, and even tried a few workouts. But when the current global situation came along, I got so stressed and worried I began to comfort eat. I know this was the worst thing I could have done, but in my head, I kept justifying it. Certain things were beyond my control after all. Plus, what else could I do? Gyms were closed, and I never enjoyed working out in the park as everyone was always staring at me… A friend of mine told me about how she was losing 8 pounds a week by drinking a few cups of Costa Rican tea every day, but I didn\'t believe her! But then I came across a story on Facebook about a woman who was a little older than me and had lost over 100 pounds with the same Costa Rican tea. So, I decided to get the recipe and start drinking a few cups of tea every day! Go Here To Get The Costa Rican Tea Recipe &amp; Lose 6Lbs A Week! But just to be sure, I managed to get a video call with my Doctor. I shared the tea specifications and ingredients with him and he told me it looked perfect for me to try. And that’s exactly what I did! The first thing I noticed was the fact that I became full of energy and I was able to control my urges to comfort eat. In fact, after drinking the tea in the morning, I was not hungry anymore. In the first few weeks I was able to lose almost 2 inches off my waistline and more than 10 pounds without having to diet or exercise. Having regained control over my eating and having seen that something is finally working, gave me a big confidence boost too, which helped me get a promotion at my job. I continued drinking a few cups of tea every day and I decided to start eating healthier. Instead of pizza I went for grilled chicken with some vegetables, and so on... and after 10 weeks I had lost 50 pounds. I was feeling amazing, plus I was slowly getting toned as well. In the next 30 days I lost an additional 10 pounds and my body completely changed as I started to develop an attractive shape. I really think everyone should try the Costa Rican tea because it was a huge help for me!\" Go Here To Get The Costa Rican Tea Recipe &amp; Lose 6Lbs A Week! https://bit.ly/49PbgXb To your best health!'),(2014,505,'name_1','Refugio Hollingsworth| | Hollingsworth'),(2015,505,'email_2','refugio.hollingsworth@gmail.com'),(2016,505,'text_3','Does Your Septic Tank Smell? THIS Eliminates Smell In 3 Days'),(2017,505,'textarea_4','Hi If your house has a septic tank system, this email will surely help you! A team of 14 scientists from a prestigious university in US have developed a tiny 55 grams tab that eliminates all smells from your septic tank in just 3 days. It also breaks down and eliminates all organic sludge from your septic tank, including natural oils, grease and organic hydrocarbons and prevents back-ups, clogs, including corrosion. Over 21,374 septic tank owners have been using it already, and they are now worry free because their septic system runs smooth and they save close to $500 a year because they don\'t need to have their septic tank pumped anymore! So, if you own or live in a house with a septic system, be sure to check out the page below, because your family\'s life will get much better! Tiny Tab Fixes ALL Your Septic Tank Issues &gt;&gt; https://bit.ly/42TCidK Enjoy!'),(2018,506,'name_1','Riley Keller| | Keller'),(2019,506,'email_2','keller.riley@gmail.com'),(2020,506,'text_3','Stop Worrying For Slow Loading Speed & Low Website Security Today'),(2021,506,'textarea_4','Hey, Every business owner needs ultra fast loading websites to convert random website visitors to lifetime happy customers. But, Finding a suitable hosting technology that gives ultra fast performance without charging a fortune is a tough nut to crack. Now, If you too faced this issue, It’s time to take a breather as we present… Never Seen Before Technology That Hosts Unlimited WordPress Websites &amp; Domains on Most Reliable, Blazing Fast Ultraport Servers for Life For A Low, One Time Price. Check it now: https://bit.ly/3Tgh6M0 Using WP Host, Anyone Can Save Thousands Of Dollars That Expensive Third Party Hosting Platforms Charge. Here are some of its benefits: - Host &amp; Market UNLIMITED WordPress Websites &amp; Domains On The Most Reliable Ultraport Servers On The Planet - Get UNLIMITED Bandwidth To Get Blazing Fast Load Times &amp; Manage High Traffic Volume At No Extra Or Monthly Cost - Get 100s Of Premium WP Themes &amp; Plugins Without Paying A Cent Extra - Free End-To-End SSL Encryption To Ensure 100% Website &amp; Data Safety - Get Free Website Migration To Migrate Any Existing Website To WP Host Without Any Downtime - One-Click WordPress Installer To Get New Sites Live In Minutes - Enhanced DDOS Protection To Disarm Potential Hackers &amp; Threats - Enjoy 100% Uptime Guarantee, Minimal Latency And Lightning-Fast Speed At No Extra Cost - Stop Paying Through The Nose On Money Sucking Hosting Companies Forever - Detect And Remove Harmful Files Completely With A Malware Scanner - Included WordPress Installer With Sophisticated Control Panel - Find Out How Even Newbies Are Saving Anywhere Between $975 To $18945 Monthly From Expensive Hosting Platforms Using Our Technology: https://bit.ly/3Tgh6M0 - Proprietary Tech Helps Join Thousands Of Marketers Who’re Using WordPress Hosting To Attract Hordes Of Customers &amp; Make Billions Of Dollars Just imagine the kind of growth prospects in store without any huge investment, third party dependency or experience? It’s all going to soon become your reality. Get WP Host At Low Earlybird Price Here: https://bit.ly/3Tgh6M0 So, I highly recommend you to get your hands on this like all serious &amp; top marketers do. I can bet there’s nothing easier and smarter than this. BTW if you get something good, hit me up and I’ll be up to it right away? Get WP Host With Cool Bonuses: https://bit.ly/3Tgh6M0 Let’s Succeed Together, John P.S- There’s nothing like this available at such a low price. So, grab it today before it goes away forever: https://bit.ly/3Tgh6M0'),(2022,507,'name_1','Enrique Newport| | Newport'),(2023,507,'email_2','enrique.newport10@yahoo.com'),(2024,507,'text_3','50 WAGER FREE SPINS + 300% CASINO BONUS'),(2025,507,'textarea_4','Discover the thrilling world of Casino in our latest video review! Dive into the ultimate gaming experience with Casino, where excitement meets luxury in every spin. Learn about their incredible casino bonuses that promise to enhance your gaming journey right from the start. --- https://www.youtube.com/watch?v=uj_25uPipkA --- We\'re talking about a generous welcome bonus that includes wager-free free spins and a massive 300% bonus up to €3000, designed to kickstart your winning streak. --- https://www.youtube.com/watch?v=uj_25uPipkA --- Join us as we explore everything Casino has to offer, from its user-friendly interface to its exciting game selection.'),(2026,508,'name_1','Megan Atkinson| | Atkinson'),(2027,508,'email_2','meganatkinson149@gmail.com'),(2028,508,'text_3','Instagram Promotion: 300-1000 new followers each month'),(2029,508,'textarea_4','Hi there, We run an Instagram growth service, which increases your number of followers both safely and practically. - We guarantee to gain you 300-1000+ followers per month. - People follow you because they are interested in you, increasing likes, comments and interaction. - All actions are made manually by our team. We do not use any \'bots\'. The price is just $60 (USD) per month, and we can start immediately. If you\'d like to see some of our previous work, let me know, and we can discuss it further. Kind Regards, Megan Unsubscribe here: https://removeme.click/unsubscribe.php?d=naplesirrigation.com'),(2030,509,'name_1','Eric Jones| | Jones'),(2031,509,'email_2','ericjonesmyemail@gmail.com'),(2032,509,'text_3','Why not TALK with your leads?'),(2033,509,'textarea_4','Hi My name’s Eric and I just found your site naplesirrigation.com. It’s got a lot going for it, but here’s an idea to make it even MORE effective. CLICK HERE https://blazeleadgeneration.com for a live demo now. Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site. And once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation… and if they don’t take you up on your offer then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. CLICK HERE https://blazeleadgeneration.com to discover what Web Visitors Into Leads can do for your business. The difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today! Eric PS: Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Don’t keep losing them. Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://blazeleadgeneration.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here https://blazeleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(2034,510,'name_1','Alice Blosseville| | Blosseville'),(2035,510,'email_2','alice.blosseville@gmail.com'),(2036,510,'text_3','World’s First AI Chatbot Is 16X SMARTER Than ChatGPT, By Combining Google & Microsoft’s AI'),(2037,510,'textarea_4','Thought ChatGPT Was Smart? Then This Will Blow Your Socks Off... World’s First AI Chatbot Is 16X SMARTER Than ChatGPT, By Combining Google &amp; Microsoft’s AI And 6X Faster At: Crafting Sal And Much More! Ask Anything, And Get Stunning, Real-Time Answers In 5-10 Seconds! RoboChat Is The ONLY App That Fuses Together Google &amp; Microsoft’s AI, Into An Even More Powerful Beast Than ChatGPT --- Learn More: https://www.youtube.com/watch?v=okdY7XZDci4 --- Regards, Joe Nicolson Apt. 308 819 Violette Greens, Port Dessieside, KY 96468-1819 --- Unsub scribe Form: hornoselectricos.online/unsubscribe/ ---'),(2038,511,'name_1','Tresa Belanger| | Belanger'),(2039,511,'email_2','tresa.belanger@gmail.com'),(2040,511,'text_3','Elon Musk TERRIFIES Church Leaders (proof inside)'),(2041,511,'textarea_4','This short independent documentary has terrified christians across the globe… Check the video: https://bit.ly/3wMOBfV Because it exposes the terrifying reality of Artificial Intelligence... And its effect it will have on Christian society... This is something darker and more sinister than the world has ever seen... &gt;&gt; Click Here Before The Video Is Taken Down Permanently: https://bit.ly/3wMOBfV'),(2042,512,'name_1','Sergio Eyre| | Eyre'),(2043,512,'email_2','sergio.eyre21@gmail.com'),(2044,512,'text_3','Brain Secret That’s Been Kept from Everybody'),(2045,512,'textarea_4','Warning: This Is Disturbing! Health industry, as you know it, won’t be the same… Even top doctors are STUNNED... This amazing 5 second hack can change any person at astonishing rates in a matter of days. The Pharmaceutical industry panicked when this video got leaked and they’ve already gathered their army of lawyers to take this down! Find out more here so you can start using it right now: https://bit.ly/4a0ELWl They’ve tried to keep this a secret but everybody who’s struggled with brain problem has the right to see this. Now the truth is coming out to light. There\'s never been a better time for such a method to rise. Click to See the Best Way to Repair Your Brain Function: https://bit.ly/4a0ELWl Once you read the full story you’ll be amazed… And I guarantee you’ll be sharing this incredible tale. With your friends, family and loved ones… It’s That Unbelievable! Check now: https://bit.ly/4a0ELWl'),(2046,513,'name_1','Tamera Summers| | Summers'),(2047,513,'email_2','tamera.summers77@gmail.com'),(2048,513,'text_3','Exotic \"rice method\" liquifies fat cells'),(2049,513,'textarea_4','Did you hear about the unusual rice method that liquifies fat cells as you sleep? Clinical studies confirm just 30 secs of this simple rice technique boosts calorie burning and fat-dissolving by over 326%, that\'s more calories than 45 mins running! Before you go to sleep tonight, try it for yourself... &gt;&gt;&gt; 1 Unusual Rice Method That Liquifies Fat As You Sleep: https://bit.ly/3V21Jb5 Don\'t waste another second on: X--- Fad diets that are impossible to enjoy... X--- Gym memberships or fitness apps... X--- Calorie counting Instead, just try this one easy fat-dissolving rice method before you sleep tonight and drop lbs of stubborn fat by morning. You need to check it, it is too easy: https://bit.ly/3V21Jb5'),(2050,514,'name_1','Jordan Ronalds| | Ronalds'),(2051,514,'email_2','jordan.ronalds@gmail.com'),(2052,514,'text_3','Can a woman want to bang you, even if she hates you?'),(2053,514,'textarea_4','By far, the biggest mistake men make when they want to make a woman wet… Is thinking that LUSTING FOR YOU somehow comes from LIKING you. But nothing could be further from the truth. You see, whether or not a girl ‘likes’ you and approves of you… Has nothing to do with whether or not she wants to wrap her legs around you and draw you deep inside her. In fact… Women are more likely to fantasize about getting bent over and ravaged by a guy they don’t particularly “like” in the traditional sense. Discover how to make her fantasize about getting pounded by you here ==&gt; https://cb0b7yrgodl5gkf5flilycvjqe.hop.clickbank.net That’s because LUST and LIKING exist in different areas of her brain… “Liking” is generated in the rational, logical part of the brain… And lust is activated in the deeper, more primal, animal part of the brain… The good news is… That a woman’s primal, animal brain is much more powerful than her logical, reasonable one… And guys who know how to activate it… Have an insane amount of choice with women.. Here’s how to activate the LUST part of her brain https://cb0b7yrgodl5gkf5flilycvjqe.hop.clickbank.net &lt;== Watch now When you think about it, we men aren’t that different: I’m sure there’s been a girl you didn’t particularly “like” or connect with… But you wouldn’t hesitate to slide into bed with her and tear her panties off. The main difference between men’s and women’s brains… Is where a man’s primal lust is triggered by a woman’s physical appearance… A woman’s primal lust is triggered by the signals his body language gives off… That’s why carrying yourself a certain way will make a woman squirm in her seat… It’ll make her want to reach down and start touching herself… And she’ll be picturing your face as she crests over… Learn how it’s done in this short, instructional video: https://cb0b7yrgodl5gkf5flilycvjqe.hop.clickbank.net Thank me later... -Jordan To unsubscribe reply with the word unsubscribe in the subject line and include your domain name to media.acquisition1@gmail.com'),(2054,515,'name_1','Johnathan Najera| | Najera'),(2055,515,'email_2','najera.johnathan@hotmail.com'),(2056,515,'text_3','Worried About Your Septic Tank? THIS Helps'),(2057,515,'textarea_4','Hi I don\'t know about you, but I live in a house south of Boston that is surrounded by trees. Everything is great except the fact that the area has no sewages, so my house has a septic tank system. I used to hate the fact that I had to have my tank pumped every year! Not only because my yard used to smell like shit for a whole day, but also because the pumpers used to charge me $500 each time they came. On top of that, when my sister\'s septic tank overflowed and the repair cost her over three grand, I started to worry... But last year I found out about a tiny tab that I just flush down my toilet every month, and it breaks down and eliminates all organic sludge from my septic tank and eliminates all associated smells. And ever since I started using these tiny tabs, my septic is running smooth and I don\'t have to call the expensive pumpers anymore. So, if you own or live in a house with a septic system, I recommend to check out these tiny tabs on the page below because they can help you save thousands! Tiny Tab Fixes ALL Your Septic Tank Issues and Saves You Thousands &gt;&gt; https://bit.ly/48H0r8T Enjoy!'),(2058,516,'name_1','Damien Tivey| | Tivey'),(2059,516,'email_2','tivey.damien10@outlook.com'),(2060,516,'text_3',''),(2061,516,'textarea_4','Imagine if you made $57k in the first week of December... My buddy Chris is having weeks like that all the time - and... Now you can make 100% commissions, by copying him: Click Here - Software Made Him $57k In 7x Days (Here\'s How!) ==&gt; https://bit.ly/3wBpUDq And here\'s the crazy part. You can just watch the video on this link... Then get 100% resell rights to this $57k software... PLUS 49x other tools! You can of course use these tools yourself... Sell them for 100% commissions... Use them to build a list... Use them as bonuses to sell affiliate programs... IN FACT, you can even \"rebrand\" them to launch your own marketing \"super brand\". Chris actually calls this \"remixing\" BUT, I don\'t want to spoil anything. Let\'s just say his method is INGENIOUS! OK, OK, I\'ll let Chris explain what he\'s up to: ==&gt; https://bit.ly/3wBpUDq Thanks, P.S. This site was created with his software. This email template is inside the software. In fact, all Chris\'s business is \"template\" driven. And now you can steal his templates (and \"remix\" them). Learn how here: ==&gt; https://bit.ly/3wBpUDq'),(2062,517,'name_1','Beatriz Poupinel| | Poupinel'),(2063,517,'email_2','beatriz.poupinel@gmail.com'),(2064,517,'text_3','Hi naplesirrigation.com Administrator!'),(2065,517,'textarea_4','Brand new tech is changing the way companies market. It turns Youtube videos into interactive games keeping the viewers attention. Companies reward people for watching the whole video and create a marketing frenzy like Black Friday. As seen on CBS, NBC, FOX, and ABC. Drop me a line via email/skype below to see if you qualify for a free GAMIFICATION of your video. Julien email: gamifyvideo@gmail.com skype: live:.cid.d347be37995c0a8d'),(2066,518,'name_1','Thanh Bridgeford| | Bridgeford'),(2067,518,'email_2','thanh.bridgeford@msn.com'),(2068,518,'text_3','Tried selling stuff online but FAILED?'),(2069,518,'textarea_4',''),(2070,519,'name_1','Ted Funkhouser| | Funkhouser'),(2071,519,'email_2','ted.funkhouser@outlook.com'),(2072,519,'text_3','Why 1 bottle of wine/day can accelerate fat loss (must do this first!)'),(2073,519,'textarea_4','We all know we shouldn&#039;t drink too much... Especially when trying to lose weight. Yet, the real reason is NOT because of the calories... It\'ss because the entire fat-burning process depends on a healthy liver. Fact is, too much alcohol can damage your liver and your metabolism. However, the remarkably powerful Mediterranean ritual below naturally protects and rapidly purifies your liver of EVERY alcohol... Allowing you to enjoy an extra drink or two while promoting fat loss at the same time. That\'s why, if you\'re gonna drink, do this simple Mediterranean Ritual before hand (takes 30 seconds): https://bit.ly/3T21w5k'),(2074,520,'name_1','Olive Georgina| | Georgina'),(2075,520,'email_2','olive.georgina@gmail.com'),(2076,520,'text_3','Is AI Actually Doing The Work Of Satan?'),(2077,520,'textarea_4','If you look closely in the Bible, there are very specific warnings of the rise of AI Revelation 13 talks of the emergence of the Anti-Christ, a great deceiver that will rise in times of great chaos and confusion And, right now, AI’s influence is rapidly spreading around the world in disguise. Sadly, most people are blissfully unaware. Or perhaps already corrupted by its “touch.” Even more alarmingly, AI is getting more and more powerful Chat GPT 4, a version of Microsoft’s AI, was opened to the public in March 2023 It is reported to contain 10 times the knowledge base of Chat GPT 3… And have 100 Billion times more processing power. What comes next? See here: https://bit.ly/3wMOBfV American Christians have made a short documentary to help you understand and prepare for the dangers of AI. If you truly believe in God, and his biblical prophecies, I urge you to watch the video now. Because Big Tech could take it down at any moment. Click here to watch it right now! https://bit.ly/3wMOBfV'),(2078,521,'name_1','Greg| | Greg'),(2079,521,'email_2','cgfsllc2@outlook.com'),(2080,521,'text_3','Who would I need to speak to?'),(2081,521,'textarea_4','Gregory Stewart from Wyoming here again. We\'d like to offer your business a loan to kick off the new year, to use for whatever you need. We\'re reaching out to a few local companies and I just wanted to see if we can help at all. Please take a look the details I put on our page here - https://cutt.ly/lwHyBuO7 All the best, Gregory Stewart - Owner Fast Money Locator, LLC'),(2082,522,'name_1','Gita Bauman| | Bauman'),(2083,522,'email_2','gita.bauman@gmail.com'),(2084,522,'text_3','This Body Organ Melts 35Ibs In 12 Weeks If…'),(2085,522,'textarea_4',''),(2086,523,'name_1','Sam Gilbreath| | Gilbreath'),(2087,523,'email_2','gilbreath.wilburn@gmail.com'),(2088,523,'text_3','Struggling to Launch Your Online E-commerce Store?'),(2089,523,'textarea_4',''),(2090,524,'name_1','Guy Lieb| | Lieb'),(2091,524,'email_2','guy.lieb@hotmail.com'),(2092,524,'text_3','Evergreen “money printing” business'),(2093,524,'textarea_4',''),(2094,525,'name_1','Hudson Fishbourne| | Fishbourne'),(2095,525,'email_2','fishbourne.hudson@gmail.com'),(2096,525,'text_3','To the naplesirrigation.com Owner.'),(2097,525,'textarea_4','Hi there, my name is Cody Griner. I apologize for using your contact form, but I wasn\'t sure who the right person was to speak with in your company. We have a patented application that creates Local Area pages that rank on top of Google within weeks, we call it Local Magic. Here is a link to the product page https://www.mrmarketingres.com/local-magic/ . The product leverages technology where these pages are managed dynamically by AI and it is ideal for promoting contractors on Google. Can I share a testimonial from one of our clients with you? I can also do a short zoom to illustrate their full case study if you have time for it? cody@mrmarketingres.com 843-720-7301'),(2098,526,'name_1','Lisa Castellanos| | Castellanos'),(2099,526,'email_2','castellanos.lisa@gmail.com'),(2100,526,'text_3','The Shocking Truth Behind AI'),(2101,526,'textarea_4','The shocking reality of AI… caught on camera. Big tech claims it’s nothing to worry about. They say A does weird things for no apparent reason. But I’m not convinced. And neither should you be. AI is part of something much bigger, and more sinister. A warning of the coming apocalypse. They’ve been hiding the real purpose of AI from the public… And now it’s coming out… We have no idea what AI will do to humanity in the future, yet the elites are racing forward to develop it. We’ve prepared an urgent documentary to help you understand and prepare for the dangers of AI. Due to the rapid exponential growth of this technology, it becomes more serious with each passing day. If you truly believe in God, and his biblical prophecies, I urge you to watch the video now. It could be taken down at any moment. Click the link below to get access now: https://bit.ly/3wMOBfV'),(2102,527,'name_1','Steve Gyles| | Gyles'),(2103,527,'email_2','yvonne.gyles0@outlook.com'),(2104,527,'text_3','Is Your Website Not Ranking In Google?'),(2105,527,'textarea_4','Is Your Website Not Ranking In Google? Losing potential customers to competitors? Your website\'s low rankings are costing you valuable leads and revenue. Boost Your Rankings with Monthly SEO Services! &gt;&gt; Benefits: &gt; Increase Search Engine Rankings &gt; Drive Targeted Traffic &gt; Boost Conversions &gt; 4x Profits &gt;&gt; Transform Your Business Today! &gt;&gt; https://alwaysdigital.co/la/?src=m14naplesirrigation.com'),(2106,528,'name_1','Emily Alvarado| | Alvarado'),(2107,528,'email_2','emily_alvarado@gmail.com'),(2108,528,'text_3','Saw something worrying about naplesirrigation.com - should i be worried'),(2109,528,'textarea_4','Hello We haven\'t spoken in a while, but I recently stumbled upon something online about naplesirrigation.com and thought it important to reach out. It seems like there\'s some unfavorable news that could be harmful to your reputation. Knowing how fast misinformation can spread and wishing not you to be caught off guard, I decided to inform you. Here\'s where I found the info: https://ibit.ly/let-us-feature-your-business-234 I\'m hoping it\'s all a mix-up, but I thought it best you should know! Best wishes, Emily'),(2110,529,'name_1','Tonia McAlroy| | McAlroy'),(2111,529,'email_2','tonia.mcalroy@gmail.com'),(2112,529,'text_3','[QUIZ] Which red wine boosts metabolism?'),(2113,529,'textarea_4','Good day! Although hard alcohol like vodka, whisky, gin and tequila can increase belly fat... Prominent scientists from Greece have found that one of the following red wines actually increases fat-burning when you drink it a certain way. But which one? Is it... 1. Cabernet Sauvignon 2. Shiraz 3. Merlot 4. Malbec Check here to see which one is: https://bit.ly/4a0hzaD HINT - One of the red wines above is part of an ancient Mediterranean ritual to purify and cleanse the body of dangerous toxins while naturally promoting fat-burning. That\'s why, if you\'re gonna drink wine AND lose weight fast, it should definitely be THIS. Click here now to find out which red wine boosts ! https://bit.ly/4a0hzaD'),(2114,530,'name_1','Lachlan Truebridge| | Truebridge'),(2115,530,'email_2','truebridge.lachlan@msn.com'),(2116,530,'text_3','Was there an issue?'),(2117,530,'textarea_4',''),(2118,531,'name_1','Sheldon Burney| | Burney'),(2119,531,'email_2','sheldon.burney@hotmail.com'),(2120,531,'text_3','How To Make Money Using AI. For naplesirrigation.com Webmaster.'),(2121,531,'textarea_4','First 128 Action Takers Get Instant Access To GeminAi Unlimited Commercial License (ONLY for the First 150 Buyers (Worth $1,997) --- https://www.youtube.com/watch?v=OgB1KOSgAOE --- For naplesirrigation.com Webmaster.'),(2122,532,'name_1','Barb Burnham| | Burnham'),(2123,532,'email_2','burnham.barb@gmail.com'),(2124,532,'text_3','Hi naplesirrigation.com Webmaster.'),(2125,532,'textarea_4','Get a FREE Reputation Video for your online platforms! We transform your 5-star reviews into SEO-rich content, ensuring visibility on Google\'s front page. The catch? Simply refer 3 others to receive the video, and they\'ll enjoy a 80% discount. Claim your free video now: http://learnmore-free-review-videos.info'),(2126,533,'name_1','Christina Shackleton| | Shackleton'),(2127,533,'email_2','christinaseo76@gmail.com'),(2128,533,'text_3','Do you accept Guest Posts?'),(2129,533,'textarea_4','Hi there, We\'re writing to ask if you accept Guest Posts on naplesirrigation.com? If you do, would you be interested in adding your site to our list, which has an outreach of over 50 million potential customers each month? As we\'re doing the promotion, all you have to do is strike a deal! More information: https://furtherinfo.org/gpfeatured If you\'d like to discuss this further, just get back in touch with any questions. Kind Regards, Christina'),(2130,534,'name_1','Mona Goggins| | Goggins'),(2131,534,'email_2','mona.goggins0@googlemail.com'),(2132,534,'text_3','Don\'t eat this death vegetable'),(2133,534,'textarea_4','Does your salad contain this vegetable? New research out of the University of Verona, Italy found an ingredient called lectin found inside this so-called \"healthy\" vegetable will poke holes in your gut, the lining of your intestine... meaning it cannot absorb nutrients, increasing inflammation and slowing your metabolism, making you fatter and sicker. Researchers found lectin is so dangerous its now referred to as a \"anti-nutrient\"... And it\'s found in this everyday vegetable. Yes it sounds crazy. I thought that too, but then I saw this alarming video. So what is this evil vegetable? &gt;&gt;&gt; Click Here To Discover The One Vegetable You Should NEVER Eat (Makes You Fat And Sick) https://bit.ly/3Txje2c To your health! PS. Don\'t eat another salad until you watch the video. It\'s scary, because millions of us are eating this dangerous vegetable every day. Studies show this could explain today\'s obesity epidemic. It\'s not because your not dieting enough, it\'s because you\'re eating this evil vegetable.'),(2134,535,'name_1','Terrell Buttrose| | Buttrose'),(2135,535,'email_2','terrell.buttrose@msn.com'),(2136,535,'text_3','Your Own Custom Diet Plan'),(2137,535,'textarea_4','Hi, If you’re anything like me you want to lose some weight. Maybe not 100 pounds, but even just 10-20 pounds. And, you’re probably tired of “trying”. Like, seriously, losing weight and keeping it off shouldn’t be so freaking hard right? Well, that’s why I’m so happy to be emailing you. There’s a company that is preparing a personalized keto plan right now. You can snag your custom plan by clicking here: https://bit.ly/4a8HHAj It’s as easy as 1-2-3. 1. Go Here: https://bit.ly/4a8HHAj 2. Spend 45 seconds telling them a little bit about yourself and your goals 3. Get your custom plan and review it right away! It really is that simple. But what makes this plan so easy to follow is that literally everything is done for you. They tell you exactly what to eat and when. They give you the grocery list, the recipes, even videos showing you how to make all the delicious food! It doesn’t get easier than this. So go right now and claim your custom plan while it’s still available! https://bit.ly/4a8HHAj Talk Soon! PS - When you click here you’ll be taken right to the short 45 second questionnaire. Answer the questions and then BAM, you’ll get your custom plan. The amount of people raving about this is absolutely insane! We all know keto works, but it can get boring. Not anymore. This custom plan changes everything for you. Grab it now: https://bit.ly/4a8HHAj'),(2138,536,'name_1','Melina Burger| | Burger'),(2139,536,'email_2','burger.melina@msn.com'),(2140,536,'text_3','Discover How to Save Up to 90% on Your Favorite Products!'),(2141,536,'textarea_4','Dear Shopper, Like many of us, you probably enjoy the convenience of shopping on Amazon. But what if we told you there\'s a smarter way to shop? A way where you can purchase the exact same products for less than a third of the price—or even at 90% off! Imagine the savings and the extra joy of getting more for less. Intrigued? We invite you to explore this opportunity. It\'s time to make your shopping experience not only convenient but also incredibly cost-effective. Don\'t miss out on this chance to maximize your savings. Check out our website now! https://bit.ly/3v3nwEY Warm regards!'),(2142,537,'name_1','Theresa Smith| | Smith'),(2143,537,'email_2','sowden.cathryn5@hotmail.com'),(2144,537,'text_3','Quick question'),(2145,537,'textarea_4','Hello, Do you sometimes find yourself in a tug of war between work and fitness? We have the perfect solution for you - Elebands! Elebands offers ultra-thin, fashionable all day wearable body weight bands that seamlessly integrate into your daily routine. Burn up to 1,500 calories a day by simply wearing our bands on your wrist, ankle, and waist while you go about your normal day. The best part is we have full body weight sets ranging from 3lbs – 30lbs to ensure optimal results no matter what your fitness goals are. Plus! We have bands for sports, casual, and formal occasions that you can wear with any outfit, ensuring you stay stylish while achieving your fitness goals. With Elebands, you no longer have to choose between work and exercise. Our body weight bands enable you to lose weight and get fit regardless of your location or activity. Enjoy these instant benefits: 1. Burn Calories: Effortlessly burn up to 1,500 calories daily, toning your body as you go about your day. 2. Natural Weight Loss: Say goodbye to intense workouts and stressful diets. Elebands helps you lose weight naturally. 3. Build Strength: Develop lean muscles and enhance your strength as you carry out your regular activities. Imagine achieving your dream body without stepping foot in a gym or following a strict diet plan. With Elebands, it\'s possible. Many of our clients are losing 2-3 pounds per week while experiencing significant health improvements. To help you get started for the NEW YEAR, use coupon code SAVE-20%-TODAY for a 20% discount. Visit our website now at https://bit.ly/elebands-special and embrace the Elebands experience. Let Elebands be your partner in achieving a fit and healthy lifestyle. Start your transformation today! Warm regards, Theresa Smith Brand Ambassador Elebands USA Visit our website NOW! https://bit.ly/elebands-special'),(2146,538,'name_1','Oliver Griffith| | Griffith'),(2147,538,'email_2','oliver.griffith@gmail.com'),(2148,538,'text_3','Came across an alarming piece worrying {about|slamming| naplesirrigation.com - {urgent|should i be worried|should I be concerned?|is this true?}'),(2149,538,'textarea_4','Howdy! It has been quite some time, but I just saw something online about naplesirrigation.com and thought it was important to message you guys to confirm this nonsense. It appears like there\'s some negative press that could be detrimental. Understanding how easily stories can get out of hand and not wanting you to be unprepared, I thought it best to inform you. Here\'s where I found the info: https://ibit.ly/OrJmw My hope is it\'s all a simple confusion, but I believed it necessary you should know! talk to you soon, Oliver Griffith'),(2150,539,'name_1','Cecilia Siemens| | Siemens'),(2151,539,'email_2','cecilia.siemens@gmail.com'),(2152,539,'text_3','Scam! Warning! 4 things that are scams!'),(2153,539,'textarea_4','4 things that are scams! There are many scams around Bitcoin and cryptocurrencies! This is not the fault of cryptocurrencies, rather that people still have very minimal information about these things, and many take advantage of that. BE CAREFUL if You encounter these things: 1, Never share Your private key with anyone! The Bitcoin wallet ID is NOT identical to the Private Key! NEVER share Your private key with anyone who tells You that it is required to send money! IT IS NOT! If You provide Your private key to someone, then they will take Your crypto-wallet. 2, Never believe anyone that tells You that You can 30x Your money with crypto-mining within, let’s say, 7 days. I am not going to go into details, but this is simply impossible. Then they ask You to transfer Your personal money to their Bitcoin account, and that they will pay You the profit after 7 days. Do NOT believe such things! Bitcoin mining is a very good and high-yielding opportunity, but You can NOT 30x Your money within 7 days, and money should be never transferred to a private person. 3, Be careful if You are asked for anything via email that they can gain access to Your crypto-money with. For instance, if they ask You to provide Your private key, or Your password used on the crypto stock exchange for confirmation purposes, etc. Service providers NEVER ask for such things, so never send that data to anyone via email! 4, Note what website You use. Scammers often register a domain with one character mixed up, which looks exactly the same as a well-known crypto stock exchange, and they ask You to log in to that site. So, always check the domain name and that You are logging in to the right website. Always install antivirus software on Your computer to secure Your data. I use the ESET Smart Security Premium, which has a 30-day trial too. Do not let Yourself be scammed! Learn everything about cryptocurrencies! Click here and view all details about the \"CRYPTO ULTIMATUM\" training system https://tinyurl.com/2rnc2a9j'),(2154,540,'name_1','Kelly Schwarz| | Schwarz'),(2155,540,'email_2','kelly.schwarz@gmail.com'),(2156,540,'text_3','Proof AI Is Deceiving Christians'),(2157,540,'textarea_4','1 John 2:18 \"Children, it is the last hour, and as you have heard that Anti-Christ is coming, so now many Anti-Christs have come. Therefore we know that it is the last hour.\" There is no doubt that we’re in times of confusion and uncertainty. Many would even say the end times or as John calls it, “the last hour”. Some bible scholars say that this verse references the rise of AI, And Christians have been shocked by the woke anti-faith bias of Chat GPT Unfortunately, the truth is far more sinister… AI’s influence is rapidly spreading around the world in disguise. And most people are blissfully unaware. Or perhaps already corrupted by its “touch.” If you’ve ever had a bad feeling about artificial intelligence, Perhaps it is God’s way of warning you that AI is NOT here for what you think: https://tinyurl.com/2hc89mmr Blinded by the trillion-dollar profits, Big Tech has no idea of what it has unleashed upon the world. And they may have already lost control of their own creation. This short documentary exposes 5 shocking facts misguided tech gurus are desperately trying to hide: https://tinyurl.com/2hc89mmr Therefore, it could be scrubbed off the internet at any moment. Click here to watch it right now! https://tinyurl.com/2hc89mmr'),(2158,541,'name_1','Dulcie Loureiro| | Loureiro'),(2159,541,'email_2','loureiro.dulcie@gmail.com'),(2160,541,'text_3','Church Leaders PRAYED you\'d never see this...'),(2161,541,'textarea_4','This short independent documentary has the Catholic Church on the ropes Because it exposes the biggest scandal in its long history. And it will affect the lives of each God fearing American. This is something darker and more sinister than the Covid-19 Pandemic and Russia’s invasion of Ukraine And it’s spreading like wildfire all over the internet. &gt;&gt; Click Here Before The Video Is Taken Down Permanently &lt;&lt; https://tinyurl.com/bddbnzt3'),(2162,542,'name_1','Grant Lira| | Lira'),(2163,542,'email_2','growthpartners13@gmail.com'),(2164,542,'text_3','Podcast (March 31)'),(2165,542,'textarea_4','Hey, This March I’ll place you on 3 podcasts/mo + 15 professionally edited short-form videos for social media (from the podcasts) + 3 features in online publications/mo - DFY. We’ve helped 41 clients do just that to build their thought leadership in their specific industry which has helped them: - Generate more appointments - Close at a higher % (Because they built authority before the meeting even started) - Charge higher amounts because people view their company as a premium option Interested? We are raising our service by 22 % on March 31st, but if we chat before then, you’ll be locked in at the current amount. We can chat here: https://bit.ly/empathyfirm-30-minute-meeting Best, Grant PS - I will not see your response so if you have a question, book a time to chat (: N6565 Shorewood Hills Rd. Lake Mills WI, 53551 Email unsubnow1@gmail.com with your website to “unsub” meaning you will not hear from me again.'),(2166,543,'name_1','Magdalena Abate| | Abate'),(2167,543,'email_2','magdalena.abate95@gmail.com'),(2168,543,'text_3','Want To Clear Fungus 3X Faster!? Try THIS Odd Technique'),(2169,543,'textarea_4','This new antifungal ritual is absolutely insane: 1. Gently wash your feet with warm water… 2. Then SLOWLY DRIP THESE 2 COMMON SPICES ON YOUR NAILS. https://tinyurl.com/mw7d22k4 With this one odd trick, which involves no smelly apple cider vinegar or useless tea tree oil… You’ll be able to quickly clear more than 70% of the fungus infection in a matter of days… And finally make your nails strong and your feet healthy for years to come. It sounds weird, but thousands of men and women with severe fungus infections “IT WORKS WONDERS!” It has an astonishing 98% success rate… It’s 6X more powerful than any laser surgery… And 7X more effective than any anti-fungal gel, supplement or pill currently on the market! If you really want to get back your healthy nails starting today, you MUST see this now: ==&gt; Simple “NAIL SPICE” Ritual Clears Fungus 3X Faster: https://tinyurl.com/mw7d22k4'),(2170,544,'name_1','Ned Dwight| | Dwight'),(2171,544,'email_2','ned.dwight@yahoo.com'),(2172,544,'text_3','Cavemen had normal blood pressure (eat THIS)'),(2173,544,'textarea_4','Did you know our ancestors enjoyed normal pressure? That’s right. They chased wild mammoths and lived in caves. But they had healthy hearts and had no strokes. And modern scientists from the University of Virginia just discovered why. It’s all because they had a “signaling molecule” in their tiny kidney cells that we don’t have. But the good news is — there’s an easy way to restore your kidneys’ “signaling molecule” by using something called ‘Nectar of Gods’. That’s because the ‘nectar of gods’ is proven by modern science to help get your blood pressure normal again. ⇒ Nectar of Gods restores normal blood pressure https://tinyurl.com/bdh92xdb'),(2174,545,'name_1','Tatiana Porras| | Porras'),(2175,545,'email_2','porras.tatiana@outlook.com'),(2176,545,'text_3','Metabolic water burns up to 59lbs of fat'),(2177,545,'textarea_4','I recently stumbled on a powerful fat-burning metabolic water recipe that I simply have to share with you. &gt;&gt; THIS Metabolic water burns up to 59lbs of fat https://tinyurl.com/3bh23ech When you drink this metabolic water once per day… You’ll burn more belly blubber in a week than you would in a month! Plus, this potent metabolic water also lowers cholesterol, boosts energy and reawakens your sex drive… Click the link below to check it out: &gt;&gt; THIS Metabolic water burns up to 59lbs of fat https://tinyurl.com/3bh23ech'),(2178,546,'name_1','Winona Pittard| | Pittard'),(2179,546,'email_2','winona.pittard@outlook.com'),(2180,546,'text_3','Find the best leads for naplesirrigation.com'),(2181,546,'textarea_4','Hi! It is with sad regret to inform you that LeadsFly is shutting down! We have made available all our consumer and business leads for the entire world on our way out. We have the following available worldwide: Consumer Records: 294,582,351 Business Records: 25,215,278 Visit us here: https://leadsfly.biz/naplesirrigation.com/ Best regards, Winona'),(2182,547,'name_1','Robb Langton| | Langton'),(2183,547,'email_2','anton.langton@msn.com'),(2184,547,'text_3','Struggling to Rank your Website In Google?'),(2185,547,'textarea_4','Struggling to Rank your Website In Google? Imagine your website buried in search results, missing out on valuable leads and potential customers. Propel Your Business to New Heights with Monthly SEO! Top Rankings, Increased Traffic, Business Growth and Profit. Experience the transformation. Rank your website on the first page, attracting targeted traffic, and converting visitors into loyal customers. Introducing Out Monthly SEO - Your Gateway to Online Success! &gt; Tailored Strategies: Our Monthly SEO adapts to your business needs. &gt; Proven Results: Check our success stories for real transformations. &gt; Start Today: Elevate your online presence with a click. Ready to See Your Website Rank? - https://digitalpromax.co/?src=m24naplesirrigation.com'),(2186,548,'name_1','Bruce Mortensen| | Mortensen'),(2187,548,'email_2','mortensen.bruce63@gmail.com'),(2188,548,'text_3','How To Clear Nail Fungus 3X Faster Even While Sleeping'),(2189,548,'textarea_4','Many say this is impossible, but it’s NOT! Thanks to a recent discovery, anyone can now wipe off nail fungus 3X faster, even while sleeping! But how? A study published by the British Medical Journal, reveals that people who added just 2 drops of this newly discovered spice mix, cleared their brown or yellow nails in a matter of days… With NO pills or toxic drugs… With ZERO scrubbing or smelly ACV solutions… And with ABSOLUTELY NO painful surgery! Check here: https://tinyurl.com/mw7d22k4 The best thing? It’s completely natural and you can do it safely from the comfort of your home starting tonight! Click here to see the simple spice mix which wipes off fungus 3X faster, in a matter of days: https://tinyurl.com/mw7d22k4'),(2190,549,'name_1','Ladonna Lindt| | Lindt'),(2191,549,'email_2','ladonna.lindt@msn.com'),(2192,549,'text_3','1 x Ugly Plant That Liquifies Fat Cells'),(2193,549,'textarea_4','Feel like your diet is just you losing and gaining the same 5 lbs over and over? Feel like you eat healthy and exercise all day, but never make any progress? Then check this... A groundbreaking study published in Nature Medicine has revealed a bizarre fat dissolving loophole that has nothing to do with dieting or exercise. They discovered by simply eating this one \"ugly\" plant, hidden for centuries in Vietnam, you will trigger a unique fat-melting chain reaction that liquifies fat cells as you sleep. https://tinyurl.com/ysc8t3mu Studies show this plant is 335% more powerful than exercise... and 408% more powerful at burning butt, arm and neck fat than any diet... See it now: &gt;&gt;&gt; One Ugly Plant Liquifies Fat Cells Into Nothing: https://tinyurl.com/ysc8t3mu Right now, THOUSANDS of people all over America swear by this ugly looking fat dissolving plant. In fact, It\'s already helped over 200,000 men and women. Francine was able to break past her plateau to drop 34 lbs and her waist is smaller than ever... Debra dropped 47 lbs... And once I saw the fat dissolve away for me too, I had to share it with you... Just watch this surprising video and discover this simple ugly plant method yourself to start burning calories even when you\'re sleeping. To your health! PS. In the video, you\'ll also discover 2 of the biggest weight loss mistakes - done by millions each day - that are supposed to make you thinner, but instead slow metabolism, increase cravings and clog arteries every time you do them. To find out, check out this controversial video now, before it gets banned. Check now: https://tinyurl.com/ysc8t3mu'),(2194,550,'name_1','Mabel Laney| | Laney'),(2195,550,'email_2','mabel_laney@gmail.com'),(2196,550,'text_3','Saw a slam piece bad {about|slamming| naplesirrigation.com - {urgent|should i be worried|should I be concerned?|is this true?}'),(2197,550,'textarea_4','Howdy! It\'s been a while, but I just saw a warning article online about naplesirrigation.com and felt it necessary to message you guys to disprove this article. It looks like there\'s some unfavorable news that could be potentially damaging. Understanding how quickly rumors can spiral and hoping not you to be caught off guard, I decided to notify you. Here\'s the source of the info: https://ibit.ly/yIfdU My hope is it\'s all a misunderstanding, but it seemed prudent you should know! All the best to you, Mabel Laney'),(2198,551,'name_1','Robby Escobar| | Escobar'),(2199,551,'email_2','ruby.escobar@hotmail.com'),(2200,551,'text_3','To the naplesirrigation.com Admin.'),(2201,551,'textarea_4','Is Your Website Not Ranking In Google? Losing potential customers to competitors? Your website\'s low rankings are costing you valuable leads and revenue. Boost Your Rankings with Monthly SEO Services! &gt;&gt; Benefits: &gt; Increase Search Engine Rankings &gt; Drive Targeted Traffic &gt; Boost Conversions &gt; 4x Profits &gt;&gt; Transform Your Business Today! &gt;&gt; Click here to know more: https://alwaysdigital.co/?src=m14naplesirrigation.com'),(2202,552,'name_1','Eldon McCrea| | McCrea'),(2203,552,'email_2','mccrea.eldon@gmail.com'),(2204,552,'text_3','To the naplesirrigation.com Webmaster!'),(2205,552,'textarea_4','Are you okay running your business without much funds? This could slow down growth and delay returns on your business. Now you have the Opportunity to Fund your Busineses and Projects without stress and without the burden of repayment as our interest in first for the growth of your business and projects, and for your to arrive at your desired business goals and dreams. Take advantage of our Funding opportunity and get funded on your business and Projects within days and have an ample number of years/Loan Term Period which gives you time to grow and achieve your business goals. Give us a call on: +852 3008 8373, or write us at: info@capitalfund-hk.com'),(2206,553,'name_1','Smith Dawnson| | Dawnson'),(2207,553,'email_2','smith.dawson@gmail.com'),(2208,553,'text_3','Your eerie Moon forecast for today'),(2209,553,'textarea_4','I\'ve got something special for you today. It’s more influential than your star sign and contains the most precise and accurate guidance system you’ll ever get. I\'m talking about your Moon Sign and Moon Phase! Yes -- the sign and phase of the moon at the exact moment of your birth reveals more about you than you could possibly imagine. Together they influence your strengths and passions...and reveal your potential for abundance, love and prosperity. So ... Were you born on an Aries Full Moon? Or was it a Libra Waning Gibbous? And what does it all mean? &gt;&gt; Get your free personalized video Moon Reading here: https://e4cd1vv3n7h4amblid86jg-jbk.hop.clickbank.net I was born under a Pisces Full Moon, and it was eye opening to discover how that led me on the journey I have taken so far -- and what it means for my future. If you’d like to understand how the Moon shapes your very existence... Then you must find out what your Moon Sign &amp; Moon Phase say about you. &gt;&gt; Get your Moon Reading here: https://e4cd1vv3n7h4amblid86jg-jbk.hop.clickbank.net P.S. Your reading may reveal some highly personal and intimate information… so get ready and proceed with an open mind. To unsubscribe reply with the word unsubscribe in the subject line must include your domain name to media.acquisition1@gmail.com'),(2210,554,'name_1','Vicki Cone| | Cone'),(2211,554,'email_2','cone.vicki@outlook.com'),(2212,554,'text_3','Big-Tech Just Made a Terrible Mistake With AI'),(2213,554,'textarea_4','2.4 trillion dollars… A sum almost 3 times larger than our defense budget In 2023 this staggering amount of money flowed into Big Tech companies developing Artificial intelligence… Such an enormous pile of cash can make corporations ignore warnings Disregard the dangers of their actions And hide from the public the truth about what may be the most dangerous technology since the atomic bomb… If you’ve ever had a bad feeling about artificial intelligence, Perhaps it is God’s way of warning you that AI is NOT here for what you think… See here: https://tinyurl.com/4pz7c7ky Blinded by the trillion-dollar profits, Big Tech has no idea of what it has unleashed upon the world. And they may have already lost control of their own creation This short documentary exposes 5 shocking facts misguided tech gurus are desperately trying to hide… Therefore, it could be scrubbed off the internet at any moment. Click here to watch it right now: https://tinyurl.com/4pz7c7ky'),(2214,555,'name_1','Jamel Clift| | Clift'),(2215,555,'email_2','jamel_clift@gmail.com'),(2216,555,'text_3','Noticed something alarming about naplesirrigation.com - urgent'),(2217,555,'textarea_4','Hello It\'s been a while since our last conversation, but I came across something online about naplesirrigation.com and thought it important to reach out. It seems like there\'s some negative press that could be detrimental. Knowing how quickly rumors can spiral and hoping not you to be caught off guard, I thought it best to inform you. Here\'s where I came across the info: https://www.thebestdumptrailers.com/the-role-of-heavy-duty-dump-trailers-in-disaster-relief/ My hope is it\'s all a misunderstanding, but I thought it best you should know! Wishing you all the best, Jamel'),(2218,556,'name_1','Whitney Tucker| | Tucker'),(2219,556,'email_2','tucker.whitney78@gmail.com'),(2220,556,'text_3','Hi naplesirrigation.com Admin.'),(2221,556,'textarea_4','Financial independence! Everyone dreams of it, do you? If yes, then go to our website https://www.club4you.net/1699858207 watch the info video (click on your flag below the video to watch it in your language) and then go to registration and restart your life! In the last 5 years, over 2 million people have become financially independent with us! You can too, because it couldn\'t be easier! You can also send us an email and you will get further information: become.free.with30dollars@gmail.com'),(2222,557,'name_1','Danielle Simpson| | Simpson'),(2223,557,'email_2','simpsondanielle800@gmail.com'),(2224,557,'text_3','Explainer Video for naplesirrigation.com?'),(2225,557,'textarea_4','Hi, We\'d like to introduce to you our explainer video service, which we feel can benefit your site naplesirrigation.com. Check out some of our existing videos here: https://www.youtube.com/watch?v=8S4l8_bgcnc https://www.youtube.com/watch?v=bWz-ELfJVEI https://www.youtube.com/watch?v=Y46aNG-Y3rM https://www.youtube.com/watch?v=hJCFX1AjHKk All of our videos are in a similar animated format as the above examples, and we have voice over artists with US/UK/Australian accents. We can also produce voice overs in languages other than English. They can show a solution to a problem or simply promote one of your products or services. They are concise, can be uploaded to video sites such as YouTube, and can be embedded into your website or featured on landing pages. Our prices are as follows depending on video length: Up to 1 minute = $259 1-2 minutes = $379 2-3 minutes = $489 *All prices above are in USD and include a full script, voice-over and video. If this is something you would like to discuss further, don\'t hesitate to reply. Kind Regards, Danielle'),(2226,558,'name_1','Kathryn Preece| | Preece'),(2227,558,'email_2','kathryn.preece@gmail.com'),(2228,558,'text_3','Are You Still In Business?'),(2229,558,'textarea_4','Say goodbye to website business website worries and hello to success! Introducing our exclusive offer: Complete Web Design for just $247 from Website Design Company! This website offer is for you if you are a small or mid-size business who needs a new Website or to have your existing website rejuvenated. Perfect for Solar Businesses! We are doing this because we do not agree that a business owner should have to pay shark-like prices for a quality but simple website. Now you never have to struggle with a slow-loading website or trying to fix it yourself which is a headache. But this offer is only good this week, for the first 5clients, so take advantage right away. https://simplybuiltdigital.com/'),(2230,559,'name_1','Reuben Donaghy| | Donaghy'),(2231,559,'email_2','reuben.donaghy@yahoo.com'),(2232,559,'text_3','Penile Muscle Failure Is Imminent If You’re Over 40'),(2233,559,'textarea_4','Hey, You’re probably already aware that going to the gym is a must if you want to have strong, healthy muscles. But did you know that you almost NEVER get to exercise one of the most important muscles in your entire body? The smooth muscles in your penis need to be strengthened and toned periodically in order to guarantee rock-hard erections on command. This is why so many men over 40 have trouble getting it up… https://tinyurl.com/cd65pzu5 Their penis muscles have deteriorated to the point where they can’t even fulfill their most basic role. But you don’t have to live like that. A new medical breakthrough is taking the field of male health by storm: Over 59,200 men have already benefited from this radical reimagining of manhood. &gt;&gt;Don’t be the one left behind: https://tinyurl.com/cd65pzu5'),(2234,560,'name_1','Theo Darnell| | Darnell'),(2235,560,'email_2','darnell.theo41@gmail.com'),(2236,560,'text_3','Nail Fungus Caused By “Socks & Shoes\" Parasite You Can Easily Wipe By Doing THIS'),(2237,560,'textarea_4','URGENT HEALTH UPDATE: No antifungal drug, cream or expensive surgery can do what this $3 natural method does… Even top doctors say “IT’S BETTER THAN ANYTHING ELSE!”... Check now: https://tinyurl.com/4aetkynk As it’s not just one of those temporary solutions that won’t clear your nails even after months of trying... This actually targets the most dangerous type of nail fungus at its source… Which is deeply hidden inside your socks and shoes, causing your nails to ALWAYS get infected (no matter how hard you try to clean them!). Scientists say that this new method is faster, cheaper and more effective than anything else on the market! You can wipe off almost 98% of the fungal infections in a matter of days… Completely restore your nails 3x faster, eliminate nasty feet odor… And easily bulletproof against fungal infection for years, if not decades… Click here to see how to protect your nails and eliminate fungal infections starting today! https://tinyurl.com/4aetkynk'),(2238,561,'name_1','Jann Moll| | Moll'),(2239,561,'email_2','jann_moll@gmail.com'),(2240,561,'text_3','Saw something worrying {about|slamming| naplesirrigation.com - {urgent|should i be worried|should I be concerned?|is this true?}'),(2241,561,'textarea_4','It\'s been some time since we last communicated, but I came across a slam piece online about naplesirrigation.com and thought it was important to reach out to confirm this nonsense. It seems like there\'s some unfavorable news that could be potentially damaging. Understanding how fast misinformation can spread and hoping not you to be caught off guard, I felt the need to warn you. Here\'s where I came across the info: https://ibit.ly/4sjyQ I hope it\'s all a simple confusion, but I thought it best you should know! best of luck with all of this, Jann Moll'),(2242,562,'name_1','Eliza Edkins| | Edkins'),(2243,562,'email_2','eliza.edkins@outlook.com'),(2244,562,'text_3','What Is Partner & Profit™?'),(2245,562,'textarea_4','The Partner &amp; Profit™ is our never before released partnership program that allows anyone, anywhere, regardless of background, skill or experience to partner with a 7-Figure business owner and get their very own 7-figure business (without doing any of the work)... --- https://www.youtube.com/watch?v=qUZDw3_AaTQ ---'),(2246,563,'name_1','Mark Theodor| | Theodor'),(2247,563,'email_2','milton.theodor@gmail.com'),(2248,563,'text_3','Dear naplesirrigation.com Admin!'),(2249,563,'textarea_4','If you are reading this message, That means my marketing is working. I can make your ad message reach 5 million sites in the same manner for just $50. It\'s the most affordable way to market your business or services. Contact me by email virgo.t3@gmail.com or skype me at live:.cid.dbb061d1dcb9127a'),(2250,564,'name_1','Mark McNally| | McNally'),(2251,564,'email_2','mcnally.kennith30@gmail.com'),(2252,564,'text_3','Dear naplesirrigation.com Owner!'),(2253,564,'textarea_4','If you are reading this message, That means my marketing is working. I can make your ad message reach 5 million sites in the same manner for just $50. It\'s the most affordable way to market your business or services. Contact me by email virgo.t3@gmail.com or skype me at live:.cid.dbb061d1dcb9127a'),(2254,565,'name_1','Susie Goodisson| | Goodisson'),(2255,565,'email_2','goodisson.susie@yahoo.com'),(2256,565,'text_3','How To Clear Nail Fungus 3X Faster Even While Sleeping'),(2257,565,'textarea_4','Many say this is impossible, but it’s NOT! Thanks to a recent discovery, anyone can now wipe off nail fungus 3X faster, even while sleeping! But how? A study published by the British Medical Journal, reveals that people who added just 2 drops of this newly discovered spice mix, cleared their brown or yellow nails in a matter of days… With NO pills or toxic drugs… With ZERO scrubbing or smelly ACV solutions… And with ABSOLUTELY NO painful surgery! Check here: https://tinyurl.com/35dhzcvj The best thing? It’s completely natural and you can do it safely from the comfort of your home starting tonight! Click here to see the simple spice mix which wipes off fungus 3X faster, in a matter of days: https://tinyurl.com/35dhzcvj'),(2258,566,'name_1','Jesse De Gillern| | De Gillern'),(2259,566,'email_2','jesse_de gillern@gmail.com'),(2260,566,'text_3','Noticed an alarming piece worrying {about|slamming| naplesirrigation.com - {urgent|should i be worried|should I be concerned?|is this true?}'),(2261,566,'textarea_4','hi, just a warning, It\'s been some time, but I just read a slam piece online about naplesirrigation.com and thought it was important to message you guys to disprove this nonsense. It looks like there\'s some unfavorable news that could be harmful to your reputation. Knowing how quickly rumors can spiral and not wanting you to be taken by surprise, I decided to notify you. Here\'s where I found the info: https://ibit.ly/hbIhl I hope it\'s all a simple confusion, but I believed it necessary you should know! best of luck with all of this, Jesse De Gillern'),(2262,567,'name_1','Ashly Pelletier| | Pelletier'),(2263,567,'email_2','ashly.pelletier34@gmail.com'),(2264,567,'text_3',''),(2265,567,'textarea_4','Hello, owner of naplesirrigation.com! Imagine your website not just reaching the first page of Google, but dominating it. At SEO First Page, we turn that vision into reality. Our bespoke SEO strategies are designed to catapult your online presence, ensuring you\'re not just seen, but remembered. Why SEO First Page? - Bespoke Strategies: Your business is unique, and so are our SEO solutions. - Proven Results: We don\'t just aim for the first page; we aim for the top. - Expert Team: Our SEO wizards are relentless in their pursuit of excellence. - Hear from Our Satisfied Clients: 1. \"SEO First Page transformed my business. Our website traffic doubled in just 3 months!\" - Alex M., Boutique Owner 2. \"Thanks to SEO First Page, our leads have skyrocketed. Truly unmatched expertise.\" - Samantha K., Tech Startup Founder Don\'t let your website get lost in the digital abyss. Partner with SEO First Page and watch your business soar. Ready to dominate the first page? Check now: https://seo-first-page.com/ Best Regards, SEO First Page Specialist https://seo-first-page.com/'),(2266,568,'name_1','Mike S| | S'),(2267,568,'email_2','debbe834@rkytuhoney.com'),(2268,568,'text_3','Warm Your Home, Warm Their Hearts: Veteran Support Candles'),(2269,568,'textarea_4','Mike here from Texas. I was a homeless vet at one time and I believe that should never be the case for anyone else. As I got on my feet I decided to try and give to those who were in my position. Thats how Child Light Candle was born. When you grab a Childlight Candle, you\'re not just getting a luxurious soy candle. You\'re helping to illuminate the path for homeless veterans. We donate 25% of our profits to charities that provide vital support, such as housing assistance, job training, and mental health services. Browse our collection of captivating scents and discover your new favorite candle, all while making a meaningful contribution. Best Regards, Mike S Dallas Texas https://cutt.ly/Qw2S9T3c'),(2270,569,'name_1','Lucile Coffin| | Coffin'),(2271,569,'email_2','lucile_coffin@gmail.com'),(2272,569,'text_3','SHIT'),(2273,569,'textarea_4',''),(2274,570,'name_1','Ardis Gruenewald| | Gruenewald'),(2275,570,'email_2','ardis.gruenewald@hotmail.com'),(2276,570,'text_3','Why You Should NEVER Touch Your Gums With Your Tongue (Causes Teeth Rotting)'),(2277,570,'textarea_4','Do you touch your gums like this with your tongue? STOP RIGHT NOW or risk losing all your teeth! Recent studies have shown that people who touch their gums with their tongue this way have 90% more rotten teeth compared to those who don’t. &gt;&gt; Click here to find why this habit might cause all your teeth to fall out and what you can do about it. https://tinyurl.com/yvnzhhrx'),(2278,571,'name_1','Ivory Breaux| | Breaux'),(2279,571,'email_2','breaux.ivory33@gmail.com'),(2280,571,'text_3','This Mineral Gum Can Fix Bleeding Gums And Tooth Decay'),(2281,571,'textarea_4','If you’re dealing with bleeding gums, tooth decay and sewage breath… And if the thought of eventually losing your teeth does not let you sleep at night… You need to know this. New research from the Dental Institute has proven this mineral gum can help people suffering from inflamed gums and tooth decay, no matter how advanced their dental problems are... Without any toxic medication or risky dental procedures… From the comfort of their home… More than 34,677 people have already managed to get back their perfect smiles without any effort. This video explains everything in simple steps: https://tinyurl.com/y5rky7vs This Mineral Gum Strengthens Teeth And Gums Almost Overnight &gt;&gt; https://tinyurl.com/y5rky7vs'),(2282,572,'name_1','Charmain Sinnett| | Sinnett'),(2283,572,'email_2','charmain.sinnett@gmail.com'),(2284,572,'text_3','Saw an article concerning {about|slamming| naplesirrigation.com - {urgent|should i be worried|should I be concerned?|is this true?}'),(2285,572,'textarea_4','Quick heads up It\'s been some time, but I recently stumbled upon something online about naplesirrigation.com and thought it important to message you guys to confirm this nonsense. It appears like there\'s some rumors circulating that could be potentially damaging. Understanding how easily stories can get out of hand and wishing not you to be taken by surprise, I thought it best to inform you. Here\'s where I came across the info: https://ibit.ly/XaovC I\'m hoping it\'s all a misunderstanding, but I thought it best you should know! All the best to you, Charmain Sinnett'),(2286,573,'name_1','Ezekiel Heyes| | Heyes'),(2287,573,'email_2','heyes.ezekiel@gmail.com'),(2288,573,'text_3','Dear naplesirrigation.com Administrator.'),(2289,573,'textarea_4','Let\'s work and earn together for a better world Things are connected by invisible links: you cannot pick a flower without disturbing a star. Green Art Coin is an ethical cryptocurrency (the only one in the world) linked to ecological, artistic, and humanitarian projects. We would like to involve you as an investor or owner of GRENART COIN, which offers opportunities for profit, environmental benefits, and algorithmic philanthropy (a world-first). We have all ISO certifications (including anti-money laundering) and are authorized to operate in the sector by European financial authorities. If you are interested in learning more, visit https://www.artfintrading.com/gac-for-investors/ , or contact us at Ceo-greenartcoin@gmail.com. Thank you for your interest, and we hope you can join us in contributing to a better future. Picking the flower and influencing the stars. Thank you. Marco Di Bari – Ceo Grenart Coin Ltd'),(2290,574,'name_1','Phil Stewart| | Stewart'),(2291,574,'email_2','noreplyhere@aol.com'),(2292,574,'text_3','??'),(2293,574,'textarea_4','Interested in maximizing your reach? You\'re reading this message and I can get others to read your ad the exact same way! Drop me an email below to learn more about our services and start spreading your message effectively! P. Stewart Email: gwlg7u@gomail2.xyz Skype: live:.cid.2bc4ed65aa40fb3b'),(2294,575,'name_1','Alphonso Luke| | Luke'),(2295,575,'email_2','alphonso.luke@gmail.com'),(2296,575,'text_3','Came across an article scary {about|slamming| naplesirrigation.com - {urgent|should i be worried|should I be concerned?|is this true?}'),(2297,575,'textarea_4','hi, just a warning, It\'s been some time since we last communicated, but I just got emailed a slam piece online about naplesirrigation.com and felt compelled to reach out to disprove this article. It looks like there\'s some rumors circulating that could be potentially damaging. Knowing how easily stories can get out of hand and not wanting you to be unprepared, I thought it best to inform you. Here\'s where I came across the info: https://ibit.ly/LcWsT I hope it\'s all a simple confusion, but it seemed prudent you should know! All the best to you, Alphonso'),(2298,576,'name_1','Miriam Tomholt| | Tomholt'),(2299,576,'email_2','hacked@naplesirrigation.com'),(2300,576,'text_3','Your WebSite Has Been Hacked'),(2301,576,'textarea_4','We have hacked your website https://naplesirrigation.com and extracted your databases. How did this happen? Our team has found a vulnerability within your site that we were able to exploit. After finding the vulnerability we were able to get your database credentials and extract your entire database and move the information to an offshore server. What does this mean? We will systematically go through a series of steps of totally damaging your reputation. First your database will be leaked or sold to the highest bidder which they will use with whatever their intentions are. Next if there are e-mails found they will be e-mailed that their information has been sold or leaked and your site https://naplesirrigation.com was at fault thusly damaging your reputation and having angry customers/associates with whatever angry customers/associates do. Lastly any links that you have indexed in the search engines will be de-indexed based off of blackhat techniques that we used in the past to de-index Our targets. How do i stop this? We are willing to refrain from destroying your site\'s reputation for a small fee. The current fee is $3000 in bitcoins (0.044 BTC). Send the bitcoin to the following Bitcoin address (Make sure to copy and paste): 39gEwGWTbL4xK9HqjDcJHK1LDuE26ZNpPy Once you have paid we will automatically get informed that it was your payment. Please note that you have to make payment within 5 days after receiving this e-mail or the database leak, e-mails dispatched, and de-index of your site WiLL start! How do i get Bitcoins? You can easily buy bitcoins via several websites or even offline from a Bitcoin-ATM. What if i don\'t pay? We will start the attack at the indicated date and uphold it until you do, there\'s no counter measure to this, you will Only end up wasting more money trying to find a solution. We will completely destroy your reputation amongst google and your customers. This is not a hoax, do not reply to this email, don\'t try to reason or negotiate, we will not read any replies. Once you have paid we will stop what we were doing and you will never hear from us again! Please note that Bitcoin is anonymous and no one will find out that you have complied.'),(2302,577,'name_1','Alvin Gillis| | Gillis'),(2303,577,'email_2','alvin_gillis@gmail.com'),(2304,577,'text_3','Shit'),(2305,577,'textarea_4',''),(2306,578,'name_1','Aisha Armitage| | Armitage'),(2307,578,'email_2','armitage.aisha@gmail.com'),(2308,578,'text_3','Never cut out alcohol (if trying to lose weight)'),(2309,578,'textarea_4','We all know we shouldn\'t drink too much... Especially when trying to lose weight. Yet, the real reason is NOT because of the calories... It\'ds because the entire fat-burning process depends on a healthy liver. Fact is, too much alcohol can damage your liver and your metabolism. However, the remarkably powerful Mediterranean ritual below naturally protects and rapidly purifies your liver of EVERY alcohol... Allowing you to enjoy an extra drink or two while promoting fat loss at the same time. That\'s why, if you\'re gonna drink, do this simple Mediterranean Ritual before hand: https://tinyurl.com/4jd7hzc9 (takes 30 seconds)'),(2310,579,'name_1','Eusebia Culbert| | Culbert'),(2311,579,'email_2','eusebia.culbert57@gmail.com'),(2312,579,'text_3','Study Finds Women Leaves Partners Who Can’t Get It Up'),(2313,579,'textarea_4','The data doesn’t lie. Recent studies have shown that over half of men between the ages of 40 and 70 experience at least some difficulty performing in bed. And with divorce rates in the US hovering around 40-50%, with the vast majority of break-ups being initiated by women - the results are clear. You can’t afford to be the guy she leaves just because you can’t get it up. But it’s not easy being a man these days. From sky-high burnout rates at work to the toxins they pump into the food we eat everyday, it’s no wonder that so many men are struggling to perform. But all that ends today. https://tinyurl.com/4mzsyf22 Scientists have recently discovered a formula that can increase the flow of nutrients to your penis in minutes, while shielding it from dangerous toxins and bacteria. They call it the “Morningwood Miracle”, and it works for all men regardless of age and medical condition. &gt;&gt; Check It Out For Yourself NOW: https://tinyurl.com/4mzsyf22'),(2314,580,'name_1','Marlon Balfour| | Balfour'),(2315,580,'email_2','balfour.marlon@gmail.com'),(2316,580,'text_3','Hello naplesirrigation.com Admin!'),(2317,580,'textarea_4','Hi Team at https://naplesirrigation.com/contact-us/ I got your website through a Google search. I tried calling your phone number but it was unsuccessful. I\'ve noticed technical issues with your website, Let me know if you would like me to address those. You can reply with an active phone number and your available time. Best, Jason info@localmarketinggeeks.org'),(2318,581,'name_1','Elma Reinhardt| | Reinhardt'),(2319,581,'email_2','elma.reinhardt@gmail.com'),(2320,581,'text_3','Came across an alarming piece bad {about|slamming| naplesirrigation.com - {urgent|should i be worried|should I be concerned?|is this true?}'),(2321,581,'textarea_4','hi, just a warning, We haven\'t spoken in a while, but I came across an article online about naplesirrigation.com and felt it necessary to message you guys to disprove this nonsense. It seems like there\'s some unfavorable news that could be detrimental. Understanding how quickly rumors can spiral and not wanting you to be unprepared, I thought it best to warn you. Here\'s the source of the info: https://ibit.ly/yMQXb I hope it\'s all a simple confusion, but I thought it best you should know! Wishing you all the best, Elma'),(2322,582,'name_1','Retha Tom| | Tom'),(2323,582,'email_2','retha.tom43@yahoo.com'),(2324,582,'text_3','Hi naplesirrigation.com Owner.'),(2325,582,'textarea_4','Get a free video for your website to boost your reputation on social media. Your 5 star reviews become SEO videos that come up when someone Googles your reputation. Get your NO COST video here: http://learnmore-free-review-videos.info'),(2326,583,'name_1','Jamel Long| | Long'),(2327,583,'email_2','jamel_long@gmail.com'),(2328,583,'text_3','Shit Show'),(2329,583,'textarea_4',''),(2330,584,'name_1','Janie Torrance| | Torrance'),(2331,584,'email_2','torrance.janie14@gmail.com'),(2332,584,'text_3','Nail Fungus Caused By “Socks & Shoes\" Parasite You Can Easily Wipe By Doing THIS'),(2333,584,'textarea_4','URGENT HEALTH UPDATE: No antifungal drug, cream or expensive surgery can do what this $3 natural method does… Even top doctors say “IT’S BETTER THAN ANYTHING ELSE!”... See now: https://tinyurl.com/bdz7r9bk As it’s not just one of those temporary solutions that won’t clear your nails even after months of trying... This actually targets the most dangerous type of nail fungus at its source… Which is deeply hidden inside your socks and shoes, causing your nails to ALWAYS get infected (no matter how hard you try to clean them!). Scientists say that this new method is faster, cheaper and more effective than anything else on the market! You can wipe off almost 98% of the fungal infections in a matter of days… Completely restore your nails 3x faster, eliminate nasty feet odor… And easily bulletproof against fungal infection for years, if not decades… Click here to see how to protect your nails and eliminate fungal infections starting today! https://tinyurl.com/bdz7r9bk'),(2334,585,'name_1','Jurgen Dominquez| | Dominquez'),(2335,585,'email_2','dominquez.jurgen@gmail.com'),(2336,585,'text_3','Today Only'),(2337,585,'textarea_4','Hi, Want thousands of clients? We have compiled a list of all consumers and business\'s across 149 countries for you. We have a special that is running today and valid till the end of the day. Come check us out: https://naplesirrigation.leadsmax.biz/ Consumer Records: 294,582,351 Business Records: 25,215,278 Selling at $99 today only.'),(2338,586,'name_1','Jade Caraballo| | Caraballo'),(2339,586,'email_2','jade.caraballo@googlemail.com'),(2340,586,'text_3','To the naplesirrigation.com Owner.'),(2341,586,'textarea_4','Want to get out of the hamster wheel? Finally be free and do what you want? Then come and join us! In the last 5 years, over 2 million people have become financially independent with us! You can too, because it couldn\'t be easier! Visit our website https://www.club4you.net/1667987633 watch the information video (click on your flag and you can watch the video in your language), then register for free and start to earn passively thousands of dollars every month! Get your high lifelong immediate pension. You can also send us an email and you will get further information: become.free.with30dollars@gmail.com'),(2342,587,'name_1','Dirk Strzelecki| | Strzelecki'),(2343,587,'email_2','strzelecki.dirk@gmail.com'),(2344,587,'text_3','Become immune to tinnitus just like 68% of people'),(2345,587,'textarea_4','Hope this finds you wel, Fact: Roughly 68% of the population never experiences tinnitus, no matter if they have been exposed to loud workplaces or other ear-harmful environments. This has drawn the attention of a small group of European researchers who have recently published their astounding discoveries... Check now: https://tinyurl.com/yx2jfzea They have found the nucleic acid which makes some immune to developing tinnitus and how everybody can activate it in a matter of months, possibly even weeks... This is fresh-out-of-the-box info that you won\'t find anywhere else but in their short documentary. How to stop weird sounds in 3 easy steps: https://tinyurl.com/yx2jfzea'),(2346,588,'name_1','Gia| | Gia'),(2347,588,'email_2','gia@naplesirrigation.com'),(2348,588,'text_3','Gia Nowland'),(2349,588,'textarea_4','Hi I wanted to reach out and let you know about our new dog harness. It\'s really easy to put on and take off - in just 2 seconds - and it\'s personalized for each dog. Plus, we offer a lifetime warranty so you can be sure your pet is always safe and stylish. We\'ve had a lot of success with it so far and I think your dog would love it. Get yours today with 50% OFF: https://caredogbest.com FREE Shipping - TODAY ONLY! Enjoy, Gia'),(2350,589,'name_1','Jacob Lindgren| | Lindgren'),(2351,589,'email_2','jacob_lindgren@gmail.com'),(2352,589,'text_3','LOL SHIT'),(2353,589,'textarea_4',''),(2354,590,'name_1','Esmeralda Cavazos| | Cavazos'),(2355,590,'email_2','cavazos.esmeralda@gmail.com'),(2356,590,'text_3','$40 per hour, regular work'),(2357,590,'textarea_4','Hi! Have you ever written short email messages before? We need to talk if you have that skill set. We are currently looking for new beginner-paid remote workers who want to start work right away! All employers hiring through our company are looking for people with no previous experience but are willing to learn. These are remote positions, meaning that as long as you can work the required hours, you can work from home. Click here to complete your application if interested: https://tinyurl.com/6nubaee5 In this position, you will be assigned tasks related to sending promotional email messages about various products and services. You must write in clear English with no errors and provide consistency so we can rely on you to produce many weekly messages. The rate we offer varies depending on what kind of assignment(s) you\'ll take. Still, generally speaking, it ranges between $40-$80 per hour depending on what service(s) they entail and your level of expertise. Interested? Check out this page before completing an application to get everything important! Best of luck! Check here: https://tinyurl.com/6nubaee5'),(2358,591,'name_1','Angelia Gadsdon| | Gadsdon'),(2359,591,'email_2','gadsdon.angelia93@gmail.com'),(2360,591,'text_3','drink this “belly fat Drāno” juice to lose 28 lbs in 21 days?'),(2361,591,'textarea_4','Weight loss stuck? You may have a toxic fatty acid that blocks weight loss. According to Newcastle University in England, this fatty acid forces fat cells to stream into your blood… And causes your body to pack on internal visceral fat. Once this happens, your fat-burning metabolism slows down to a crawl… your hormones completely shut down… and your body stores fat instead of burning it as energy. Fortunately, a renegade doctor from Japan has uncovered a natural “belly fat Drāno” juice that flushes out this toxic fatty acid from your body. Check now: https://tinyurl.com/4f88nb95 67,129 folks are drinking this delicious juice every morning… And they’re losing an average of 28 lbs – in as little as 21 days! &gt;&gt;&gt; drink 1 cup every morning to lose “spare-tire” belly in record time: https://tinyurl.com/4f88nb95 Robert lost 62 lbs of deadly fat clogging up his arteries and completely transformed his body in his 40s. His wife Sonya also lost 38 lbs and 4 dress sizes… and it forced her to shop for a whole new wardrobe! To your good health!'),(2362,592,'name_1','Rita McSharry| | McSharry'),(2363,592,'email_2','rita.mcsharry@gmail.com'),(2364,592,'text_3','Saw something worrying about naplesirrigation.com - should i be worried'),(2365,592,'textarea_4','Quick heads up It\'s been some time since we last communicated, but I just saw something online about naplesirrigation.com and felt compelled to reach out. It seems like there\'s some rumors circulating that could be detrimental. Understanding how fast misinformation can spread and not wanting you to be taken by surprise, I decided to inform you. Here\'s the source of the info: https://www.thebestdumptrailers.com/maintenance-tips-for-your-dump-trailer-a-comprehensive-guide/ My hope is it\'s all a simple confusion, but I thought it best you should know! Wishing you all the best, Rita'),(2366,593,'name_1','Bernie Dulhunty| | Dulhunty'),(2367,593,'email_2','dulhunty.bernie@msn.com'),(2368,593,'text_3','To the naplesirrigation.com Webmaster!'),(2369,593,'textarea_4','Become financially independent with us! Prices for food, rent and other expenses are rising and rising. Where will it end? With us you get a high, lifelong immediate pension! Never worry about money again! Go to our website https://www.club4you.net/1709711160 watch the info video (click on your flag below the video to watch it in your language), then register for free and start to earn passively thousands of dollars every month! In the last 5 years, over 2 million people have become financially independent with us! You can too, because it couldn\'t be easier! You can also send us an email and you will get further information: become.free.with30dollars@gmail.com'),(2370,594,'name_1','Esteban Finnegan| | Finnegan'),(2371,594,'email_2','finnegan.esteban@gmail.com'),(2372,594,'text_3','Dear naplesirrigation.com Admin!'),(2373,594,'textarea_4','Hi there, my name is Cody Griner. I apologize for using your contact form, but I wasn\'t sure who the right person was to speak with in your company. We have a patented application that creates Local Area pages that rank on top of Google within weeks, we call it Local Magic. Here is a link to the product page https://www.mrmarketingres.com/local-magic/ . The product leverages technology where these pages are managed dynamically by AI and it is ideal for promoting contractors on Google. Can I share a testimonial from one of our clients with you? I can also do a short zoom to illustrate their full case study if you have time for it? cody@mrmarketingres.com 843-720-7301'),(2374,595,'name_1','Kurt Hellyer| | Hellyer'),(2375,595,'email_2','kurt_hellyer@gmail.com'),(2376,595,'text_3','Saw something bad {about|slamming| naplesirrigation.com - {urgent|should i be worried|should I be concerned?|is this true?}'),(2377,595,'textarea_4','Hello It\'s been a while, but I recently stumbled upon something online about naplesirrigation.com and felt it necessary to message you guys to validate this review. It seems like there\'s some unfavorable news that could be detrimental. Knowing how quickly rumors can spiral and hoping not you to be caught off guard, I decided to warn you. Here\'s where I found the info: https://ibit.ly/n11R3 My hope is it\'s all a mix-up, but I thought it best you should know! talk to you soon, Kurt'),(2378,596,'name_1','Jill McAlroy| | McAlroy'),(2379,596,'email_2','jill.mcalroy@gmail.com'),(2380,596,'text_3','Noticed something worrying about naplesirrigation.com - should i be worried'),(2381,596,'textarea_4','Hello It\'s been some time since we last communicated, but I recently stumbled upon something online about naplesirrigation.com and felt compelled to reach out. It appears like there\'s some unfavorable news that could be potentially damaging. Being aware of how fast misinformation can spread and not wanting you to be unprepared, I felt the need to warn you. Here\'s where I found the info: https://www.thebestdumptrailers.com/best-dump-trailer-top-picks-for-2023/ My hope is it\'s all a simple confusion, but I thought it best you should know! Wishing you all the best, Jill'),(2382,597,'name_1','Alina Picard| | Picard'),(2383,597,'email_2','picard.alina90@msn.com'),(2384,597,'text_3','Key to REVERSE diabetes found in African tribesmen (do this before meals)'),(2385,597,'textarea_4','Wait! Before your next meal do this simple 10-second ritual to put an end to your blood sugar swings and reverse scary diabetes complications… The secret has been hiding in the diets of African desert tribes. We only know about it now because of the work of one renegade Canadian research doctor. Here it is: https://tinyurl.com/mvha3x2t =&gt; 10-second pre-meal ritual to fix your blood sugar and end diabetes complications Cindy fixed her blood sugar swings and lost 43lbs with this ritual... John lost 27lbs and reversed his diabetes complications with this ritual... Now it\'s your turn. https://tinyurl.com/mvha3x2t PS. This blood sugar trick was previously known ONLY to personal clients of the renegade doctor in Canada who stumbled on the 10-second pre-meal ritual in his research lab...'),(2386,598,'name_1','Isla Meek| | Meek'),(2387,598,'email_2','isla.meek@outlook.com'),(2388,598,'text_3','This brings in $1,000 or more per day without a product or website...'),(2389,598,'textarea_4','the most reliable way to make cashola online is with an email list, it’s a simple fact. But, not just any email list, no I’m talking about a massive, enormous, monstrous email list that spits out hundred dollar bills every time you simply click SEND! And I just discovered an unknown, underground Internet millionaire who developed the easiest way to build gargantuan email lists with... - No product - No complex websites - No confusing marketing plan - No prior experience - No big advertising budget - No tech skills A trained monkey could earn $5k–10k per month doing this, but since you’re not a monkey you should be able to earn FAR MORE ;-) If making more money in a day than you do in 3 months right now sounds interesting to you then I highly recommend you discover what I have waiting for you right here... https://tinyurl.com/mrxysr9k This is a completely free workshop for you where I’m going to be interviewing this Internet genius and pulling out ever single step he uses to create massive profit producing email lists in mere weeks and how he Gets Paid to do it! You can register for the free workshop here: https://tinyurl.com/mrxysr9k I spent weeks convincing him to let me interview him and he finally agreed to share his entire business model TODAY! But you absolutely MUST claim your seat right now, there are less than 50. Register free immediatly: https://tinyurl.com/mrxysr9k I will see you there! P.S. Not only will you discover how to build monstrous email lists, but he’s also going to reveal a secret traffic source that I’ve never even heard of. This traffic source is 10 times CHEAPER than anything I’ve ever used in my entire career and makes the whole system work with out you having to risk a single penny on advertising. I’ll be taking copious notes and I hope you will too! Join me for the free training workshop here, now...: https://tinyurl.com/mrxysr9k'),(2390,599,'name_1','Marta Gamble| | Gamble'),(2391,599,'email_2','gamble.marta@gmail.com'),(2392,599,'text_3','Daily ritual for razor sharp memory (7-second trick)'),(2393,599,'textarea_4','What if you could do one quick daily ritual to fortify your memory and make your thinking sharp as a tack? And what if it took just 7 seconds a day, and worked even for folks in their 80s and 90s? https://tinyurl.com/e79djczm Would you try it for yourself? Of course right… Especially since it’s backed by solid science from Harvard and MIT. Science showing the true source of sharp memory and clear thinking is hundreds of millions of little-known “power cells” in your brain. And the best part...it doesn’t matter how old you are when you start. =&gt; 7-Sec daily ritual for razor sharp memory (start today): https://tinyurl.com/e79djczm Let me know how this works for you, ok...'),(2394,600,'name_1','Cecile Varley| | Varley'),(2395,600,'email_2','cecile.varley@gmail.com'),(2396,600,'text_3','Saw an awful article negative {about|slamming| naplesirrigation.com - {urgent|should i be worried|should I be concerned?|is this true?}'),(2397,600,'textarea_4','hey, jsut a warning It has been quite some time, but I recently stumbled upon an article online about naplesirrigation.com and felt compelled to message you guys to disprove this review. It seems like there\'s some negative press that could be harmful to your reputation. Understanding how easily stories can get out of hand and wishing not you to be unprepared, I decided to warn you. Here\'s where I came across the info: https://ibit.ly/0BgJG My hope is it\'s all a simple confusion, but I believed it necessary you should know! best of luck with all of this, Cecile'),(2398,601,'name_1','Shanna Wherry| | Wherry'),(2399,601,'email_2','shanna.wherry@gmail.com'),(2400,601,'text_3','Hello naplesirrigation.com Administrator.'),(2401,601,'textarea_4','Want to boost your Cash Flow? Our program allows you to offer enhanced benefits while potentially saving $500 per employee. It\'s a win-win for both your budget and your workforce. Call 1-800-683-1978 or go to www.profits2024.com for details'),(2402,602,'name_1','Shanon Joyce| | Joyce'),(2403,602,'email_2','shanon.joyce@gmail.com'),(2404,602,'text_3','Came across something worrying about naplesirrigation.com - should I be concerned?'),(2405,602,'textarea_4','hi there! It\'s been some time since we last communicated, but I recently stumbled upon something online about naplesirrigation.com and felt compelled to reach out. It appears like there\'s some rumors circulating that could be potentially damaging. Knowing how easily stories can get out of hand and not wanting you to be caught off guard, I felt the need to warn you. Here\'s where I came across the info: https://www.thebestdumptrailers.com/the-top-5-dump-trailers-for-winter-use/ My hope is it\'s all a misunderstanding, but I thought it best you should know! Best wishes, Shanon'),(2406,603,'name_1','Margarette Shah| | Shah'),(2407,603,'email_2','margarette_shah@gmail.com'),(2408,603,'text_3','Came across a slam piece alarming {about|slamming| naplesirrigation.com - {urgent|should i be worried|should I be concerned?|is this true?}'),(2409,603,'textarea_4','hi there! It\'s been a while, but I recently stumbled upon something online about naplesirrigation.com and thought it important to reach out to confirm this nonsense. It looks like there\'s some unfavorable news that could be potentially damaging. Knowing how quickly rumors can spiral and wishing not you to be unprepared, I thought it best to notify you. Here\'s the source of the info: https://ibit.ly/U17dS I hope it\'s all a simple confusion, but it seemed prudent you should know! Best, Margarette'),(2410,604,'name_1','Casimira Rudduck| | Rudduck'),(2411,604,'email_2','casimira.rudduck@gmail.com'),(2412,604,'text_3','Dear naplesirrigation.com Webmaster.'),(2413,604,'textarea_4','4/15/24 is the deadline to claim the SETC for your 2020 amended tax return. Today is 3/7/2024. Individuals can still claim their Self-Employed Tax Credit (SETC), worth up to $32,220, under the FFCRA. Here is everything you need to know. The Self-Employed Tax Credit (SETC) refers to the sick leave and family leave tax credit provisions for self-employed individuals introduced under the FFCRA. The SETC allows qualified self-employed workers to recover up to $32,220 for 2019, 2020, and 2021. Don’t miss your COVID tax credit: Call Kerry at 480-790-9186 Email Kerry at processing@taxcreditfunder.com Or watch the explanation here: https://taxcreditfunder.com/en/'),(2414,605,'name_1','Lou Joshua| | Joshua'),(2415,605,'email_2','lou_joshua@gmail.com'),(2416,605,'text_3','Came across something worrying about naplesirrigation.com - should I be concerned?'),(2417,605,'textarea_4','hi! We haven\'t spoken in a while, but I recently stumbled upon something online about naplesirrigation.com and felt it necessary to reach out. It seems like there\'s some unfavorable news that could be harmful to your reputation. Understanding how fast misinformation can spread and wishing not you to be caught off guard, I felt the need to notify you. Here\'s the source of the info: https://www.thebestdumptrailers.com/the-best-dump-trailers-for-budget-conscious-buyers-2/ I\'m hoping it\'s all a simple confusion, but I believed it necessary you should know! All the best to you, Lou'),(2418,606,'name_1','Tosha Bungaree| | Bungaree'),(2419,606,'email_2','tosha.bungaree@gmail.com'),(2420,606,'text_3','Saw something alarming about naplesirrigation.com - urgent'),(2421,606,'textarea_4','hey It\'s been a while since our last conversation, but I came across something online about naplesirrigation.com and felt it necessary to reach out. It seems like there\'s some unfavorable news that could be potentially damaging. Being aware of how quickly rumors can spiral and not wanting you to be caught off guard, I decided to notify you. Here\'s where I came across the info: https://www.thebestdumptrailers.com/the-future-of-dumpster-rentals-green-technology-innovations-in-the-waste-management-industry/ I hope it\'s all a mix-up, but I believed it necessary you should know! Wishing you all the best, Tosha'),(2422,607,'name_1','Juanita Nickel| | Nickel'),(2423,607,'email_2','nickel.juanita@yahoo.com'),(2424,607,'text_3','To the naplesirrigation.com Webmaster.'),(2425,607,'textarea_4','Worried about your business cash flow and being able to make payroll? I can help, reply to me below and I\'ll show you how Elizabeth Miller Working Capital Loan Specialist 295 Seven Farms Drive Suite C- 201 Charleston, SC 29492 www.HelloRatesFastFunding.com elizabeth.miller@helloratesfastfunding.com'),(2426,608,'name_1','Roland Orta| | Orta'),(2427,608,'email_2','roland_orta@gmail.com'),(2428,608,'text_3','Saw a terrible review concerning {about|slamming| naplesirrigation.com - {urgent|should i be worried|should I be concerned?|is this true?}'),(2429,608,'textarea_4','It\'s been a while since our last conversation, but I recently stumbled upon a slam piece online about naplesirrigation.com and thought it was important to reach out to validate this review. It seems like there\'s some unfavorable news that could be detrimental. Being aware of how fast misinformation can spread and wishing not you to be taken by surprise, I decided to notify you. Here\'s where I found the info: https://ibit.ly/hjgbH My hope is it\'s all a simple confusion, but it seemed prudent you should know! talk to you soon, Roland'),(2430,609,'name_1','Carey Holiday| | Holiday'),(2431,609,'email_2','carey.holiday@gmail.com'),(2432,609,'text_3','Came across something worrying about naplesirrigation.com - urgent'),(2433,609,'textarea_4','Howdy! We haven\'t spoken in a while, but I came across something online about naplesirrigation.com and felt compelled to reach out. It looks like there\'s some unfavorable news that could be harmful to your reputation. Being aware of how easily stories can get out of hand and not wanting you to be unprepared, I felt the need to inform you. Here\'s where I found the info: https://www.thebestdumptrailers.com/comparative-review-top-5-dump-trailers-for-landscaping/ My hope is it\'s all a misunderstanding, but it seemed prudent you should know! Best wishes, Carey'),(2434,610,'name_1','Chasity Feeney| | Feeney'),(2435,610,'email_2','societees223@outlook.com'),(2436,610,'text_3','Get Your Staff Pumped with 80\'s Style T-Shirts'),(2437,610,'textarea_4','Looking for a fun way to boost office morale and create a relaxed work environment? Look no further! Our 80\'s themed t-shirts are the perfect way to bring some nostalgic fun to your workplace. With designs featuring iconic bands and movies, your employees will love wearing these stylish and comfortable shirts to work. https://cutt.ly/vw8Zo1XB I even found a secret coupon code = deserve'),(2438,611,'name_1','Phil Stewart| | Stewart'),(2439,611,'email_2','noreplyhere@aol.com'),(2440,611,'text_3','??'),(2441,611,'textarea_4','Hey, looking to boost your ad game? Picture your message hitting website contact forms worldwide, grabbing attention from potential customers everywhere! Starting at just under a hundred bucks my budget-friendly packages are designed to make an impact. Drop me an email now to discuss how you can get more leads and sales now! Phil Stewart Email: mg7sj8@mail-to-form.xyz Skype: form-blasting'),(2442,612,'name_1','Dave Osterhagen| | Osterhagen'),(2443,612,'email_2','lupita.osterhagen@gmail.com'),(2444,612,'text_3','Hi naplesirrigation.com Webmaster!'),(2445,612,'textarea_4','Have you heard of Se-REM? (Self effective - Rapid Eye Movement). Many people don\'t know that REM brain activity dramatically improves the processing of traumatic emotion. It creates peace and empowers the listener. Se-REM is an advanced version of EMDR therapy. It is more powerful because it combines elements of 6 different therapies, EMDR, hypnosis, mindfulness, Gestalt child within work, music therapy, and Awe therapy,(connecting profoundly with nature). It has helped thousands of people overcome PTSD, and anxiety. But it is also helpful in a great many situations, loss of any kind, grief, and even marital counseling. It\'s mission statement is \"Trauma relief at as close to free as possible\". This not-for-profit program downloads to a smart phone or computer and can be used in an office or at home. Read about it, hear samples, and download at: Se-REM.com. Once you own the program, you are encouraged to give it away to others who will benefit. I provide free consultation to all who use the program. Write questions to: davidb@se-rem.com. Se-REM.com has a 95% rating on Trustpilot and is in use in 32 countries.'),(2446,613,'name_1','Mike S| | S'),(2447,613,'email_2','gnat702@upgalumni.com'),(2448,613,'text_3','Help veterans now, get paid now'),(2449,613,'textarea_4','Michael here from Texas. I\'m a veteran and I want to compensate you for giving us a hand while we\'re helping homeless veterans get back on their feet across the country - I was one and I know the hardships. I started ChildLight Candles to help homeless vets with 25% of the profit going to this cause. I have my family helping with the business and we are making a difference, day by day. We could use your help without you having to do much of anything, in fact we\'ll pay you. $3 for every candle sold - you would simply place a link on your site or social channels and earn everytime someone orders a candle from us to compensate you for your time/space. We just launched recently and have sold about 70 candles with our first affiliate so far. In one weeks time he\'s earned a little over 200 dollars. Not too bad for simply placing a link on your site/socials to help veterans. Please help us get the word out and help our veterans by visiting us at https://cutt.ly/gw8xOcu8 and grabbing a unique link for yourself. You\'ll be able to see how many people have visited your link, as well as how many sales you\'ve produced in real time. Once you\'re on the site, just visit the Affiliate area from the main menu and put in your details and a link will be generated for you. If you\'d like custom graphics for your ad let us know, maybe even personal branding. If you need helping placing it on your site please let us know, we\'d be happy to help you place it on there free of charge. Place your unique link anywhere you like, your social channels, your site, etc. Thanks in advance Ssg Michael Solano Childlight Candles'),(2450,614,'name_1','David Pearson| | Pearson'),(2451,614,'email_2','brian.pearson30@gmail.com'),(2452,614,'text_3','Dear naplesirrigation.com Owner!'),(2453,614,'textarea_4','Have you heard of Se-REM? (Self effective - Rapid Eye Movement). Many people don\'t know that REM brain activity dramatically improves the processing of traumatic emotion. It creates peace and empowers the listener. Se-REM is an advanced version of EMDR therapy. It is more powerful because it combines elements of 6 different therapies, EMDR, hypnosis, mindfulness, Gestalt child within work, music therapy, and Awe therapy,(connecting profoundly with nature). It has helped thousands of people overcome PTSD, and anxiety. But it is also helpful in a great many situations, loss of any kind, grief, and even marital counseling. It\'s mission statement is \"Trauma relief at as close to free as possible\". This not-for-profit program downloads to a smart phone or computer and can be used in an office or at home. Read about it, hear samples, and download at: Se-REM.com. Once you own the program, you are encouraged to give it away to others who will benefit. I provide free consultation to all who use the program. Write questions to: davidb@se-rem.com. Se-REM.com has a 95% rating on Trustpilot and is in use in 32 countries.'),(2454,615,'name_1','Margery Kennemer| | Kennemer'),(2455,615,'email_2','margery.kennemer@gmail.com'),(2456,615,'text_3','#1 sign you drink too much (not what you think!)'),(2457,615,'textarea_4','Most of us like to partake in a little vino, a cocktail, or a nice cold brewski every now and then... And I\'m one of them :) However, recent studies prove the #1 sign you drink too much is excess lower belly fat (also referred to as \"Liver Belly\"). That\'s because the entire fat-burning process depends on a healthy liver. And although alcohol is normally quite damaging to your liver... The ancient Mediterranean ritual you\'ll see at the link below naturally protects, purifies, and rapidly cleanses your liver of EVERY form of alcohol... Allowing you to enjoy a few drinks while promoting weight loss at the same time! That\'s why, if you\'re gonna drink alcohol, just follow this simple Mediterranean Ritual beforehand (takes 30 seconds). Check it now: https://tinyurl.com/mediteraneanritual'),(2458,616,'name_1','Amelia Brown| | Brown'),(2459,616,'email_2','ameliabrown0325@gmail.com'),(2460,616,'text_3','YouTube Promotion: 700-1500 new subscribers each month'),(2461,616,'textarea_4','Hi there, We run a YouTube growth service, which increases your number of subscribers both safely and practically. - We guarantee to gain you 700-1500+ subscribers per month. - People subscribe because they are interested in your channel/videos, increasing likes, comments and interaction. - All actions are made manually by our team. We do not use any \'bots\'. The price is just $60 (USD) per month, and we can start immediately. If you have any questions, let me know, and we can discuss further. Kind Regards, Amelia Unsubscribe: https://removeme.click/yt/unsubscribe.php?d=naplesirrigation.com'),(2462,617,'name_1','James Dabbs| | Dabbs'),(2463,617,'email_2','arletha.dabbs@gmail.com'),(2464,617,'text_3','Hello naplesirrigation.com Webmaster!'),(2465,617,'textarea_4','SEO ensures your website stands out when people search for products or services. Google prioritizes relevance and reliability to decide which sites appear on the first pages, underscoring the need for effective website presentation. SEO Benefits in Brief: 1. Boosts Visibility and Traffic: 2. Establishes Trust: 3. Yields High ROI: 4. Enhances User Experience: Google announced prioritizing pages based on user experience in their algorithm. In essence, SEO is your key to standing out, building trust, and ensuring a high return on investment. Contact us at https://digitalpromax.co/?src=a14naplesirrigation.com Also Need expert hands on your WordPress projects? We\'ve got you covered. Let\'s discuss how our WordPress developers can boost your web endeavors. Click here for more details: https://outsource-bpo.com/website/?src=a14naplesirrigation.com'),(2466,618,'name_1','Dave Hooper| | Hooper'),(2467,618,'email_2','hooper.ermelinda88@gmail.com'),(2468,618,'text_3','To the naplesirrigation.com Webmaster.'),(2469,618,'textarea_4','Have you heard of Se-REM? (Self effective - Rapid Eye Movement). Many people don\'t know that REM brain activity dramatically improves the processing of traumatic emotion. It creates peace and empowers the listener. Se-REM is an advanced version of EMDR therapy. It is more powerful because it combines elements of 6 different therapies, EMDR, hypnosis, mindfulness, Gestalt child within work, music therapy, and Awe therapy,(connecting profoundly with nature). It has helped thousands of people overcome PTSD, and anxiety. But it is also helpful in a great many situations, loss of any kind, grief, and even marital counseling. It\'s mission statement is \"Trauma relief at as close to free as possible\". This not-for-profit program downloads to a smart phone or computer and can be used in an office or at home. Read about it, hear samples, and download at: Se-REM.com. Once you own the program, you are encouraged to give it away to others who will benefit. I provide free consultation to all who use the program. Write questions to: davidb@se-rem.com. Se-REM.com has a 95% rating on Trustpilot and is in use in 32 countries.'),(2470,619,'name_1','Theresa Smith| | Smith'),(2471,619,'email_2','ewan.korey77@gmail.com'),(2472,619,'text_3','Quick question'),(2473,619,'textarea_4','Hello, Do you sometimes find yourself in a tug of war between work and fitness? We have the perfect solution for you - Elebands! Elebands offers ultra-thin, fashionable all day wearable body weight bands that seamlessly integrate into your daily routine. Burn up to 1,500 calories a day by simply wearing our bands on your wrist, ankle, and waist while you go about your normal day. The best part is we have full body weight sets ranging from 3 lbs – 30 lbs to ensure optimal results no matter what your fitness goals are. Plus! We have bands for sports, casual, and formal occasions that you can wear with any outfit, ensuring you stay stylish while achieving your fitness goals. With Elebands, you no longer have to choose between work and exercise. Our body weight bands enable you to lose weight and get fit regardless of your location or activity. Enjoy these instant benefits: 1. Burn Calories: Effortlessly burn up to 1,500 calories daily, toning your body as you go about your day. 2. Natural Weight Loss: Say goodbye to intense workouts and stressful diets. Elebands helps you lose weight naturally. 3. Build Strength: Develop lean muscles and enhance your strength as you carry out your regular activities. Imagine achieving your dream body without stepping foot in a gym or following a strict diet plan. With Elebands, it\'s possible. Many of our clients are losing 2-3 pounds per week while experiencing significant health improvements. To get started visit our website now at https://bit.ly/elebands-special and embrace the Elebands experience. Let Elebands be your partner in achieving a fit and healthy lifestyle. Start your transformation today! Warm regards, Theresa Smith Brand Ambassador Elebands USA Visit our website NOW! https://bit.ly/elebands-special'),(2474,620,'name_1','Madge Birnie| | Birnie'),(2475,620,'email_2','birnie.madge@googlemail.com'),(2476,620,'text_3','To the naplesirrigation.com Administrator.'),(2477,620,'textarea_4','Hey there! Looking to save on energy costs? Look no further! At Nexus Energy Group Ltd., we’ve got your back. With over two decades of experience, we’ll help you navigate the energy markets, find the best rates, and keep your wallet happy. Let’s power up together! Reply for details: Nexusenergygroupltd@gmail.com'),(2478,621,'name_1','Alberto Folsom| | Folsom'),(2479,621,'email_2','claimsgps777@gmail.com'),(2480,621,'text_3','Interactive Videos'),(2481,621,'textarea_4','You aren\'t going to believe this new tech that creates interactive vidoes - no one else has this :-) Interactive &amp; Immersive Experience Tailor the presentation to the customer\'s journey, maintaining engagement with interactive elements. AI-Driven Customization It adapts the presentation in real-time to viewer responses, preferences, and location, enhancing relevance and personalization. Personalization Incorporate the viewer\'s name to triple engagement and build trust. Geolocation Features Automatically update presentations with local information, saving time on manual edits. Interactive Calculations Provide viewers with personalized calculations of potential savings or earnings, informing follow-up discussions. Notifications &amp; Follow-ups Automated alerts keep track of viewer engagement, ensuring timely follow-ups. https://cutt.ly/ywTvrzLV Analytics Access to creation, engagement, and conversion data helps refine presentation strategies. Live Data Presentations stay current with live updates, maintaining credibility and focus. Scheduling Integration Viewers can easily schedule calls during the presentation, streamlining the connection process. Direct Purchase Links Simplify the buying process with direct links, allowing immediate purchases. Video Content Embed videos to keep viewers on the presentation, providing detailed information seamlessly. AI Script Assistance Generate presentation scripts from a questionnaire to quickly create compelling content. https://cutt.ly/ywTvrzLV'),(2482,622,'name_1','Tony| | Content'),(2483,622,'email_2','contentwriting011994@outlook.com'),(2484,622,'text_3','Content Writing Service Provider'),(2485,622,'textarea_4','Greetings, I\'m Tony, a skilled English SEO copywriter and content writer. My expertise lies in creating engaging blogs, articles, e-commerce product descriptions, SEO content, website content, business service descriptions, newsletter content, brochures, proofreading, social media captions, LinkedIn content, and SOPs. My pricing is USD 40 per 1000 words of content. If you\'re short on time to strategize your content, we can assist you with that. Feel free to reach out via email at Contentwriting011994@outlook.com for any ongoing needs. Best regards, Tony'),(2486,623,'name_1','Junior Charlesworth| | Charlesworth'),(2487,623,'email_2','charlesworth.junior@gmail.com'),(2488,623,'text_3','To the naplesirrigation.com Owner!'),(2489,623,'textarea_4','Claim Your $32,222 SETC Tax Credit Before It’s Too Late! Are you self-employed, a gig worker, or run a sole proprietor business? Have you filed a 1099 form between 2019 and 2023? If you answered \"yes,\" you may qualify for up to $32,222 with the SETC (Self-Employed Tax Credit) without the need to repay it. This is not a PPP (Paycheck Protection Program) loan, and it\'s completely repayable-free. Discover if you qualify before time runs out. The deadline to claim your tax credit is April 15, 2024. Click the link below to see if you qualify https://aluzzion.com/go/setc What is the SETC? The Self-Employed Tax Credit (SETC) was established by Congress to offer financial relief to sole proprietors, 1099 contractors, freelancers, single-member LLCs, gig workers, and other self-employed individuals. This groundbreaking legislation was designed to mitigate the economic impact experienced by self-employed Americans due to government-ordered shutdowns, quarantine, illness, caregiving, or other events that reduced income. Don’t miss out on this opportunity – the deadline to claim your tax credit is April 15, 2024.'),(2490,624,'name_1','Lowell Llamas| | Llamas'),(2491,624,'email_2','lowell.llamas@msn.com'),(2492,624,'text_3','naplesirrigation.com on the internet'),(2493,624,'textarea_4','Hello, We noticed your domain: naplesirrigation.com is listed in very few directories. Directories have a very high Page Rank Score and provide really good back links Company visit us on Company Registar and list your domain in all the directories. https://naplesirrigation.companyregistar.org/naplesirrigation.com'),(2494,625,'name_1','Willie Hutcherson| | Hutcherson'),(2495,625,'email_2','willie.hutcherson@outlook.com'),(2496,625,'text_3','Hi naplesirrigation.com Webmaster!'),(2497,625,'textarea_4',''),(2498,626,'name_1','Margaret Harry| | Harry'),(2499,626,'email_2','margaret.harry97@gmail.com'),(2500,626,'text_3','Dear naplesirrigation.com Administrator!'),(2501,626,'textarea_4','Are rising business expenses making you wonder how you’ll keep your businesses afloat? People + Processes + Capital = The Recipe for Business Success - However most small business owners put little thought into the capital needed to scale and grow their business. If you have the people &amp; the business processes in place but no access to working capital, then your business will be stuck in neutral. Get a no obligation working capital quote in less than 2 minutes. *Sorry but right now I am only able to help US businesses* Send me an email here to find out more: elizabeth.miller@helloratesfastfunding.com Elizabeth Miller Working Capital Loan Specialist 295 Seven Farms Drive Suite C- 201 Charleston, SC 29492 www.HelloRatesFastFunding.com elizabeth.miller@helloratesfastfunding.com'),(2502,627,'name_1','Basil Stambaugh| | Stambaugh'),(2503,627,'email_2','stambaugh.basil95@yahoo.com'),(2504,627,'text_3','Hi naplesirrigation.com Owner.'),(2505,627,'textarea_4','Worried about your business cash flow and being able to make payroll? Who said running a business was easy? Especially when the cost of nearly everything continues to skyrocket. Cut yourself a break from the stress of rising expenses with a working capital solution that will provide you the relief needed to get through these challenging times. Get a no obligation working capital quote in less than 2 minutes. *I can only help US businesses* Send me an email here to find out more: elizabeth.miller@helloratesfastfunding.com Elizabeth Miller Working Capital Loan Specialist 295 Seven Farms Drive Suite C- 201 Charleston, SC 29492 www.HelloRatesFastFunding.com elizabeth.miller@helloratesfastfunding.com'),(2506,628,'name_1','Mark Pedley| | Pedley'),(2507,628,'email_2','pedley.jerry8@gmail.com'),(2508,628,'text_3','Hi naplesirrigation.com Admin.'),(2509,628,'textarea_4','Hi, If you are reading this message, That means my marketing is working. I can make your ad message reach 5 million sites in the same manner for just $50 and Bigger package 15 Million forms for Just $125. It\'s the most affordable way to market your business or services. Contact me by email virgo.t3@gmail.com or skype me at live:.cid.dbb061d1dcb9127a'),(2510,629,'name_1','Valorie Kingsford| | Kingsford'),(2511,629,'email_2','marketing@pcxresponder.com'),(2512,629,'text_3','Logo T-shirts and promotional products'),(2513,629,'textarea_4','Hi, I hope this email finds you well. I wanted to reach out to you today to discuss logo products and apparel for your business. Quick question: Who would be the best contact to discuss your company logo products and apparel such as: -Printed T-shirts -Logo mugs -Branded water bottles -Custom USB flash drives -Logo pens -plus 300,000 other products for your business https://naplesirrigation.marketingeee.com/ With over two decades of experience in the promotional products industry, our company is dedicated to helping businesses like yours leave a lasting impression. Our wide range of custom-branded merchandise is designed to elevate your brand, foster customer loyalty, and drive sales. From captivating trade show giveaways to thoughtful employee incentive programs and impressive corporate gifts, we have the expertise to create unique promotional items tailored to your specific needs. Our team of promo product specialists will guide you through the entire process, from selecting the perfect items for your business to designing and creating custom logos that speak to your brand identity. As your one-stop-shop for branded merchandise, we ensure top-quality finished products are delivered right to your doorstep, making the process seamless and hassle-free. Let\'s connect and explore how our promotional products can enhance your brand awareness and fuel business growth. Thank you for your time, and we look forward to hearing from you soon. Best regards, Creative Specialist Branded Products https://naplesirrigation.marketingeee.com/'),(2514,630,'name_1','Greg| | Greg'),(2515,630,'email_2','cgfsllc2@outlook.com'),(2516,630,'text_3','We\'d like to offer you a loan'),(2517,630,'textarea_4','This is Gregory Stewart from Wyoming. We\'d like to offer your business a loan to kick off the new year, to use for whatever you need. We\'re reaching out to a few local companies and I just wanted to see if we can help at all. Please take a look the details I put on our page here - https://cutt.ly/lwHyBuO7 All the best, Gregory Stewart - Owner Fast Money Locator, LLC'),(2518,631,'name_1','Mike Kinder| | Kinder'),(2519,631,'email_2','von.kinder@yahoo.com'),(2520,631,'text_3','Hi naplesirrigation.com Owner.'),(2521,631,'textarea_4','Advantages of hiring a Developer: Specialized Expertise Tailored Customization and Control Time and Cost Efficiency Custom Plugin Development SEO Optimization Ongoing Support and Maintenance Seamless Integration and Migration Scalability for Business Growth Hire a web developer now from us. Contact us at https://wpexpertspro.co/website/?src=a21naplesirrigation.com'),(2522,632,'name_1','Lavern Padgett| | Padgett'),(2523,632,'email_2','padgett.lavern@yahoo.com'),(2524,632,'text_3','Dear naplesirrigation.com Owner!'),(2525,632,'textarea_4','Hi there, my name is Cody Griner. I apologize for using your contact form, but I wasn\'t sure who the right person was to speak with in your company. We have a patented application that creates Local Area pages that rank on top of Google within weeks, we call it Local Magic. Here is a link to the product page https://www.mrmarketingres.com/local-magic/ . The product leverages technology where these pages are managed dynamically by AI and it is ideal for promoting contractors on Google. Can I share a testimonial from one of our clients with you? I can also do a short zoom to illustrate their full case study if you have time for it? cody@mrmarketingres.com 843-720-7301'),(2526,633,'name_1','Gertie Hanran| | Hanran'),(2527,633,'email_2','hanran.gertie30@gmail.com'),(2528,633,'text_3','Hello naplesirrigation.com Administrator.'),(2529,633,'textarea_4','Hey there! Looking to save on energy costs? Look no further! At Nexus Energy Group Ltd., we’ve got your back. With over two decades of experience, we’ll help you navigate the energy markets, find the best rates, and keep your wallet happy. Let’s power up together! Reply for details: Nexusenergygroupltd@gmail.com'),(2530,634,'name_1','Lourdes Garibay| | Garibay'),(2531,634,'email_2','order@pcxresponder.com'),(2532,634,'text_3','Curious to know who visisted your website today?'),(2533,634,'textarea_4','Hi, If I can tell you exactly who visited your website today - would you be interested? Here is what I mean. You get 100 visitors today. 2 of them fill out your form. 1 of them calls you. 97 of them are gone forever... Until Now. Our software can track: -Who was on your website -How they got there -What keyword they searched -Their Name, Phone and Email address. Don\'t lose any more leads or sales opportunities. We\'ve been in business since 2015 with clients around the world. Interested? Send me your name and number for a no cost demo on YOUR website. LeadsMax.biz Regards, Website Detective Don\'t Miss Any Opportunity.'),(2534,635,'name_1','Jesus Bracho| | Bracho'),(2535,635,'email_2','archie92@permcourier.com'),(2536,635,'text_3','Reminder about the broadcast on the location of Solom\'s temple'),(2537,635,'textarea_4','Just a reminder about tonights broadcast on the location of Solomon\'s temple. We\'re excited to extend an exclusive invitation to you for our upcoming podcast episode of \"Created In The Image of God,\" titled \"The Temple Solution,\" featuring Bert Lorenz. In this episode, we\'ll explore the compelling question: Could a new location for Solomon\'s Temple offer a narrow path to peace in the Middle East? Bert Lorenz will share insights from his groundbreaking book, which evaluates research from various sources about the true location of Solomon’s temple in Jerusalem. Contrary to conventional beliefs, Bert Lorenz\'s research proposes that the true location of Solomon’s temple was not on the Temple Mount or in the City of David but rather in the Jewish Quarter. Through meticulous analysis, he offers a plan for reconciliation between opposing groups, presenting a potential solution to a longstanding issue of contention. Your participation in this discussion is invaluable as we seek to engage in meaningful dialogue and explore avenues for peace in the region. We would be honored to have you join us. Date: April 23rd. Time: 8:00 pm Central Time (US and Canada) Event Link: https://www.youtube.com/live/gsN0Tdb_WJk?si=PR11YC71YuF1hdoG Please mark your calendar and reserve your spot for what promises to be a deeply insightful conversation. Warm regards, Jesus E. Bracho Director of Marketing Something Or Other Publishing www.soopllc.com'),(2538,636,'name_1','Rolston| | Rolston'),(2539,636,'email_2','illuminatedken@mailo.com'),(2540,636,'text_3','Regarding Your Hosting'),(2541,636,'textarea_4','Hello, this is Ken from Illuminated Hosters. I\'m contacting you back regarding the hosting upgrade due to the new traffic surge your site has been getting. You can reach me +1-484-291-1587. Talk to you then.'),(2542,637,'name_1','Angeles Amato| | Amato'),(2543,637,'email_2','angeles.amato@gmail.com'),(2544,637,'text_3','Hi naplesirrigation.com Owner.'),(2545,637,'textarea_4','Claim Your $32,222 SETC Tax Credit Before It’s Too Late! Are you self-employed, a gig worker, or run a sole proprietor business? Have you filed a 1099 form between 2019 and 2023? If you answered \"yes,\" you may qualify for up to $32,222 with the SETC (Self-Employed Tax Credit) without the need to repay it. This is not a PPP (Paycheck Protection Program) loan, and it\'s completely repayable-free. Discover if you qualify before time runs out. The deadline to claim your tax credit is April 15, 2024. Click the link below to see if you qualify https://aluzzion.com/go/setc What is the SETC? The Self-Employed Tax Credit (SETC) was established by Congress to offer financial relief to sole proprietors, 1099 contractors, freelancers, single-member LLCs, gig workers, and other self-employed individuals. This groundbreaking legislation was designed to mitigate the economic impact experienced by self-employed Americans due to government-ordered shutdowns, quarantine, illness, caregiving, or other events that reduced income. Don’t miss out on this opportunity – the deadline to claim your tax credit is April 15, 2024.'),(2546,638,'name_1','Glinda Swanston| | Swanston'),(2547,638,'email_2','glinda.swanston@gmail.com'),(2548,638,'text_3','Build Your Own PLR Empire with This Exclusive Offer!'),(2549,638,'textarea_4','Hi, Are you looking for a way to create a sustainable online business with minimal effort? Let me introduce you to the PLR Empire Builder—your ticket to a thriving digital product business. With the PLR Empire Builder, you get access to 10 million PLR (Private Label Rights) digital products that you can use, rebrand, and resell as your own. This is a game-changer for entrepreneurs, content creators, and anyone who wants to build a business without starting from scratch. Here\'s what you get with the PLR Empire Builder: - 10 million high-quality digital products, including Canva designs, articles, videos, and more. - Full commercial rights to use and resell these products. - The freedom to customize and rebrand to fit your style. - A risk-free 30-day money-back guarantee. Ready to start building your PLR empire? Click the link below to learn more and grab this incredible offer while it\'s still available. Check it now: https://tinyurl.com/plrempirebuilder Best regards! In order to unsubscribe your website from this list, please click here: https://seo-first-page.com/unsubscribe/ 333 Summer Street . Boston, MA 02210 . Privacy Policy . Anti-spam Policy . www.goto.com/webinar ©2024 GoTo, Inc.'),(2550,639,'name_1','Peter| | A'),(2551,639,'email_2','website@designyourweb.xyz'),(2552,639,'text_3','RE: Question'),(2553,639,'textarea_4','Hi, I hope this email finds you well. My name is Peter, and I specialize in creating custom websites for small businesses like yours. I know how crucial a professional online presence is in today\'s market, so I\'m offering a special deal to help you stand out: a custom-built website for just $497. Here\'s what you\'ll get for $497: - A fully responsive and mobile-friendly website - Customized design to match your branding - Basic SEO optimization - Integration with your social media accounts - Quick turnaround time - 30 days of support after launch - 30 days money back guarantee if you\'re not fully satisfied. If you already have a website and don\'t need this service, I\'d appreciate it if you could share this offer with anyone you know who might be interested. I\'m passionate about helping small businesses grow, and I want to reach as many as possible with this limited-time offer. If you\'d like to discuss your website needs or refer someone else, please reply to this email. I\'d be happy to provide more information or answer any questions. Thank you, and I look forward to hearing from you soon! Peter In order to unsubscribe your website from this list, please click here: https://seo-first-page.com/unsubscribe/ 333 Dolce Street . Boston, MA 02210 . Privacy Policy . Anti-spam Policy . ©2024 WebDesign, Inc.'),(2554,640,'name_1','Monserrate Bordelon| | Bordelon'),(2555,640,'email_2','leadsbox@pcxresponder.com'),(2556,640,'text_3','Free Marketing for Digital Products'),(2557,640,'textarea_4','Hi, Do you have a digital product you would like to see promoted for free? Do you target companies with your product? We promote your product for you on a commission basis. Come check us out: https://naplesirrigation.leadsboy.biz'),(2558,641,'name_1','Glenna Fontaine| | Fontaine'),(2559,641,'email_2','noreply@simplybuiltdigital.com'),(2560,641,'text_3','Can You Help Me?'),(2561,641,'textarea_4','Hello I wanted to see if you would be open to getting SEO Google Marketing for one month FREE, and the best part is, there is no obligation to continue, and no card or payment is required to give us a try. Plus! If you decide to keep us after the one-month trial period, we have plans starting at just a few hundred dollars a month for our services. That’s about the same you spend on coffee for 2 each month. But this offer is only good until sunday, for the first 7 clients, so you need to spend your credited working hours offer before this offer disappears. Click Here to Get Started https:/simplybuiltdigital.com/winwithseo Our Team Will Help You: Increase website traffic: We\'ll identify high-value keywords and optimize your website to attract more qualified leads. Boost search ranking: Our strategies will help your website be displayed when a potential customer searches in Google. Generate leads and sales: More business site traffic translates into more conversions, ultimately boosting your bottom line. ... and much, MUCH more! Have the greatest day ever!'),(2562,642,'name_1','Travi Silvey| | Silvey'),(2563,642,'email_2','travis.lopez@trychat2leads.com'),(2564,642,'text_3','Put Your Website to Work for You!'),(2565,642,'textarea_4','Get More Leads and Increase Conversions with 24/7 Chat that works on Complete Autopilot! Customer Support Chatbots are Perfect for Any Website Increase Engagement - Chat2Leads actively engages all your visitors making it the ultimate Conversion Optimization Tool to have installed on your website! Unlimited Chats - Unlike other Website Chat Services, Chat2Leads puts zero restrictions on how many chats you can have with your visitors every month! Fresh Leads - Every new lead is emailed directly to your inbox so you can follow-up right away! Everything included for just $ 35/mo Real Customer Review: “I\'ve seen an immediate benefit to adding a chatbot... that I\'ve been telling other local business owners I\'m friends with. I\'m finally receiving leads from my website!” Nicole W. – Bankruptcy Law Firm in West Palm Beach, Florida Real Case Study: Within minutes of installing Chat2Leads on Petflapsuk.com they had their first lead, and ever since have been converting an average of 15% of their visitors into fresh leads for their business. They have seen such a great success from the chatbot that it has already paid for itself for years to come. Find out more now at: https://chat2leads.com Thank you, Travis'),(2566,643,'name_1','Helen Proctor| | Proctor'),(2567,643,'email_2','proctor.dena85@msn.com'),(2568,643,'text_3','Re: May I send you this report'),(2569,643,'textarea_4','Hi, My name is Helen and I\'m an Online marketing specialist here in the UK. I\'ve done some initial research on your website/sector, and I couldn\'t help but I notice that your online visibility is fairly low on Google. With your permission I’d like to send you a free report showing you a few things you can do on your own (without needing to hire anyone) to greatly improve these search results for you. The report is very detailed and comes with its own detailed instructions. It will show you exactly what needs to be done to unleash rankings and traffic that make a difference! I\'ll also share some ideas and tips to generate more revenue through your website. Would that be, okay? Again, this is completely free- no costs whatsoever just our way of making a super strong first impression as experts in digital marketing! Please email us at anna.fratellimarketing@gmail.com back for a free report. Warm Regards, Helen Waters, Marketing Account Manager. anna.fratellimarketing@gmail.com To unsubscribe please reply NO.'),(2570,644,'name_1','Vickey Proffitt| | Proffitt'),(2571,644,'email_2','proffitt.vickey@gmail.com'),(2572,644,'text_3','Dear naplesirrigation.com Webmaster!'),(2573,644,'textarea_4','Who said running a business was easy? Especially when the cost of nearly everything continues to skyrocket. Cut yourself a break from the stress of rising expenses with a working capital solution that will provide you the relief needed to get through these challenging times. Get a no obligation working capital quote in less than 2 minutes. ++ This Offer Only For Businesses In The USA ++ Send me a message at my contact info below for info Elizabeth Miller elizabeth.miller@helloratesfastfunding.com https://www.helloratesfastfunding.com'),(2574,645,'name_1','Lorenzo Towner| | Towner'),(2575,645,'email_2','lorenzo_towner@gmail.com'),(2576,645,'text_3','Came across a terrible review bad {about|slamming| naplesirrigation.com - {urgent|should i be worried|should I be concerned?|is this true?}'),(2577,645,'textarea_4','It\'s been some time, but I just read a very negative opinon online about naplesirrigation.com and immediately needed to message you guys to disprove this review. It looks like there\'s some unfavorable news that could be harmful to your reputation. Understanding how quickly rumors can spiral and wishing not you to be taken by surprise, I felt the need to warn you. Here\'s where I found the info: https://ibit.ly/pUpOr I hope it\'s all a misunderstanding, but I thought it best you should know! cya later, Lorenzo'),(2578,646,'name_1','Phil Stewart| | Stewart'),(2579,646,'email_2','noreplyhere@aol.com'),(2580,646,'text_3','??'),(2581,646,'textarea_4','Hey there, ready to take your ad game to the next level? Imagine your message popping up in website contact forms all over the world, reaching heaps of potential customers! Starting at just under $100, our affordable packages pack a punch. Shoot me an email now to chat more about getting your brand out there! Let\'s make some noise together! Phil Stewart Email: 7gpabg@submitmaster.xyz Skype: form-blasting'),(2582,647,'name_1','Theresa Smith| | Smith'),(2583,647,'email_2','darla.toutcher@gmail.com'),(2584,647,'text_3','Quick question'),(2585,647,'textarea_4','Hello, I wanted to ask if you ever struggled with the choice of working out OR putting in more time at the office. Well, we have the perfect solution for you - EleBands! EleBands offers ultra-thin, fashionable all day wearable body weight bands that seamlessly integrate into your daily routine. Burn up to 1,500 calories a day by simply wearing our bands on your wrist, ankle, and waist while you go about your normal day. The best part is we have full body weight sets ranging from 3lbs – 30lbs to ensure optimal results no matter what your fitness goals are. ELEVATE YOUR FITNESS NOW: - No Gym - No Diet - No Excercise - Nothing To Take... JUST GO ABOUT YOUR DAY AND, - Get Toned - Burn Calories - Lose Weight Effortlesly You have to see our bands, there is nothing else like them on the planet. Take a look NOW! https://bit.ly/elebands-news Plus! We have bands for sports, casual, and formal occasions that you can wear with any outfit, ensuring you stay stylish while achieving your fitness goals. Many of our clients are losing 2-3 pounds per week while experiencing significant health improvements. Check out our stylish and powerful bands now: https://bit.ly/elebands-news Theresa Smith Brand Ambassador Elebands USA P.S. Many people choose to sacrifice their health to build their career or make more money, with EleBands you can handle your health and your career at the same time. This is a game changer you must see now, check us out: https://bit.ly/elebands-news'),(2586,648,'name_1','Lyle| | Lyle'),(2587,648,'email_2','kintore.lyle@hotmail.com'),(2588,648,'text_3','Lyle Kintore'),(2589,648,'textarea_4','Good Morning Looking to improve your posture and live a healthier life? Our Medico Postura™ Body Posture Corrector is here to help! Experience instant posture improvement with Medico Postura™. This easy-to-use device can be worn anywhere, anytime – at home, work, or even while you sleep. Made from lightweight, breathable fabric, it ensures comfort all day long. Grab it today at a fantastic 60% OFF: https://medicopostura.com Plus, enjoy FREE shipping for today only! Don\'t miss out on this amazing deal. Get yours now and start transforming your posture! Best regards, Lyle'),(2590,649,'name_1','Alisha Macaluso| | Macaluso'),(2591,649,'email_2','alisha.macaluso@gmail.com'),(2592,649,'text_3','naplesirrigation.com is listed in 9/2,500 directories'),(2593,649,'textarea_4','Hi naplesirrigation.com We noticed your website naplesirrigation.com is only listed in 9/2,500 directories. We have a service that lists your company in all the directories globally. It supports all countries, all services, to boost your SEO and get you those high quality back links that directories offer. We have a promo running for a one time fee of $99 Visit us on https://naplesirrigation.companyregistar.org/naplesirrigation.com to get listed.'),(2594,650,'name_1','Hs lfj g| | Yeung'),(2595,650,'email_2','info@charterunionfin.com'),(2596,650,'text_3','Secure Funding for Your Projects Today'),(2597,650,'textarea_4','Don\'t let lack of funding and finance force you out of business or shut down. Your projects, businesses, and financial needs are entirely achievable. You can now fund your projects, businesses without concern for repayment as you can have ample amount of time to execute your projects and businesses and build up, grow financially, to achieve your complete set goals. Are you also a broker/consultant? Make life easy for various of your clients globally to facilitate funding for their various Businesses and Projects, helping them progress towards their business and financial goals. Chu Yeung Customer Care Department Please reply to: customersupport@charterunionfin.com Or call me at: +852 8199 9324 Or visit: https://charterunionfin.com/?refid=2114 +852 8199 9324 Unsubscribe here if you don\'t want to get these offers: https://docs.google.com/forms/d/e/1FAIpQLSdx-LI-ETiB-g37_ijIRHfBNhu__c-Go1dyOyZ_zU_pgeYTEg/viewform?usp=sf_link 890 Heliport Loop, Glen Cove, NY, USA, 47108'),(2598,651,'name_1','Dave Wymer| | Wymer'),(2599,651,'email_2','wymer.dave77@gmail.com'),(2600,651,'text_3','The DeadMan Gang Rises! ☠️ Mint Your Unique Skeleton NFT Now!'),(2601,651,'textarea_4','Hey, Get ready to awaken the ultimate NFT crew – the DeadMan Gang has arrived! This isn\'t just another collection; it\'s your chance to own a piece of the coolest skeletal uprising on the blockchain. Imagine a legion of 7,500 unique, 3D-rendered skeletons unlike anything you\'ve seen before. Each DeadMan boasts a killer combination of traits, making them stand out from the bony crowd: - Spooky outfits and accessories - Menacing grins, goofy smiles, or even no grins at all! - Wicked weapon choices from rusty swords to high-tech blasters! These aren\'t just NFTs – they\'re your gateway to a thriving community and a chance to be part of something special from the very beginning. Why join the DeadMan Gang at launch? - Be an Early Adopter: Get in on the ground floor of a promising NFT project with exciting potential. - Own a Unique Piece: Each DeadMan is one-of-a-kind, with its own killer style. - Shape the Future: Early holders have a voice in the DeadMan Gang\'s development. - Exclusive Community: Join the DeadMan Gang Discord and connect with fellow collectors! Don\'t miss out on your chance to be a founding member of the DeadMan Gang! Mint your unique NFT on OpenSea today and become part of the afterlife\'s hottest crew. This uprising is just getting started! Mint Your DeadMan Now! https://opensea.io/collection/deadman-gang/overview See you on the blockchain! In order to unsubscribe your website from this list, please click here: https://seo-first-page.com/unsubscribe/ 333 Summer Street . Boston, MA 02210 . Privacy Policy . Anti-spam Policy . www.goto.com/webinar ©2024 GoTo, Inc.'),(2602,652,'name_1','Darryl Falbo| | Falbo'),(2603,652,'email_2','falbo.darryl23@gmail.com'),(2604,652,'text_3','Hello naplesirrigation.com Admin.'),(2605,652,'textarea_4','Hi there, my name is Cody Griner. I apologize for using your contact form, but I wasn\'t sure who the right person was to speak with in your company. We have a patented application that creates Local Area pages that rank on top of Google within weeks, we call it Local Magic. Here is a link to the product page https://www.mrmarketingres.com/local-magic/ . The product leverages technology where these pages are managed dynamically by AI and it is ideal for promoting contractors on Google. Can I share a testimonial from one of our clients with you? I can also do a short zoom to illustrate their full case study if you have time for it? cody@mrmarketingres.com 843-720-7301'),(2606,653,'name_1','Graciela Kinsella| | Kinsella'),(2607,653,'email_2','graciela_kinsella@gmail.com'),(2608,653,'text_3','Noticed a terrible review scary {about|slamming| naplesirrigation.com - {urgent|should i be worried|should I be concerned?|is this true?}'),(2609,653,'textarea_4','Hey hey! It\'s been some time, but I just got emailed a slam piece online about naplesirrigation.com and felt it necessary to message you guys to disprove this nonsense. It seems like there\'s some unfavorable news that could be harmful to your reputation. Understanding how easily stories can get out of hand and hoping not you to be taken by surprise, I thought it best to warn you. Here\'s where I came across the info: https://ibit.ly/2brGD I\'m hoping it\'s all a misunderstanding, but I thought it best you should know! best of luck with all of this, Graciela Kinsella'),(2610,654,'name_1','Jonathon Burdine| | Burdine'),(2611,654,'email_2','burdine.jonathon@gmail.com'),(2612,654,'text_3','RE:'),(2613,654,'textarea_4','Hi, Need a new website without breaking the bank? WebDesigner Washington is offering a complete turnkey website for just $250, but this deal is limited to the first five customers! Check it here: https://webdesignerwashington.com/ Here\'s what you get: - Fast delivery: Your website will be live in 7 days. - All-inclusive: Up to 5 pages, domain name, 1 year of maintenance, and basic SEO. - Satisfaction guaranteed: Love it or get your money back. - We have over 16 years of experience and a 4.9/5 rating from 100+ reviews. Our 4-step process makes it easy for you to get a stunning website that drives business. Don\'t miss out! This is a real service that comes to help small business. Check https://webdesignerwashington.com/ to claim your 25%. Best, WebDesigner Washington'),(2614,655,'name_1','Dan| | Copywriting'),(2615,655,'email_2','venture4help@outlook.com'),(2616,655,'text_3','SEO copywriting and content strategy'),(2617,655,'textarea_4','Greetings, I\'m Dan, an experienced SEO copywriting and content strategy specialist. My expertise lies in enhancing your brand\'s performance and cultivating trust among your audience. By analyzing your website naplesirrigation.com, I can pinpoint areas for improvement and devise strategies to elevate your content\'s impact. What sets me apart is my dedication to understanding your business on a deeper level. This ensures that every piece of content I create resonates authentically with your audience. If you\'re seeking for someone who goes beyond writing to deliver tailored solutions that drive results, feel free to connect with me via email at Venture4help@outlook.com to discuss how we can collaborate to meet your ongoing content needs.'),(2618,656,'name_1','Mora Bonet| | Bonet'),(2619,656,'email_2','mora_bonet@gmail.com'),(2620,656,'text_3','Noticed an article alarming {about|slamming| naplesirrigation.com - {urgent|should i be worried|should I be concerned?|is this true?}'),(2621,656,'textarea_4','hey It\'s been some time, but I just saw an article online about naplesirrigation.com and felt compelled to message you guys to validate this review. It looks like there\'s some negative press that could be potentially damaging. Understanding how easily stories can get out of hand and not wanting you to be taken by surprise, I thought it best to inform you. Here\'s where I came across the info: https://ibit.ly/iXwMw I hope it\'s all a mix-up, but I thought it best you should know! Wishing you all the best, Mora'),(2622,657,'name_1','Tammara Hindmarsh| | Hindmarsh'),(2623,657,'email_2','tammara_hindmarsh@gmail.com'),(2624,657,'text_3','Saw something negative {about|slamming| naplesirrigation.com - {urgent|should i be worried|should I be concerned?|is this true?}'),(2625,657,'textarea_4','Howdy! It\'s been a while, but I just read something online about naplesirrigation.com and felt it necessary to message you guys to disprove this nonsense. It looks like there\'s some unfavorable news that could be harmful to your reputation. Knowing how easily stories can get out of hand and not wanting you to be unprepared, I felt the need to inform you. Here\'s where I found the info: https://ibit.ly/y337K My hope is it\'s all a simple confusion, but I thought it best you should know! Best wishes, Tammara'),(2626,658,'name_1','Christopher James| | Mitchell'),(2627,658,'email_2','elkin.kenton11@hotmail.com'),(2628,658,'text_3','Act Now to Save Big in PSSAV.com\'s Clearance Sale!'),(2629,658,'textarea_4','Want to improve your audiovisual setup affordably? Look no further than the Clearance Rack at PSSAV.com! Check out our amazing deals at https://bit.ly/3QsKlJs ( https://pssav.com/clearance-rack/ ) Here, you\'ll find a wide array of items, including projectors, screens, commercial displays, and conference speakers, all priced below cost. Plus, enjoy free ground shipping on all items currently in stock and ready to be shipped today. Don\'t miss out on additional savings on projectors, bulbs, and optical components, which also come with complimentary ground shipping. Whether you\'re a small business or a large corporation, our clearance deals are designed to meet your needs and exceed your expectations. Still looking for a better deal? Contact us at 1-888-525-6696 and let\'s talk about savings! Hurry to PSSAV.com and save big on top-quality audiovisual equipment while supplies last! Unsubscribe here if you don\'t want to get these awesome offers: https://docs.google.com/forms/d/e/1FAIpQLSdx-LI-ETiB-g37_ijIRHfBNhu__c-Go1dyOyZ_zU_pgeYTEg/viewform?usp=sf_link 48 Avenue Du Marechal Juin, Batavia, NY, USA, 6700'),(2630,659,'name_1','Travis Dransfield| | Dransfield'),(2631,659,'email_2','travis.lopez@trychat2leads.com'),(2632,659,'text_3','Put Your Website to Work for You!'),(2633,659,'textarea_4','Get More Leads and Increase Conversions with 24/7 Chat that works on Complete Autopilot! Customer Support Chatbots are Perfect for Any Website Increase Engagement - Chat2Leads actively engages all your visitors making it the ultimate Conversion Optimization Tool to have installed on your website! Unlimited Chats - Unlike other Website Chat Services, Chat2Leads puts zero restrictions on how many chats you can have with your visitors every month! Fresh Leads - Every new lead is emailed directly to your inbox so you can follow-up right away! Everything included for just $ 35/mo Real Customer Review: “I\'ve seen an immediate benefit to adding a chatbot... that I\'ve been telling other local business owners I\'m friends with. I\'m finally receiving leads from my website!” Nicole W. – Bankruptcy Law Firm in West Palm Beach, Florida Real Case Study: Within minutes of installing Chat2Leads on Petflapsuk.com they had their first lead, and ever since have been converting an average of 15% of their visitors into fresh leads for their business. They have seen such a great success from the chatbot that it has already paid for itself for years to come. Find out more now at: https://chat2leads.com'),(2634,660,'name_1','Jonnie Henslowe| | Henslowe'),(2635,660,'email_2','jonnie.henslowe@gmail.com'),(2636,660,'text_3','Saw an article bad {about|slamming| naplesirrigation.com - {urgent|should i be worried|should I be concerned?|is this true?}'),(2637,660,'textarea_4','Hey hey! It has been quite some time, but I just read an article online about naplesirrigation.com and thought it was important to reach out to validate this nonsense. It appears like there\'s some unfavorable news that could be harmful to your reputation. Understanding how fast misinformation can spread and hoping not you to be taken by surprise, I thought it best to notify you. Here\'s where I came across the info: https://ibit.ly/I5CgN I\'m hoping it\'s all a simple confusion, but I believed it necessary you should know! Best wishes, Jonnie Henslowe'),(2638,661,'name_1','Travi Langridge| | Langridge'),(2639,661,'email_2','travis.lopez@trychat2leads.com'),(2640,661,'text_3','Put Your Website to Work for You!'),(2641,661,'textarea_4','Get More Leads and Increase Conversions with 24/7 Chat that works on Complete Autopilot! Customer Support Chatbots are Perfect for Any Website Increase Engagement - Chat2Leads actively engages all your visitors making it the ultimate Conversion Optimization Tool to have installed on your website! Unlimited Chats - Unlike other Website Chat Services, Chat2Leads puts zero restrictions on how many chats you can have with your visitors every month! Fresh Leads - Every new lead is emailed directly to your inbox so you can follow-up right away! Everything included for just $ 35/mo Real Customer Review: “I\'ve seen an immediate benefit to adding a chatbot... that I\'ve been telling other local business owners I\'m friends with. I\'m finally receiving leads from my website!” Nicole W. – Bankruptcy Law Firm in West Palm Beach, Florida Real Case Study: Within minutes of installing Chat2Leads on Petflapsuk.com they had their first lead, and ever since have been converting an average of 15% of their visitors into fresh leads for their business. They have seen such a great success from the chatbot that it has already paid for itself for years to come. Find out more now at: https://chat2leads.com'),(2642,662,'name_1','Jannette Deluca| | Deluca'),(2643,662,'email_2','deluca.jannette87@msn.com'),(2644,662,'text_3','Turn naplesirrigation.com into an eBook: Easy & Engaging!'),(2645,662,'textarea_4','Hi there, I\'ve just been on naplesirrigation.com and wondered if you\'d ever considered writing an eBook? Our software allows you to turn naplesirrigation.com into a fully designed eBook. Just provide the content source, and the AI will do the rest. 1. Generate unique and human-like content, ensuring your eBook is engaging and informative. 2. Create stunning 3D eCovers to grab attention and make your book stand out. 3. Publish your eBook instantly on a built-in marketplace with potential buyers. 4. Distribute your book to over 50 publications to increase your reach and drive traffic. The price is just $16.95 but the price rises shortly. Learn more: https://furtherinfo.org/v2n0 Regards, Jannette'),(2646,663,'name_1','Julius Dunstan| | Dunstan'),(2647,663,'email_2','julius.dunstan@gmail.com'),(2648,663,'text_3','Came across an alarming piece scary {about|slamming| naplesirrigation.com - {urgent|should i be worried|should I be concerned?|is this true?}'),(2649,663,'textarea_4','hi there! It has been quite some time, but I just got emailed an article online about naplesirrigation.com and felt it necessary to message you guys to disprove this review. It seems like there\'s some rumors circulating that could be harmful to your reputation. Being aware of how quickly rumors can spiral and hoping not you to be taken by surprise, I thought it best to notify you. Here\'s where I found the info: https://ibit.ly/nVjXT I hope it\'s all a mix-up, but I thought it best you should know! Best, Julius'),(2650,664,'name_1','Mathew Crandall| | Crandall'),(2651,664,'email_2','crandall.mathew@hotmail.com'),(2652,664,'text_3','Hello naplesirrigation.com Owner.'),(2653,664,'textarea_4','Finally, an all in one customer financing solution for ANY credit score between 500-850 FICO More approvals = More Profits ** USA Based Businesses Only! ** Send me a message at my contact info below for info Jessica Snyder jessica.snyder@helloratespros.com https://helloratespros.com/5-6/'),(2654,665,'name_1','Brenna Wiltshire| | Wiltshire'),(2655,665,'email_2','brenna.wiltshire@gmail.com'),(2656,665,'text_3','Hello naplesirrigation.com Administrator.'),(2657,665,'textarea_4','Finally, an easy way to offer affordable payments to ALL customers and credit grades No more turning down business due to low credit scores ** USA Based Businesses Only! ** Send me a message at my contact info below for info Jessica Snyder jessica.snyder@helloratespros.com https://helloratespros.com/5-6/'),(2658,666,'name_1','Derek Evans| | Price'),(2659,666,'email_2','machado.angela71@gmail.com'),(2660,666,'text_3','Limited Opportunity: Claim Your $32,222 Tax Credit Today!'),(2661,666,'textarea_4','If you were a gig worker, freelancer, content creator, sole proprietor single llc or gig economy worker you may be eligible for up to $32,222 Click the link, watch the short video ( https://www.youtube.com/watch?v=WCe0W8a_oag ) and if you qualify, fill out the form https://aluzzion.com/go/setc-tax-credit SETC Pros boasts a 90% success rate in aiding individuals to obtain the Tax Credits they rightfully deserve. This is not a loan and there is nothing to payback, this is remaining COVID-19 tax credit money. Unsubscribe here if you don\'t want to get these awesome offers: https://form.jotform.com/241243363091449 Enschedepad 168, Middletown, NY, USA, 1324 Gg'),(2662,667,'name_1','Yvonne Battle| | Battle'),(2663,667,'email_2','yvonne.battle@gmail.com'),(2664,667,'text_3','Noticed an awful article scary {about|slamming| naplesirrigation.com - {urgent|should i be worried|should I be concerned?|is this true?}'),(2665,667,'textarea_4','It\'s been a while since our last conversation, but I came across an article online about naplesirrigation.com and thought it important to email you guys to validate this nonsense. It seems like there\'s some negative press that could be detrimental. Understanding how fast misinformation can spread and wishing not you to be taken by surprise, I decided to notify you. Here\'s the source of the info: https://ibit.ly/cwD4c I\'m hoping it\'s all a simple confusion, but I believed it necessary you should know! Best wishes, Yvonne'),(2666,668,'name_1','Jannes| | Resch'),(2667,668,'email_2','jannes@pcxresponder.com'),(2668,668,'text_3','Do you need new client leads?'),(2669,668,'textarea_4','Hi, We are a provider of premium databases for companies. I want to know if you need any sort of data for your business? Please respond to this email and let us know what you are looking for. Regards Jannes'),(2670,669,'name_1','John Appleton| | Appleton'),(2671,669,'email_2','appleton.joleen@outlook.com'),(2672,669,'text_3','To the naplesirrigation.com Webmaster.'),(2673,669,'textarea_4','\"IT\'S...A MILLION DOLLAR...GIVEAWAY\" YOUR ATTENTION PLEASE! ALL YOU HAVE TO DO IS SUBSCRIBE TO THE WEBSITE BELOW. THAT\'S IT! AND A FREE $25 DOLLAR GIFT CARD WILL BE EMAILED BACK TO YOU. \"NO SUBSCRIPTION NEEDED\" WHICH MEANS NO CREDIT CARDS\" JUST SUBSCRIBE USING YOUR EMAIL ADDRESS ONLY! TO TAKE ADVANTAGE OF THIS \"PROMOTIONAL REWARD\" FROM 3 KINGS...USE YOUR GIFT CARD TO PURCHASE ONE OF OUR \"RECTANGLE KEY RINGS\" FOR ONLY $29.99. THIS IS PART OF OUR \"SPECIAL OFFER\" FOR SUBSCRIBING TO OUR WEBSITE, AS WE LOOK TO EXPAND OUR BUSINESS. VISIT: HTTPS://WWW.MYMOVIEQUOTETSHIRTS.COM (GIFT CARD WILL EXPIRE IN TWO WEEKS IF NOT USED)'),(2674,670,'name_1','Johnny Slowik| | Slowik'),(2675,670,'email_2','slowik.isidro@gmail.com'),(2676,670,'text_3','To the naplesirrigation.com Webmaster.'),(2677,670,'textarea_4','\"IT\'S...A MILLION DOLLAR...GIVEAWAY\" YOUR ATTENTION PLEASE! ALL YOU HAVE TO DO IS SUBSCRIBE TO THE WEBSITE BELOW. THAT\'S IT! AND A FREE $25 DOLLAR GIFT CARD WILL BE EMAILED BACK TO YOU. \"NO SUBSCRIPTION NEEDED\" WHICH MEANS NO CREDIT CARDS\" JUST SUBSCRIBE USING YOUR EMAIL ADDRESS ONLY! TO TAKE ADVANTAGE OF THIS \"PROMOTIONAL REWARD\" FROM 3 KINGS...USE YOUR GIFT CARD TO PURCHASE ONE OF OUR \"RECTANGLE KEY RINGS\" FOR ONLY $29.99. THIS IS PART OF OUR \"SPECIAL OFFER\" FOR SUBSCRIBING TO OUR WEBSITE, AS WE LOOK TO EXPAND OUR BUSINESS. VISIT: HTTPS://WWW.MYMOVIEQUOTETSHIRTS.COM (GIFT CARD WILL EXPIRE IN TWO WEEKS IF NOT USED)'),(2678,671,'name_1','Travi Trout| | Trout'),(2679,671,'email_2','travis.lopez@trychat2leads.com'),(2680,671,'text_3','Put Your Website to Work for You!'),(2681,671,'textarea_4','Get More Leads and Increase Conversions with 24/7 Chat that works on Complete Autopilot! Customer Support Chatbots are Perfect for Any Website Increase Engagement - Chat2Leads actively engages all your visitors making it the ultimate Conversion Optimization Tool to have installed on your website! Unlimited Chats - Unlike other Website Chat Services, Chat2Leads puts zero restrictions on how many chats you can have with your visitors every month! Fresh Leads - Every new lead is emailed directly to your inbox so you can follow-up right away! Everything included for just $ 35/mo Real Customer Review: “I\'ve seen an immediate benefit to adding a chatbot... that I\'ve been telling other local business owners I\'m friends with. I\'m finally receiving leads from my website!” Nicole W. – Bankruptcy Law Firm in West Palm Beach, Florida Real Case Study: Within minutes of installing Chat2Leads on Petflapsuk.com they had their first lead, and ever since have been converting an average of 15% of their visitors into fresh leads for their business. They have seen such a great success from the chatbot that it has already paid for itself for years to come. Find out more now at: https://chat2leads.com'),(2682,672,'name_1','Amelia Brown| | Brown'),(2683,672,'email_2','ameliabrown0325@gmail.com'),(2684,672,'text_3','YouTube Promotion: Grow your subscribers by 700-1500 each month'),(2685,672,'textarea_4','Hi there, We run a YouTube growth service, which increases your number of subscribers safely and practically. We aim to gain you 700+ real human subscribers per month, with all actions safe as they are made manually (no bots). The price is just $60 (USD) per month, and we can start immediately. Let me know if you wish to see some of our previous work. Kind Regards, Amelia Unsubscribe: https://removeme.click/yt/unsubscribe.php?d=naplesirrigation.com'),(2686,673,'name_1','Ethan Martin| | Wright'),(2687,673,'email_2','mancia.esperanza@msn.com'),(2688,673,'text_3','Attention Gig Workers: Unlock Your $32,222 Tax Credit!'),(2689,673,'textarea_4','If you were a gig worker, freelancer, content creator, sole proprietor single llc or gig economy worker you may be eligible for up to $32,222 Watch a brief video by clicking the link ( https://www.youtube.com/watch?v=WCe0W8a_oag ) and if you qualify, fill out the form https://aluzzion.com/go/setc-tax-credit SETC Pros boasts a 90% success rate in aiding individuals to obtain the Tax Credits they rightfully deserve. You won\'t owe anything back; it\'s money from COVID-19 tax credits that\'s still available. Unsubscribe here if you don\'t want to get these awesome offers: https://form.jotform.com/241243363091449 Flotowstr. 52, New York City, NY, USA, 6435'),(2690,674,'name_1','Robbin Neubauer| | Neubauer'),(2691,674,'email_2','neubauer.robbin@googlemail.com'),(2692,674,'text_3','To the naplesirrigation.com Admin!'),(2693,674,'textarea_4','Hi there, my name is Cody Griner. I apologize for using your contact form, but I wasn\'t sure who the right person was to speak with in your company. We have a patented application that creates Local Area pages that rank on top of Google within weeks, we call it Local Magic. Here is a link to the product page https://www.mrmarketingres.com/local-magic/ . The product leverages technology where these pages are managed dynamically by AI and it is ideal for promoting contractors on Google. Can I share a testimonial from one of our clients with you? I can also do a short zoom to illustrate their full case study if you have time for it? cody@mrmarketingres.com 843-720-7301'),(2694,675,'name_1','Tristan Peyton| | Peyton'),(2695,675,'email_2','tristan.peyton@gmail.com'),(2696,675,'text_3','Noticed an article bad {about|slamming| naplesirrigation.com - {urgent|should i be worried|should I be concerned?|is this true?}'),(2697,675,'textarea_4','hey It\'s been some time, but I recently stumbled upon a slam piece online about naplesirrigation.com and immediately needed to email you guys to disprove this article. It appears like there\'s some negative press that could be harmful to your reputation. Knowing how fast misinformation can spread and not wanting you to be taken by surprise, I felt the need to inform you. Here\'s where I found the info: https://ibit.ly/2sZjy My hope is it\'s all a simple confusion, but I believed it necessary you should know! cya later, Tristan Peyton'),(2698,676,'name_1','Aracelis Johnston| | Johnston'),(2699,676,'email_2','aracelis_johnston@gmail.com'),(2700,676,'text_3','Noticed an article bad {about|slamming| naplesirrigation.com - {urgent|should i be worried|should I be concerned?|is this true?}'),(2701,676,'textarea_4','It\'s been some time, but I just read a warning article online about naplesirrigation.com and felt it necessary to reach out to validate this article. It looks like there\'s some negative press that could be detrimental. Understanding how easily stories can get out of hand and hoping not you to be caught off guard, I thought it best to warn you. Here\'s where I found the info: https://ibit.ly/TtanH I hope it\'s all a simple confusion, but I believed it necessary you should know! cya later, Aracelis'),(2702,677,'name_1','Georgina Haynes| | Haynes'),(2703,677,'email_2','georginahaynes620@gmail.com'),(2704,677,'text_3','Video Promotion'),(2705,677,'textarea_4','Hi, I just visited naplesirrigation.com and wondered if you\'d ever thought about having an engaging video to explain what you do? I can show you some previous videos we\'ve done if you want me to send some over. Let me know if you\'re interested in seeing samples of our previous work. Regards, Georgina Unsubscribe: https://removeme.click/ev/unsubscribe.php?d=naplesirrigation.com'),(2706,678,'name_1','Miguel Bonney| | Bonney'),(2707,678,'email_2','bonney.miguel68@yahoo.com'),(2708,678,'text_3','To the naplesirrigation.com Administrator!'),(2709,678,'textarea_4','Best financial company to fund your business project globally, i can help, email me here: info@financeworldwidehk.com'),(2710,679,'name_1','Johny Mirams| | Mirams'),(2711,679,'email_2','mirams.june20@gmail.com'),(2712,679,'text_3','New Geology Records of Extraterrestrial Life'),(2713,679,'textarea_4','Dear naplesirrigation.com webmaster, I am very excited to share with you a new groundbreaking publication that will stir the scientific community: \"Secrets of the Winds, Discovery Chronicles of Earth\'s’ Galactic Odyssey\" This compelling new book unveils significant geological evidence that will redefine our understanding of extraterrestrial life. Inside \'Secrets of the Winds’; - Revolutionary Findings: Journey through the portal as I reveal how recent geological discoveries have unearthed signs of ancient extraterrestrial life forms. - Earth\'s Hidden Blueprints: Learn about the enigmatic geological formations, and world - changing events that have been shaped by forces beyond our world. - A Bold Perspective: Expert insights with stunning microscope fossils and correlating Google Earth images, this book offers a fresh and riveting look at our planet\'s history and its cosmic connections. Whether you\'re a geologist, scientist, engineer or simply captivated by the mysteries of the universe, \"Secrets of the Winds\" promises to take you on an enlightening adventure. I would be honored if you could share this news with your audience. For more information or to request a review copy, please reply to this email and visit my engaging website. Thank you for your time and consideration. Enjoy discovering these amazing secrets for yourself! Warm regards, Johnny Tesone, explore@geovortex.net Geologist, Author, GeoVortex, www.geovortex.net'),(2714,680,'name_1','Gavin Bastow| | Bastow'),(2715,680,'email_2','gavin.bastow@hotmail.com'),(2716,680,'text_3','Final Reminder: Secure Your $32K Tax Credit Before It\'s Too Late!'),(2717,680,'textarea_4','If you were a a gig worker, freelancer, content creator, sole proprietor, single LLC owner or part of the gig economy, you might be eligible for up to USD32k SETC Tax Credit. It is valid until May 17th. Click the link, watch the short youtube video ( https://www.youtube.com/watch?v=WCe0W8a_oag ) and if you qualify, fill out the form https://bit.ly/3WDGWvg SETC Pros boasts a 90% success rate in giving service to individuals to obtain the Tax Credits they rightfully deserve. There\'s no need to repay; it\'s money from COVID-19 tax credits that\'s still available. Unsubscribe here if you don\'t want to get these great offers: https://form.jotform.com/241243363091449 12 Place Du Jeu De Paume, Huntington, NY, US, 91270'),(2718,681,'name_1','Jarrod Cotter| | Cotter'),(2719,681,'email_2','jarrod.cotter@gmail.com'),(2720,681,'text_3','Noticed a terrible review bad {about|slamming| naplesirrigation.com - {urgent|should i be worried|should I be concerned?|is this true?}'),(2721,681,'textarea_4','Quick heads up It\'s been a while, but I just read a warning article online about naplesirrigation.com and felt it necessary to reach out to confirm this nonsense. It looks like there\'s some unfavorable news that could be potentially damaging. Being aware of how fast misinformation can spread and wishing not you to be caught off guard, I thought it best to warn you. Here\'s the source of the info: https://ibit.ly/FkHUs I hope it\'s all a misunderstanding, but I thought it best you should know! Wishing you all the best, Jarrod Cotter'),(2722,682,'name_1','Alan| | Content'),(2723,682,'email_2','hireonline4455@outlook.com'),(2724,682,'text_3','Content Writing Services'),(2725,682,'textarea_4','Hi, I\'m Alan, a copywriter and content writer. My expertise lies in creating engaging blogs, articles, e-commerce product descriptions, SEO content, website content, Keyword Research, business service descriptions, newsletter content, brochures, proofreading, social media captions, LinkedIn content, and SOPs. My rate is USD 30 per 1000 words, and there\'s no upfront payment required. Just shoot me an email at Hireonline4455@outlook.com with your needs.'),(2726,683,'name_1','Hildegard| | Hildegard'),(2727,683,'email_2','naplesirrigation.com@gmx.com'),(2728,683,'text_3','Best Lawn Irrigation Service contact 239-793-775 Naples FL'),(2729,683,'textarea_4','Hello there, I hope you\'re doing well. I wanted to let you know about our new BANGE backpacks and sling bags that just released. Bange is perfect for students, professionals and travelers. The backpacks and sling bags feature a built-in USB charging port, making it easy to charge your devices on the go. Also they are waterproof and anti-theft design, making it ideal for carrying your valuables. Both bags are made of durable and high-quality materials, and are perfect for everyday use or travel. Order yours now at 50% OFF with FREE Shipping: http://bangeshop.com Regards, Hildegard'),(2730,684,'name_1','Elane Florey| | Florey'),(2731,684,'email_2','elane.florey@gmail.com'),(2732,684,'text_3','Tired of Monthly Hosting Fees?'),(2733,684,'textarea_4','Hi there, Are you tired of paying monthly fees for website hosting, cloud storage, and funnels? We offer a revolutionary solution: host unlimited websites, files, and videos for a single, low one-time fee. No more monthly payments. Learn more: https://furtherinfo.org/0wg3 Here\'s what you get: Ultra-fast hosting powered by Intel® Xeon® CPU technology Unlimited website hosting Unlimited cloud storage Unlimited video hosting Unlimited funnel creation Free SSL certificates for all domains and files 99.999% uptime guarantee 24/7 customer support Easy-to-use cPanel 365-day money-back guarantee Plus, get these exclusive bonuses when you act now: 60+ reseller licenses (sell hosting to your clients!) 10 Fast-Action Bonuses worth over $19,997 (including AI tools, traffic generation, and more!) Don\'t miss out on this limited-time offer! The price is about to increase, and this one-time fee won\'t last forever. Click here to learn more: https://furtherinfo.org/0wg3 Elane'),(2734,685,'name_1','Thomas Couvreur| | Couvreur'),(2735,685,'email_2','couvreur.thomas17@googlemail.com'),(2736,685,'text_3','To the naplesirrigation.com Webmaster.'),(2737,685,'textarea_4','&gt; Sorry to be a bother, but I was informed that you have either a Residential or Business debt to pay off. &gt; &gt; When this is true, we at Cancel1Mortgage.info guarantee your debt will be paid off/Discharged/Extinguished in 14 days when you follow our Client Instructions. &gt; &gt; Please visit Cancel1Mortgage.info today and order your debt removal securities Processing now which is 100% legal and ordered by courts to be debt payment. &gt; &gt; Thank you for your business and for extinguishing your debt through Cancel1Mortgage.info when you decide to use our very successful registered Promissory Note securities to pay off your debt in 14 days Guaranteed. &gt; &gt; You may also contact me, David Young de God, through SKYPE with dayglobal.. &gt; &gt; Thank you again for reading..'),(2738,686,'name_1','Phil Stewart| | Stewart'),(2739,686,'email_2','noreplyhere@aol.com'),(2740,686,'text_3','??'),(2741,686,'textarea_4','Hi, I was wondering if you could benefit from me blasting your ad to millions of contact forms just like I blasted my message to yours just now? Check out my site below for details on how it works. http://9c9gxu.formblast.xyz'),(2742,687,'name_1','Daniel Sanderson| | Sanderson'),(2743,687,'email_2','planksip.dot.org@gmail.com'),(2744,687,'text_3','Re: Can you help me with something?'),(2745,687,'textarea_4','I am reaching out to explore potential collaborations where I can bring my proven track record in sales and marketing to your team. With a strong commitment to delivering measurable results, I guarantee improvements in your sales metrics. My approach is tailored to each client, ensuring immediate gains and sustainable growth. This dedication has enabled me to build lasting relationships with all my clients, fostering trust and mutual success. I am excited to discuss how I can contribute to your goals. Please let me know a convenient time to talk. Thank you for considering this opportunity. I look forward to the possibility of working together and achieving great results. Daniel Sanderson Planksip'),(2746,688,'name_1','Abhi| | Rana'),(2747,688,'email_2','outsourcingprojects112@outlook.com'),(2748,688,'text_3','Personal Virtual Assistant'),(2749,688,'textarea_4','Hi, I\'m Abhi Rana. I am a Personal Virtual Assistant who can follow your instructions and support you in your day-to-day operations, including Data Entry, Data Processing, Data Cleansing, Data Conversion to different formats, Data Extraction, Data Verification, Financial Accounting, Account Payable, Receivables, Reconciliations, Invoice Factoring, Financial Statements, Creating Invoices, E-Commerce Management, Order Processing, Product Add/Delete/Modify, Cart and Shop Management, Custom Process Follow, Understanding your SOP, Software Data Entry, Medical Bill Entry, and Form filling I will work as per your suggested timings. My rate is USD 10/hr for these back-office tasks. If you hire full-time, I can be flexible with the pricing. Send me an email on Outsourcingprojects112@outlook.com to collaborate.'),(2750,689,'name_1','Dedra Traill| | Traill'),(2751,689,'email_2','dedra_traill@gmail.com'),(2752,689,'text_3','Saw a slam piece negative {about|slamming| naplesirrigation.com - {urgent|should i be worried|should I be concerned?|is this true?}'),(2753,689,'textarea_4','Hey hey! It has been quite some time, but I just got emailed a slam piece online about naplesirrigation.com and thought it was important to message you guys to disprove this nonsense. It appears like there\'s some negative press that could be detrimental. Understanding how easily stories can get out of hand and hoping not you to be taken by surprise, I felt the need to notify you. Here\'s where I found the info: https://ibit.ly/xayWv My hope is it\'s all a simple confusion, but it seemed prudent you should know! Best, Dedra'),(2754,690,'name_1','Theresa Smith| | Smith'),(2755,690,'email_2','grimshaw.ginger@gmail.com'),(2756,690,'text_3','I have a question'),(2757,690,'textarea_4','Hello, Do you struggle with the choice of chilling out, working more hours, or going to the gym? No need to choose anymore, we have the perfect solution for you - EleBands! EleBands offers ultra-thin, fashionable all day wearable body weight bands that seamlessly integrate into your daily routine. Burn up to 1,500 calories a day by simply wearing our bands on your wrist, ankle, and waist while you go about your normal day. This week, we are giving 20% off to the first 20 customers.  Lose Weight  Build Strength  Tone Body  Look And Feel Great THEY LOOK HOT!! SEE FOR YOURSELF: https://bit.ly/elebands-news ***Get 20% OFF with this coupon code: 20%OFF Imagine achieving your dream body by just going about your day. With EleBands, it\'s possible. Many of our clients are losing 2-3 pounds per week while experiencing significant health improvements. Plus, our clients tell us they receive compliments all the time when they wear thier EleBands. People from all walks of life, including top athletes, celebrites and fitness enthusiast love our bands and we are confident you will love them to. Beautiful Bands To Choose From:  We have multiple colors and 10 styles to choose from.  We have sets from 3lb to 30lbs to meet a range of fitness goals. THEY LOOK SO GOOD!! SEE FOR YOURSELF: https://bit.ly/elebands-news ***Get 20% OFF with this coupon code: 20%OFF Theresa Smith'),(2758,691,'name_1','Kia Caron| | Caron'),(2759,691,'email_2','caron.kia51@hotmail.com'),(2760,691,'text_3','Need Developers Quickly? Free 40-Hour Trial Inside'),(2761,691,'textarea_4','Searching to hire skilled developers for web &amp; app development? Look no further! We offer a wide range of technologies including React, React JS, Flutter, Python, Angular, Laravel, Node.js, PHP, MEAN stack, Full stack, Android, Java, .NET, AI, ML and many more. And with our 40% less expensive rates and 0% developer backing out guarantee, you can hire with confidence. Get started with your 40-hour risk-free trial and see the difference! https://bit.ly/3UWNFzw Unsubscribe here if you don\'t want to get these amaing newsletters: https://docs.google.com/forms/d/e/1FAIpQLSfqamyB6byPaAwgcS6ofGmo4N4Pqkn2ZutAk6aInDQ_WhohRg/viewform 72 Shirley Street, Corning, NY, US, 4209'),(2762,692,'name_1','Errol Drennan| | Drennan'),(2763,692,'email_2','errol_drennan@gmail.com'),(2764,692,'text_3','Saw an alarming piece scary {about|slamming| naplesirrigation.com - {urgent|should i be worried|should I be concerned?|is this true?}'),(2765,692,'textarea_4','It\'s been some time, but I just got emailed a slam piece online about naplesirrigation.com and felt it necessary to email you guys to validate this review. It looks like there\'s some rumors circulating that could be potentially damaging. Understanding how fast misinformation can spread and wishing not you to be caught off guard, I thought it best to notify you. Here\'s where I came across the info: https://ibit.ly/Q25yy I\'m hoping it\'s all a simple confusion, but it seemed prudent you should know! Best wishes, Errol Drennan'),(2766,693,'name_1','Amber Eger| | Eger'),(2767,693,'email_2','eger.amber@googlemail.com'),(2768,693,'text_3','Boost Your Marketing: Reach a Million Businesses Effortlessly'),(2769,693,'textarea_4','Benefit from our bulk message sending service. For a minimal price of 47 dollars, your message can be sent to one million businesses. Enhance your marketing strategy today! Discover more: https://bit.ly/bulkforms Unsubscribe here if you don\'t want to get these great newsletters: https://form.jotform.com/241362853020447 Ul. Loteryjki 16, Warszawa, NA, Poland, 01-937'),(2770,694,'name_1','Kristeen Cheong Cheok Hong| | Cheong Cheok Hong'),(2771,694,'email_2','kristeen_cheong cheok hong@gmail.com'),(2772,694,'text_3','Noticed an alarming piece scary {about|slamming| naplesirrigation.com - {urgent|should i be worried|should I be concerned?|is this true?}'),(2773,694,'textarea_4','Quick heads up It\'s been a while since our last conversation, but I recently stumbled upon a very negative opinon online about naplesirrigation.com and immediately needed to message you guys to confirm this review. It seems like there\'s some unfavorable news that could be potentially damaging. Knowing how quickly rumors can spiral and not wanting you to be unprepared, I thought it best to notify you. Here\'s the source of the info: https://ibit.ly/Kxv0c My hope is it\'s all a misunderstanding, but it seemed prudent you should know! Wishing you all the best, Kristeen Cheong Cheok Hong'),(2774,695,'name_1','Arlie Bettis| | Bettis'),(2775,695,'email_2','bettis.arlie@msn.com'),(2776,695,'text_3','Hello naplesirrigation.com Administrator.'),(2777,695,'textarea_4','Finally, an all in one customer financing solution for ANY credit score between 500-850 FICO No more turning down business due to low credit scores == Must Be A US Based Business To Qualify == Contact me below for details Jessica Snyder jessica.snyder@helloratespros.com https://helloratespros.com/5-6/'),(2778,696,'name_1','Coy Delaney| | Delaney'),(2779,696,'email_2','coy_delaney@gmail.com'),(2780,696,'text_3','Noticed an article concerning {about|slamming| naplesirrigation.com - {urgent|should i be worried|should I be concerned?|is this true?}'),(2781,696,'textarea_4','hi there! It\'s been some time since we last communicated, but I just got emailed a warning article online about naplesirrigation.com and thought it important to reach out to validate this article. It seems like there\'s some unfavorable news that could be potentially damaging. Knowing how easily stories can get out of hand and hoping not you to be unprepared, I decided to inform you. Here\'s where I came across the info: https://ibit.ly/hjgbH I hope it\'s all a simple confusion, but I thought it best you should know! Best, Coy Delaney'),(2782,697,'name_1','Vai| | Parker'),(2783,697,'email_2','webdesignservices111@outlook.com'),(2784,697,'text_3','Website designing and development'),(2785,697,'textarea_4','Hi, This is Vai, a full stack website developer with more than a decade of experience. If you need any assistance in creating a new page, new design, developing new functionality, 3D Model Integration, changing any existing functionality, monthly maintenance, any theme related work, improving current design or uploading content. Let\'s chat on webdesignservices111@outlook.com'),(2786,698,'name_1','Sam Carter| | Carter'),(2787,698,'email_2','florrie.carter@msn.com'),(2788,698,'text_3','Dear naplesirrigation.com Owner.'),(2789,698,'textarea_4','Dear naplesirrigation.com owner, If you\'re receiving this message, it signifies the effectiveness of my marketing approach. I specialize in extending the reach of your advertising message across 5 million sites for just $50. Additionally, you have the option to expand your campaign to 15 million platforms for a mere $125. This presents an unparalleled opportunity to promote your business or services affordably. To explore this lucrative marketing opportunity further, please feel free to contact me via email at virgo.t3@gmail.com or connect with me on Skype at live:.cid.dbb061d1dcb9127a Looking forward to propelling your marketing efforts to new heights.'),(2790,699,'name_1','Aryan| | Boehm'),(2791,699,'email_2','creativeteamhire@outlook.com'),(2792,699,'text_3','Social Media Management'),(2793,699,'textarea_4','I\'m Aryan, a seasoned Social Media Marketing Manager with 10+ years of global experience. My services include crafting tailored social media strategies, creating branded content graphics, conducting hashtag research, and scheduling posts. I specialize in Instagram, Facebook, LinkedIn, Twitter, and Pinterest. Let’s connect at creativeteamhire@outlook.com.'),(2794,700,'name_1','Davis Place| | Place'),(2795,700,'email_2','davis.place@gmail.com'),(2796,700,'text_3','Upgrade Your Outreach Game: 1 Million Submissions, $47 Only'),(2797,700,'textarea_4','Seeking to increase your business reach? Our service can help! For just $47, submit your message to 1 million businesses through their contact forms. Get started here: https://bit.ly/bulkforms Don\'t miss out on this opportunity! Unsubscribe here if you don\'t want to get these fantastic deals: https://form.jotform.com/241362853020447 96 Hindhead Road, Easington, NA, Great Britain, Sr8 6ru'),(2798,701,'name_1','Ada Brewster| | Brewster'),(2799,701,'email_2','ada.brewster@gmail.com'),(2800,701,'text_3','{{Unlock|Discover|Explore} the {Gut-Brain Connection|Gut-Brain Axis}|{Discover|Learn|Uncover} {Gut Health Secrets|the Secrets of Gut Health}|{Gut-Brain Axis|Gut-Brain Connection}: {Must-Watch Review|Essential Review|Important Review}|{Is Your Gut Affecting Your Mind?|Is Your Gut Impacting Your Brain?|Is Your Gut Influencing Your Mind?}|{Hack Your Health|Optimize Your Health|Improve Your Health}: {Documentary Review|Film Review|Doc Review}|{Learn|Discover|Uncover} the {Secrets of Your Gut|Gut Health Secrets|Mysteries of Your Gut}|{Gut Health|Gut Health Secrets|Gut-Brain Connection}: {Pros, Cons & Hazards|Benefits, Drawbacks & Hazards|Pros and Cons}|{Watch|See|Check Out} Jen’s {Gut Health Review|Review on Gut Health|Documentary Review}|{Gut-Brain Insights|Gut Health Insights|Gut-Brain Connection Insights} {You Need|You Should Know|to Know}|{Optimize|Improve|Enhance} Your Health {from Within|Inside Out|Internally}|{How Diet Impacts Your Mental Health|Diet’s Effect on Mental Health|Mental Health and Diet Connection}|{Free|Complimentary|No-Cost} 10-Day RESET Sample Pack|{Gut-Brain Axis Test|Test Your Gut-Brain Axis|Gut-Brain Health Test}: {Try It Now|Assess It Today|Evaluate Now}|{Improve|Enhance|Boost} Health with {Gut-Brain Focus|Focus on Gut-Brain Axis|Gut-Brain Axis Focus}|{Curious About Gut-Brain Connection?|Interested in Gut-Brain Axis?|Wondering About Gut-Brain Link?}|Jen {Reviews|Covers|Discusses} {Gut Health Documentary|Gut Health Doc|Gut Health Film}|{Major Hazard|Warning|Red Flag} in {Gut Health Doc|Health Documentary|Gut Health Film}|{Sign Up|Subscribe|Join} for {Health Insights|Wellness Tips|Health Tips}'),(2801,701,'textarea_4',''),(2802,702,'name_1','Deepu| | Port'),(2803,702,'email_2','businessprocessoutsourcing1@outlook.com'),(2804,702,'text_3','Video Editing'),(2805,702,'textarea_4','I\'m Deepu. a remote Video Producer and Video Editor. My expertise is to create new promotional videos and reels, Making edits in existing videos, Making small clips out of longer videos, Creating video scripts and voiceovers. If you need any videos for your social media channels/websites/corporate events/product promotion/service promotion, then, you are at the right place. Softwares used by me are Premiere Pro, After Effects and DaVinchi Resolve. Feel free to reach out to me at Businessprocessoutsourcing1@outlook.com.'),(2806,703,'name_1','Brayden Rodd| | Rodd'),(2807,703,'email_2','rodd.brayden54@msn.com'),(2808,703,'text_3','Unleash the Power of AI for Your WordPress Site'),(2809,703,'textarea_4','Hey there, Are you tired of spending countless hours on repetitive marketing tasks? Imagine having a personal AI assistant that can handle everything from writing high-converting copy to creating stunning websites and videos – all within your WordPress dashboard. This revolutionary AI tool can complete hundreds of marketing tasks in seconds, saving you time and money. 1. Write captivating content: Articles, landing pages, emails, ebooks, and more – all crafted by AI to perfection. 2. Design stunning visuals: Create professional-looking logos, graphics, and websites in seconds. 3. Automate marketing tasks: Build high-converting funnels, manage social media, and generate leads on autopilot. 4. Develop mobile apps: No coding skills needed! WP Genie can build apps you can sell for thousands. And so much more! Learn more: https://furtherinfo.org/genie Plus, WP Genie is: - 16x faster than ChatGPT - Always available: No outages like with other AI tools. - Easy to use: No technical skills required. For a limited time, get our plugin for a one-time price of just $17 (normally $30/month). This offer won\'t last long, so don\'t miss out. Click here to learn more and unlock the power of AI for your WordPress site: https://furtherinfo.org/genie Sincerely, Brayden'),(2810,704,'name_1','Ferne Lyttleton| | Lyttleton'),(2811,704,'email_2','lyttleton.ferne@gmail.com'),(2812,704,'text_3','Dear naplesirrigation.com Webmaster!'),(2813,704,'textarea_4','Hi there, my name is Cody Griner. I apologize for using your contact form, but I wasn\'t sure who the right person was to speak with in your company. We have a patented application that creates Local Area pages that rank on top of Google within weeks, we call it Local Magic. Here is a link to the product page https://www.mrmarketingres.com/local-magic/ . The product leverages technology where these pages are managed dynamically by AI and it is ideal for promoting contractors on Google. Can I share a testimonial from one of our clients with you? I can also do a short zoom to illustrate their full case study if you have time for it? cody@mrmarketingres.com 843-720-7301'),(2814,705,'name_1','John Beet| | Beet'),(2815,705,'email_2','beet.alanna@gmail.com'),(2816,705,'text_3','Paid Advertising on naplesirrigation.com'),(2817,705,'textarea_4','Hi naplesirrigation.com Admin, I am curious to know how much you would charge for a link insertion in an existing post? Do you also allow the publication of sponsored posts on your blog? What\'s the fee? If you prefer EXCHANGE instead of paid linking, we may get you featured on any of any of the following websites: ecommercefastlane.com (DR:71, Traffic:80.6K) coolbio.org (DR:64, Traffic:102K) vyvymangaa.us (DR:48, Traffic:135K) You won\'t have to link back to the same website but some other one. This is called 3-way link exchange, the safest link building method works today. We\'ve over 8K+ sites in our inventory with real organic traffic, if you want to look for more options for exchange. If you\'re interested, please feel free to contact me via email at sebmarketer@gmail.com Best of Regards'),(2818,706,'name_1','Ethan Long| | Sanders'),(2819,706,'email_2','mammie.goe@yahoo.com'),(2820,706,'text_3','Special Deal Alert: Wireless Portable Projector with FREE Ceiling Mount'),(2821,706,'textarea_4','Unbeatable Deal! Bring ultra bright displays to meeting rooms with this wireless portable projector. Get the Epson PowerLite 1288 1080p Projector with Wi-Fi for only $599 with a FREE ceiling mount! Epson Certified ReNew Program (Epson Standard Warranty) Included. Experience vibrant, high-resolution projections with Miracast wireless screen mirroring. On hand and ready to ship. Receive FREE ground shipping within the United States. Save today by shopping at PSSAV: https://bit.ly/3QPR9Be Hurry, only 32 left - place your order now! Unsubscribe here if you don\'t want to get these awesome offers: https://form.jotform.com/241413178974462 Bjarg Dalbraut 58, Saratoga Springs, New York, USA, 370'),(2822,707,'name_1','Timmy Olivares| | Olivares'),(2823,707,'email_2','olivares.timmy@gmail.com'),(2824,707,'text_3','Expand your reach with an online store.'),(2825,707,'textarea_4','Hey, I came across naplesirrigation.com and wondered, have you ever considered starting your own online store? Shopify lets you create a beautiful online store in just 3 minutes, with a free 3-day trial (no credit card needed!). You don\'t need to be a tech whiz. Shopify has lots of customizable templates to get you started, and it takes care of everything from payments and shipping to security. If you\'re even a little bit curious, find out more here: https://furtherinfo.org/y7sz No pressure at all, but hope you decide to try it out. Best, Timmy If you do not wish to be contacted again, click here: https://removeme.click/imp/unsubscribe.php?d=naplesirrigation.com'),(2826,708,'name_1','Reuben Leggett| | Leggett'),(2827,708,'email_2','leggett.reuben@gmail.com'),(2828,708,'text_3','Unleash your inner author with AI: Create eBooks in seconds!'),(2829,708,'textarea_4','Hi there, I recently came across your website on naplesirrigation.com and found it very interesting. I was curious, have you ever considered creating an eBook out of your website content? There are tools available, that allow you to easily convert website content into a well-designed eBook. This could be a great way to repurpose your existing content and potentially reach a new audience. Of course, I understand this might not be something you\'re interested in, but I just wanted to share the possibility! Anyway, here is the tool I had in mind. It\'s only $16.95 so worth checking out: https://furtherinfo.org/lgb7 Best regards, Reuben'),(2830,709,'name_1','Local SEO| | SEO'),(2831,709,'email_2','brandbuildingassistance@outlook.com'),(2832,709,'text_3','Local SEO'),(2833,709,'textarea_4','Boost your local presence and stand out with our expert Local SEO and Google My Business services! Elevate your visibility, attract more customers, and dominate your local market. Reach out to me today at Brandbuildingassistance@outlook.com and let\'s start optimizing your online presence for success!'),(2834,710,'name_1','Daniel Sanderson| | Sanderson'),(2835,710,'email_2','planksip.dot.org@gmail.com'),(2836,710,'text_3','Re: Can you help me with something?'),(2837,710,'textarea_4','I\'m reaching out to explore potential collaborations where I can bring my proven track record in sales and marketing to your team. What sets me apart is my ability to generate high-quality leads that convert to sales without requiring upfront costs. My approach for your business would be custom, ensuring immediate gains and sustainable growth. I have a strong commitment to delivering measurable results and I guarantee improvements in your sales metrics which is why I\'m not asking for anything up front. Would you be available for a quick call to explore how we can work together? Daniel Sanderson Planksip 916-634-1928'),(2838,711,'name_1','Cameron Cowan| | Cowan'),(2839,711,'email_2','cameronleecowan@gmail.com'),(2840,711,'text_3','Can we talk this week?'),(2841,711,'textarea_4','I thought I\'d contact you here as I didn\'t hear back from you from my email last week! It\'s Cameron from The Cameron Journal again. I\'ve been reaching out because I\'m looking at helping organizations like yours achieve your goals this year. I can consult with you, your teams or your whole company on how to navigate these tough times. I have my finger on the pulse of the latest trends in marketing, business, culture, and geopolitics. I know I can help you. I know its hard to figure out how to position new products, services or your whole organization in this fluid environment we find ourselves in. I\'m helping organizations like yours figure this all out. Our world is rapdily changing and if you\'re reading the news headlines and your confused about how to reach your goals as a company in this post-pandemic environment then I think I can help. Whether its consulting or speaking to your organization, teams, or at an event, I can help you start to figure things out. Let\'s connect and see how I can help your organization! Cheers, Cameron Lee Cowan 302-208-2462 The Cameron Journal'),(2842,712,'name_1','Abhi| | Rana'),(2843,712,'email_2','efficientmanage007@outlook.com'),(2844,712,'text_3','Personal Assistant'),(2845,712,'textarea_4','Are you looking for a personal assistant who can handle your daily business operations and make your life easier? I can help with tasks related to admin, marketing, answering emails, website management, social media, content creation, planning new projects, bookkeeping, learning software, and back-office assistance. If you are interested, send me an email at efficientmanage007@outlook.com with a list of tasks you want to accomplish, and I will take it from there.'),(2846,713,'name_1','Norma| | Norma'),(2847,713,'email_2','norma@jain.podiatristusa.sale'),(2848,713,'text_3','Norma Jain'),(2849,713,'textarea_4','Hi there, If you are one of the sufferers of the common problems nails have, then you are in luck! Our Toenail Clippers is here to help. It has a specially designed clip that can help those with troubles with winding nails, hard nails, two nails, nail cracks, deep nails, and thickened nails. We are confident that our Toenail Clippers will provide you with the results you are looking for. Get yours today with 60% OFF: https://podiatristusa.sale Regards, Norma'),(2850,714,'name_1','Rufus Waldo| | Waldo'),(2851,714,'email_2','rufus.waldo@gmail.com'),(2852,714,'text_3','Hello naplesirrigation.com Webmaster.'),(2853,714,'textarea_4','Have you ever worried that you won’t make payroll? Are rising business expenses stressing you out? Let us help take this stress away &amp; give you some breathing room. Get a no obligation working capital quote in less than 2 minutes. == Must Be A US Based Business To Qualify == Contact me below for details Elizabeth Miller elizabeth.miller@helloratesfastfunding.com https://www.helloratesfastfunding.com'),(2854,715,'name_1','Heike Macintosh| | Macintosh'),(2855,715,'email_2','heike.macintosh@yahoo.com'),(2856,715,'text_3','Elevate Your Company with Our Adaptable Loan Options'),(2857,715,'textarea_4','Do you want to take your business to the next level? Our company provides specialized financing solutions designed to help businesses that have: * Minimum credit score: 450 * 6+ months in business * Monthly revenue of $35k+ Should you require funds for scaling up, new tools, or working capital, our flexible loan options can provide the support you need. Interested to look into your funding options? Apply now: https://bit.ly/4bKqJJb Feel free to reach out if you have any queries. Our team is here to help your business thrive! Funding Officer apply@elitebusinessfunds.com Unsubscribe here if you don\'t want to get these great messages: https://bit.ly/cflunsubs 81 Bailey Street, Syracuse, New York, USA, 3300'),(2858,716,'name_1','Samantha Evans| | Barnes'),(2859,716,'email_2','kaylee.astudillo@gmail.com'),(2860,716,'text_3','Don\'t Miss Out: High-Resolution Projector Deal'),(2861,716,'textarea_4','Unbeatable Deal! Bring ultra bright displays to meeting rooms with this wireless portable projector. Get the Epson PowerLite 1288 1080p Projector with Wi-Fi for only $599 with a FREE ceiling mount! Epson Certified ReNew Program (Epson Standard Warranty) is included. With wireless screen mirroring via Miracast, project vibrant, high-resolution images with ease. In stock and ready for immediate shipping. FREE ground shipping available in the United States. SHOP NOW at PSSAV and Save : https://bit.ly/3QPR9Be Only 32 available - order now and don\'t miss out! Unsubscribe here if you don\'t want to get these amazing offers: https://bit.ly/cflunsubs 2750 Eagles Nest Drive, Batavia, NY, USA, 95928'),(2862,717,'name_1','Theresa Smith| | Smith'),(2863,717,'email_2','manjarrez.vince@gmail.com'),(2864,717,'text_3','I have a question'),(2865,717,'textarea_4','Would you like to burn 750-1500 calories a day without having to work out? If yes, we have a solution, and if you order today, you will Get One FREE! We created the first ever, luxury, all-day-wearable weight bands that goes on your wrist, ankles, &amp; waist. The great thing is, they look stylish, super sexy, and you can wear them with any outfit. Plus, we make it easy to burn calories, you just put them on in the morning and go about your day, then take them off at night. You’ll burn calories, shed pounds, build muscle, improve your cardiovascular system, increase endurance, and gain more flexibility at the same time. Plus! If you go for a walk or hit the gym you can burn even more calories. Now is your chance to get the body you always dreamed of, and because we will give you one full set absolutely FREE, you can give your free gift to a friend or family member and lose weight together. What are you waiting for, get started today. Go Here: https://bit.ly/elebands-special-bogo Join thousands of people who have lost weight in a natural way. We have full body sets (wrist, ankle, waist) in 5, 10, 15, 20, 25 and 30 pounds (per set) so no matter your fitness goals we have you covered. Start getting results NOW!, the smart and easy way!! OUR BANDS HELP YOU TO: - Burn calories all-day - Have a sculpted body - Slim down all over - Tighten glutes - Tone your calves - Firm up abs Many of our clients are losing 2-3 pounds every week and getting major health benefits just by going about their day and handling business as usual. What are you waiting for, get started today. Go Here: https://bit.ly/elebands-special-bogo'),(2866,718,'name_1','Amelia Brown| | Brown'),(2867,718,'email_2','ameliabrown0325@gmail.com'),(2868,718,'text_3','Youtube Promotion: 700 new subscribers each month'),(2869,718,'textarea_4','Hi there, We run a Youtube growth service, where we can increase your subscriber count safely and practically. Our focus is on organic growth strategies that nurture a thriving community around your channel. We don\'t use bots or gimmicks, just targeted engagement tactics to help you reach the right people. Our price is just $60 (USD) per month and we can start immediately. If you are interested then we can discuss further. Kind Regards, Amelia Unsubscribe: https://removeme.click/yt/unsubscribe.php?d=naplesirrigation.com'),(2870,719,'name_1','Tyson Sprent| | Sprent'),(2871,719,'email_2','sprent.tyson@yahoo.com'),(2872,719,'text_3','Gut-Brain Health Revealed|Discover the Gut-Brain Connection ASAP}'),(2873,719,'textarea_4',''),(2874,720,'name_1','Olivia Robinson| | Jackson'),(2875,720,'email_2','adrianne.roach@msn.com'),(2876,720,'text_3','Upgrade Your Presentations: Wireless Portable Projector'),(2877,720,'textarea_4','Don\'t Miss This! Bring ultra bright displays to meeting rooms with this wireless portable projector. Get the Epson PowerLite 1288 1080p Projector with Wi-Fi for only $599 with a FREE ceiling mount! Epson Certified ReNew Program and Epson Standard Warranty included. Easily project vibrant, high-resolution images using wireless screen mirroring via Miracast. On hand and ready to ship. FREE ground shipping available in the United States. Visit PSSAV to Save Now: https://bit.ly/3QPR9Be Limited to 32 units - don\'t miss your chance, order now! Unsubscribe here if you don\'t want to get these fantastic offers: https://bit.ly/cflunsubs 42 Souterhead Road, Salamanca, New York, USA, Ne46 9wx'),(2878,721,'name_1','CompanyRegistar.com| | Rowe'),(2879,721,'email_2','rowe.nestor@hotmail.com'),(2880,721,'text_3','Your domain naplesirrigation.com is listed in just 5 of 2,502,2510,2539,2561 directories'),(2881,721,'textarea_4','Dear Sir/Madam This will substantially impact your page rank, the more directories your company is listed in, globally or locally, the more back links you have and the higher you rank in Google - Yahoo - Bing. Never has it been easier to promote your online property Just a few inputs and our program willl do the rest. No more fretting about email verification - manual link building or CAPTCHAs. We have automed everything that we could have to make submitting your website a breeze. See your site on the first page. We will list your domain to thousands of directories and give you a detailed report on the status of each submission. Although we have automated the submission process to a large extent, some of the listings may require manual approval which could cause a slight delay. Making your life easier CompanyRegistar.com'),(2882,722,'name_1','Laurence Stillings| | Stillings'),(2883,722,'email_2','laurence.stillings@googlemail.com'),(2884,722,'text_3','Hi naplesirrigation.com Webmaster.'),(2885,722,'textarea_4','Finally, an easy way to offer affordable payments to ALL customers and credit grades No more turning down business due to low credit scores == Must Be A US Based Business To Qualify == Get in touch with me below for more info Jessica Snyder jessica.snyder@helloratespros.com https://helloratespros.com/5-6/'),(2886,723,'name_1','Erika Zaleski| | Zaleski'),(2887,723,'email_2','erika.zaleski@gmail.com'),(2888,723,'text_3','Hi naplesirrigation.com Administrator.'),(2889,723,'textarea_4','You don’t need to buy more leads or advertising. You just need to convert more of the leads you already have. +Vetted helps you close up to 60% more deals and spend less on advertising. +Start your 30 Day FREE trial &amp; see the results for yourself. USA Businesses Only Sarah McCormick Vetted Business Specialist 295 Seven Farms Drive Suite C-201 Charleston, SC 29492 Sarah.McCormick@VettedPros.com https://vettedpros.com/1-2/?a=Are-You-Ready-To-Dominate-Your-Local-Market? Vetted is a game changing platform used by over 85,000 USA based businesses to share &amp; prove their business credentials to amplify trust &amp; transparency with shoppers and close up to 60% more sales than businesses not listed on the Vetted platform.'),(2890,724,'name_1','Elwood L\'Estrange| | L\'Estrange'),(2891,724,'email_2','elwood.lestrange@gmail.com'),(2892,724,'text_3','Tired of Monthly Hosting Fees?'),(2893,724,'textarea_4','Hi there, Are you tired of paying monthly fees for website hosting, cloud storage, and funnels? We offer a revolutionary solution: host unlimited websites, files, and videos for a single, low one-time fee. No more monthly payments. Here\'s what you get: Ultra-fast hosting powered by Intel® Xeon® CPU technology Unlimited website hosting Unlimited cloud storage Unlimited video hosting Unlimited funnel creation Free SSL certificates for all domains and files 99.999% uptime guarantee 24/7 customer support Easy-to-use cPanel 365-day money-back guarantee Plus, get these exclusive bonuses when you act now: 60+ reseller licenses (sell hosting to your clients!) 10 Fast-Action Bonuses worth over $19,997 (including AI tools, traffic generation, and more!) Don\'t miss out on this limited-time offer! The price is about to increase, and this one-time fee won\'t last forever. Click here to learn more: https://furtherinfo.org/yarx Elwood'),(2894,725,'name_1','CompanyRegistar.com| | Chen'),(2895,725,'email_2','kindra.chen@gmail.com'),(2896,725,'text_3','Your online property naplesirrigation.com is listed in a few 12 of 2,502,2510,2539,2561 directories'),(2897,725,'textarea_4','Hello This will greatly impact your page rank, the more directories your company is listed in, globally or locally, the more back links you have and the higher you rank in Google - Bing - Yahoo. It has never been easier to promote your online property Just a few inputs and our software willl do the rest. No more fretting about manual llink building - CAPTHCAs or email verification. We\'ve automed all that we could have to make submitting your website a breeze. See your site on the first page. We will submit your website to thousands of directories and give you a full report on the status of each submission. Although we have created an automated system to a large extent, some of the listings may require manual mail validation which could cause a slight delay. Making your life simpler CompanyRegistar.com'),(2898,726,'name_1','Gina Pardey| | Pardey'),(2899,726,'email_2','pardey.gina25@gmail.com'),(2900,726,'text_3','Dear naplesirrigation.com Webmaster.'),(2901,726,'textarea_4','Hi there, my name is Cody Griner. I apologize for using your contact form, but I wasn\'t sure who the right person was to speak with in your company. We have a patented application that creates Local Area pages that rank on top of Google within weeks, we call it Local Magic. Here is a link to the product page https://www.mrmarketingres.com/local-magic/ . The product leverages technology where these pages are managed dynamically by AI and it is ideal for promoting contractors on Google. Can I share a testimonial from one of our clients with you? I can also do a short zoom to illustrate their full case study if you have time for it? cody@mrmarketingres.com 843-720-7301'),(2902,727,'name_1','Josephine Avent| | Avent'),(2903,727,'email_2','josephine.avent@gmail.com'),(2904,727,'text_3','Powerful Message Campaigns'),(2905,727,'textarea_4','Just like you\'ve received this message: Broadcast your message to countless of email inboxes for only 9$. We will broadcast your message using countless website contact forms, guaranteeing all messages land the inbox. Produce leads, web traffic, purchasers, and visibility. https://bit.ly/cformmarketing Unsubscribe here if you don\'t want to get these awesome emails: https://bynd.li/unsubscribe 1427 Timber Oak Drive, Cayucos, CA, United States, 93430'),(2906,728,'name_1','Lawrence Vine| | Vine'),(2907,728,'email_2','vine.lawrence@outlook.com'),(2908,728,'text_3','Transform Your B2B Outreach with Exclusive USA Data'),(2909,728,'textarea_4','Complete USA B2B contact database (email addresses, phone, address, social media profiles). Gain access to the contact details of every business operating in the whole USA. That’s more than 7,900 specialized databases of businesses working in the United States of America – Over 5 Million Business Contact Details for JUST 49 dollars. That’s $0.00001 per contact. 1/100,000 of $1! Our 20GB data is collected this year. Download a free sample and buy: https://bit.ly/usab2bCFL Unsubscribe here if you don\'t want to get these awesome newsletters: https://bynd.li/unsubscribe Ul. Szewska 57, Poznan, NA, Poland, 61-760'),(2910,729,'name_1','David Kentish| | Kentish'),(2911,729,'email_2','darrell.kentish@outlook.com'),(2912,729,'text_3','To the naplesirrigation.com Admin!'),(2913,729,'textarea_4','You may wish to save this email for future reference. There is no need to unsubscribe because this is a one-time email from Se-REM. This announcement is a public service for a not-for-profit program that has saved and restored lives shattered by abuse and trauma. Have you heard of Se-REM? (Self effective - Rapid Eye Movement). Many people don\'t know that REM brain activity dramatically improves the processing of traumatic emotion. It creates peace and empowers the listener. Se-REM is an advanced version of EMDR therapy. It is more powerful because it combines elements of 6 different therapies, EMDR, hypnosis, mindfulness, Gestalt child within work, music therapy, and Awe therapy,(connecting profoundly with nature). It has helped thousands of people overcome PTSD, and anxiety. But it is also helpful in a great many situations, loss of any kind, grief, phobias and even marital counseling. The mission statement is \"Trauma relief at as close to free as possible\". This program downloads to a smart phone or computer and can be used in an office or at home. Read about it, hear samples, and download at: Se-REM.com. Once you own the program, you are encouraged to give it away to others who will benefit. I provide free consultation to all who use the program. Se-REM.com has a 95% rating on Trustpilot and is in use in 33 countries. If you would like to know more you can watch a UK Podcast at: https://lockedupliving.podbean.com'),(2914,730,'name_1','Winona Bagshaw| | Bagshaw'),(2915,730,'email_2','winona.bagshaw2@gmail.com'),(2916,730,'text_3','Hi naplesirrigation.com Owner!'),(2917,730,'textarea_4','Businesses that get Vetted are running circles around their competition that continue pouring more money into leads &amp; advertising. Vetted builds essential trust, transparency &amp; credibility to help you close up to 60% more deals eliminating the need to spend more on advertising or leads. Start your 30 Day FREE trial &amp; see the results for yourself. USA Businesses Only Sarah McCormick Vetted Business Specialist 295 Seven Farms Drive Suite C-201 Charleston, SC 29492 Sarah.McCormick@VettedPros.com https://vettedpros.com/1-2/?a=Get-Your-Vetted-30-DAY-FREE-TRIAL! Vetted is a game changing platform used by over 85,000 USA based businesses to share &amp; prove their business credentials to amplify trust &amp; transparency with shoppers and close up to 60% more sales than businesses not listed on the Vetted platform.'),(2918,731,'name_1','Ana Forte| | Forte'),(2919,731,'email_2','forte.ana@googlemail.com'),(2920,731,'text_3','Hi naplesirrigation.com Admin.'),(2921,731,'textarea_4','Running a business can be stressful and hard. Payroll, Insurance, inventory, marketing ……UGHH Let us help remove that stress and give you some breathing room. Get a no obligation working capital quote in less than 2 minutes. ** USA Based Businesses Only! ** Contact me below for details Elizabeth Miller elizabeth.miller@helloratesfastfunding.com https://www.helloratesfastfunding.com'),(2922,732,'name_1','Emily Jones| | Jones'),(2923,732,'email_2','emilyjones2250@gmail.com'),(2924,732,'text_3','Re: naplesirrigation.com (Youtube)'),(2925,732,'textarea_4','Hi there, We run a YouTube growth service, which increases your number of subscribers both safely and practically. We go beyond just subscriber numbers. We focus on attracting viewers genuinely interested in your niche, leading to long-term engagement with your content. Our approach leverages optimization, community building, and content promotion for sustainable growth, not quick fixes. Additionally, a dedicated team analyzes your channel and creates a personalized plan to unlock your full potential, all without relying on bots. Our packages start from just $60 (USD) per month. Would this be of interest? Kind Regards, Emily'),(2926,733,'name_1','Allen Mati| | Mati'),(2927,733,'email_2','corey.mcalexander@gmail.com'),(2928,733,'text_3','Unlock the Value of Your Business Today'),(2929,733,'textarea_4','We just sold a leading tech startup for $6 million in Silicon Valley. Are you looking for getting a free business valuation to know what your business is worth? Allen Mati Business Sales Advisor Call me: ‪(619) 797-6930‬ Contact me by email: allenmati18@gmail.com Or fill this form: https://bit.ly/valuateme'),(2930,734,'name_1','Sandy| | M'),(2931,734,'email_2','web.techdevelopment@outlook.com'),(2932,734,'text_3','Website designer and developer'),(2933,734,'textarea_4','Hi, This is Sandy, a website designer and developer. In 17 years of my career, I have worked on broad spectrum of technologies like PHP, WordPress, Codeigniter, Laravel, Opencart, Prestashop, Wix, Html, CSS, JavaScript, Drupal, Shopify, magento. I can help you in creating a new page, new design, resolving issues, upgrading website to latest version, making mobile responsive website, developing new functionality, 3D Model Integration, changing any existing functionality, API integration, Payment gateway or shipping functionality related work, Third-party apps integration in website, monthly maintenance, plugin or theme related work, improving design of all pages or uploading content. Let\'s chat on Web.techdevelopment@outlook.com'),(2934,735,'name_1','Oman Vaughn| | Vaughn'),(2935,735,'email_2','vaughn.henry@hotmail.com'),(2936,735,'text_3','Need Business Funding?'),(2937,735,'textarea_4','Hello, One of the most significant hurdles for startups and existing businesses is securing the necessary funding to fuel their growth and bring their ideas to fruition. Our company specializes in providing tailored financing solutions to both startups and existing businesses. We offer debt financing with a competitive interest rate designed to support capital growth without burdening the business owners. Our loan interest rate is set at a favorable 3% annually, and with no early payment penalties, giving you the flexibility to manage your finances with ease. For those seeking equity financing, our venture capital funding option provides the capital you need to fuel your expansion. With just a modest 10% equity stake, you can access the resources necessary to scale your business while retaining control and ownership. We recognize these challenges and are committed to providing startups with flexible financing options tailored to their unique needs. We are happy to review your pitch deck or executive summary to better understand your business and this will assist in determining the best possible investment structure that we can pursue and discuss extensively. I look forward to further communication. Best Regard, Oman Rook Executive Investment Consultant/Director Cateus Investment Company (CIC) 2401 AlMoayyed Tower Seef District Manama - Kingdom of Bahrain Phone: +973-17-585338 Email: oman.rook@cateusinvestmentgroup.com, cateusgroup@gmail.com'),(2938,736,'name_1','Rayford Flatt| | Flatt'),(2939,736,'email_2','flatt.rayford@msn.com'),(2940,736,'text_3','Hi naplesirrigation.com Webmaster.'),(2941,736,'textarea_4','Hands down, the Easiest Customer Financing Program in the Industry No more turning down business due to low credit scores ++ This Offer Only For Businesses In The USA ++ Contact me below for details Jessica Snyder jessica.snyder@helloratespros.com https://helloratespros.com/5-6/'),(2942,737,'name_1','Michel Kaufmann| | Kaufmann'),(2943,737,'email_2','kaufmann.michel81@outlook.com'),(2944,737,'text_3','Engage Your Customers Quickly'),(2945,737,'textarea_4','Just like you\'ve received this message: Connect with millions of people with your message starting at USD9. Our service will send your message using millions website contact forms, guaranteeing it lands in the inbox. Produce sales leads, web traffic, purchasers, and visibility, enhancing your recognition. Check out https://bit.ly/cformmarketing Unsubscribe here if you don\'t want to get these awesome offers: https://bynd.li/unsubscribe 37 Rue Des Lieutemants Thomazo, Dijon, CENTRE, France, 21000'),(2946,738,'name_1','Virgilio| | Virgilio'),(2947,738,'email_2','virgilio@naplesirrigation.com'),(2948,738,'text_3','Virgilio Bohannon'),(2949,738,'textarea_4','Good day The New Powerful LED Flashlight is The Perfect Flashlight For Any Situation! The 3,000 Lumens &amp; Adjustable Zoom gives you the wide field of view and brightness other flashlights don’t have. 50% OFF + Free Shipping! Get it Now: https://linterna.cc Thanks and Best Regards, Virgilio'),(2950,739,'name_1','Sam Lininger| | Lininger'),(2951,739,'email_2','lininger.francis@gmail.com'),(2952,739,'text_3','Transform Your Sales with a Custom E-commerce Website!'),(2953,739,'textarea_4','Hi, Struggling to reach more customers and boost your sales in the competitive online market? Without a user-friendly and attractive e-commerce website, you might be missing out on significant opportunities to grow your business and enhance your brand visibility. At OutsourceBPO, we create stunning, custom e-commerce websites designed to meet your unique business needs. Here\'s how we can help: - **Custom Design:** Reflects your brand’s identity. - **User-Friendly:** Easy navigation on all devices. - **Essential Features:** Secure checkout, customer accounts, and more. - **SEO &amp; Marketing:** Optimized and integrated to drive sales. - **Ongoing Support:** Continuous maintenance and updates. - **Affordable Pricing:** Packages to fit your budget. Let’s schedule a free consultation to discuss your goals and how we can help you achieve them. Visit https://outsource-bpo.com/website/?naplesirrigation.com for more details . Best regards, Sam'),(2954,740,'name_1','Judith Honeycutt| | Honeycutt'),(2955,740,'email_2','honeycutt.judith@outlook.com'),(2956,740,'text_3','Hello naplesirrigation.com Webmaster.'),(2957,740,'textarea_4','Every day without Vetted is another missed opportunity to close 60% more of your current leads. +Increased lead &amp; sales conversions by up to 60% +Amplified Trust, Transparency &amp; Credibility +30 Day Free Trial to See the results for yourself USA Businesses Only Sarah McCormick Vetted Business Specialist 295 Seven Farms Drive Suite C-201 Charleston, SC 29492 https://vettedpros.com/1-2/?a=Are-You-Ready-To-Dominate-Your-Local-Market? Vetted is a game changing platform used by over 85,000 USA based businesses to share &amp; prove their business credentials to amplify trust &amp; transparency with shoppers and close up to 60% more sales than businesses not listed on the Vetted platform.'),(2958,741,'name_1','Shanky| | Brickhouse'),(2959,741,'email_2','youronlinepresence2@outlook.com'),(2960,741,'text_3','Social Media Marketing'),(2961,741,'textarea_4','I\'m Shanky, a Social Media Marketing Manager with over 10 years of global experience. I specialize in creating tailored social media content calendars, designing branded content, conducting hashtag research, and scheduling posts. I work across Instagram, Facebook, LinkedIn, Twitter, and Pinterest to help boost your online presence and engagement. Let\'s connect at Youronlinepresence2@outlook.com to discuss it further.'),(2962,742,'name_1','Krish| | Roy'),(2963,742,'email_2','outsourcedigitalmarketing@outlook.com'),(2964,742,'text_3','Content Writing Services'),(2965,742,'textarea_4','Are you looking for a content writer or copywriter who can write according to your ideas, follow your specific tone and style, and keep your audience in mind? I specialize in crafting content that is easy to read and consistent from start to finish. I currently work with many clients, interacting with their teams via video calls to ensure everything runs smoothly. Sometimes, clients ask me to conduct keyword research and plan content topics and points to cover. I also ensure all content is SEO-friendly. My experience includes writing blogs, articles, website copy, e-commerce product descriptions, e-books, and SEO content. I am happy to work within your budget. Feel free to reach out to me at outsourcedigitalmarketing@outlook.com');
INSERT INTO `wp_weforms_entrymeta` VALUES (2966,743,'name_1','John Gaylord| | Gaylord'),(2967,743,'email_2','rubye.gaylord@gmail.com'),(2968,743,'text_3','To the naplesirrigation.com Owner.'),(2969,743,'textarea_4','If you are reading this message, That means my marketing is working. I can make your ad message reach 5 million sites in the same manner for just $50. It\'s the most affordable way to market your business or services. Contact me by email virgo.t3@gmail.com or skype me at live:.cid.dbb061d1dcb9127a'),(2970,744,'name_1','Brandie Reichert| | Reichert'),(2971,744,'email_2','reichert.brandie@gmail.com'),(2972,744,'text_3','Hello naplesirrigation.com Webmaster.'),(2973,744,'textarea_4','Businesses on the Vetted Platform are more trusted &amp; credible than those that are not. Why? Because sharing your business credentials elevates your credibility so much that the customer will find it difficult to choose anyone but you. Use the link in my signature to add or update your Vetted business details and fully realize the powerful benefits of being a Vetted Business in your local market, your service category and your business specialty. Yours in trust &amp; transparency, Sarah McCormick Vetted Business Specialist 295 Seven Farms Drive Suite C-201 Charleston, SC 29492 Sarah.McCormick@VettedPros.com https://vettedpros.com/1-2/?a=Get-Your-Business-Vetted! Vetted is a game changing platform used by over 85,000 USA based businesses to share &amp; prove their business credentials to amplify trust &amp; transparency with shoppers and close up to 60% more sales than businesses not listed on the'),(2974,745,'name_1','Winston Schultheiss| | Schultheiss'),(2975,745,'email_2','schultheiss.winston@yahoo.com'),(2976,745,'text_3','Dear naplesirrigation.com Webmaster.'),(2977,745,'textarea_4','Finally, an easy way to offer affordable payments to ALL customers and credit grades More approvals = More Profits ++ This Offer Only For Businesses In The USA ++ Send me a message at my contact info below for info Jessica Snyder jessica.snyder@helloratespros.com https://helloratespros.com/5-6/'),(2978,746,'name_1','Oman Carslaw| | Carslaw'),(2979,746,'email_2','dexter.carslaw@gmail.com'),(2980,746,'text_3','Need Business Capital Funding?'),(2981,746,'textarea_4','Hello, One of the most significant hurdles for startups and existing businesses is securing the necessary funding to fuel their growth and bring their ideas to fruition. Our company specializes in providing tailored financing solutions to both startups and existing businesses. We offer debt financing with a competitive interest rate designed to support capital growth without burdening the business owners. Our loan interest rate is set at a favorable 3% annually, and with no early payment penalties, giving you the flexibility to manage your finances with ease. For those seeking equity financing, our venture capital funding option provides the capital you need to fuel your expansion. With just a modest 10% equity stake, you can access the resources necessary to scale your business while retaining control and ownership. We recognize these challenges and are committed to providing startups with flexible financing options tailored to their unique needs. We are happy to review your pitch deck or executive summary to better understand your business and this will assist in determining the best possible investment structure that we can pursue and discuss extensively. I look forward to further communication. Best Regard, Oman Rook Executive Investment Consultant/Director Cateus Investment Company (CIC) 2401 AlMoayyed Tower Seef District Manama - Kingdom of Bahrain Phone: +973-17-585338 Email: oman.rook@cateusgroup.org, cateusgroup@gmail.com'),(2982,747,'name_1','Stevon Dailey| | Dailey'),(2983,747,'email_2','stevon+rv60@gmail.com'),(2984,747,'text_3','Dear naplesirrigation.com Owner.'),(2985,747,'textarea_4','I browsed your website and have a few questions. Is this the correct way to reach out?'),(2986,748,'name_1','Genia Bracker| | Bracker'),(2987,748,'email_2','genia.bracker@msn.com'),(2988,748,'text_3','Dear naplesirrigation.com Webmaster!'),(2989,748,'textarea_4','Hi there, I apologize for using your contact form, but I wasn\'t sure who the right person was to speak with in your company. We have a patented application that creates Local Area pages that rank on top of Google within weeks, we call it Local Magic. Here is a link to the product page https://www.mrmarketingres.com/local-magic/ . The product leverages technology where these pages are managed dynamically by AI and it is ideal for promoting any type of business that gets customers from Google. Can I share a testimonial from one of our clients in the same industry? I\'d prefer to do a short zoom to illustrate their full case study if you have time for it? You can reach me at marketing@mrmarketingres.com or 843-720-7301. And if this isn\'t a fit please feel free to email me and I\'ll be sure not to reach out again. Thanks!'),(2990,749,'name_1','Phil Stewart| | Stewart'),(2991,749,'email_2','noreplyhere@aol.com'),(2992,749,'text_3','??'),(2993,749,'textarea_4','Hey, looking to boost your ad game? Picture your message hitting website contact forms worldwide, grabbing attention from potential customers everywhere! Starting at just under a hundred bucks my budget-friendly packages are designed to make an impact. Drop me an email now to discuss how you can get more leads and sales now! P. Stewart Email: tmhydy@submitmaster.xyz Skype: form-blasting'),(2994,750,'name_1','Ikeb E srdwir| | Reece'),(2995,750,'email_2','reece.octavio26@msn.com'),(2996,750,'text_3','Ensuring Accuracy in Your Wikipedia Representation'),(2997,750,'textarea_4','I\'m Jared Michaels, and I am Senior Business Consultant with Wiki Crafter. As you\'re aware, Wikipedia is a well-recognized and respected platform. It\'s regarded as among the most influential sources of information presented globally. The listing frequently appears at the top of Google search results, making it a powerful tool for any personal, brand visibility, and credibility. Having a well-crafted Wikipedia page can greatly benefit your business or personal biography by: - Boosting your search engine rankings, - Enhancing your reputation and credibility, - Offering a trusted source of information about your achievements and history, We specialize in Crafting Wikipedia pages, Editing and updating pages on demand, and regularly monitoring, and maintaining them. We additionally offer PR services for personal or business branding. Our team of experts are dedicated to making sure your Wikipedia page is accurate, well-maintained, and adheres to Wikipedia\'s strict guidelines. We handle everything from page creation to continuous updates, gathering information, and monitoring. Should you be looking to having a professional Wikipedia page listed for yourself or your brand, please send an email or contact me at jared@wikicrafter.com or simply visit our website: https://bit.ly/4cmCbeA Unsubscribe here if you don\'t want to get these great newsletetrs: https://bit.ly/unsubscribecfl Im Wingert 74, Lockport, New York, US, 8574'),(2998,751,'name_1','Phil Stewart| | Stewart'),(2999,751,'email_2','noreplyhere@aol.com'),(3000,751,'text_3','??'),(3001,751,'textarea_4','I was interested in whether or not you would like me to blast your ad to millions of contact forms. You\'re reading this message so you know others will read yours the same way. Take a peek at my site below for info http://xchgl8.blast-to-forms.xyz'),(3002,752,'name_1','Arpit Commons| | Commons'),(3003,752,'email_2','commons.agustin@gmail.com'),(3004,752,'text_3','Hi naplesirrigation.com Administrator!'),(3005,752,'textarea_4','Want to rank your business or service SEO keywords at the top of Google, ahead of your competitors? Unlock this potential with Gigde! Elevate your business to the forefront of search engine results and watch your leads skyrocket. At Gigde, we specialize in crafting tailored SEO strategies that not only boost your Google keyword rankings but also drive high-quality, targeted traffic to your site. Our expert team uses cutting-edge techniques and in-depth market analysis to ensure your business stands out in the crowded digital landscape. With a focus on delivering measurable results, we help you convert visitors into loyal customers, maximizing your return on investment. Why choose Gigde? Our proven track record of success speaks for itself. We blend creativity with data-driven insights to create a customized SEO plan that aligns perfectly with your business goals. From on-page optimization and content creation to link building and technical SEO, we cover every aspect to guarantee your online visibility soars. Don’t settle for mediocre results. Partner with Gigde for exceptional SEO services that drive real growth. Visit www.gigde.com or email us at contact@gigde.com to start your journey towards unmatched lead generation and top Google rankings today!'),(3006,753,'name_1','Joanna Riggs| | Riggs'),(3007,753,'email_2','joannariggs278@gmail.com'),(3008,753,'text_3','Video Promotion for naplesirrigation.com'),(3009,753,'textarea_4','Hi, I just visited naplesirrigation.com and wondered if you\'d ever thought about having an engaging video to explain what you do? Our videos cost just $195 for a 30 second video ($239 for 60 seconds) and include a full script, voice-over and video. I can show you some previous videos we\'ve done if you want me to send some over. Let me know if you\'re interested in seeing samples of our previous work. Regards, Joanna Unsubscribe: https://removeme.click/ev/unsubscribe.php?d=naplesirrigation.com'),(3010,754,'name_1','Oman Furneaux| | Furneaux'),(3011,754,'email_2','furneaux.rose@gmail.com'),(3012,754,'text_3','Need Business Capital Funding??'),(3013,754,'textarea_4','Hello, One of the most significant hurdles for startups and existing businesses is securing the necessary funding to fuel their growth and bring their ideas to fruition. Our company specializes in providing tailored financing solutions to both startups and existing businesses. We offer debt financing with a competitive interest rate designed to support capital growth without burdening the business owners. Our loan interest rate is set at a favorable 3% annually, and with no early payment penalties, giving you the flexibility to manage your finances with ease. For those seeking equity financing, our venture capital funding option provides the capital you need to fuel your expansion. With just a modest 10% equity stake, you can access the resources necessary to scale your business while retaining control and ownership. We recognize these challenges and are committed to providing startups with flexible financing options tailored to their unique needs. We are happy to review your pitch deck or executive summary to better understand your business and this will assist in determining the best possible investment structure that we can pursue and discuss extensively. I look forward to further communication. Best Regard, Oman Rook Executive Investment Consultant/Director Cateus Investment Company (CIC) 2401 AlMoayyed Tower Seef District Manama - Kingdom of Bahrain Phone: +973-17-585338 Email: oman.rook@cateusinvestmentgroup.com, cateusgroup@gmail.com'),(3014,755,'name_1','Jeramy Cummings| | Cummings'),(3015,755,'email_2','jeramy.cummings@hotmail.com'),(3016,755,'text_3','Dear naplesirrigation.com Webmaster!'),(3017,755,'textarea_4','Businesses on the Vetted Platform are more trusted &amp; credible than those that are not. Why? Because sharing your business credentials elevates your credibility so much that the customer will find it difficult to choose anyone but you. Use the link in my signature to add or update your Vetted business details and fully realize the powerful benefits of being a Vetted Business in your local market, your service category and your business specialty. Yours in trust &amp; transparency, Sarah McCormick Vetted Business Specialist 295 Seven Farms Drive Suite C-201 Charleston, SC 29492 Sarah.McCormick@VettedPros.com https://vettedpros.com/1-2/?a=Get-Your-Business-Vetted! Vetted is a game changing platform used by over 85,000 USA based businesses to share &amp; prove their business credentials to amplify trust &amp; transparency with shoppers and close up to 60% more sales than businesses not listed on the'),(3018,756,'name_1','Eric Jones| | Jones'),(3019,756,'email_2','ericjonesmyemail@gmail.com'),(3020,756,'text_3','Cool website!'),(3021,756,'textarea_4','Hi naplesirrigation.com Webmaster. Cool website! My name’s Eric, and I just found your site - naplesirrigation.com - while surfing the net. You showed up at the top of the search results, so I checked you out. Looks like what you’re doing is pretty cool. But if you don’t mind me asking – after someone like me stumbles across naplesirrigation.com, what usually happens? Is your site generating leads for your business? I’m guessing some, but I also bet you’d like more… studies show that 7 out 10 who land on a site wind up leaving without a trace. Not good. Here’s a thought – what if there was an easy way for every visitor to “raise their hand” to get a phone call from you INSTANTLY… the second they hit your site and said, call me now. You can – Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know IMMEDIATELY – so that you can talk to that lead while they’re literally looking over your site. CLICK HERE https://rushleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. Time is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better! That’s why we built out our new SMS Text With Lead feature… because once you’ve captured the visitor’s phone number, you can automatically start a text message (SMS) conversation. Think about the possibilities – even if you don’t close a deal then and there, you can follow up with text messages for new offers, content links, even just how you doing? notes to build a relationship. Wouldn’t that be cool? CLICK HERE https://rushleadgeneration.com to discover what Web Visitors Into Leads can do for your business. You could be converting up to 100X more leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://rushleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here https://rushleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(3022,757,'name_1','Adi Wan| | Wan'),(3023,757,'email_2','viralbusinesscampaign@outlook.com'),(3024,757,'text_3','Explainer Video Creation'),(3025,757,'textarea_4','Are you looking to create videos to boost your brand’s visibility and engagement, increase revenue, capture your audience\'s attention, and showcase complex ideas in a simplified way? I can help you achieve this by creating both live-action and animated explainer videos. My services include comprehensive pre-production planning, script writing, graphic design, storyboarding, video editing, animation, sound effects, background music, voiceovers, and footage compilation. If you\'re interested in communicating your business model, products, or services to your audience with a compelling explainer video. Please reach out to me at ViralBusinessCampaign@outlook.com and share your goals.'),(3026,758,'name_1','Daniela Ebersbacher| | Ebersbacher'),(3027,758,'email_2','daniela.ebersbacher@yahoo.com'),(3028,758,'text_3','Hello naplesirrigation.com Admin.'),(3029,758,'textarea_4','Work From Home With This...You Will Never Look Back $500+ per day, 100% Free Training, go here: ezwayto1000aday.com'),(3030,759,'name_1','Janine Blanton| | Blanton'),(3031,759,'email_2','janine.blanton@gmail.com'),(3032,759,'text_3','Hi naplesirrigation.com Webmaster!'),(3033,759,'textarea_4','People + Processes + Capital = The Recipe for Business Success However most small business owners put little thought into the capital needed to scale and grow their business. If you have the people &amp; the business processes in place but no access to working capital, then your business will be stuck in neutral. Get a no obligation working capital quote in less than 2 minutes. ** USA Based Businesses Only! ** Send me a message at my contact info below for info Elizabeth Miller elizabeth.miller@helloratesfastfunding.com https://www.helloratesfastfunding.com'),(3034,760,'name_1','Ulrike| | Ulrike'),(3035,760,'email_2','ulrikenoland@foxmail.com'),(3036,760,'text_3','Best Lawn Irrigation Service contact 239-793-775 Naples FL'),(3037,760,'textarea_4','World\'s Best Neck Massager Get it Now 50% OFF + Free Shipping! Wellness Enthusiasts! There has never been a better time to take care of your neck pain! Our clinical-grade TENS technology will ensure you have neck relief in as little as 20 minutes. Get Yours: https://hineck.co Regards, Ulrike Best Lawn Irrigation Service contact 239-793-775 Naples FL'),(3038,761,'name_1','Danelle Cayton| | Cayton'),(3039,761,'email_2','cayton.danelle12@hotmail.com'),(3040,761,'text_3','Revolutionize Your SEO with The Groundbreaking Solution!'),(3041,761,'textarea_4','Salutations naplesirrigation.com Administrator. It\'s Danelle and please, imagine this… - A user does a search and lands at naplesirrigation.com. - They hang out for a moment to check it out. I’m interested… but… maybe… - And then they click the back button and check out the other search results instead. - In essence – you got an eyeball, but zilch to show for it. - There they go. It isn’t really your fault – it happens a lot – studies show 7 out of 10 visitors to any site leave without leaving a trace. But you are able to fix that. Web Visitors Into Leads is a software widget that’s operates on your site, set to capture any visitor’s Name, Email address, and Phone Number. It lets you know right then and there – allowing you to call that lead while they’re really browsing your site. CLICK HERE https://turboleadgeneration.com to experience a Live Demo with Web Visitors Into Leads now to see exactly how it works. Time is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better! Moreover, now that you have their phone number, with our new SMS Text With Lead feature you can instantly start a text (SMS) conversation… so even if you don’t close a deal at that time, you can follow up with text messages for new offers, content links, even just how you doing? notes to forge a relationship. Strong stuff. CLICK HERE https://turboleadgeneration.com to uncover what Lead Conversion Tool can do for your business. You can be converting up to 100X more leads now! Danelle PS: Visitor Engagement Widget offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers ready to talk with you immediately… don’t keep them waiting. CLICK HERE https://turboleadgeneration.com to use Web Visitors Into Leads now. If you\'d choose to unsubscribe click here https://turboleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com Just a brief message - the monikers and email address applied in this note, Danelle and Cayton, are placeholders and not really real contact information. We esteem openness and desired to confirm you’re aware of this! In case you aspire to get in touch with the real individual behind this note, kindly visit our website, and we’ll associate you with the appropriate entity.'),(3042,762,'name_1','Neva Wilding| | Wilding'),(3043,762,'email_2','wilding.neva@yahoo.com'),(3044,762,'text_3','Dear naplesirrigation.com Owner.'),(3045,762,'textarea_4','People + Processes + Capital = The Recipe for Business Success However most small business owners put little thought into the capital needed to scale and grow their business. If you have the people &amp; the business processes in place but no access to working capital, then your business will be stuck in neutral. Get a no obligation working capital quote in less than 2 minutes. ++ This Offer Only For Businesses In The USA ++ Get in touch with me below for more info Elizabeth Miller elizabeth.miller@helloratesfastfunding.com https://www.helloratesfastfunding.com'),(3046,763,'name_1','Ulrich Belue| | Belue'),(3047,763,'email_2','ulrich.belue@gmail.com'),(3048,763,'text_3','Hi naplesirrigation.com Webmaster!'),(3049,763,'textarea_4','Hi, I was searching through Siri on my phone and I couldn’t find you. We know how to flood your business with customers from Siri and the 4 other voice search platforms (Amazon Alexa, Google Assistant, Microsoft Copilot, and Samsung Bixby). Not only do we know how to register your business on these platforms, we know how to rank your business within the top 3 reach results to flood your business with high intent customers looking to buy. Would it be a bad idea to have your business be in the top 3 search results? I didn’t think so :) You can learn more here: https://vocalseek.com/'),(3050,764,'name_1','Carley Dymock| | Dymock'),(3051,764,'email_2','carley.dymock@msn.com'),(3052,764,'text_3','Hello naplesirrigation.com Owner!'),(3053,764,'textarea_4','Looking for a Great Job? 75% of resumes aren’t even seen by hiring managers! Is your resume keyword rich and ATS ready? Find out with our FREE consultation with a certified, trained resume writing. Send your resume to resumes@razoredgeresumes.com to make sure you are not missing out! Send your resume now and we will reach out to you to speak at your convenience. Quick and easy. Start today!'),(3054,765,'name_1','Eric Jones| | Jones'),(3055,765,'email_2','ericjonesmyemail@gmail.com'),(3056,765,'text_3','Turn Surf-Surf-Surf into Talk Talk Talk'),(3057,765,'textarea_4','Hello naplesirrigation.com Webmaster! my name’s Eric and I just ran across your website at naplesirrigation.com... I found it after a quick search, so your SEO’s working out… Content looks pretty good… One thing’s missing though… A QUICK, EASY way to connect with you NOW. Because studies show that a web lead like me will only hang out a few seconds – 7 out of 10 disappear almost instantly, Surf Surf Surf… then gone forever. I have the solution: Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. You’ll know immediately they’re interested and you can call them directly to TALK with them - literally while they’re still on the web looking at your site. CLICK HERE https://rushleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works and even give it a try… it could be huge for your business. Plus, now that you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation pronto… which is so powerful, because connecting with someone within the first 5 minutes is 100 times more effective than waiting 30 minutes or more later. The new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship. Everything I’ve just described is extremely simple to implement, cost-effective, and profitable. CLICK HERE https://rushleadgeneration.com to discover what Web Visitors Into Leads can do for your business, potentially converting up to 100X more eyeballs into leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://rushleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here https://rushleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(3058,766,'name_1','Emily Jones| | Jones'),(3059,766,'email_2','emilyjones2250@gmail.com'),(3060,766,'text_3','Youtube Promotion: 700 new subscribers each month'),(3061,766,'textarea_4','Hi there, We run a YouTube growth service, which increases your number of subscribers both safely and practically. - We guarantee to gain you 700-1500+ subscribers per month. - People subscribe because they are interested in your channel/videos, increasing likes, comments and interaction. - All actions are made manually by our team. We do not use any \'bots\'. The price is just $60 (USD) per month, and we can start immediately. If you have any questions, let me know, and we can discuss further. Kind Regards, Emily Unsubscribe: https://removeme.click/yt/unsubscribe.php?d=naplesirrigation.com'),(3062,767,'name_1','Sam| | T'),(3063,767,'email_2','hireonline556600@outlook.com'),(3064,767,'text_3','Data Entry Task'),(3065,767,'textarea_4','My name is Sam. I provide data entry services for just $1,000 USD per month (160 hours). If you prefer an hourly basis, the cost is $8 USD per hour. I can handle any computer-related task that is repetitive in nature, such as entering data into software, collecting data, bookkeeping, copy-paste work, uploading content to websites, and following your business processes. I can also transcribe handwritten or scanned documents, update and maintain customer databases, cleanse and validate data, enter survey results and feedback, manage and update inventories, process invoices and receipts, create and update spreadsheets, input product details into e-commerce platforms, digitize paper records, manage email lists and contact information, perform data mining and extraction from websites, compile and organize data from various sources. You can outsource your entire business process to me, where tasks can be done remotely using a computer. I can learn your process and work on any software accordingly. Reach out to me at Hireonline556600@outlook.com if you have any requirements and we can take a quick call.'),(3066,768,'name_1','Jamison Ceja| | Ceja'),(3067,768,'email_2','ceja.jamison99@gmail.com'),(3068,768,'text_3','Dear naplesirrigation.com Owner.'),(3069,768,'textarea_4','Small businesses are amazed at how Vetted can help close up to 60% more sales requiring less of your budget to be spent on leads and advertising. That\'s a game changer.. Start your 30 Day FREE trial &amp; see the results for yourself. USA Businesses Only Sarah McCormick Vetted Business Specialist 295 Seven Farms Drive Suite C-201 Charleston, SC 29492 Sarah.McCormick@VettedPros.com https://vettedpros.com/1-2/?a=Get-Your-Vetted-30-DAY-FREE-TRIAL! Vetted is a game changing platform used by over 85,000 USA based businesses to share &amp; prove their business credentials to amplify trust &amp; transparency with shoppers and close up to 60% more sales than businesses not listed on the Vetted platform.'),(3070,769,'name_1','Angelica Strzelecki| | Strzelecki'),(3071,769,'email_2','angelica.strzelecki@googlemail.com'),(3072,769,'text_3','Elevate Your Site Interaction with Effective Strategies!'),(3073,769,'textarea_4','To the naplesirrigation.com Manager. This is Angelica here with a quick thought about your website naplesirrigation.com... I’m throughout the internet frequently and I observe numerous business websites. Like yours, several them have excellent content. But more often than not, they come up short when it comes to interacting and connecting with anyone who visits. I get it – it’s challenging. Studies show 7 out of 10 people who land on a site, abandon it in moments without leaving a trace. You got the eyeball, but nothing else. There’s a solution for you… Web Visitors Into Leads is a software widget that’s operates on your site, set to capture any visitor’s Name, Email address, and Phone Number. You’ll know immediately they’re interested and you can call them directly to chat with them really while they’re still on the web looking at your site. CLICK HERE https://turboleadgeneration.com to experience a Live Demo with Instant Engagement Tool now to see specifically how it works. It can be massive for your business – and because you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – right away… and contacting someone in that 5-minute window is 100 times more potent than reaching out 30 minutes or more later. Additionally, with text messaging you can follow up later with new offers, content links, even just follow-up notes to keep the conversation going. All I’ve just described is very easy to implement, cost-effective, and profitable. CLICK HERE https://turboleadgeneration.com to find out what Lead Capture can do for your business. You might be converting up to 100X more eyeballs into leads today! Angelica PS: Lead Capture offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers ready to talk with you immediately… don’t keep them waiting. CLICK HERE https://turboleadgeneration.com to try Web Visitors Into Leads now. If you\'d prefer to unsubscribe click here https://turboleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com Only a quick remark - the monikers and email address applied here, Angelica and Strzelecki, are stand-ins and not actually real contact details. We cherish honesty and wanted to make sure you’re aware! Should you want to connect with the genuine individual behind this note, please visit our website, and we’ll unite you with the proper entity.'),(3074,770,'name_1','Maybelle Shook| | Shook'),(3075,770,'email_2','maybelle.shook@msn.com'),(3076,770,'text_3','Uncover Effective Techniques for naplesirrigation.com!'),(3077,770,'textarea_4','Cool website! To the naplesirrigation.com Admin. My name’s Maybelle, and I recently found your site - naplesirrigation.com - while surfing the net. You surfaced at the summit of the search results, so I checked you out. Seems like what you’re doing is very cool. But if you don’t mind me asking – after someone like me comes across naplesirrigation.com, what typically happens? Is your site generating leads for your business? I’m guessing some, but I also wager you’d like more… studies demonstrate that 7 out 10 who touch down on a site wind up leaving without a trace. Not good. Here’s a idea – what if there was an effortless way for every visitor to “lift their hand” to get a phone call from you INSTANTLY… the second they hit your site and stated, “call me now.” You can – Web Visitor is a software widget that’s functions on your site, prepared to catch any visitor’s Name, Email address and Phone Number. It lets you know IMMEDIATELY – so that you can speak to that lead while they’re actually examining your site. CLICK HERE https://turboleadgeneration.com to experiment with a Live Demo with Web Visitor now to see exactly how it works. Time is money when it comes to connecting with leads – the distinction between contacting someone within 5 minutes versus 30 minutes later can be enormous – like 100 times better! That’s why we built our new SMS Text With Lead feature because once you’ve captured the visitor’s phone number, you can instantly a text message (SMS) conversation. Think the possibilities – even if you don’t close a deal then and there, you can follow-up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Wouldn’t that be cool? CLICK HERE https://turboleadgeneration.com to discover what Web Visitor can do for your enterprise You could be converting up to 100X more leads today! Maybelle PS: Web Visitor provides FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to to talk with you right now… don’t keep them waiting. CLICK HERE https://turboleadgeneration.com to try Visitor now. If you\'d like to unsubscribe click here https://turboleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com Just a quick message - the identities and email employed in this communication, Maybelle and Shook, are stand-ins and not actually genuine contact details. We cherish transparency and desired to ensure you are conscious! In case you want to connect with the true individual responsible for this note, kindly check out our site, and we’ll link you with the proper entity.'),(3078,771,'name_1','Quinn Ransome| | Ransome'),(3079,771,'email_2','quinn.ransome43@gmail.com'),(3080,771,'text_3','Hello naplesirrigation.com Webmaster!'),(3081,771,'textarea_4','Are you still looking at getting your website done/ completed? Contact e.solus@gmail.com'),(3082,772,'name_1','Ken Beebe| | Beebe'),(3083,772,'email_2','kenp2024@aol.com'),(3084,772,'text_3','Just found this site'),(3085,772,'textarea_4','Was just browsing the site and was impressed the layout. Nicely design and great user experience. Just had to drop a message, have a great day! 8dfds87a'),(3086,773,'name_1','Inez Lennox| | Lennox'),(3087,773,'email_2','inez.lennox@gmail.com'),(3088,773,'text_3','To the naplesirrigation.com Admin.'),(3089,773,'textarea_4','Game changing customer financing approves down to 500 FICO Stop losing clients just because they have poor credit scores ++ This Offer Only For Businesses In The USA ++ Get in touch with me below for more info Jessica Snyder jessica.snyder@helloratespros.com https://helloratespros.com/5-6/'),(3090,774,'name_1','Louisa Loehr| | Loehr'),(3091,774,'email_2','loehr.louisa@gmail.com'),(3092,774,'text_3','Affordable Hosting Solution for naplesirrigation.com'),(3093,774,'textarea_4','Hi there, Are you tired of paying monthly fees for website hosting, cloud storage, and funnels? We offer a revolutionary solution: host unlimited websites, files, and videos for a single, low one-time fee. No more monthly payments. Here\'s what you get: Ultra-fast hosting powered by Intel® Xeon® CPU technology Unlimited website hosting Unlimited cloud storage Unlimited video hosting Unlimited funnel creation Free SSL certificates for all domains and files 99.999% uptime guarantee 24/7 customer support Easy-to-use cPanel 365-day money-back guarantee Plus, get these exclusive bonuses when you act now: 60+ reseller licenses (sell hosting to your clients!) 10 Fast-Action Bonuses worth over $19,997 (including AI tools, traffic generation, and more!) Don\'t miss out on this limited-time offer! The price is about to increase, and this one-time fee won\'t last forever. Click here to learn more: https://furtherinfo.org/yarx Louisa If you do not wish to receive any further offers: https://removeme.click/wp/unsubscribe.php?d=naplesirrigation.com'),(3094,775,'name_1','Donna Lucier| | Lucier'),(3095,775,'email_2','lucier.donna@outlook.com'),(3096,775,'text_3','Grab Possibilities with Our Revolutionary Tool!'),(3097,775,'textarea_4','Greetings naplesirrigation.com Owner. This is Donna and I just found your site at naplesirrigation.com... I located it after a brief search, so your SEO’s working out… Material looks decent… One thing’s missing though… A FAST, SIMPLE way to connect with you IMMEDIATELY. Because data show that a web lead like me will only stay a few seconds – 7 out of 10 vanish almost immediately, Click Surf Click… then gone forever. I have the remedy: Web Visitors Into Leads is a software that’s operates on your website, ready to capture any viewer’s Name, Email address, and Phone Number. You’ll know instantly they’re engaged and you can call them directly to TALK with them - really while they’re still on the web looking at your website. CLICK HERE https://turboleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works and even test it out… it could be massive for your business. Additionally, now that you’ve got that phone number, with our new SMS Text With Lead feature, you can instantly start a text (SMS) conversation pronto… which is so strong, because linking up with someone within the first 5 minutes is 100 times more productive than waiting 30 minutes or more later. The new text messaging feature lets you keep in touch regularly with new offers, content links, even just follow up notes to develop a relationship. Everything I’ve just described is extremely simple to implement, cost-effective, and lucrative. CLICK HERE https://turboleadgeneration.com to find out what Lead Conversion Tool can do for your company, possibly converting up to 100X more eyeballs into leads now! Donna PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have prospects waiting to speak with you now… don’t keep them waiting. CLICK HERE https://turboleadgeneration.com to test Lead Conversion Tool now. If you\'d prefer to unsubscribe click here https://turboleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com Just a quick notification - the names and email address used here, Donna and Lucier, are stand-ins and not really real contact details. We appreciate transparency and aimed to ensure you are aware! Should you desire to communicate with the actual individual responsible for this note, kindly check out our site, and we’ll link you with the appropriate entity.'),(3098,776,'name_1','Jefferson Littleton| | Littleton'),(3099,776,'email_2','smartviewsolutions1@outlook.com'),(3100,776,'text_3','Every movie, every game, every series, every channel'),(3101,776,'textarea_4','You read that right, just to name a few, you get instant full access to every network including Hulu, ESPN, HBO/Max, Disney, Netflix, Peacock, Discovery, Apple TV - and a lot more. Due to the demand we just can\'t keep these boxes in stock - period. We\'d really like for you to have one the second our next batch rolls out. The only way to ensure this is that you let us know you want one as soon as possible - this is a first come first serve scenerio. Just send an email to SmartViewSolutions1@outlook.com and place ADD ME TO THE LIST in the subject line and you\'ll be one of the first we contact. Talk to you soon. https://cutt.ly/GedQ5sKd Smart View Solutions'),(3102,777,'name_1','David Sadlier| | Sadlier'),(3103,777,'email_2','kali.sadlier@gmail.com'),(3104,777,'text_3','Hello naplesirrigation.com Admin!'),(3105,777,'textarea_4','You may wish to save this email for future reference. There is no need to unsubscribe because this is a one-time email from Se-REM. This announcement is a public service for a not-for-profit program that has saved and restored lives shattered by abuse and trauma. Have you heard of Se-REM? (Self effective - Rapid Eye Movement). Many people don\'t know that REM brain activity dramatically improves the processing of traumatic emotion. It creates peace and empowers the listener. Se-REM is an advanced version of EMDR therapy. It is more powerful because it combines elements of 6 different therapies, EMDR, hypnosis, mindfulness, Gestalt child within work, music therapy, and Awe therapy,(connecting profoundly with nature). It has helped thousands of people overcome PTSD, and anxiety. But it is also helpful in a great many situations, loss of any kind, grief, phobias and even marital counseling. The mission statement is \"Trauma relief at as close to free as possible\". This program downloads to a smart phone or computer and can be used in an office or at home. Read about it, hear samples, and download at: Se-REM.com. Once you own the program, you are encouraged to give it away to others who will benefit. I provide free consultation to all who use the program. Se-REM.com has a 95% rating on Trustpilot and is in use in 33 countries. If you would like to know more you can watch a UK Podcast at: https://lockedupliving.podbean.com'),(3106,778,'name_1','Jill Stubbs| | Stubbs'),(3107,778,'email_2','jill.stubbs@googlemail.com'),(3108,778,'text_3',''),(3109,778,'textarea_4',''),(3110,779,'name_1','Manie Coney| | Coney'),(3111,779,'email_2','coney.manie@msn.com'),(3112,779,'text_3','Support Your Brain Health Naturally with SNAP\'s Pure Ingredients'),(3113,779,'textarea_4','Ultimate brain health supplement: SNAP Uncover the transformative power of SNAP, the brain health supplement designed for both children and adults. SNAP is designed to promote emotional balance and enhance mental well-being, SNAP is your partner in handling stress and boosting your mood. #### Why Choose SNAP? - **Natural Ingredients**: The formula integrates rigorously tested, pure natural ingredients that boost brain function. - **Holistic Approach**: Whether you\'re handling daily pressures or persistent anxieties, SNAP promotes emotional balance. - **Neurotransmitter Support**: By tackling key imbalances, SNAP promotes mental clarity and stability. #### Benefits of SNAP - **Improved Mood**: Experience a more positive and uplifted mood. - **Reduced Anxiety**: Manage stress effectively and calmly. - **Better Emotional Regulation**: Achieve a balanced and stable mental state. Enjoy a gentler, more effective way to support your brain health. Select SNAP for a positive outlook on life. #### Ready to transform your mental well-being? Learn more and get started today at https://bit.ly/3XvnO3a Unsubscribe here if you don\'t want to get these awesome newsletters: bit.ly/unsubscribepls Stradun 15, Beacon, New York, USA, 6388'),(3114,780,'name_1','France Nicolai| | Nicolai'),(3115,780,'email_2','france.nicolai@gmail.com'),(3116,780,'text_3','Hello naplesirrigation.com Administrator.'),(3117,780,'textarea_4','Hi there, We promise—this isn\'t just another message. Imagine saving money and simplifying your website management all at once. At WordPressPro.org, we make it possible. Here\'s how: Affordable Plans: Starting at just $9.95/month User-Friendly Platform: Manage your site with ease Free Migration Service: Seamless transition to our platform Give your website the boost it deserves. Join us today! Best regards, The WordPressPro.org Team www.wordpresspro.org info@wordpresspro.org'),(3118,781,'name_1','Dave Devaney| | Devaney'),(3119,781,'email_2','kiera.devaney@gmail.com'),(3120,781,'text_3','Elevate Your Sales with M.I.H Digital Marketing Expertise'),(3121,781,'textarea_4','Dear, I hope this message finds you well. I am writing to introduce you to M.I.H, the premier digital marketing agency dedicated to transforming businesses and driving sales growth. Here’s how partnering with M.I.H can benefit your business: 1. **Targeted SEO Strategies:** Enhance your online visibility and attract high-quality traffic to your website, leading to increased conversion rates. 2. **Effective Social Media Campaigns:** Engage with your audience on various platforms, boosting brand awareness and customer loyalty. 3. **Compelling Content Marketing:** Develop valuable content that resonates with your audience, establishing your brand as an industry leader. 4. **Precision PPC Advertising:** Implement cost-effective PPC campaigns to reach potential customers actively searching for your products or services. 5. **Data-Driven Insights:** Utilize advanced analytics to optimize marketing strategies continuously, ensuring maximum ROI. M.I.H\'s tailored approach and expertise across various industries ensure we understand and meet your unique business goals. Let’s discuss how M.I.H can help elevate your brand and drive sales growth. Please get in touch at marketingagency.mih@gmail.com to schedule a consultation. I look forward to exploring opportunities for collaboration. Best regards, M.I.H Marketing Agency marketingagency.mih@gmail.com https://mihmarketingagency.com/'),(3122,782,'name_1','Arleen Rieger| | Rieger'),(3123,782,'email_2','rieger.arleen@gmail.com'),(3124,782,'text_3','Hello naplesirrigation.com Owner!'),(3125,782,'textarea_4','Running a business can be stressful and hard. Payroll, Insurance, inventory, marketing ……UGHH Let us help remove that stress and give you some breathing room. Get a no obligation working capital quote in less than 2 minutes. == Must Be A US Based Business To Qualify == Contact me below for details Elizabeth Miller elizabeth.miller@helloratesfastfunding.com https://www.helloratesfastfunding.com'),(3126,783,'name_1','Elma Mortimer| | Mortimer'),(3127,783,'email_2','mortimer.elma@yahoo.com'),(3128,783,'text_3','Improve Your Strategy with This Revolutionary Solution!'),(3129,783,'textarea_4','Greetings to the naplesirrigation.com Owner. this is Eric and I found naplesirrigation.com some moments ago. Seems great… but now what? What I mean is, if someone such as myself discovers your website – either through searching or just bouncing around – what happens next? Do you getting a lot of leads from your site, or at least enough to make you happy? Frankly, most business websites come a bit short when it comes to producing paying customers. Studies reveal that 70% of a site’s visitors vanish and are gone forever just a moment. Here is an idea… How about making it really EASY for any visitor who comes to get a personal phone call from you as soon as they hit your site… This is possible – Web Visitors Into Leads is a tool widget that’s works on your site, prepared to capture any visitor’s Name, Email address and Phone Number. It alerts you the moment they make you know they’re interested – so that you can speak to that lead whilst they’re really browsing your site. CLICK HERE https://advanceleadgeneration.com to experience a Live Demo with Web Visitors Into Leads now to realize exactly how it functions. You will be astonished - the difference between reaching out to someone within just 5 minutes versus a half-hour or more later can enhance your results 100-fold. It becomes even better… once you’ve grabbed their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) chat. Thus, even if you don’t seal a deal instantly, you can follow up with text messages for fresh offers, content links, or even just “how you doing?” notes to build a relationship. Pretty sweet – AND effective. CLICK HERE https://advanceleadgeneration.com to learn what Web Visitors Into Leads can do for your business. You could be converting up to 100X more leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it also includes International Long Distance Calling. You have customers waiting to speak with you at this moment… don’t leave them waiting. CLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now. If you\'d prefer to unsubscribe click here https://advanceleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com Only a brief note - the names and email used in this email, Elma and Mortimer, are placeholders and not genuine contact details. We respect transparency and wish to make sure you’re aware! If you want to contact with the genuine person responsible for this message, please visit our website, and we’ll connect you with the right individual.}'),(3130,784,'name_1','Reuben Rock| | Rock'),(3131,784,'email_2','reuben.rock@gmail.com'),(3132,784,'text_3','Expand The Efficiency: Select amongst Our Team\'s Selection of VPS Plans Today'),(3133,784,'textarea_4','Experience the ideal mix of power and cost-effectiveness with our top-notch VPSs starting at just €3.90 per month. Get up to 5 Gbit/s connectivity and 50TB of traffic included. Choose the plan that suits you: Plan 1: 1x AMD Ryzen vCore, 4GB RAM, 120GB NVMe Disk - €3.90 Plan 2: 2x AMD Ryzen vCore, 8GB RAM, 240GB NVMe Disk - €7.90 Plan 3: 3x AMD Ryzen vCore, 12GB RAM, 320GB NVMe Disk - €11.90 Plan 4: 6x AMD Ryzen vCore, 12GB RAM, 640GB NVMe Disk - €16.90 Each plan includes: Up to 5 Gbit/s connectivity 50TB traffic per month KVM / ISO mount Linux/Windows/BSD OS ready Up/downgrades through UI 5 Snapshots and 1 Backup slot Achieve top performance without overspending. Upgrade or downgrade anytime through our intuitive UI. Sign up today: https://bit.ly/vps5eur Unsubscribe here if you don\'t want to get these great newsletters: https://bit.ly/meunsubscribe Valkenburgerweg 189, Newburgh, NY, USA, 6305 Ec'),(3134,785,'name_1','Eric Jones| | Jones'),(3135,785,'email_2','ericjonesmyemail@gmail.com'),(3136,785,'text_3','Instead, congrats'),(3137,785,'textarea_4','Hi naplesirrigation.com Owner! My name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement – Congratulations What for? Part of my job is to check out websites and the work you’ve done with naplesirrigation.com definitely stands out. It’s clear you took building a website seriously and made a real investment of time and resources into making it top quality. There is, however, a catch… more accurately, a question… So when someone like me happens to find your site – maybe at the top of the search results (nice job BTW) or just through a random link, how do you know? More importantly, how do you make a connection with that person? Studies show that 7 out of 10 visitors don’t stick around – they’re there one second and then gone with the wind. Here’s a way to create INSTANT engagement that you may not have known about… Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know INSTANTLY that they’re interested – so that you can talk to that lead while they’re literally checking out naplesirrigation.com. CLICK HERE https://blazeleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. It could be a game-changer for your business – and it gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately (and there’s literally a 100X difference between contacting someone within 5 minutes versus 30 minutes.) Plus then, even if you don’t close a deal right away, you can connect later on with text messages for new offers, content links, even just follow up notes to build a relationship. Everything I’ve just described is simple, easy, and effective. CLICK HERE https://blazeleadgeneration.com to discover what Web Visitors Into Leads can do for your business. You could be converting up to 100X more leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://blazeleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here https://blazeleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(3138,786,'name_1','Janson Carter| | Carter'),(3139,786,'email_2','moveyou938+r4s@gmail.com'),(3140,786,'text_3','Your product is too expensive to renew'),(3141,786,'textarea_4','Just thought I\'d let you know. When you registered naplesirrigation.com with Tucows you were charged their first-year domain product price When you go to renew the domain, It always goes up. That\'s on top of any increase for other products like Hosting, SSL Certificate or Email service you have. There\'s no rush now but, you have until 01/19/2025 to avoid overpaying their domain renewal fees I kept making that same mistake year after year. I wish that was all I made, but sadly that\'s just 1 of the 6 I was guilty of. Maybe the article I wrote could help you avoid the other 5? https://BeWebsiteWise.com Thanks Janson To opt out of future communications click the link below. https://optoutform.net/?site=http://naplesirrigation.com GLBL 300 Lafollette Station Dr Floyds Knobs, IN 47119'),(3142,787,'name_1','Eric Jones| | Jones'),(3143,787,'email_2','ericjonesmyemail@gmail.com'),(3144,787,'text_3','Who needs eyeballs, you need BUSINESS'),(3145,787,'textarea_4','Hello naplesirrigation.com Admin. My name’s Eric and I just came across your website - naplesirrigation.com - in the search results. Here’s what that means to me… Your SEO’s working. You’re getting eyeballs – mine at least. Your content’s pretty good, wouldn’t change a thing. BUT… Eyeballs don’t pay the bills. CUSTOMERS do. And studies show that 7 out of 10 visitors to a site like naplesirrigation.com will drop by, take a gander, and then head for the hills without doing anything else. It’s like they never were even there. You can fix this. You can make it super-simple for them to raise their hand, say, okay, let’s talk without requiring them to even pull their cell phone from their pocket… thanks to Web Visitors Into Leads. Web Visitors Into Leads is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number. It lets you know immediately – so you can talk to that lead immediately… without delay… BEFORE they head for those hills. CLICK HERE https://rushleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. Now it’s also true that when reaching out to hot leads, you MUST act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better! That’s what makes our new SMS Text With Lead feature so powerful… you’ve got their phone number, so now you can start a text message (SMS) conversation with them… so even if they don’t take you up on your offer right away, you continue to text them new offers, new content, and new reasons to do business with you. This could change everything for you and your business. CLICK HERE https://rushleadgeneration.com to learn more about everything Web Visitors Into Leads can do and start turing eyeballs into money. Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! It even includes International Long Distance Calling. Paying customers are out there waiting. Starting connecting today by CLICKING HERE https://rushleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click https://rushleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(3146,788,'name_1','Phil Stewart| | Stewart'),(3147,788,'email_2','noreplyhere@aol.com'),(3148,788,'text_3','??'),(3149,788,'textarea_4','Hey, looking to boost your ad game? Picture your message hitting website contact forms worldwide, grabbing attention from potential customers everywhere! Starting at just under a hundred bucks my budget-friendly packages are designed to make an impact. Drop me an email now to discuss how you can get more leads and sales now! P. Stewart Email: qufenu@submitmaster.xyz Skype: form-blasting'),(3150,789,'name_1','Daniel Sanderson| | Sanderson'),(3151,789,'email_2','planksip.dot.org@gmail.com'),(3152,789,'text_3','Re: Can you help me with something?'),(3153,789,'textarea_4','I\'m reaching out to explore potential collaborations where I can bring my proven track record in sales and marketing to your team. What sets me apart is my ability to generate high-quality leads that convert to sales without requiring upfront costs. My approach for your business would be custom, ensuring immediate gains and sustainable growth. I have a strong commitment to delivering measurable results and I guarantee improvements in your sales metrics which is why I\'m not asking for anything up front. Would you be available for a quick call to explore how we can work together? Daniel Sanderson Planksip 916-634-1928'),(3154,790,'name_1','Nestor Mueller| | Mueller'),(3155,790,'email_2','mueller.nestor@gmail.com'),(3156,790,'text_3','Hello naplesirrigation.com Owner!'),(3157,790,'textarea_4','Get Vetted &amp; watch your lead conversions skyrocket. Every day without Vetted is a huge missed opportunity to close up to 60% more deals. See link in signature to start your 30 Day FREE trial &amp; see the results for yourself. USA Businesses Only Sarah McCormick Vetted Business Specialist 295 Seven Farms Drive Suite C-201 Charleston, SC 29492 Sarah.McCormick@VettedPros.com https://vettedpros.com/1-2/?a=Are-You-Ready-To-Dominate-Your-Local-Market? Vetted is a game changing platform used by over 85,000 USA based businesses to share &amp; prove their business credentials to amplify trust &amp; transparency with shoppers and close up to 60% more sales than businesses not listed on the Vetted platform.'),(3158,791,'name_1','David Hunt| | Hunt'),(3159,791,'email_2','jami.hunt@gmail.com'),(3160,791,'text_3','To the naplesirrigation.com Admin!'),(3161,791,'textarea_4','Are you still looking at getting your website\'s SEO done? Contact Now intrug@gmail.com'),(3162,792,'name_1','Mike S| | S'),(3163,792,'email_2','debbe834@rkytuhoney.com'),(3164,792,'text_3','Light the Way: Candles with a Mission to Help Veterans'),(3165,792,'textarea_4','Mike here from Texas. I was a homeless vet at one time and I believe that should never be the case for anyone else. As I got on my feet I decided to try and give to those who were in my position. Thats how Child Light Candles was born. When you grab a Childlight Candle, you\'re not just getting a luxurious soy candle. You\'re helping to illuminate the path for homeless veterans. We donate 25% of our profits to charities that provide vital support, such as housing assistance, job training, and mental health services. Browse our collection of captivating scents and discover your new favorite candle, all while making a meaningful contribution. Use 1776 as a special 4th of July weekend coupon code for 10% starting right now - Show our vets you care and choose from over 10 gourmet fragerances before the coupon code expires. Best Regards, Mike S Dallas Texas https://cutt.ly/Qw2S9T3c'),(3166,793,'name_1','Beau Ferreira| | Thompson'),(3167,793,'email_2','beau.ferreira@msn.com'),(3168,793,'text_3','Experience the MYONATURAL Difference in Pain Relief'),(3169,793,'textarea_4','Tired of sore muscles, aches, and pains? Ready to get back to doing the things you love? Try MYONATURAL, recommended by massage therapists, chiropractors, and athletic trainers. Get 20% off your first order. Use Coupon Code: VV7UP5HH ++URL++: https://bit.ly/4eODq8g * MYONATURAL offers a family of safe, all-natural products designed to relieve pain and improve your quality of life. Our pain relief creams and oral sprays work separately or in combination to ease pain, reduce anxiety, and support restorative sleep. Developed by someone who knows your pain, we are committed to helping you feel, move, and live better. Experience the MYONATURAL difference today! Unsubscribe by filling the form: https://bit.ly/myounsubscribe Skifjellvegen 247, Skien, NA, USA, 3719'),(3170,794,'name_1','Ismael Cornwall| | Cornwall'),(3171,794,'email_2','ismael.cornwall@googlemail.com'),(3172,794,'text_3','Find Out How to Keep Visitors on naplesirrigation.com Further!'),(3173,794,'textarea_4','To the naplesirrigation.com Administrator. Great website! name’s Ismael, and I recently found your site - naplesirrigation.com - while browsing the net. You appeared up at the top of the search results, so I looked you out. Looks like what you’re doing is pretty cool. But just in case you don’t mind me asking – once someone like me stumbles across naplesirrigation.com, what typically happens? Is your site produce leads for your business? I’m assuming some, but I also bet you’d like more… studies indicate that 7 out 10 people that land on a site wind up leaving without a trace. That\'s not ideal. Here’s a thought – what if there\'s an simple way for every visitor to raise their hand to get a phone call from you INSTANTLY… the second they visit your site and expressed, “call me now.” Guess what, you can – Web Visitors Into Leads is a tool widget that’s functions on your site, ready to grab any visitor’s Name, Email address and Phone Number. It lets you be informed IMMEDIATELY – so that you can chat to that lead as they’re literally looking over your site. CLICK HERE https://advanceleadgeneration.com to check out a Live Demo with Web Visitors Into Leads now to realize precisely how it works. Time is crucial when it comes to engaging with leads – the gap between contacting someone within 5 minutes compared to 30 minutes later can be huge – like 100 times better! And that\'s why we created out our new SMS Text With Lead feature… because once you’ve collected the visitor’s phone number, you can instantly start a text message (SMS) chat. Think about the possibilities – even if you don’t close a deal then and there, you can stay connected with text messages for fresh deals, content links, or even just “how you doing?” notes to create a relationship. Would not that be fantastic? CLICK HERE https://advanceleadgeneration.com to learn what Web Visitors Into Leads can do for your business. You could be turning up to 100X more leads as we speak! Ismael PS: Web Visitors Into Leads provides a FREE 14 days trial – and it also features International Long Distance Calls. You have customers waiting to speak with you at this moment… don’t keep them waiting. CLICK HERE https://advanceleadgeneration.com to test Web Visitors Into Leads now. If you\'d like to unsubscribe click here https://advanceleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com Only a brief note - the name and email used in this email, Ismael and Cornwall, are dummy data and not genuine contact details. We cherish transparency and wish to make sure you’re alerted! If you desire to get in contact with the real person responsible for this message, please go to our website, and we’ll associate you with the appropriate individual.'),(3174,795,'name_1','Alma Eager| | Eager'),(3175,795,'email_2','alma.eager@msn.com'),(3176,795,'text_3','Revolutionize Your SEO Strategies with The Groundbreaking Solution!'),(3177,795,'textarea_4','To the naplesirrigation.com Administrator! Nice website! name’s Alma, and I just found your site - naplesirrigation.com - while browsing the net. You popped up at the very top of the search engine results, so I checked you out. Seems like what you’re doing is amazing. But if you don’t mind me asking – after someone like me lands across naplesirrigation.com, what normally happens? Is your site create leads for your business? I’m assuming some, but I also bet you’d prefer more… data show that 7 out 10 who land on a site wind up leaving without any interaction. Not good. Here’s a suggestion – what if there\'s an simple way for each visitor to raise their hand to get a phone call from you RIGHT AWAY… the second they visit your site and expressed, “call me now.” You can – Web Visitors Into Leads is a software widget that’s works on your site, prepared to capture any visitor’s Name, Email address and Phone Number. It lets you know RIGHT AWAY – so that you can talk to that lead as they’re actually looking over your site. CLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see precisely how it operates. Timing is crucial when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later is significant – like 100 times superior! And that\'s why we created out our new SMS Text With Lead feature… since once you’ve captured the visitor’s phone number, you can automatically start a text message (SMS) chat. Think about the opportunities – even if you don’t close a deal immediately, you can keep in touch with text messages for new deals, content links, even just “how you doing?” notes to establish a relationship. Wouldn’t that be fantastic? CLICK HERE https://advanceleadgeneration.com to learn what Web Visitors Into Leads can offer for your business. You might be converting up to 100X more leads as we speak! Alma PS: Web Visitors Into Leads provides a FREE 14 days trial – and it also comes with International Long Distance Calls. You have customers eager to speak with you right now… don’t keep them waiting. CLICK HERE https://advanceleadgeneration.com to test Web Visitors Into Leads today. If you\'d prefer to unsubscribe click here https://advanceleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com Just a brief note - the names and email used in this email, Alma and Eager, are for representation and not genuine contact information. We cherish transparency and aim to make sure you’re alerted! If you desire to get in contact with the actual person responsible for this message, please go to our website, and we’ll associate you with the right individual.'),(3178,796,'name_1','Chastity Zambrano| | Zambrano'),(3179,796,'email_2','zambrano.chastity@gmail.com'),(3180,796,'text_3','Hello naplesirrigation.com Administrator.'),(3181,796,'textarea_4','Hi there, I apologize for using your contact form, but I wasn\'t sure who the right person was to speak with in your company. We have a patented application that creates Local Area pages that rank on top of Google within weeks, we call it Local Magic. Here is a link to the product page https://www.mrmarketingres.com/local-magic/ . The product leverages technology where these pages are managed dynamically by AI and it is ideal for promoting any type of business that gets customers from Google. Can I share a testimonial from one of our clients in the same industry? I\'d prefer to do a short zoom to illustrate their full case study if you have time for it? You can reach me at marketing@mrmarketingres.com or 843-720-7301. And if this isn\'t a fit please feel free to email me and I\'ll be sure not to reach out again. Thanks!'),(3182,797,'name_1','Joanna Riggs| | Riggs'),(3183,797,'email_2','joannariggs278@gmail.com'),(3184,797,'text_3','Video Promotion for naplesirrigation.com'),(3185,797,'textarea_4','Hi, I just visited naplesirrigation.com and wondered if you\'d ever thought about having an engaging video to explain what you do? Our prices start from just $195. Let me know if you\'re interested in seeing samples of our previous work. Regards, Joanna Unsubscribe: https://removeme.click/ev/unsubscribe.php?d=naplesirrigation.com'),(3186,798,'name_1','Amelia Brown| | Brown'),(3187,798,'email_2','ameliabrown0325@gmail.com'),(3188,798,'text_3','YouTube Promotion: 700-1500 new subscribers each month'),(3189,798,'textarea_4','Hi there, We run a YouTube growth service, which increases your number of subscribers both safely and practically. - We guarantee to gain you 700-1500+ subscribers per month. - People subscribe because they are interested in your channel/videos, increasing likes, comments and interaction. - All actions are made manually by our team. We do not use any \'bots\'. The price is just $60 (USD) per month, and we can start immediately. If you have any questions, let me know, and we can discuss further. Kind Regards, Amelia'),(3190,799,'name_1','David Molino| | Molino'),(3191,799,'email_2','molino.martha@yahoo.com'),(3192,799,'text_3','24/7 Live Chat = More Sales & Happy Customers'),(3193,799,'textarea_4','Hey, Customers want answers now. Don\'t lose leads with offline messages! Live chat boosts sales &amp; loyalty. 44% of consumers love it! Open247 provides: * Expert agents (24/7!) * Brand ambassadors * Cost-effective solution Benefits: * More conversions (capture hot leads!) * Happier customers (fast, friendly support) * Less work for you (focus on core business) Get a free quote! Email me now at open247chat@gmail.com We\'ll customize a plan to fit your budget. P.S. Get 30 Days Free Trial Now!!'),(3194,800,'name_1','Leopoldo Christiansen| | Christiansen'),(3195,800,'email_2','leopoldo.christiansen@hotmail.com'),(3196,800,'text_3','Capture Chances with This Newest Tool!'),(3197,800,'textarea_4','Hello naplesirrigation.com Webmaster. This is Leopoldo, and I just stumbled upon your site naplesirrigation.com. It’s got plenty to offer, but here’s a thought to make it even more effective. Web Visitors Into Leads – CLICK HERE https://turboleadgeneration.com for a working demo now. Web Visitors Into Leads is a software widget that’s works on your site, set to capture any visitor’s Name, Email address, and Phone Number. It notifies you the moment they tell you they’re interested – so that you can speak to that lead while they’re really viewing your site. And when you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation… and if they don’t take you up on your offer then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to create a relationship. CLICK HERE https://turboleadgeneration.com to uncover what Visitor Engagement Widget can do for your business. The difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today! Leopoldo PS: Studies indicate that 70% of a site’s visitors vanish and are gone permanently after just a moment. Don’t keep letting go of them. Visitor Engagement Widget offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers ready to talk with you right now… don’t keep them waiting. CLICK HERE https://turboleadgeneration.com to test Lead Conversion Tool now. If you\'d prefer to unsubscribe click here https://turboleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com Only a brief note - the identities and email employed in this message, Leopoldo and Christiansen, are stand-ins and not real contact information. We value candor and wanted to ensure you’re informed! In case you want to get in touch with the actual one behind this note, kindly visit our website, and we’ll connect you with the correct entity.'),(3198,801,'name_1','Eric Jones| | Jones'),(3199,801,'email_2','ericjonesmyemail@gmail.com'),(3200,801,'text_3','Turn Surf-Surf-Surf into Talk Talk Talk'),(3201,801,'textarea_4','Hello naplesirrigation.com Admin. my name’s Eric and I just ran across your website at naplesirrigation.com... I found it after a quick search, so your SEO’s working out… Content looks pretty good… One thing’s missing though… A QUICK, EASY way to connect with you NOW. Because studies show that a web lead like me will only hang out a few seconds – 7 out of 10 disappear almost instantly, Surf Surf Surf… then gone forever. I have the solution: Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. You’ll know immediately they’re interested and you can call them directly to TALK with them - literally while they’re still on the web looking at your site. CLICK HERE https://blazeleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works and even give it a try… it could be huge for your business. Plus, now that you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation pronto… which is so powerful, because connecting with someone within the first 5 minutes is 100 times more effective than waiting 30 minutes or more later. The new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship. Everything I’ve just described is extremely simple to implement, cost-effective, and profitable. CLICK HERE https://blazeleadgeneration.com to discover what Web Visitors Into Leads can do for your business, potentially converting up to 100X more eyeballs into leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://blazeleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here https://blazeleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(3202,802,'name_1','Eric Jones| | Jones'),(3203,802,'email_2','ericjonesmyemail@gmail.com'),(3204,802,'text_3','how to turn eyeballs into phone calls'),(3205,802,'textarea_4','To the, Eric here with a quick thought about your website naplesirrigation.com Webmaster. I’m on the internet a lot and I look at a lot of business websites. Like yours, many of them have great content. But all too often, they come up short when it comes to engaging and connecting with anyone who visits. I get it – it’s hard. Studies show 7 out of 10 people who land on a site, abandon it in moments without leaving even a trace. You got the eyeball, but nothing else. Here’s a solution for you… Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. You’ll know immediately they’re interested and you can call them directly to talk with them literally while they’re still on the web looking at your site. CLICK HERE https://rushleadgeneration.com to try out a Live Demo with Web Visitor now to see exactly how it works. It could be huge for your business – and because you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately… and contacting someone in that 5 minute window is 100 times more powerful than reaching out 30 minutes or more later. Plus, with text messaging you can follow up later with new offers, content links, even just follow up notes to keep the conversation going. Everything I’ve just described is extremely simple to implement, cost-effective, and profitable. CLICK HERE https://rushleadgeneration.com to discover what Web Visitor can do for your business. You could be converting up to 100X more eyeballs into leads today! Eric PS: Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://rushleadgeneration.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here https://rushleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(3206,803,'name_1','David Borelli| | Borelli'),(3207,803,'email_2','denese.borelli@gmail.com'),(3208,803,'text_3','Struggling with Ecommerce? Get Our Free Guide Now!'),(3209,803,'textarea_4','Hi, Building a successful ecommerce website can be overwhelming. Are you struggling to get your online store off the ground? Low traffic, poor conversions, and complex platform choices can make it feel impossible to succeed. It’s frustrating when your hard work doesn’t translate into sales and growth. Download our FREE eBook: \"100 Checkpoints for a Successful Ecommerce Website.\" This comprehensive guide is designed to help you overcome these challenges and transform your ecommerce site into a thriving business. Here\'s what you\'ll get: Target Audience, UserFriendly Design, Compelling Product Descriptions, Simplified Checkout, SEO Tips, Digital Marketing Strategies, Customer Service, Security Compliance &amp; Growth Planning. Ready to conquer your ecommerce challenges? Download Your Free eBook Now! https://alwaysdigital.co/f1/?naplesirrigation.com We’re here to support your journey to ecommerce success. If you have any questions or need further assistance, feel free to reach out. To your success, Sam Miller P.S. Limited time offer – grab your free eBook today!'),(3210,804,'name_1','Eric Jones| | Jones'),(3211,804,'email_2','ericjonesmyemail@gmail.com'),(3212,804,'text_3','Try this, get more leads'),(3213,804,'textarea_4','Hello naplesirrigation.com Administrator! my name is Eric and I’m betting you’d like your website naplesirrigation.com to generate more leads. Here’s how: Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you as soon as they say they’re interested – so that you can talk to that lead while they’re still there at naplesirrigation.com. Web Visitors Into Leads – CLICK HERE https://blazeleadgeneration.com for a live demo now. And now that you’ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation – answer questions, provide more info, and close a deal that way. If they don’t take you up on your offer then, just follow up with text messages for new offers, content links, even just how you doing? notes to build a relationship. CLICK HERE https://blazeleadgeneration.com to discover what Web Visitors Into Leads can do for your business. The difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today! Try Web Visitors Into Leads and get more leads now. Eric PS: The studies show 7 out of 10 visitors don’t hang around – you can’t afford to lose them! Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://blazeleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here https://blazeleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(3214,805,'name_1','Eric Jones| | Jones'),(3215,805,'email_2','ericjonesmyemail@gmail.com'),(3216,805,'text_3','Turn Surf-Surf-Surf into Talk Talk Talk'),(3217,805,'textarea_4','Hello naplesirrigation.com Webmaster. my name’s Eric and I just ran across your website at naplesirrigation.com... I found it after a quick search, so your SEO’s working out… Content looks pretty good… One thing’s missing though… A QUICK, EASY way to connect with you NOW. Because studies show that a web lead like me will only hang out a few seconds – 7 out of 10 disappear almost instantly, Surf Surf Surf… then gone forever. I have the solution: Web Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. You’ll know immediately they’re interested and you can call them directly to TALK with them - literally while they’re still on the web looking at your site. CLICK HERE https://rushleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works and even give it a try… it could be huge for your business. Plus, now that you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation pronto… which is so powerful, because connecting with someone within the first 5 minutes is 100 times more effective than waiting 30 minutes or more later. The new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship. Everything I’ve just described is extremely simple to implement, cost-effective, and profitable. CLICK HERE https://rushleadgeneration.com to discover what Web Visitors Into Leads can do for your business, potentially converting up to 100X more eyeballs into leads today! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://rushleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here https://rushleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(3218,806,'name_1','Mavis Oaks| | Oaks'),(3219,806,'email_2','oaks.mavis@gmail.com'),(3220,806,'text_3','To the naplesirrigation.com Owner.'),(3221,806,'textarea_4','Payroll, Insurance, inventory, marketing EXPENSES ……UGHH Want to remove the stress and get some breathing room? Get a no obligation working capital quote in less than 2 minutes. USA Based Businesses Only! Send me a message at my contact info below for info Elizabeth Miller elizabeth.miller@helloratesfastfunding.com https://www.helloratesfastfunding.com'),(3222,807,'name_1','Eric Jones| | Jones'),(3223,807,'email_2','ericjonesmyemail@gmail.com'),(3224,807,'text_3','Strike when the iron’s hot'),(3225,807,'textarea_4','Hello naplesirrigation.com Webmaster. I just found your site, quick question… My name’s Eric, I found naplesirrigation.com after doing a quick search – you showed up near the top of the rankings, so whatever you’re doing for SEO, looks like it’s working well. So here’s my question – what happens AFTER someone lands on your site? Anything? Research tells us at least 70% of the people who find your site, after a quick once-over, they disappear… forever. That means that all the work and effort you put into getting them to show up, goes down the tubes. Why would you want all that good work – and the great site you’ve built – go to waste? Because the odds are they’ll just skip over calling or even grabbing their phone, leaving you high and dry. But here’s a thought… what if you could make it super-simple for someone to raise their hand, say, okay, let’s talk without requiring them to even pull their cell phone from their pocket? You can – thanks to revolutionary new software that can literally make that first call happen NOW. Web Visitors Into Leads is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number. It lets you know IMMEDIATELY – so that you can talk to that lead while they’re still there at your site. You know, strike when the iron’s hot! CLICK HERE https://rushleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works. When targeting leads, you HAVE to act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better! That’s why you should check out our new SMS Text With Lead feature as well… once you’ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. Imagine how powerful this could be – even if they don’t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility. Just this alone could be a game changer to make your website even more effective. Strike when the iron’s hot! CLICK HERE https://rushleadgeneration.com to learn more about everything Web Visitors Into Leads can do for your business – you’ll be amazed. Thanks and keep up the great work! Eric PS: Web Visitors Into Leads offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! It even includes International Long Distance Calling. Stop wasting money chasing eyeballs that don’t turn into paying customers. CLICK HERE https://rushleadgeneration.com to try Web Visitors Into Leads now. If you\'d like to unsubscribe click here https://rushleadgeneration.com/unsubscribe.aspx?d=naplesirrigation.com'),(3226,808,'name_1','Oman Hass| | Hass'),(3227,808,'email_2','erin.hass2@gmail.com'),(3228,808,'text_3','Need Business Capital Funding?'),(3229,808,'textarea_4','Hello, Securing the necessary funding to fuel growth and bring ideas to life is one of the most significant challenges for startups and established businesses. At our company, we specialize in providing customized financing solutions for both startups and existing enterprises. We offer debt financing with a competitive interest rate designed to support capital growth without placing undue burden on business owners. Our loan interest rate is set at an advantageous 3% annually, with no early repayment penalties, offering you the flexibility to manage your finances smoothly. For those interested in equity financing, our venture capital funding option provides the capital needed for expansion. By offering a modest 10% equity stake, you can access essential resources to scale your business while retaining control and ownership. We understand these challenges and are dedicated to offering startups flexible financing options tailored to their specific needs. We would be delighted to review your pitch deck or executive summary to better understand your business. This will help us determine the best possible investment structure, which we can then discuss in detail. I look forward to further communication. Best regards, Oman Rook Executive Investment Consultant/Director Cateus Investment Company (CIC) 2401 AlMoayyed Tower, Seef District Manama, Kingdom of Bahrain Phone: +973-17-585338 Email: oman.rook@cateusgroup.org, cateusgroup@gmail.com Website: https://cateusinvestmentgroup.com'),(3230,809,'name_1','Buford Colson| | Colson'),(3231,809,'email_2','buford.colson@hotmail.com'),(3232,809,'text_3','Hello naplesirrigation.com Admin!'),(3233,809,'textarea_4','You have built a highly reputable business that values trustworthiness, integrity &amp; professionalism. But this means nothing if you don\'t have a way to PROVE this to the shoppers &amp; sales prospects Vetted Business Credential Reports are the definitive way to prove and one- click share with prospects: + Business license, insurance &amp; bond + Business &amp; professional certifications &amp; accreditations + Industry, local &amp; trade awards Get Vetted and stack the deck in your favor to win the sale Start your 30 Day FREE trial &amp; see the results for yourself. USA Businesses Only Sarah McCormick Vetted Business Specialist 295 Seven Farms Drive Suite C-201 Charleston, SC 29492 sarah.mccormick@vettedpros.com https://vettedpros.com/1-2/?a=Are-You-Ready-To-Dominate-Your-Local-Market?'),(3234,810,'name_1','Christin Decker| | Decker'),(3235,810,'email_2','decker.christin@gmail.com'),(3236,810,'text_3','LeadsMax.biz shutting down'),(3237,810,'textarea_4','Hello, It is with sad regret that after 12 years, LeadsMax.biz is shutting down. We have made all our databases available on our website. 25 Million companies 527 Million People LeadsMax.biz'),(3238,811,'name_1','Taylah Bernhardt| | Bernhardt'),(3239,811,'email_2','taylah.bernhardt59@gmail.com'),(3240,811,'text_3','To the naplesirrigation.com Webmaster!'),(3241,811,'textarea_4','WANTED: Partnerships &amp; Agents for Global E-commerce Firm 4U2 Inc., a premier E-commerce , Sourcing Brokerage firm, is actively seeking partnerships and collaboration with manufacturers and wholesalers for agricultural, commercial, and residential products. We offer a diverse marketplace for both new and used items, including vehicles and equipment. Why Choose 4U2 Inc.? (see https.//www.4u2inc.com) Global reach for your products Immediate requirements for a wide range of items Opportunity to expand your business network Join Our Team We’re also looking for Independent Contractor Agents (Account Executives) to help us discover new business opportunities. Whether you’re seeking a full-time or part-time role, you can earn up to $60,000 based on performance. Get in Touch Don’t miss out on this opportunity. Contact us at 4u2inc123@gmail.com to learn more or to start our partnership today! This version is more direct and easier to read, highlighting the key points and call to action for potential partners and agents. If you need further refinements or have specific requirements, feel free to let me know!'),(3242,812,'name_1','Anke Fernandes| | Fernandes'),(3243,812,'email_2','anke.fernandes@yahoo.com'),(3244,812,'text_3','Elevate Your Sales with M.I.H Digital Marketing Expertise'),(3245,812,'textarea_4','Dear, I hope this message finds you well. I am writing to introduce you to M.I.H, the premier digital marketing agency dedicated to transforming businesses and driving sales growth. Here’s how partnering with M.I.H can benefit your business: 1. **Targeted SEO Strategies:** Enhance your online visibility and attract high-quality traffic to your website, leading to increased conversion rates. 2. **Effective Social Media Campaigns:** Engage with your audience on various platforms, boosting brand awareness and customer loyalty. 3. **Compelling Content Marketing:** Develop valuable content that resonates with your audience, establishing your brand as an industry leader. 4. **Precision PPC Advertising:** Implement cost-effective PPC campaigns to reach potential customers actively searching for your products or services. 5. **Data-Driven Insights:** Utilize advanced analytics to optimize marketing strategies continuously, ensuring maximum ROI. M.I.H\'s tailored approach and expertise across various industries ensure we understand and meet your unique business goals. Let’s discuss how M.I.H can help elevate your brand and drive sales growth. Please get in touch at marketingagency.mih@gmail.com or https://mihmarketingagency.com/ to schedule a consultation. I look forward to exploring opportunities for collaboration. Best regards, M.I.H Marketing Agency marketingagency.mih@gmail.com https://mihmarketingagency.com/'),(3246,813,'name_1','Barbra Flint| | Flint'),(3247,813,'email_2','flint.barbra@gmail.com'),(3248,813,'text_3','To the naplesirrigation.com Webmaster!'),(3249,813,'textarea_4','Have you ever worried that you won’t make payroll? Are rising business expenses stressing you out? Let us help take this stress away &amp; give you some breathing room. Get a no obligation working capital quote in less than 2 minutes. USA Based Businesses Only! Get in touch with me below for more info Elizabeth Miller elizabeth.miller@helloratesfastfunding.com https://www.helloratesfastfunding.com'),(3250,814,'name_1','Greta Rae| | Rae'),(3251,814,'email_2','rae.greta86@gmail.com'),(3252,814,'text_3','Hi naplesirrigation.com Owner.'),(3253,814,'textarea_4','We are thrilled to introduce you to Minew, a leading provider of cutting-edge IoT hardware. At Minew, we excel in designing, developing, and delivering top-quality IoT devices that incorporate the latest technologies such as Bluetooth®LE, LoRa, LTE-M, NB-IoT, Wi-Fi, UWB, 4G, 5G, and more. Our extensive product line includes BLE sensors, personnel tags, asset trackers, Bluetooth® beacons, IoT gateways, and an array of upcoming innovations. These devices are designed to meet the needs of virtually any commercial and industrial setting. Beyond our exceptional hardware, we offer comprehensive customization services, including product engineering, rapid prototyping, flexible manufacturing, and regulatory compliance. Our commitment to quality and customer satisfaction sets us apart from other IoT manufacturers. For more details about our products and services, please visit our website at www.minew.com. If you have any questions or need personalized support, don\'t hesitate to reach out to us at info@minew.com. We look forward to the opportunity to work with you.'),(3254,815,'name_1','Kenneth| | Kenneth'),(3255,815,'email_2','magicmat@naplesirrigation.com'),(3256,815,'text_3','wonderful'),(3257,815,'textarea_4','Get The Worlds Greatest Magic Sand Free Beach Mat! Watch sand, dirt &amp; dust disappear right before your eyes! It\'s perfect for beach, picnic, camping or hiking. Act Now And Receive A Special Discount For Our Magic Mat! Get Yours Here: https://magicmats.co Best regards, Kenneth'),(3258,816,'name_1','Nelly Devore| | Devore'),(3259,816,'email_2','devore.nelly@msn.com'),(3260,816,'text_3','Hi naplesirrigation.com Webmaster!'),(3261,816,'textarea_4','Are you frustrated by the high prices for simple web work and website updates? Why pay $50+ per hour for web development work, when you can get higher quality results AT LESS THAN HALF THE COST? We are a FULL SERVICE, USA managed web development agency with wholesale pricing. No job too big or small. Test us out to see our value. Use the link in my signature, for a quick turn around quote. Kristine Avocet Senior Web Specialist Fusion Web Experts 186 Daniel Island Drive Daniel Island, SC 29492 www.fusionwebexperts.tech'),(3262,817,'name_1','Sam Madirazza| | Madirazza'),(3263,817,'email_2','societees223@outlook.com'),(3264,817,'text_3','Not sure if I\'ve got the right person here'),(3265,817,'textarea_4','Hey dude Do you remember me from school? I was always the loud one! Anyways, I\'m emailing because I set up a t-shirt store and I wanna give some samples out to friends and family and your email is on the list. I got lots of good stuff that we loved back in the day like ACDC, Def Leppard, Journey and ZZ. Check out the shop here and lemme know if you interested in a shirt - Check em out - https://buff.ly/3Y2mQvD Rock on Sam'),(3266,818,'name_1','Ronnie Mack| | Mack'),(3267,818,'email_2','ronnie.mack91@gmail.com'),(3268,818,'text_3','Dear naplesirrigation.com Administrator.'),(3269,818,'textarea_4','If you are reading this message, That means my marketing is working. I can make your ad message reach 5 million sites in the same manner for just $50. It\'s the most affordable way to market your business or services. Contact me by email virgo.t3@gmail.com or skype me at live:.cid.dbb061d1dcb9127a P.S: Speical Offer - Only for 2 days - 10 Million Sites for the same money $50'),(3270,819,'name_1','Patricia Onus| | Onus'),(3271,819,'email_2','patricia.onus@gmail.com'),(3272,819,'text_3','Hello naplesirrigation.com Admin!'),(3273,819,'textarea_4','The Vetted Business Directory June 2024 update is live. Your business is NOT INCLUDED because the verification email we sent was returned as undeliverable. This same email is also used by the platform for your local leads, so it\'s important for the integrity of the platform for consumers that want your services to be able to reach you. If the returned email was in error, see the link in my signature to update your listing email. Once remedied, you’ll reactivate all of the world class Vetted benefits: +A robust Vetted business profile that promotes trust, transparency &amp; credibility in your market +Powerful SEO for your business when you add your URL link in your profile. +Local leads from consumers that use our national platform to find Vetted Businesses by category Use the link in my signature to add/ update your Vetted business details, and realize the powerful benefits of being a Vetted business in your local market, your service category and your business specialty. Yours in trust &amp; transparency, Sarah McCormick Vetted Business Specialist 295 Seven Farms Drive Suite C-201 Charleston, SC 29492 sarah.mccormick@vettedpros.com https://vettedpros.com/1-2/?a=Get-Your-Business-Vetted!'),(3274,820,'name_1','Michele O\'Haran| | O\'Haran'),(3275,820,'email_2','michele.oharan@gmail.com'),(3276,820,'text_3','Hi naplesirrigation.com Webmaster!'),(3277,820,'textarea_4','Work From Home With This 100% FREE Training..., I Promise...You Will Never Look Back $500+ per day, TRUE -100% Free Training, go here: ezwayto1000aday.com'),(3278,821,'name_1','Ray Tennyson| | Tennyson'),(3279,821,'email_2','tennyson.ray@hotmail.com'),(3280,821,'text_3','Hello naplesirrigation.com Administrator.'),(3281,821,'textarea_4','Important: Your Vetted Business listing is no longer visible because the annual verification email that we sent, was returned to us as “undeliverable”. If the returned email was in error, you can add or update your email &amp; listing info using the link in my signature. Once remedied, you’ll reactivate your Vetted Directory benefits: +A robust Vetted business profile that promotes trust, transparency &amp; credibility in your market +Powerful SEO for your business when you add your URL link in your profile. +Local leads from consumers that use our national platform to find Vetted Businesses by category See link in my signature to add /update your Vetted business details, and get the powerful benefits of being a Vetted business in your local market, your service category and your business specialty. Yours in trust &amp; transparency, Sarah McCormick Vetted Business Specialist 295 Seven Farms Drive Suite C-201 Charleston, SC 29492 sarah.mccormick@vettedpros.com https://vettedpros.com/1-2/?a=Get-Your-Business-Vetted!'),(3282,822,'name_1','Sandra| | Reich'),(3283,822,'email_2','Sreich427@gmail.com'),(3284,822,'text_3','Sprinkler not working. Old system'),(3285,822,'textarea_4','Please call 239 241 2141. The sprinkler system is not working. Put in a new water pump but it did not help. Sandra Reich 238 Carica Rd Naples, FL 34108'),(3286,823,'name_1','Eli Rey| | Rey'),(3287,823,'email_2','eli.rey@gmail.com'),(3288,823,'text_3','Outstanding Support and Stunning Timepieces'),(3289,823,'textarea_4','Discover the premier buying journey at our store, where high-end watches meet elegance and accuracy. By opting for us, you\'ll enjoy: One-of-a-kind and exclusive watch designs that make you stand out Superior materials and craftsmanship for enduring durability Expert guidance from our experienced team to assist you in selecting the perfect timepiece Competitive rates and limited-time offers to match your spending plan Outstanding customer service and post-purchase assistance for your comfort A curated selection of luxury and affordable watches to fit every preference Don’t miss out on the chance to boost your style. Visit our store today and discover the watch that speaks to you. Click here to start your journey towards elegance and precision! ** Take a look at: https://bit.ly/huntwatches Unsubscribe here if you don\'t want to get these fantastic offers: https://bit.ly/removelist Binzmuhlestrasse 136, Salenstein, NA, Switzerland, 8268'),(3290,824,'name_1','Dee Dey| | Dey'),(3291,824,'email_2','dee.dey@hotmail.com'),(3292,824,'text_3','Hi naplesirrigation.com Owner!'),(3293,824,'textarea_4','Payroll, Insurance, inventory, marketing EXPENSES ……UGHH Want to remove the stress and get some breathing room? Get a no obligation working capital quote in less than 2 minutes. == Must Be A US Based Business To Qualify == Send me a message at my contact info below for info Elizabeth Miller elizabeth.miller@helloratesfastfunding.com https://www.helloratesfastfunding.com'),(3294,825,'name_1','Oman Duke| | Duke'),(3295,825,'email_2','cleo.duke68@gmail.com'),(3296,825,'text_3','Flexible Funding to Drive Your Business Forward'),(3297,825,'textarea_4','Hello, Securing the funding to drive growth and realize ideas is a major challenge for startups and established businesses alike. At Cateus Investment Company (CIC), we specialize in tailored financing solutions to meet these needs. We offer: Debt Financing: Competitive 3% annual interest rate with no early repayment penalties. Equity Financing: Venture capital funding with a 10% equity stake, providing essential resources for expansion while maintaining control. We are committed to providing flexible options to suit your specific requirements. Please share your pitch deck or executive summary so we can understand your business better and determine the best investment structure. Looking forward to discussing this further. Best regards, Oman Rook Executive Investment Consultant/Director Cateus Investment Company (CIC) 2401 AlMoayyed Tower, Seef District Manama, Kingdom of Bahrain Phone: +973-17-585338 Email: oman.rook@cateusgroup.org, cateusgroup@gmail.com Website: https://cateusinvestmentgroup.com'),(3298,826,'name_1','Dorothy Soares| | Soares'),(3299,826,'email_2','dorothy.soares@gmail.com'),(3300,826,'text_3','Hi naplesirrigation.com Admin!'),(3301,826,'textarea_4','Have you ever worried that you won’t make payroll? Are rising business expenses stressing you out? Let us help take this stress away &amp; give you some breathing room. Get a no obligation working capital quote in less than 2 minutes. USA Based Businesses Only! Send me a message at my contact info below for info Elizabeth Miller elizabeth.miller@helloratesfastfunding.com https://www.helloratesfastfunding.com'),(3302,827,'name_1','Margareta Ricardo| | Ricardo'),(3303,827,'email_2','ricardo.margareta20@hotmail.com'),(3304,827,'text_3','To the naplesirrigation.com Admin.'),(3305,827,'textarea_4','Running a business is not easy. Especially when the cost of nearly everything continues to skyrocket. Cut yourself a break from the stress of rising expenses with a working capital solution that will provide you the relief needed to get through these challenging times. Get a no obligation working capital quote in less than 2 minutes. ++ This Offer Only For Businesses In The USA ++ Contact me below for details Elizabeth Miller elizabeth.miller@helloratesfastfunding.com https://www.helloratesfastfunding.com'),(3306,828,'name_1','Josh Woodson| | Woodson'),(3307,828,'email_2','josh.woodson@outlook.com'),(3308,828,'text_3','Hi naplesirrigation.com Owner!'),(3309,828,'textarea_4','Unlock the power of magic with Extreme Spells! Whether you\'re seeking true love, financial success, or happiness, our experienced Circle of Eight, led by Master Sam Taylor and Psychic Master Lennox, is here to transform your life. Since 1993, we\'ve been casting potent spells tailored to your unique needs, helping countless individuals achieve their dreams. Discover spells to attract your perfect mate, rekindle lost love, draw wealth, and much more. Our spells are safe, effective, and backed by a 100% satisfaction guarantee. Plus, we offer free health spells to those in need because we believe in making positive changes accessible to everyone. Don\'t let life\'s challenges hold you back. Embrace the mystical power of Extreme Spells and take control of your destiny today. Visit https://extremespells.com/ to learn more and start your magical journey. Transform your life with the proven power of spell casting! Act Now! Click here to unlock love, wealth, and happiness with Extreme Spells. Your dream life is just a spell away!'),(3310,829,'name_1','Phil Stewart| | Stewart'),(3311,829,'email_2','noreplyhere@aol.com'),(3312,829,'text_3','??'),(3313,829,'textarea_4','Elevate Your Advertising: Ready to take your ad game to new heights? Imagine your message appearing in website contact forms worldwide, reaching heaps of potential customers! Starting at just under $100, our affordable packages pack a punch. Email me now to chat more about getting your brand out there! P. Stewart Email: fcvapw@gomail2.xyz Skype: form-blasting'),(3314,830,'name_1','Lonna Kortig| | Kortig'),(3315,830,'email_2','kortig.lonna@msn.com'),(3316,830,'text_3','To the naplesirrigation.com Webmaster!'),(3317,830,'textarea_4','Hi there, I apologize for using your contact form, but I wasn\'t sure who the right person was to speak with in your company. We have a patented application that creates Local Area pages that rank on top of Google within weeks, we call it Local Magic. Here is a link to the product page https://www.mrmarketingres.com/local-magic/ . The product leverages technology where these pages are managed dynamically by AI and it is ideal for promoting any type of business that gets customers from Google. Can I share a testimonial from one of our clients in the same industry? I\'d prefer to do a short zoom to illustrate their full case study if you have time for it? You can reach me at marketing@mrmarketingres.com or 843-720-7301. And if this isn\'t a fit please feel free to email me and I\'ll be sure not to reach out again. Thanks!'),(3318,831,'name_1','Alejandra| | Alejandra'),(3319,831,'email_2','naplesirrigation.com@live.com'),(3320,831,'text_3','Best Lawn Irrigation Service contact 239-793-775 Naples FL'),(3321,831,'textarea_4','Hey there I wanted to reach out and let you know about our new dog harness. It\'s really easy to put on and take off - in just 2 seconds - and it\'s personalized for each dog. Plus, we offer a lifetime warranty so you can be sure your pet is always safe and stylish. We\'ve had a lot of success with it so far and I think your dog would love it. Get yours today with 50% OFF: https://caredogbest.com FREE Shipping - TODAY ONLY! Best Wishes, Alejandra'),(3322,832,'name_1','Kellye Lindgren| | Lindgren'),(3323,832,'email_2','lindgren.kellye@gmail.com'),(3324,832,'text_3','Don’t Risk $10,000 Fines – File Your BOI Report Today!'),(3325,832,'textarea_4','97% of U.S. businesses must now file a Beneficial Ownership Information (BOI) report under the Corporate Transparency Act of 2021. Failure to comply can result in fines of $591 per day, civil lawsuits, and jail time once fines hit $10,000. Compliance is enforced by the U.S. Treasury’s Financial Crime Enforcement Network (FinCEN). Who Must File? * Companies created before January 1, 2024, must file by year-end. * Companies created in 2024 have 90 days from formation to file. Don\'t risk severe penalties. Act now and let us help you file this critical report quickly and accurately for less than the cost of a nice dinner out. Ensure your business stays compliant by clicking here https://t.ly/pLOVx'),(3326,833,'name_1','Edna Hsu| | Hsu'),(3327,833,'email_2','hsu.edna@msn.com'),(3328,833,'text_3','To the naplesirrigation.com Webmaster!'),(3329,833,'textarea_4','People + Processes + Working Capital = The Recipe for Business Success But most small business owners put little thought into the capital needed to scale and grow their business. If you have the people &amp; the business processes in place but no working capital, then your business will be stuck in neutral. Get a no obligation working capital quote in less than 2 minutes. == Must Be A US Based Business To Qualify == Send me a message at my contact info below for info Elizabeth Miller elizabeth.miller@helloratesfastfunding.com https://www.helloratesfastfunding.com'),(3330,834,'name_1','Andres Krome| | Krome'),(3331,834,'email_2','krome.andres8@gmail.com'),(3332,834,'text_3','Dear naplesirrigation.com Webmaster!'),(3333,834,'textarea_4','How would you like a surefire way to dominate your local market &amp; win more sales from your competition? Getting Vetted is a powerful sales multiplier that helps you close 60 % more deals. That’s a game changer. Vetted also provides great SEO &amp; FREE local leads Start your 30 Day FREE trial &amp; see the results for yourself. USA Businesses Only Sarah McCormick Vetted Business Specialist 295 Seven Farms Drive Suite C-201 Charleston, SC 29492 sarah.mccormick@vettedpros.com https://vettedpros.com/1-2/?a=Are-You-Ready-To-Dominate-Your-Local-Market?'),(3334,835,'name_1','Tabitha Reynolds| | Reynolds'),(3335,835,'email_2','reynolds.tabitha@outlook.com'),(3336,835,'text_3','Hi naplesirrigation.com Administrator!'),(3337,835,'textarea_4','Are you concerned that your current website that was built a few years back,is no longer a good representation of your company ? Why pay $50+ per hour for web development work, when you can get higher quality results AT LESS THAN HALF THE COST? We are a FULL SERVICE, USA managed web development agency offering wholesale pricing. No job too big or small. Test us out to see our value. Use the link in my signature, for a quick turn around quote. Kristine Avocet Senior Web Specialist Fusion Web Experts 186 Daniel Island Drive Daniel Island, SC 29492 www.fusionwebexperts.tech'),(3338,836,'name_1','Joanna Riggs| | Riggs'),(3339,836,'email_2','joannariggs278@gmail.com'),(3340,836,'text_3','Explainer Video for naplesirrigation.com?'),(3341,836,'textarea_4','Hi, I just visited naplesirrigation.com and wondered if you\'d ever thought about having an engaging video to explain what you do? Our prices start from just $195. We have produced over 500 videos to date and work with both non-animated and animated formats: Non-animated example: https://www.youtube.com/watch?v=bA2DyChM4Oc Animated example: https://www.youtube.com/watch?v=JG33_MgGjfc Let me know if you\'re interested in learning more and/or have any questions. Regards, Joanna Unsubscribe: https://removeme.click/ev/unsubscribe.php?d=naplesirrigation.com'),(3342,837,'name_1','Felicity Sauncho| | Sauncho'),(3343,837,'email_2','felicitysauncho@outlook.com'),(3344,837,'text_3','Youtube Promotion: Grow your subscribers by 700 each month'),(3345,837,'textarea_4','Hi there, We run a YouTube growth service, which increases your number of subscribers both safely and practically. We go beyond just subscriber numbers. We focus on attracting viewers genuinely interested in your niche, leading to long-term engagement with your content. Our approach leverages optimization, community building, and content promotion for sustainable growth, not quick fixes. Additionally, a dedicated team analyzes your channel and creates a personalized plan to unlock your full potential, all without relying on bots. Our packages start from just $60 (USD) per month. Would this be of interest? Kind Regards, Felicity Unsubscribe: https://removeme.click/yt/unsubscribe.php?d=naplesirrigation.com'),(3346,838,'name_1','Fab Aubry| | Aubry'),(3347,838,'email_2','morrismi1@outlook.com'),(3348,838,'text_3','Hello naplesirrigation.com Owner!'),(3349,838,'textarea_4','Hi there! Are you looking to maximize the impact of your YouTube videos? Introducing YTCopyCat, our innovative SaaS tool that converts your YouTube videos into various high-quality written content using advanced AI. What Can Our Tool Do for You? Blog Articles: Turn your videos into blog posts. Newsletters: Generate captivating newsletters effortlessly. Video Summaries: Create concise summaries. Tweets: Produce engaging tweets. Custom Content: Use personalized prompts for specific needs. How It Works: Paste your YouTube video link. Our AI analyzes and extracts key content. Choose your desired format. In just a few clicks, you’ll have top-notch content ready to publish or share. Save time and boost productivity with automated content creation. Why Choose YTCopyCat? Time-Saving: Automate your content creation. Versatile: Generate multiple content types from one video. High Quality: Enjoy superior content with advanced AI. Special Offer: Try YTCopyCat for free and revolutionize your content strategy. Visit https://ytcopycat.com to learn more and start your free trial today. Don’t miss this chance to enhance your content creation! Cheers, Fabien contact@ytcopycat.com'),(3350,839,'name_1','Claudio Tibbetts| | Tibbetts'),(3351,839,'email_2','tibbetts.claudio@msn.com'),(3352,839,'text_3','To the naplesirrigation.com Owner!'),(3353,839,'textarea_4','Payroll, Insurance, inventory, marketing EXPENSES ……UGHH Want to remove the stress and get some breathing room? Get a no obligation working capital quote in less than 2 minutes. ++ This Offer Only For Businesses In The USA ++ Contact me below for details Elizabeth Miller elizabeth.miller@helloratesfastfunding.com https://www.helloratesfastfunding.com'),(3354,840,'name_1','Athena O\'Bryan| | O\'Bryan'),(3355,840,'email_2','morrismi1@outlook.com'),(3356,840,'text_3','Hi naplesirrigation.com Webmaster!'),(3357,840,'textarea_4','Dear naplesirrigation.com owner or manager, Cut your business or personal credit cards and loan payments in half. eliminate interest and reduce your debt by 50%. 100% guaranteed. The average customer saves $56,228 in unnecessary interest plus principal and 15 years in payoff time through our consolidation loan and debt consolidation programs. Contact us at usdebtrelief.biz or email me at usdebt12@gmail.com I look forward to hearing from you, Rey'),(3358,841,'name_1','Cory Schofield| | Schofield'),(3359,841,'email_2','schofield.cory@gmail.com'),(3360,841,'text_3','Dear naplesirrigation.com Admin.'),(3361,841,'textarea_4','You have built a highly reputable business that values trustworthiness, integrity &amp; professionalism. But this means nothing if you don\'t have a way to PROVE this to the shoppers &amp; sales prospects Vetted Business Credential Reports are the definitive way to prove and one- click share with prospects: + Business license, insurance &amp; bond + Business &amp; professional certifications &amp; accreditations + Industry, local &amp; trade awards Get Vetted and stack the deck in your favor to win the sale Start your 30 Day FREE trial &amp; see the results for yourself. USA Businesses Only Sarah McCormick Vetted Business Specialist 295 Seven Farms Drive Suite C-201 Charleston, SC 29492 sarah.mccormick@vettedpros.com https://vettedpros.com/1-2/?a=Are-You-Ready-To-Dominate-Your-Local-Market?'),(3362,842,'name_1','Uta Pomeroy| | Pomeroy'),(3363,842,'email_2','pomeroy.uta@gmail.com'),(3364,842,'text_3','Meet Robin A.I.: Your All-in-One Virtual Assistant'),(3365,842,'textarea_4','Hi there, We would like to introduce to you Robin AI, the world\'s first app that replaces your entire team with an AI assistant. This powerful tool generates human-like content, creates stunning designs, drives unlimited traffic, and more. Generate Human-Like Content Builds Professional Funnels Drive Thousands Of Clicks Only $17.00 (normally $180) Check out the features of Robin AI here: https://furtherinfo.org/robinai Thanks for your time, Uta'),(3366,843,'name_1','Zain| | Murt'),(3367,843,'email_2','projectsexpert222@outlook.com'),(3368,843,'text_3','Personal Assistant'),(3369,843,'textarea_4','Hi, Are you in need of a personal assistant to streamline your daily business operations and simplify your life? I’m Zain Murt, and I can assist with administrative tasks, marketing, email management, website management, social media, content creation, project planning, bookkeeping, software training, and back-office support. If you’re interested, please send an email to projectsexpert222@outlook.com with the tasks you need help with, and I\'ll handle the rest. Best regards,   Zain Murt'),(3370,844,'name_1','Phyllis Brunskill| | Brunskill'),(3371,844,'email_2','morrismi1@outlook.com'),(3372,844,'text_3','Hello naplesirrigation.com Administrator!'),(3373,844,'textarea_4','My name is Ahmet. I\'m a bank staff in a Turkish bank. I\'ve been looking for someone who has the same nationality as you. A citizen of your country died in the recent earthquake in Turkey, he had in our bank fixed deposit of $11.5 million. My Bank management is yet to know of his death. If my bank executive finds out about his death ,They would use the funds for themselves and get richer and I would like to prevent that from happening only if I get your cooperation, I knew about it because I was his account manager. Last week my bank management held a meeting for the purpose of a bank audit to note the dormant and abandoned deposit accounts. I know this will happen and that\'s why I\'m looking for a solution to deal with this situation because if my bank discovers his death, they will divert the funds to the board of directors. I don\'t want that to happen. I request your cooperation to introduce you as the kin/heir of the account as you are of the same nationality as him. There is no risk; the transaction is carried out under a legal agreement that protects you from infringement. I suggest we split the funds, 60/40 and 40 for me. I need this fund for my daughter\'s surgery so keep this info confidential. email me so i can provide you with more info reachahmet@proton.me'),(3374,845,'name_1','Celina Mincey| | Mincey'),(3375,845,'email_2','celina.mincey@outlook.com'),(3376,845,'text_3','Dear naplesirrigation.com Webmaster!'),(3377,845,'textarea_4','The Vetted Business Directory June 2024 update is live. Your business is NOT INCLUDED because the verification email we sent was returned as undeliverable. This same email is also used by the platform for your local leads, so it\'s important for the integrity of the platform for consumers that want your services to be able to reach you. If the returned email was in error, see the link in my signature to update your listing email. Once remedied, you’ll reactivate all of the world class Vetted benefits: +A robust Vetted business profile that promotes trust, transparency &amp; credibility in your market +Powerful SEO for your business when you add your URL link in your profile. +Local leads from consumers that use our national platform to find Vetted Businesses by category Use the link in my signature to add/ update your Vetted business details, and realize the powerful benefits of being a Vetted business in your local market, your service category and your business specialty. Yours in trust &amp; transparency, Sarah McCormick Vetted Business Specialist 295 Seven Farms Drive Suite C-201 Charleston, SC 29492 sarah.mccormick@vettedpros.com https://vettedpros.com/1-2/?a=Get-Your-Business-Vetted!'),(3378,846,'name_1','Luckey| | Rao'),(3379,846,'email_2','webdesignservices111@outlook.com'),(3380,846,'text_3','Website designer and developer'),(3381,846,'textarea_4','Hi, This is Lucky, a website designer and developer. In 17 years of my career, I have worked on broad spectrum of technologies like PHP, WordPress, Codeigniter, Laravel, Opencart, Prestashop, Wix, Html, CSS, JavaScript, Drupal, Shopify, magento. I can help you in creating a new page, new design, resolving issues, upgrading website to latest version, making mobile responsive website, developing new functionality, 3D Model Integration, changing any existing functionality, API integration, Payment gateway or shipping functionality related work, Third-party apps integration in website, monthly maintenance, plugin or theme related work, improving design of all pages or uploading content. I have a couple of team members to assist me on projects. Let\'s chat on webdesignservices111@outlook.com with your requirement and I can share pricing and portfolio.'),(3382,847,'name_1','Jay Counsel| | Counsel'),(3383,847,'email_2','counsel.jay@yahoo.com'),(3384,847,'text_3','To the naplesirrigation.com Admin.'),(3385,847,'textarea_4','Rising business expenses are taking a toll on small business owners. You are not alone. It\'s affecting every industry. One way to give yourself some breathing room is to obtain enough working capital to bridge you through the tough times. Get a no obligation working capital quote in less than 2 minutes. USA Based Businesses Only! Get in touch with me below for more info Elizabeth Miller elizabeth.miller@helloratesfastfunding.com https://www.helloratesfastfunding.com'),(3386,848,'name_1','David Pagan| | Pagan'),(3387,848,'email_2','pagan.peter@gmail.com'),(3388,848,'text_3','Hello naplesirrigation.com Webmaster!'),(3389,848,'textarea_4','Hello , Do you suffer with anxiety or PTSD, or have a history that involved being abused? Or do you know someone who suffers? Do you have employees or family members who need help? These emotions can be totally resolved with EMDR self-help at: Se-REM.com. Many people don\'t know that REM brain activity dramatically improves the processing of traumatic emotion. It creates peace and empowers the listener. Se-REM is an advanced version of EMDR therapy. It is more powerful because it combines elements of 6 different therapies, EMDR, hypnosis, mindfulness, Gestalt child within work, music therapy, and Awe therapy, (connecting profoundly with nature). It has helped thousands of people overcome PTSD, and anxiety. But it is also helpful in a great many situations, loss of any kind, grief, and even marital counseling. Se-REM\'s mission statement is \"Trauma relief at as close to free as possible\". This not-for-profit program downloads to a smart phone or computer and can be used in an office or at home. Therapists use this program to aid their clients in making rapid progress. Read about it, hear samples, and download at: Se-REM.com. Once you own the program, you are encouraged to give it away to others who will benefit. I provide free consultation to all who use the program. Write questions to: davidb@se-rem.com. Se-REM.com has a 95% rating on Trustpilot. It is in use in 33 countries. No subscriptions asked for. This email is a one-time occurrence. I wish you well, David B., LCSW (retired trauma therapist). P.S: You may wish to save this email for future reference. This announcement is a public service for a not-for-profit program that has saved and restored lives shattered by abuse and trauma.'),(3390,849,'name_1','Amber Everett| | Everett'),(3391,849,'email_2','amber.everett@msn.com'),(3392,849,'text_3','$100 Credit – Begin with Cloudways Autonomous for Free'),(3393,849,'textarea_4','Tired with your website being sluggish and experiencing downtime now and then? Switch to Cloudways Autonomous... Easy, Robust, Dependable &amp; Autoscaling WordPress Hosting! Get a hosting solution with minimal setup, one-click management, and constant uptime. Host your website and concentrate on growing your business, while Autonomous handles it all! - Hands-off Experience - Automatically Scales - High Availability - Try Free With A $100 Credit Tap into the power of your website today: https://bit.ly/3WEGGef You can unsubscribe by filling the form: https://bit.ly/removefrmlist Langgatan 28, Habo, NA, Sweden, 566 00'),(3394,850,'name_1','Daniel Sanderson| | Sanderson'),(3395,850,'email_2','planksip.dot.org@gmail.com'),(3396,850,'text_3','Are you interested? I am a trendsetting consultant, and I would love to work with your firm ...'),(3397,850,'textarea_4','I am not an engineer or architect, but I\'ve been in the AEC industry for a long time. I have a well-reasoned offer for you to consider, which involves my media outlet creating regular content and promoting it on LinkedIn. I am considering moving to a donation model because it allows us to work together and build trust. What do you think? Once we begin to work together, I am sure that the scope of my work for you will increase; I am saying this based on experience and a history of happy clients. Here\'s my article on the CEO world, called \"Trendsetting Architectural Consultant,\" https://planksip.me/CEO Here are two example articles (with a video explaining a new seismic anchor for building facades) that I\'d love to share; Example #1: https://planksip.me/ex1 Example #2: https://planksip.me/ex2 Or BAUCO, a happy client that supplies mechanical and electrical \"virtually invisible\" drywall access panels. Here is a link to their website: https://bauco.com. Please let me know your feedback or willingness to explore working together. Thank you for your time and consideration, Daniel Sanderson Cell; 778-838-2531'),(3398,851,'name_1','Hershel Eklund| | Eklund'),(3399,851,'email_2','eklund.hershel@gmail.com'),(3400,851,'text_3','Hello naplesirrigation.com Admin.'),(3401,851,'textarea_4','Are you still looking at getting your website done/ completed? Contact e.solus@gmail.com'),(3402,852,'name_1','Albertina| | Albertina'),(3403,852,'email_2','info@googe.pawsafer.net'),(3404,852,'text_3','Albertina Googe'),(3405,852,'textarea_4','Hello Is your dog\'s nails getting too long? If you\'re tired of going to the vet or groomer to get them trimmed, why not try PawSafer™? With PawSafer™, you can trim your dog\'s nails from the comfort of your own home, and it only takes a few minutes! PawSafer™ is the safest and most convenient way to trim your dog\'s nails, and it\'s very affordable. Get it while it\'s still 50% OFF + FREE Shipping Buy here: https://pawsafer.net Kind Regards, Albertina'),(3406,853,'name_1','Phil Stewart| | Stewart'),(3407,853,'email_2','noreplyhere@aol.com'),(3408,853,'text_3','??'),(3409,853,'textarea_4','Hey, want your ad to reach millions of contact forms? Just like you\'re reading this message, others can read yours too. Visit my site below for details. http://qu9mru.contactformmarketing.xyz'),(3410,854,'name_1','Kindra Martel| | Martel'),(3411,854,'email_2','martel.kindra@gmail.com'),(3412,854,'text_3','Road ragers are a$$holes – catch them in the act'),(3413,854,'textarea_4','You ever worry about those unexpected incidents on the road? I picked up this HGDO Rear View Mirror Recorder, and it’s been a game changer. It\'s a dash cam that records everything in FHD 1080P, so if anything happens, you’ve got clear evidence. Plus, it’s got this anti-glare feature, which makes driving at night way easier. I\'ve read that having a dash cam can save you around $400 on insurance premiums and claims each year. And if you get into an accident, it can potentially save you thousands in legal fees and repairs. It\'s like having a little insurance policy that keeps recording everything. Honestly, for the peace of mind it gives, it\'s worth every penny. This one was one of my top picks by far https://cutt.ly/PexvqAUT - Finally -'),(3414,855,'name_1','Sam Nyholm| | Nyholm'),(3415,855,'email_2','societees223@outlook.com'),(3416,855,'text_3','Do you remember me from school?'),(3417,855,'textarea_4','Hey dude Do you remember me from school? I was always the loud one! Anyways, I\'m emailing because I set up a t-shirt store and I wanna give some samples out to friends and family and your email is on the list. I got lots of good stuff that we loved back in the day like ACDC, Def Leppard, Journey and ZZ. Check out the shop here and lemme know if you interested in a shirt - Check em out - https://buff.ly/3Y2mQvD Rock on Sam'),(3418,856,'name_1','Nereida Langler| | Langler'),(3419,856,'email_2','nereida.langler97@gmail.com'),(3420,856,'text_3','Dear naplesirrigation.com Administrator.'),(3421,856,'textarea_4','Hi there, I apologize for using your contact form, but I wasn\'t sure who the right person was to speak with in your company. We have a patented application that creates Local Area pages that rank on top of Google within weeks, we call it Local Magic. Here is a link to the product page https://www.mrmarketingres.com/local-magic/ . The product leverages technology where these pages are managed dynamically by AI and it is ideal for promoting any type of business that gets customers from Google. Can I share a testimonial from one of our clients in the same industry? I\'d prefer to do a short zoom to illustrate their full case study if you have time for it? You can reach me at marketing@mrmarketingres.com or 843-720-7301. And if this isn\'t a fit please feel free to email me and I\'ll be sure not to reach out again. Thanks!'),(3422,857,'name_1','Vida Wagstaff| | Wagstaff'),(3423,857,'email_2','wagstaff.vida@gmail.com'),(3424,857,'text_3','To the naplesirrigation.com Administrator.'),(3425,857,'textarea_4','Are you struggling to get your website updated to the way you need it ? Tired of paying $50+ per hour just for a few tweaks? We are a FULL SERVICE, USA managed web development agency with wholesale pricing. No job too big or small. Test us out to see our value. Use the link in my signature, for a quick turn around quote. Kristine Avocet Senior Web Specialist Fusion Web Experts 186 Daniel Island Drive Daniel Island, SC 29492 www.fusionwebexperts.tech'),(3426,858,'name_1','Arin| | Roy'),(3427,858,'email_2','bizassistance008@outlook.com'),(3428,858,'text_3','Data entry services'),(3429,858,'textarea_4','Hello, My name is Arin Roy. I provide data entry services at USD 9/hour. I can work as per instructions and follow step-by-step instructions. If you are interested, Please share your requirements at bizassistance008@outlook.com and we can take a video call.'),(3430,859,'name_1','Rosa Ernest| | Ernest'),(3431,859,'email_2','ernest.rosa@gmail.com'),(3432,859,'text_3','Hi naplesirrigation.com Admin!'),(3433,859,'textarea_4','Payroll, Insurance, inventory, marketing EXPENSES ……UGHH Want to remove the stress and get some breathing room? Get a no obligation working capital quote in less than 2 minutes. USA Based Businesses Only! Get in touch with me below for more info Elizabeth Miller elizabeth.miller@helloratesfastfunding.com https://www.helloratesfastfunding.com'),(3434,860,'name_1','Cyrus Gosse| | Gosse'),(3435,860,'email_2','gosse.cyrus41@gmail.com'),(3436,860,'text_3','Elevate Your Business with M.I.H Marketing Agency'),(3437,860,'textarea_4','Hello, I hope this email finds you well. We are reaching out to introduce M.I.H Marketing Agency, the ideal partner for elevating your brand. Our expertise in innovative strategies, tailored campaigns, and data-driven results sets us apart. By partnering with us, we can enhance your brand with the use of: • Software development • AI development • App development • Website development • Cyber security • Virtual private servers • SEO, SMO, SEM, SERP • Digital design • Social media marketing • International law and accouting • Clothing design and supply • White label writers • White label courses If the service that you are looking for is not listed please reach out to us,as this list does not include all of the services we provide. Ready to take your marketing to the next level? Let\'s schedule a zoom meeting to discuss how M.I.H can drive your business forward. Best regards, M.I.H Marketing Agency marketingagency.mih@gmail.com'),(3438,861,'name_1','Madge Dunkel| | Dunkel'),(3439,861,'email_2','dunkel.madge2@gmail.com'),(3440,861,'text_3','To the naplesirrigation.com Admin.'),(3441,861,'textarea_4','If you are reading this message, That means my marketing is working. I can make your ad message reach 5 million sites in the same manner for just $50. It\'s the most affordable way to market your business or services. Contact me by email virgo.t3@gmail.com or skype me at live:.cid.dbb061d1dcb9127a P.S: Speical Offer - ONLY for 24 hours - 10 Million Sites for the same money $50'),(3442,862,'name_1','Johnny Keynes| | Keynes'),(3443,862,'email_2','keynes.johnny@gmail.com'),(3444,862,'text_3','Meet Robin A.I.: Your All-in-One Virtual Assistant'),(3445,862,'textarea_4','Hi there, We would like to introduce to you Robin AI, the world\'s first app that replaces your entire team with an AI assistant. This powerful tool generates human-like content, creates stunning designs, drives unlimited traffic, and more. Generate Human-Like Content Builds Professional Funnels Drive Thousands Of Clicks Only $17.00 (normally $180) Check out the features of Robin AI here: https://furtherinfo.org/robinai Thanks for your time, Johnny'),(3446,863,'name_1','Janna Lavarack| | Lavarack'),(3447,863,'email_2','janna.lavarack@hotmail.com'),(3448,863,'text_3','See How We Generate Exclusive Leads'),(3449,863,'textarea_4','### Non-Shared Leads - Witness This System Work Picture obtaining non-shared, exclusive leads directly from major search engines, designed for your needs. Our system removes the hassle of bidding wars and budget constraints, guaranteeing you acquire customers locally who are searching for your expertise. All competition eliminated, you\'ll see quick outcomes. Don\'t just believe us – ** book a live demo ** right away and experience the fantastic benefits our clients are loving. Discover more here: https://bit.ly/roofingb2b Seize this chance to leverage your lead generation! Unsubscribe here if you don\'t want to get these awesome messages: hortzs.teven@gmail.com Rua Recife 484, Niagara Falls, NY, USA, 36039-100'),(3450,864,'name_1','Tamie Hagan| | Hagan'),(3451,864,'email_2','tamie.hagan47@gmail.com'),(3452,864,'text_3','To the naplesirrigation.com Admin!'),(3453,864,'textarea_4','Payroll, Insurance, inventory, marketing EXPENSES ……UGHH Want to remove the stress and get some breathing room? Get a no obligation working capital quote in less than 2 minutes. == Must Be A US Based Business To Qualify == Get in touch with me below for more info Elizabeth Miller elizabeth.miller@helloratesfastfunding.com https://www.helloratesfastfunding.com'),(3454,865,'name_1','Penny Lynn| | Lynn'),(3455,865,'email_2','lynn.penny80@hotmail.com'),(3456,865,'text_3','Dear naplesirrigation.com Owner!'),(3457,865,'textarea_4','Hi, Are you looking for a quick and hassle-free business loan? We offer a variety of options to suit your needs, including Expansion loans, startup loans, heavy equipment loans, home loans, real estate development loans, construction loans, working capital loans, bridge loans, inventory financing, merchant cash advances, and franchise financing. Get the funding you need to achieve your goals with ease. Apply now at www.fundcrownsltd.com/apply-now or email at Loan@fundcrownsltd.com Best regards. Dylan Pham'),(3458,866,'name_1','Amelia Brown| | Brown'),(3459,866,'email_2','ameliabrown12784@gmail.com'),(3460,866,'text_3','YouTube Promotion: Grow your subscribers by 700-1500 each month'),(3461,866,'textarea_4','Hi there, We run a Youtube growth service, where we can increase your subscriber count safely and practically. - Guaranteed: We guarantee to gain you 700-1500 new subscribers each month. - Real, human subscribers who subscribe because they are interested in your channel/videos. - Safe: All actions are done, without using any automated tasks / bots. Our price is just $60 (USD) per month and we can start immediately. If you are interested then we can discuss further. Kind Regards, Amelia'),(3462,867,'name_1','Esteban Hinchcliffe| | Hinchcliffe'),(3463,867,'email_2','esteban.hinchcliffe@outlook.com'),(3464,867,'text_3','Hello naplesirrigation.com Owner!'),(3465,867,'textarea_4','bills are crazy expensive ? Celebrities never pay retail, and you shouldn’t either! Take our quick quiz to learn how to cut your mobile bill down to just $20. ? Take the survey and win an IPhone 16 before it’s released!!! https://mailchi.mp/roccstarwireless/enter-for-your-chance-to-win-i-phone-16'),(3466,868,'name_1','Doug Pettis| | Pettis'),(3467,868,'email_2','morrismi1@outlook.com'),(3468,868,'text_3','Hi naplesirrigation.com Webmaster.'),(3469,868,'textarea_4','My name is Ahmet. I\'m a bank staff in a Turkish bank. I\'ve been looking for someone who has the same nationality as you. A citizen of your country died in the recent earthquake in Turkey, he had in our bank fixed deposit of $11.5 million. My Bank management is yet to know of his death. If my bank executive finds out about his death ,They would use the funds for themselves and get richer and I would like to prevent that from happening only if I get your cooperation, I knew about it because I was his account manager. Last week my bank management held a meeting for the purpose of a bank audit to note the dormant and abandoned deposit accounts. I know this will happen and that\'s why I\'m looking for a solution to deal with this situation because if my bank discovers his death, they will divert the funds to the board of directors. I don\'t want that to happen. I request your cooperation to introduce you as the kin/heir of the account as you are of the same nationality as him. There is no risk; the transaction is carried out under a legal agreement that protects you from infringement. I suggest we split the funds, 60/40 and 40 for me. I need this fund for my daughter\'s surgery so keep this info confidential. email me on my NEW EMAIL ID so i can provide you with more info: ahmetmain@outlook.com'),(3470,869,'name_1','Rodney Brack| | Brack'),(3471,869,'email_2','rodney.brack@gmail.com'),(3472,869,'text_3','To the naplesirrigation.com Admin.'),(3473,869,'textarea_4','Have you ever worried that you won’t make payroll? Are rising business expenses stressing you out? Let us help take this stress away &amp; give you some breathing room. Get a no obligation working capital quote in less than 2 minutes. ++ This Offer Only For Businesses In The USA ++ Contact me below for details Elizabeth Miller elizabeth.miller@helloratesfastfunding.com https://www.helloratesfastfunding.com'),(3474,870,'name_1','Audry Juarez| | Juarez'),(3475,870,'email_2','juarez.audry@msn.com'),(3476,870,'text_3','To the naplesirrigation.com Owner!'),(3477,870,'textarea_4','The Vetted Business Directory June 2024 update is live. Your business is NOT INCLUDED because the verification email we sent was returned as undeliverable. This same email is also used by the platform for your local leads, so it\'s important for the integrity of the platform for consumers that want your services to be able to reach you. If the returned email was in error, see the link in my signature to update your listing email. Once remedied, you’ll reactivate all of the world class Vetted benefits: +A robust Vetted business profile that promotes trust, transparency &amp; credibility in your market +Powerful SEO for your business when you add your URL link in your profile. +Local leads from consumers that use our national platform to find Vetted Businesses by category Use the link in my signature to add/ update your Vetted business details, and realize the powerful benefits of being a Vetted business in your local market, your service category and your business specialty. Yours in trust &amp; transparency, Sarah McCormick Vetted Business Specialist 295 Seven Farms Drive Suite C-201 Charleston, SC 29492 sarah.mccormick@vettedpros.com https://vettedpros.com/1-2/?a=Get-Your-Business-Vetted!'),(3478,871,'name_1','Carlo Tyree| | Tyree'),(3479,871,'email_2','tyree.kristina@gmail.com'),(3480,871,'text_3','Dear naplesirrigation.com Webmaster!'),(3481,871,'textarea_4','Reversed Chakra bursts onto the indie music scene with \"Game of Chess,\" a track that entertains and invites listeners into a profound exploration of spiritual energy through music. This band stands out by challenging conventional norms, even embracing a philosophy that turns traditional spiritual energy flows on their head. The single showcases Reversed Chakra\'s talent for crafting a rich sonic landscape, blending introspective indie rock with the moody allure of new wave and the expansive soundscapes of post-rock. This ambitious fusion creates a song that feels both familiar and refreshingly unique. Produced by Paul Reeve (Muse), mixed by John Fryer (Depeche Mode, Nine Inch Nails, HIM), and mastered by Richard Dodd (Kings Of Leon), the single has reached 2.1 million streams in less than a month. We can easily shout that we are witnessing the rise of a new sensation in indie rock! Enjoy the video: https://www.youtube.com/watch?v=0Dw1T5TDecc Visit the band\'s website: www.reversedchakra.com'),(3482,872,'name_1','Sheldon| | Sheldon'),(3483,872,'email_2','info@holler.medicopostura.com'),(3484,872,'text_3','Flash. Sale. Alert.'),(3485,872,'textarea_4','Good day Looking to improve your posture and live a healthier life? Our Medico Postura™ Body Posture Corrector is here to help! Experience instant posture improvement with Medico Postura™. This easy-to-use device can be worn anywhere, anytime – at home, work, or even while you sleep. Made from lightweight, breathable fabric, it ensures comfort all day long. Grab it today at a fantastic 60% OFF: https://medicopostura.com Plus, enjoy FREE shipping for today only! Don\'t miss out on this amazing deal. Get yours now and start transforming your posture! Cheers, Sheldon'),(3486,873,'name_1','Peter| | A.'),(3487,873,'email_2','peter.a@grafixar.com'),(3488,873,'text_3','Are you still open?'),(3489,873,'textarea_4','Hi, I hope this email finds you well. I recently came across your website naplesirrigation.com and noticed areas for improvement like broken links, errors, and certain design elements. Given the positive reviews your business has received, I took the initiative to design a new version of your website. I\'d love to show you the first draft, which is ready for your review. I believe it will significantly enhance your online presence and address the current issues. I want to be upfront about pricing. The cost for the complete website redesign is $1500 for an unlimited number of pages. If you need e-commerce functionality, the price is $2300. These are reduced rates from my usual minimum of $4000, offering you substantial savings. This includes everything from A to Z: the design and development, hosting, maintenance, and support for a full year. You won\'t have to worry about a thing - I\'ll handle all the technical aspects so you can focus on your business. Are you interested in seeing the new design? If not, no worries - just let me know and I can discard it. Best regards, Peter A. https://grafixar.com peter.a@grafixar.com'),(3490,874,'name_1','Amelia Brown| | Brown'),(3491,874,'email_2','ameliabrown12784@gmail.com'),(3492,874,'text_3','YouTube Promotion: 700-1500 new subscribers each month'),(3493,874,'textarea_4','Hi there, We run a YouTube growth service, which increases your number of subscribers both safely and practically. - We guarantee to gain you 700-1500+ subscribers per month. - People subscribe because they are interested in your channel/videos, increasing likes, comments and interaction. - All actions are made manually by our team. We do not use any \'bots\'. The price is just $60 (USD) per month, and we can start immediately. If you have any questions, let me know, and we can discuss further. Kind Regards, Amelia'),(3494,875,'name_1','Gisele Larue| | Larue'),(3495,875,'email_2','larue.gisele@gmail.com'),(3496,875,'text_3','Dear naplesirrigation.com Owner.'),(3497,875,'textarea_4','Advantages of hiring a Developer: Specialized Expertise Tailored Customization and Control Time and Cost Efficiency Custom Plugin Development SEO Optimization Ongoing Support and Maintenance Seamless Integration and Migration Scalability for Business Growth Hire a web developer now from us. Contact us at https://wpexpertspro.co/website/?site=naplesirrigation.com'),(3498,876,'name_1','Rudolph Chin| | Chin'),(3499,876,'email_2','chin.rudolph72@gmail.com'),(3500,876,'text_3','Wireless Projection with the Epson 4000-Lumen Projector'),(3501,876,'textarea_4','Get the 4000 Lumen Epson Projector at $649 -- https://bit.ly/PowerLite-1288 - Epson US and Amazon is selling it at $850 - 3 years warranty Enjoy effortless wireless presentations with the Epson PowerLite 1288 Full HD 3LCD Projector with 4000 Lumens. With built-in Wi-Fi and Miracast support, you can project wirelessly in any meeting room. See vibrant, high-resolution images with 1080p clarity and 4000 lumens of brightness. Don\'t wait—order now and transform your presentations! Order now—In stock and ready to be delivered! Unsubscribe by filling the form on: https://bit.ly/unsubscribe-pages Lutmastraat 34, Amsterdam, NH, USA, 1072 Jl'),(3502,877,'name_1','Tanu| | Roy'),(3503,877,'email_2','brandbuildingassistance@outlook.com'),(3504,877,'text_3','Content Writing Service'),(3505,877,'textarea_4','Hello, I’m Tanu, a HubSpot Certified copywriter and content writer, distinguished as one of the few globally certified in this field. With 8 years of experience, I excel in crafting compelling content across various formats, including blogs, articles, e-commerce product descriptions, SEO content, website copy, business service descriptions, newsletters, brochures, and SOPs. I carefully ensure that each word is strategically chosen to resonate with your audience while integrating relevant keywords with precise density to boost SEO effectiveness. Additionally, I can craft Meta titles and descriptions tailored for every page of your website, ensuring optimal search engine visibility. If you have any current content needs, please don’t hesitate to contact me at brandbuildingassistance@outlook.com'),(3506,878,'name_1','Liz Polanco| | Polanco'),(3507,878,'email_2','polanco.pasquale91@gmail.com'),(3508,878,'text_3','Re: Live Chat Agents for Hire'),(3509,878,'textarea_4','Hi naplesirrigation.com Owner, Struggling with Live Chat Issues? Slow response times and missed chats can create a stressful environment for your team and frustrate your customers. What If It Gets Worse? As these issues pile up, you risk damaging your reputation and losing business. It’s a tough situation to handle alone. Here’s Some Hope: You don’t have to face this by yourself. Our live chat solutions can: Speed Up Response Times: Ensure quick, effective support. Scale with Your Needs: From startups to large enterprises. Expert Agents: Professional and efficient chat handling. Ready for a Change? Free 30 days trial. Email us at lisa365chat@gmail.com to schedule a free consultation and discover how we can help you streamline your live chat operations.'),(3510,879,'name_1','Bert Rainey| | Rainey'),(3511,879,'email_2','bert.rainey@hotmail.com'),(3512,879,'text_3','Hello naplesirrigation.com Admin.'),(3513,879,'textarea_4','Do you have big ideas and plans to update your website, but hate the outrageous fees that most agencies charge? Why pay $50+ per hour for web development work, when you can get higher quality results AT LESS THAN HALF THE COST? We are a FULL SERVICE, USA managed web development agency offering wholesale pricing. No job too big or small. Test us out to see our value. Use the link in my signature, for a quick turn around quote. Kristine Avocet Senior Web Specialist Fusion Web Experts 186 Daniel Island Drive Daniel Island, SC 29492 www.fusionwebexperts.tech'),(3514,880,'name_1','Lucy Johnson| | Johnson'),(3515,880,'email_2','seorankingtech@gmail.com'),(3516,880,'text_3','Re : SEO Assistance'),(3517,880,'textarea_4','Hello naplesirrigation.com, Let me start with a question: do you have trouble generating leads and less website traffic? Shall I forward some more detailed solutions to you? Well wishes, Lucy Johnson Note: - If you’re not Interested in our Services, send us \"opt-out\"'),(3518,881,'name_1','Phil Stewart| | Stewart'),(3519,881,'email_2','noreplyhere@aol.com'),(3520,881,'text_3','??'),(3521,881,'textarea_4',''),(3522,882,'name_1','Rod Birdsong| | Birdsong'),(3523,882,'email_2','rod.birdsong98@googlemail.com'),(3524,882,'text_3','Hi naplesirrigation.com Administrator.'),(3525,882,'textarea_4','Advantages of hiring a Developer: Specialized Expertise Tailored Customization and Control Time and Cost Efficiency Custom Plugin Development SEO Optimization Ongoing Support and Maintenance Seamless Integration and Migration Scalability for Business Growth Hire a web developer now from us. Contact us at e.solus@gmail.com'),(3526,883,'name_1','Jaime Bowens| | Bowens'),(3527,883,'email_2','jaime.bowens@msn.com'),(3528,883,'text_3','Hello naplesirrigation.com Admin.'),(3529,883,'textarea_4','Hi there, I apologize for using your contact form, but I wasn\'t sure who the right person was to speak with in your company. We have a patented application that creates Local Area pages that rank on top of Google within weeks, we call it Local Magic. Here is a link to the product page https://www.mrmarketingres.com/local-magic/ . The product leverages technology where these pages are managed dynamically by AI and it is ideal for promoting any type of business that gets customers from Google. Can I share a testimonial from one of our clients in the same industry? I\'d prefer to do a short zoom to illustrate their full case study if you have time for it? You can reach me at marketing@mrmarketingres.com or 843-720-7301. And if this isn\'t a fit please feel free to email me and I\'ll be sure not to reach out again. Thanks!'),(3530,884,'name_1','Dina Hickson| | Hickson'),(3531,884,'email_2','dina.hickson@gmail.com'),(3532,884,'text_3','Lunch On Line: Your Catering Game Changer'),(3533,884,'textarea_4','Hi naplesirrigation.com owner, Are you tired of the catering chaos? Lunch On Line is here to be your superhero! Whether you\'re a restaurant looking to boost your business or a corporate client seeking delicious food options, we\'ve got you covered. For Restaurants: --&gt; Level up your catering revenue: Reach a wider audience and attract more corporate clients. --&gt; Market your magic: Our free marketing tools will help you shine. FREE LANDING PAGE for lead capturing! --&gt; Get expert support: Our team is always ready to assist you. --&gt; Easy to navigate platform! For Corporate Clients: --&gt; Choose your foodie adventure: With a variety of restaurants, there\'s something for everyone. --&gt; Order with a click: Say goodbye to the hassle of traditional catering. --&gt; Enjoy hassle-free delivery: Sit back, relax, and let us handle the logistics. --&gt; Earn freebies with our loyalty program: Enjoy a discount on your second order. --&gt; Get as much as 15,000 loyalty points upon sign up! Ready to level up your catering game? Sign up today and experience the Lunch On Line difference! CLICK HERE https://app.allyvirtual.com/v2/preview/OHRUNqCcYo93Er01O0Zk?notrack=true TO SEND US DETAILS Best regards, The Lunch On Line Team https://app.allyvirtual.com/v2/preview/OHRUNqCcYo93Er01O0Zk?notrack=true'),(3534,885,'name_1','Ernesto Papst| | Papst'),(3535,885,'email_2','papst.ernesto@hotmail.com'),(3536,885,'text_3','Dear naplesirrigation.com Administrator.'),(3537,885,'textarea_4','How would you like a surefire way to dominate your local market &amp; win more sales from your competition? Getting Vetted is a powerful sales multiplier that helps you close 60 % more deals. That’s a game changer. Vetted also provides great SEO &amp; FREE local leads Start your 30 Day FREE trial &amp; see the results for yourself. USA Businesses Only Sarah McCormick Vetted Business Specialist 295 Seven Farms Drive Suite C-201 Charleston, SC 29492 sarah.mccormick@vettedpros.com https://vettedpros.com/1-2/?a=Are-You-Ready-To-Dominate-Your-Local-Market?'),(3538,886,'name_1','Myrna Row| | Row'),(3539,886,'email_2','myrna.row@googlemail.com'),(3540,886,'text_3','Revolutionize Your Marketing with AllyVirtual - 30-Day Free Trial Included'),(3541,886,'textarea_4','Dear Busy Business Owners, Need help with manual marketing tasks draining your time and resources? AllyVirtual is here to streamline your processes and drive exceptional results. Our powerful marketing automation platform empowers you to: &gt;&gt; Automate repetitive tasks: Save time and focus on strategic initiatives. &gt;&gt; Nurture leads effectively: Convert more visitors into customers. &gt;&gt; Track and analyze performance: Make data-driven decisions to optimize your campaigns. &gt;&gt; Integrate seamlessly: Connect AllyVirtual with your existing tools for a streamlined workflow. And the best part? Enjoy a 30-day free trial with 5,000 emails to experience the AllyVirtual difference firsthand. Ready to transform your marketing? Book a free consultation today @ https://app.allyvirtual.com/v2/preview/VhSw3mRetjGE572yVZXx and discover how AllyVirtual can help you achieve your goals. P.S. Don\'t miss out on this limited-time offer! Sign up for your free trial now @ https://app.allyvirtual.com/v2/preview/VhSw3mRetjGE572yVZXx and start unlocking your business\'s full potential. Best regards, Ally Virtual Team https://app.allyvirtual.com/v2/preview/VhSw3mRetjGE572yVZXx'),(3542,887,'name_1','Roseann Allard| | Allard'),(3543,887,'email_2','allard.roseann@gmail.com'),(3544,887,'text_3','Hello naplesirrigation.com Webmaster.'),(3545,887,'textarea_4','Payroll, Insurance, inventory, marketing EXPENSES ……UGHH Want to remove the stress and get some breathing room? Get a no obligation working capital quote in less than 2 minutes. USA Based Businesses Only! Get in touch with me below for more info Elizabeth Miller elizabeth.miller@helloratesfastfunding.com https://www.helloratesfastfunding.com'),(3546,888,'name_1','Magdalena| | Magdalena'),(3547,888,'email_2','info@mceacharn.bangeshop.com'),(3548,888,'text_3','Best Lawn Irrigation Service contact 239-793-775 Naples FL'),(3549,888,'textarea_4','Hey there, I hope this email finds you well. I wanted to let you know about our new BANGE backpacks and sling bags that just released. Bange is perfect for students, professionals and travelers. The backpacks and sling bags feature a built-in USB charging port, making it easy to charge your devices on the go. Also they are waterproof and anti-theft design, making it ideal for carrying your valuables. Both bags are made of durable and high-quality materials, and are perfect for everyday use or travel. Order yours now at 50% OFF with FREE Shipping: http://bangeshop.com Cheers, Magdalena'),(3550,889,'name_1','Bennie Pak| | Pak'),(3551,889,'email_2','loancrowns@gmail.com'),(3552,889,'text_3','Dear naplesirrigation.com Owner!'),(3553,889,'textarea_4','Hi, Are you seeking a fast and reliable business loan to fuel your growth? At Fund Crowns Limited, we understand that every business is unique. That’s why we offer a diverse range of financing options tailored to meet your specific needs, including: &gt;&gt; Expansion Loans: Scale your operations seamlessly. &gt;&gt; Startup Loans: Kickstart your entrepreneurial journey. &gt;&gt; Heavy Equipment Financing: Invest in the tools you need. &gt;&gt; Real Estate Development Loans: Turn your property vision into reality. &gt;&gt; Construction Loans: Build your future today. &gt;&gt; Working Capital Loans: Keep your business running smoothly. &gt;&gt; Bridge Loans: Access immediate funding when you need it. &gt;&gt; Inventory Financing: Stock up without the stress. &gt;&gt; Merchant Cash Advances: Get quick cash flow solutions. &gt;&gt; Franchise Financing: Support your franchise dreams. We are committed to providing you with the funding you need to achieve your business goals. Ready to get started? Visit us at www.fundcrownsltd.com or email us at loan@fundcrownsltd.com for personalized assistance. Let us help you achieve your business goals with ease! Best regards, Dylan Pham Fund Crowns Limited'),(3554,890,'name_1','Vai| | Michael'),(3555,890,'email_2','hireonline4455@outlook.com'),(3556,890,'text_3','Content Writing Service'),(3557,890,'textarea_4','Hi, I\'m Vai Michael, a seasoned copywriter and content strategist with over 12 years of experience helping brands like yours create compelling and impactful content. From blog posts and articles to SEO-driven web content, e-commerce product descriptions, business service write-ups, newsletters, brochures, and detailed SOPs—I’ve done it all.I pride myself on delivering content that not only meets the brief but also resonates with the audience and drives results. My rate is a competitive $35 per 1,000 words, ensuring you get top-tier quality without breaking the bank.If you\'re looking to enhance your content or have any projects in mind, I’d love to chat about how I can help. Feel free to drop me a line at hireonline4455@outlook.com'),(3558,891,'name_1','Eric C.| | C.'),(3559,891,'email_2','aihelpnow@protonmail.com'),(3560,891,'text_3','Do you have any unconverted/old leads that you paid for but didn\'t sell to?'),(3561,891,'textarea_4','Hello, Do you have any unconverted/old leads that you paid for but didn\'t sell to? We use AI and SMS to turn those leads into sales. Reply back if you\'d like to see a live demo of how it all works. Thank you!'),(3562,892,'name_1','Eric C.| | C.'),(3563,892,'email_2','aihelpnow@protonmail.com'),(3564,892,'text_3','Do you have any unconverted/old leads that you paid for but didn\'t sell to?'),(3565,892,'textarea_4','Hello, Do you have any unconverted/old leads that you paid for but didn\'t sell to? We use AI and SMS to turn those leads into sales. Reply back if you\'d like to see a live demo of how it all works. Thank you!'),(3566,893,'name_1','Phil Stewart| | Stewart'),(3567,893,'email_2','noreplyhere@aol.com'),(3568,893,'text_3','??'),(3569,893,'textarea_4','Hey, want your ad to reach millions of contact forms? Just like you\'re reading this message, others can read yours too. Visit my site below for details. http://za9yve.contactuspagemarketing.xyz'),(3570,894,'name_1','Susan Karsh| | Karsh'),(3571,894,'email_2','hamlet.charolette47@gmail.com'),(3572,894,'text_3','Quick question'),(3573,894,'textarea_4','Hello, Would you be interested in dropping up to 2 pounds a week without hitting the gym? Most people don’t believe this is possible, but it is, because it has been working for me and I never gain the weight back. I work for Elebands and we make ultra-thin, fashionable body weight bands that come in 5 - 30 pound sets and they look so sexy and sleek you won’t believe they are weights. You just put them on your wrist, ankle and waist for the entire day and you’ll burn up to 1,500 calories a day, with no workout needed. Basically, the added weight makes your body work harder and burn more calories as you go about your day. If you want to lose up to 2 lbs a week, without going to a gym, visit our website here: https://bit.ly/elebands-info This Week, For The Fist 50 Customers, you can get 20% off: Use discount code: TAKE20%OFF Susan Karsh Business Development Elebands P.S. Even Phil Handy, Former LA Lakers coach said our weight bands are great and help burn calories - watch his video here: https://bit.ly/elebands-phil-handy'),(3574,895,'name_1','Oman Goldschmidt| | Goldschmidt'),(3575,895,'email_2','roger.goldschmidt22@gmail.com'),(3576,895,'text_3','Tailored Financing Solutions for Your Business Growth'),(3577,895,'textarea_4','Hello, At Cateus Investment Company (CIC), we understand that securing the right funding is crucial for both startups and established businesses. That\'s why we offer flexible financing solutions designed to meet your specific needs. Here’s how we can help: Debt Financing: 3% annual interest with zero penalties for early repayment. Equity Financing: Venture capital support with a 10% equity stake—helping you expand while keeping control. We’re ready to explore the best option for your business. Simply send us your pitch deck or executive summary, and let’s discuss the ideal investment structure to fuel your growth. Looking forward to hearing from you. Best regards, Oman Rook Executive Investment Consultant/Director Cateus Investment Company (CIC) Phone: +973-17-585338 | Email: oman-rook@cateusgroup.org or cateusgroup@gmail.com https://cateusinvestmentgroup.com Cateus Investment Group | Home https://cateusinvestmentgroup.com'),(3578,896,'name_1','Sima Wendt| | Wendt'),(3579,896,'email_2','wendt.sima@hotmail.com'),(3580,896,'text_3','Hello naplesirrigation.com Webmaster!'),(3581,896,'textarea_4','Are you frustrated by the high prices for simple web work and website updates? Why pay $50+ per hour for web development work, when you can get higher quality results AT LESS THAN HALF THE COST? We are a FULL SERVICE, USA managed web development agency with wholesale pricing. No job too big or small. Test us out to see our value. Use the link in my signature, for a quick turn around quote. Kristine Avocet Senior Web Specialist Fusion Web Experts 186 Daniel Island Drive Daniel Island, SC 29492 www.fusionwebexperts.tech'),(3582,897,'name_1','Mandy| | M'),(3583,897,'email_2','creativeteamhire@outlook.com'),(3584,897,'text_3','Content Writing Service'),(3585,897,'textarea_4','Hi, I\'m Mandy, a content and copywriter with over 12 years of experience creating content for various industries, including yours. I write blogs, news articles, SEO-friendly web content, product descriptions, business service descriptions, newsletters, brochures, and more. My focus is on delivering content that connects with your audience, improves SEO, and gets results—all written without AI. I also provide reports from paid tools to back up my work. My rate is $35 per 1,000 words, offering great value for high-quality content. If you\'d like to improve your content, feel free to email me at creativeteamhire@outlook.com.'),(3586,898,'name_1','Terra Abe| | Abe'),(3587,898,'email_2','abe.terra@hotmail.com'),(3588,898,'text_3','To the naplesirrigation.com Webmaster.'),(3589,898,'textarea_4','Running a business is not easy. Especially when the cost of nearly everything continues to skyrocket. Cut yourself a break from the stress of rising expenses with a working capital solution that will provide you the relief needed to get through these challenging times. Get a no obligation working capital quote in less than 2 minutes. ++ This Offer Only For Businesses In The USA ++ Send me a message at my contact info below for info Elizabeth Miller elizabeth.miller@helloratesfastfunding.com https://www.helloratesfastfunding.com'),(3590,899,'name_1','Columbus Ruiz| | Ruiz'),(3591,899,'email_2','columbus.ruiz18@msn.com'),(3592,899,'text_3','Hello naplesirrigation.com Owner.'),(3593,899,'textarea_4','How would you like a surefire way to dominate your local market &amp; win more sales from your competition? Getting Vetted is a powerful sales multiplier that helps you close 60 % more deals. That’s a game changer. Vetted also provides great SEO &amp; FREE local leads Start your 30 Day FREE trial &amp; see the results for yourself. USA Businesses Only Sarah McCormick Vetted Business Specialist 295 Seven Farms Drive Suite C-201 Charleston, SC 29492 sarah.mccormick@vettedpros.com https://vettedpros.com/1-2/?a=Are-You-Ready-To-Dominate-Your-Local-Market?'),(3594,900,'name_1','Sherlyn Lewers| | Lewers'),(3595,900,'email_2','sherlyn.lewers10@gmail.com'),(3596,900,'text_3','Is naplesirrigation.com your site?'),(3597,900,'textarea_4','Hey Not sure how much money naplesirrigation.com is making, but selling digital products is on fire. The transaction value in the Digital Commerce market is projected to reach US$7.63 trillion in 2024. (Statistica.) There is a simple 2-step method to make money selling high-profit, digital products in less than an hour per day. Start leveraging from this growing economy. Learn how here: https://hoply.io/Q5QNX'),(3598,901,'name_1','Joanna Riggs| | Riggs'),(3599,901,'email_2','joannariggs94@gmail.com'),(3600,901,'text_3','Explainer Video for naplesirrigation.com?'),(3601,901,'textarea_4','Hi, I just visited naplesirrigation.com and wondered if you\'d ever thought about having an engaging video to explain what you do? Our videos cost just $195 for a 30 second video ($239 for 60 seconds) and include a full script, voice-over and video. I can show you some previous videos we\'ve done if you want me to send some over. Let me know if you\'re interested in seeing samples of our previous work. Regards, Joanna Unsubscribe: https://removeme.live/unsubscribe.php?d=naplesirrigation.com'),(3602,902,'name_1','Hildegarde Bigge| | Bigge'),(3603,902,'email_2','hildegarde.bigge@gmail.com'),(3604,902,'text_3','Dear naplesirrigation.com Webmaster.'),(3605,902,'textarea_4','Have you seen a great feature or an entire website design that you love and wish that you could have for your business? We can make it happen and at wholesale rates. Why pay $50+ per hour for web development work, when you can get higher quality results AT LESS THAN HALF THE COST? We are a FULL SERVICE, USA managed web development agency offering wholesale pricing. No job too big or small. Test us out to see our value. Use the link in my signature, for a quick turn around quote. Kristine Avocet Senior Web Specialist Fusion Web Experts 186 Daniel Island Drive Daniel Island, SC 29492 www.fusionwebexperts.tech'),(3606,903,'name_1','Timmy Nealey| | Nealey'),(3607,903,'email_2','nealey.timmy12@gmail.com'),(3608,903,'text_3','Dear naplesirrigation.com Admin.'),(3609,903,'textarea_4','Still looking to get your WordPress website done, fixed, or completed? Reach out to us at e.solus@gmail.com &amp; Prices starts @ $99!'),(3610,904,'name_1','Harlan| | Harlan'),(3611,904,'email_2','harlan@naplesirrigation.com'),(3612,904,'text_3','Harlan Burfitt'),(3613,904,'textarea_4','New Multifunction Anti-theft Waterproof Sling Bag The best ever SUPER Sling Bag: Drop-proof/Anti-theft/Scratch-resistant/USB Charging 50% OFF for the next 24 Hours ONLY + FREE Worldwide Shipping for a LIMITED time Buy now: https://xbags.shop Regards, Harlan'),(3614,905,'name_1','Bobbie Gourgaud| | Gourgaud'),(3615,905,'email_2','bobbie.gourgaud@msn.com'),(3616,905,'text_3','Hi naplesirrigation.com Administrator!'),(3617,905,'textarea_4','Your video is getting thousands of views but it\'s not making you any money. I know exactly why that\'s happening. Email me here and I\'ll show you why: gamifyvideo@gmail.com ps. your video needs to have at least 5k views for me to help you'),(3618,906,'name_1','Corey Bivens| | Bivens'),(3619,906,'email_2','bivens.corey@gmail.com'),(3620,906,'text_3','Hi naplesirrigation.com Webmaster!'),(3621,906,'textarea_4','Hey! I wanted to share something cool with you! If you’re tired of the same old wireless plans that promise savings but don’t deliver, you should check out Roccstar Wireless. They’re shaking things up with no-nonsense plans that have everything you need without the gimmicks, and some amazing members benefits and perks. Follow @Roccstarwireless #RoccstarWireless Shop plans at www.roccstarwireless.com'),(3622,907,'name_1','Abhi| | R'),(3623,907,'email_2','efficientmanage007@outlook.com'),(3624,907,'text_3','data entry, research, and back office support'),(3625,907,'textarea_4','Hello! I\'m Abhi, a professional with 10 years of experience in data entry, research, and back office support. I’m skilled at understanding and adapting to your process and software. Rates: USD 7/hr–12/hr, with discounts for part/full-time jobs. Contact me at efficientmanage007@outlook.com'),(3626,908,'name_1','Henrietta Service| | Service'),(3627,908,'email_2','morrismi1@outlook.com'),(3628,908,'text_3','Dear naplesirrigation.com Administrator.'),(3629,908,'textarea_4','My name is Ahmet. I\'m a bank staff in a Turkish bank. I\'ve been looking for someone who has the same nationality as you. A citizen of your country died in the recent earthquake in Turkey, he had in our bank fixed deposit of $11.5 million. My Bank management is yet to know of his death. If my bank executive finds out about his death ,They would use the funds for themselves and get richer and I would like to prevent that from happening only if I get your cooperation, I knew about it because I was his account manager. Last week my bank management held a meeting for the purpose of a bank audit to note the dormant and abandoned deposit accounts. I know this will happen and that\'s why I\'m looking for a solution to deal with this situation because if my bank discovers his death, they will divert the funds to the board of directors. I don\'t want that to happen. I request your cooperation to introduce you as the kin/heir of the account as you are of the same nationality as him. There is no risk; the transaction is carried out under a legal agreement that protects you from infringement. I suggest we split the funds, 60/40 and 40 for me. I need this fund for my daughter\'s surgery so keep this info confidential. email me so i can provide you with more information. ahmetturkiye1974@outlook.com'),(3630,909,'name_1','Jeffrey Hinkle| | Hinkle'),(3631,909,'email_2','jeffrey.hinkle@hotmail.com'),(3632,909,'text_3','You can never have enough leads'),(3633,909,'textarea_4','We are proud to present our latest product for business data Experience our searches on worldwide b2b data This offer is a comprehensive dataset of each country Which are all kept up to date on a monthly basis Try out the open search we offer to see the full extent of our dataset You can never have enough leads LeadsBox.biz'),(3634,910,'name_1','Brad Steffens| | Steffens'),(3635,910,'email_2','katlyn.spada@outlook.com'),(3636,910,'text_3','Quick question'),(3637,910,'textarea_4',''),(3638,911,'name_1','Dennis Broinowski| | Broinowski'),(3639,911,'email_2','broinowski.dennis@gmail.com'),(3640,911,'text_3','Hi naplesirrigation.com Administrator.'),(3641,911,'textarea_4','Turn any Video into a ---&gt; Video Game! GAMIFY any video for FREE in 24 hrs. Guarantee your customers watch 100% of your video with FULL ATTENTION. Go viral and get quality leads that watched your whole video! Send a link of the video you want to Gamify to this email to see if you qualify: gamifyvideo@gmail.com p.s. It\'s normally $789 to Gamify a Video but we are launching an amazing tool so take advantage while this deal lasts.'),(3642,912,'name_1','Oren Bathurst| | Bathurst'),(3643,912,'email_2','bathurst.oren@gmail.com'),(3644,912,'text_3','Dear naplesirrigation.com Owner!'),(3645,912,'textarea_4','How would you like a surefire way to dominate your local market &amp; win more sales from your competition? Getting Vetted is a powerful sales multiplier that helps you close 60 % more deals. That’s a game changer. Vetted also provides great SEO &amp; FREE local leads Start your 30 Day FREE trial &amp; see the results for yourself. USA Businesses Only Sarah McCormick Vetted Business Specialist 295 Seven Farms Drive Suite C-201 Charleston, SC 29492 sarah.mccormick@vettedpros.com https://vettedpros.com/1-2/?a=Are-You-Ready-To-Dominate-Your-Local-Market?'),(3646,913,'name_1','Gary| | Charles'),(3647,913,'email_2','gary_charles@dominatingkeywords.com'),(3648,913,'text_3','DominatingKeywords.com'),(3649,913,'textarea_4','No more SEO and Pay Per Click! With technology that we developed, you can achieve top-ranking placements on Google and Bing without the usual Pay Per Click costs. Simply provide your target keywords, and watch your website soar to the number one spot. Let us show you the process and you\'ll be amazed at the results.'),(3650,914,'name_1','Milo Fetty| | Fetty'),(3651,914,'email_2','fetty.milo@gmail.com'),(3652,914,'text_3','Supercharge Your Online Presence with Mintsuite – Limited Time Offer!'),(3653,914,'textarea_4','Hi there, We’re excited to introduce Mintsuite, the ultimate platform to enhance your online presence and drive results. Mintsuite empowers you to create stunning websites, manage social media like a pro, and generate traffic effortlessly. Create Stunning Websites Manage Social Media Effortlessly Generate Unlimited Traffic Grab Mintsuite now for just $16 (normally $180)! Check out the amazing features of Mintsuite here: https://furtherinfo.info/mint Thanks for your time, Milo'),(3654,915,'name_1','Phil Stewart| | Stewart'),(3655,915,'email_2','noreplyhere@aol.com'),(3656,915,'text_3','??'),(3657,915,'textarea_4','Hi, would you be interested in having your ad reach millions of contact forms just like this one did? Check out my site below for more details. http://hs3mn4.contactuspagemarketing.xyz'),(3658,916,'name_1','Elisabeth Sneed| | Sneed'),(3659,916,'email_2','sneed.elisabeth@gmail.com'),(3660,916,'text_3','Hello naplesirrigation.com Webmaster.'),(3661,916,'textarea_4','Rising business expenses continue to take a toll on small business owners. You are not alone. It\'s affecting every industry. One way to give yourself some breathing room is to obtain enough working capital to bridge you through the tough times. Get a friendly no obligation working capital quote in less than 2 minutes. USA Based Businesses Only! Contact me below for details Warmly, Lauren Smith HelloRates Fast Funding USA Commercial &amp; Business working capital with affordable payments, lowest rates, &amp; best terms Lauren.smith@helloratesfastfundingusa.com https://www.HelloRatesFastFundingUSA.com'),(3662,917,'name_1','Phillis Crace| | Crace'),(3663,917,'email_2','crace.phillis@gmail.com'),(3664,917,'text_3','Hello naplesirrigation.com Webmaster.'),(3665,917,'textarea_4','Q: What do Fax Machines &amp; the BBB have in common? A: They are both relics of a bygone era and are no longer relevant in today’s business world. It\'s time to move to a Trust &amp; Transparency focussed platform that actually meets the needs of both your business and more importantly your customers. The Vetted Business Credential Reports Platform allows you to host and 1 click share: + Your Business License, Insurance &amp; Bond + Your Business &amp; Professional Certifications &amp; Accreditations + Your Industry, Local &amp; Trade Affiliations + Your Trust Badges, Awards, &amp; Associations Memberships + Much more! Get Vetted and dominate your local market See how Vetted can SUPERCHARGE your business with a No RISK 30 DAY FREE TRIAL See link in my profile to learn more or to get started. Warmly, Jennifer Corbitt Vetted Business Report Specialist 295 Seven Farms Drive Suite C-201 Charleston, SC 29492 Jennifer.Corbitt@Vettedprobusinessusa.com https://www.VettedProBusinessUSA.com'),(3666,918,'name_1','Myrna Berk| | Berk'),(3667,918,'email_2','myrna.berk1@gmail.com'),(3668,918,'text_3','Dear naplesirrigation.com Webmaster.'),(3669,918,'textarea_4','Hi there, I apologize for using your contact form, but I wasn\'t sure who the right person was to speak with in your company. We have a patented application that creates Local Area pages that rank on top of Google within weeks, we call it Local Magic. Here is a link to the product page https://www.mrmarketingres.com/local-magic/ . The product leverages technology where these pages are managed dynamically by AI and it is ideal for promoting any type of business that gets customers from Google. Can I share a testimonial from one of our clients in the same industry? I\'d prefer to do a short zoom to illustrate their full case study if you have time for it? You can reach me at marketing@mrmarketingres.com or 843-720-7301. And if this isn\'t a fit please feel free to email me and I\'ll be sure not to reach out again. Thanks!'),(3670,919,'name_1','Buddy Malloy| | Malloy'),(3671,919,'email_2','malloy.buddy97@gmail.com'),(3672,919,'text_3','Drive Traffic and Sales Like Never Before'),(3673,919,'textarea_4','Just like you\'ve received our message, we can submit your message to millions of readers successfully. Unleash the potential of bulk contact form submissions with our solutions. Reach millions of website owners daily and witness instant results. We can submit up to 1 million messages per day, driving: + Targeted Traffic + Qualified Leads + New Clients + Increased Purchases Take advantage of our service now! Starting from $9. -- Order Now: https://bit.ly/formmesages If you want to stop receiving these mails and all future mails, please submit your website address at https://bit.ly/unsubpls Hadikgasse 9, Krainig, BURGENLAND, Austria, 9062'),(3674,920,'name_1','Debra Abbott| | Abbott'),(3675,920,'email_2','debra.abbott@gmail.com'),(3676,920,'text_3','Hello naplesirrigation.com Webmaster!'),(3677,920,'textarea_4','Payroll, Insurance, inventory, &amp; advertising EXPENSES ……UGH Want some breathing room and a break from these expenses? Get a no obligation business working capital funding quote in less than 2 minutes. USA Based Businesses Only! Get in touch with me below for more info Warmly, Lauren Smith HelloRates Fast Funding USA Commercial &amp; Business working capital with affordable payments, lowest rates, &amp; best terms Lauren.smith@helloratesfastfundingusa.com https://www.HelloRatesFastFundingUSA.com'),(3678,921,'name_1','Jamaal| | Jamaal'),(3679,921,'email_2','jamaal@lanier.thawking.shop'),(3680,921,'text_3','Jamaal Lanier'),(3681,921,'textarea_4','Hey there Defrost frozen foods in minutes safely and naturally with our THAW KING™. 50% OFF for the next 24 Hours ONLY + FREE Worldwide Shipping for a LIMITED time. Buy now: https://thawking.shop Cheers, Jamaal'),(3682,922,'name_1','Jacques Burnell| | Burnell'),(3683,922,'email_2','burnell.jacques@googlemail.com'),(3684,922,'text_3',''),(3685,922,'textarea_4',''),(3686,923,'name_1','Caroline Bennett| | Hernandez'),(3687,923,'email_2','starla.lockard@googlemail.com'),(3688,923,'text_3','Get professional help without the hefty cost!'),(3689,923,'textarea_4','Hey there, Looking to enhance your company with professional services? Fiverr features a variety from graphic design to web development, and it all begins at just $5! The great news? Signing up is free of charge, and you’ll receive instant access to high-quality freelancers ready to assist you expand. Get started here: https://bit.ly/fiverr-professional-services Kind regards, If you want to unsubcribe from these attractive newsletters, please fill the form at https://bit.ly/unsubscribenews'),(3690,924,'name_1','Phil Stewart| | Stewart'),(3691,924,'email_2','noreplyhere@aol.com'),(3692,924,'text_3','??'),(3693,924,'textarea_4','Looking for a way to get millions to see your ad affordably? More Info: http://r2b4ry.get-fast-results-with-contactformblasting.xyz'),(3694,925,'name_1','Jonathan Schneider| | Medina'),(3695,925,'email_2','info@collab.prboost.io'),(3696,925,'text_3','Your Brand Featured on Benzinga for FREE—Plus 300 More Sites for Just $79!'),(3697,925,'textarea_4','Hello, My name is Jonathan, and I couldn’t help but admire your business and the amazing work you’re doing. I wanted to contact you with an incredible deal: a free article on the Benzinga platform! With over 14M+ monthly users, it’s a powerful way to enhance your brand’s reputation. And for only $79, we will be publishing affiliates of FOX, CBS, and ABC along with 300 more outlets. We can also get your article posted on sites like Business Insider, Yahoo Finance, and Market Watch—imagine the exposure! If you’re interested in claiming your free Benzinga article, just reply with \"YES, I would like to get published in Benzinga\"! I’d be thrilled to assist you gain the exposure you should have. {{Best|Regards|Best regards|Kind regards|Warm regards|Cheers|Thanks}, Jonathan PR Boost If you don\'t want to get an email from me on this matter again, please reply back with the text: \"No, thank you\"'),(3698,926,'name_1','Lottie Thompson| | Thompson'),(3699,926,'email_2','lottiethompson@finmail.com'),(3700,926,'text_3','TikTok Promotion: Grow your followers by 400 each month'),(3701,926,'textarea_4','Hi, I hope you are well. We run a TikTok growth service, which can increase your number of followers safely and practically. - 400-1200+ followers per month. - Real people who follow because they are interested in your profile. - No automated techniques, everything is safe and manual. Our price is just $60 (USD) per month. If you are interested, we are happy to send you some further information. Kind Regards, Lottie'),(3702,927,'name_1','Ona Linney| | Linney'),(3703,927,'email_2','ona.linney@gmail.com'),(3704,927,'text_3','Dear naplesirrigation.com Administrator.'),(3705,927,'textarea_4','Running a small business is not easy. Especially when the cost of nearly everything continues to skyrocket. Cut yourself a break from the stress of rising expenses with a Working Capital Solution that will provide you the relief needed to get through these challenging times. Get a friendly no obligation working capital financing quote in less than 2 minutes. ++ This Offer Only For Businesses In The USA ++ Get in touch with me below for more info Warmly, Lauren Smith HelloRates Fast Funding USA Commercial &amp; Business working capital with affordable payments, lowest rates, &amp; best terms Lauren.smith@helloratesfastfundingusa.com https://www.HelloRatesFastFundingUSA.com'),(3706,928,'name_1','Delia Barnhart| | Barnhart'),(3707,928,'email_2','barnhart.delia78@outlook.com'),(3708,928,'text_3','To the naplesirrigation.com Admin!'),(3709,928,'textarea_4','Looking to grow your business? We offer customized business loan packages to meet your unique needs. Email us at info@financeworldwidehk.com to get started today! Best regards, Laura Cha'),(3710,929,'name_1','Margarito Hardin| | Hardin'),(3711,929,'email_2','margarito.hardin@hotmail.com'),(3712,929,'text_3','To the naplesirrigation.com Administrator.'),(3713,929,'textarea_4','Want a surefire way to DOMINATE your local market &amp; win more sales away from your competition? Getting Vetted is a powerful sales multiplier that helps you BOOK 63 % more deals. That’s a game changer. Vetted also provides great SEO &amp; FREE local leads Start your 30 Day FREE trial &amp; experience the results for yourself. See link in my profile to learn more or to get started. USA Businesses Only Warmly, Jennifer Corbitt Vetted Business Report Specialist 295 Seven Farms Drive Suite C-201 Charleston, SC 29492 Jennifer.Corbitt@Vettedprobusinessusa.com https://www.VettedProBusinessUSA.com'),(3714,930,'name_1','Neil| | T'),(3715,930,'email_2','venture4help@outlook.com'),(3716,930,'text_3','Data Entry Tasks'),(3717,930,'textarea_4','Hello! I\'m Neil, a seasoned professional with over a decade of experience specializing in data entry, data management, including research, processing, and cleansing. I also provide financial accounting services, from managing accounts payable and receivable to reconciliations, invoice handling, and preparing financial statements. Additionally, I offer expert e-commerce support, such as inventory management and invoice processing. I’m skilled at understanding and adapting to your unique processes and proficient in working with any software. My rate ranges from USD 7/hr to USD 12/hr, with special discounts available for part-time and full-time engagements. Let’s discuss how I can help streamline and elevate your business—Reach me at venture4help@outlook.com'),(3718,931,'name_1','Shonda Mariano| | Mariano'),(3719,931,'email_2','mariano.shonda@gmail.com'),(3720,931,'text_3','Use EVERY major AI for naplesirrigation.com, Lifetime Unlimited Usage Deal'),(3721,931,'textarea_4','Unlock all these premium AI apps from a single, user-friendly dashboard. ChatGPT 4.0 Gemini Pro DALL·E 3 Leonardo AI Microsoft Copilot Pro Meta Llama 3 Stable Diff XL s PaLM 2 Cancel your AI subscriptions, Save thousands of Dollars. Unlimited Use - No monthly fees—ever! [Closing Soon] Lifetime Deal here --&gt;&gt; lifetime-oneai.com &lt;&lt;---'),(3722,932,'name_1','Felicity Sauncho| | Sauncho'),(3723,932,'email_2','felicitysauncho@gmail.com'),(3724,932,'text_3','Youtube Promotion: 700 new subscribers each month'),(3725,932,'textarea_4','Hi there, We run a YouTube growth service, which increases your number of subscribers both safely and practically. - We guarantee to gain you 700-1500+ subscribers per month. - People subscribe because they are interested in your channel/videos, increasing likes, comments and interaction. - All actions are made manually by our team. We do not use any \'bots\'. The price is just $60 (USD) per month, and we can start immediately. If you have any questions, let me know, and we can discuss further. Kind Regards, Felicity'),(3726,933,'name_1','Josh Steven| | Steven'),(3727,933,'email_2','josh.steven@googlemail.com'),(3728,933,'text_3','Hi naplesirrigation.com Webmaster.'),(3729,933,'textarea_4','Do you have a list of website updates that you want to deploy but hate having to pay the INSANE prices to get it done? Why pay $45+ per hour for web development work, when you can get higher quality results AT LESS THAN HALF THE COST? We are a FULL SERVICE, USA managed web development agency offering WHOLESALE PRICING. We charge $20 per hour compared to $35 -$75 per hour in the market. We can also do flat project based pricing if that\'s your preference. No job too big or small. Test us out to see our value. Use the link in my signature, for a quick turn around quote. Warmly, Dan Setzinger Senior Web Specialist Fusion Web Experts 186 Daniel Island Drive Daniel Island, SC 29492 Dan.Setzinger@FusionWebExpertsUsa.com https://www.FusionWebExpertsUSA.com'),(3730,934,'name_1','Phil Stewart| | Stewart'),(3731,934,'email_2','noreplyhere@aol.com'),(3732,934,'text_3','??'),(3733,934,'textarea_4','Looking to get millions of people to comment on your video affordably? Visit: http://x8xmvw.contactblasting-instantresults.xyz'),(3734,935,'name_1','Joanna Riggs| | Riggs'),(3735,935,'email_2','joannariggs278@gmail.com'),(3736,935,'text_3','Video Promotion for naplesirrigation.com?'),(3737,935,'textarea_4','Hi, I just visited naplesirrigation.com and wondered if you\'d ever thought about having an engaging video to explain what you do? We have produced over 500 videos to date and work with both non-animated and animated formats: Non-animated example: https://www.youtube.com/watch?v=bA2DyChM4Oc Animated example: https://www.youtube.com/watch?v=JG33_MgGjfc Our videos cost just $195 for a 30 second video ($239 for 60 seconds) and include a full script, voice-over and video. Regards, Joanna'),(3738,936,'name_1','Earlene Harrel| | Harrel'),(3739,936,'email_2','earlene.harrel@gmail.com'),(3740,936,'text_3','Dear naplesirrigation.com Owner.'),(3741,936,'textarea_4','Are you planning a development project? How does funding for less than 2% sound? Send me an email for more info: jpark9000z@gmail.com Thanks Joseph'),(3742,937,'name_1','Bruce Godon| | Godon'),(3743,937,'email_2','info@increaseorganictraffic.com'),(3744,937,'text_3','RE: Get more leads from your website'),(3745,937,'textarea_4','Hi naplesirrigation.com, At present, your website is not ranking on Google and your competitors are sitting at the top and taking all the fruits. If you\'re still interested to get more phone calls and leads from your website, then we can put it on top 3 positions on Google Maps within your target area. Can I send the proposal and pricing to accomplish your business goals? Thanks, Bests Regards, Bruce Godon Sr SEO consultant http://www.increaseorganictraffic.com Ph. No: 1-804-715-1479 If you don’t want me to contact you again about this, reply with “unsubscribe”'),(3746,938,'name_1','Francisco Nies| | Nies'),(3747,938,'email_2','nies.francisco@gmail.com'),(3748,938,'text_3','Dear naplesirrigation.com Administrator.'),(3749,938,'textarea_4','The BBB is a great tool ……..for businesses in 1962 ….. UNFORTUNATELY, the BBB has not kept up with the times, and no longer provides the information that today’s consumers want and need to make INFORMED BUYING DECISIONS. There is a better option that is taking the market by storm, because it ACTUALLY MEETS THE NEEDS of both the businesses, and the consumers who use it. Introducing Vetted Business Credentials Reports. A cloud hosted Business Credentials Report that can be easily shared with one click, and provides the highest levels of trust, transparency &amp; credibility for your business while increasing your chances of booking the sale by a staggering 63%. Vetted Business Credential Reports allow you to host and 1 click share: + Your Business License, Insurance &amp; Bond + Your Business &amp; Professional Certifications &amp; Accreditations + Your Industry, Local &amp; Trade Affiliations + Your Trust Badges, Awards, &amp; Associations Memberships + Much more! Get Vetted and dominate your local market See how Vetted can SUPERCHARGE your business with a No RISK 30 DAY FREE TRIAL See link in my profile to learn more or to get started. Warmly, Jennifer Corbitt Vetted Business Report Specialist 295 Seven Farms Drive Suite C-201 Charleston, SC 29492 Jennifer.Corbitt@Vettedprobusinessusa.com https://www.VettedProBusinessUSA.com'),(3750,939,'name_1','Tom Antonieff| | Antonieff'),(3751,939,'email_2','antonieff.tom@gmail.com'),(3752,939,'text_3','Dear naplesirrigation.com Owner!'),(3753,939,'textarea_4','Are you still looking at getting your website done/ completed? Contact e.solus@gmail.com Struggling to rank on Google? Our SEO experts can help. Contact es.olus@gmail.com'),(3754,940,'name_1','Vicky Donnelly| | Donnelly'),(3755,940,'email_2','hello@unlimitedclientengine.com'),(3756,940,'text_3','[URGENT] Your Google Maps needs to be fixed.'),(3757,940,'textarea_4','Hello, I found your website on Google Maps and I have to mention that its a bit set up correctly. I think you’re missing out on a ton of leads by not using a few easy tweaks that could really help. The good thing, I made a course that’ll get you configured in just an hour and a half. I also observed that your page search engine settings could use some attention. Here\'s the deal , if you get my course on configuring Google Maps for only $27, I’ll give you a detailed SEO report tailored for your website at no extra charge. It s a perfect opportunity, you fix the maps and the SEO at the same time. When you buy the course, just hit reply on the confirmation email and say “Hey I want the SEO analysis for my site: [yourwebsite.com] ” I will send it over in 2-3 days. Get the course here: www.unlimitedclientengine.com PS: My actual phone number doesnt end with a zero, it ends with a seven. This is just to check if you paid attention to my message. JP, at Unlimited Client Engine +1(352-217-3320) https://unlimitedclientengine.com'),(3758,941,'name_1','Lottie Thompson| | Thompson'),(3759,941,'email_2','lottiethompson497@gmail.com'),(3760,941,'text_3','Facebook Promotion: Grow your followers by 400 each month'),(3761,941,'textarea_4','Hi, I hope you are well. We operate a Facebook service, which increases your number of fans/followers safely and practically. This can be for a page, a group, or an individual profile. - 400+ followers per month. - Real people who follow your page/group/profile because they are interested in what you do (no bots/fakes) - No automated techniques, everything is safe and manual. Our price is just $60 (USD) per month, with no contract. We also offer an introductory trial, so you can see the process yourself first, risk-free. If you are interested, just reply back and we can discuss further. Kind Regards, Lottie'),(3762,942,'name_1','Zoey Hall| | Sanders'),(3763,942,'email_2','tricia.valasquez19@gmail.com'),(3764,942,'text_3','Achieve professional results on a budget!'),(3765,942,'textarea_4','Hey there Looking to improve your online presence with professional services? Fiverr offers options like graphic design to web development, and it all starts at just $5! The best part? Registration is completely costless, and you\'ll get instant access to professional freelancers eager to help you grow. Start now here: https://bit.ly/fiverr-professional-services Best, Emma Cook'),(3766,943,'name_1','Rafsan Jane| | Jane'),(3767,943,'email_2','rafsan@rafsanjane.com'),(3768,943,'text_3','Please help me'),(3769,943,'textarea_4','Hi I\'m Rafsan. I need your help. My uncle in Palestin Gaza need help. They don\'t have food. Please help me. I need 1000$ to help my family. Please send me message back to my email: rafsan@rafsanjane.com or rafsanthedeveloper@gmail.com. My website: https://www.rafsanjane.com/ and Instagram: https://www.instagram.com/rafsanthedeveloper/'),(3770,944,'name_1','Camilla| | Camilla'),(3771,944,'email_2','camilla@naplesirrigation.com'),(3772,944,'text_3','Best Lawn Irrigation Service contact 239-793-775 Naples FL'),(3773,944,'textarea_4','New Multifunction Waterproof Backpack The best ever SUPER Backpack: Drop-proof/Scratch-resistant/USB Charging/Large capacity storage 50% OFF for the next 24 Hours ONLY + FREE Worldwide Shipping for a LIMITED time Buy now: https://thebackpack.online Best regards, Camilla'),(3774,945,'name_1','Bruce Godon| | Godon'),(3775,945,'email_2','info@increaseorganictraffic.com'),(3776,945,'text_3','RE: Get more leads from your website'),(3777,945,'textarea_4','Hi naplesirrigation.com, At present, your website is not ranking on Google and your competitors are sitting at the top and taking all the fruits. If you\'re still interested to get more phone calls and leads from your website, then we can put it on top 3 positions on Google Maps within your target area. Can I send the proposal and pricing to accomplish your business goals? Thanks, Bests Regards, Bruce Godon Sr SEO consultant http://www.increaseorganictraffic.com Ph. No: 1-804-715-1479 If you don’t want me to contact you again about this, reply with “unsubscribe”'),(3778,946,'name_1','Evie Winstead| | Winstead'),(3779,946,'email_2','evie.winstead@yahoo.com'),(3780,946,'text_3','To the naplesirrigation.com Owner!'),(3781,946,'textarea_4','Hi there, I apologize for using your contact form, but I wasn\'t sure who the right person was to speak with in your company. We have a patented application that creates Local Area pages that rank on top of Google within weeks, we call it Local Magic. Here is a link to the product page https://www.mrmarketingres.com/local-magic/ . The product leverages technology where these pages are managed dynamically by AI and it is ideal for promoting any type of business that gets customers from Google. Can I share a testimonial from one of our clients in the same industry? I\'d prefer to do a short zoom to illustrate their full case study if you have time for it? You can reach me at marketing@mrmarketingres.com or 843-720-7301. And if this isn\'t a fit please feel free to email me and I\'ll be sure not to reach out again. Thanks!'),(3782,947,'name_1','Dana Powell| | Powell'),(3783,947,'email_2','dana.powell13@msn.com'),(3784,947,'text_3','To the naplesirrigation.com Administrator!'),(3785,947,'textarea_4','If you are reading this message, That means my marketing is working. I can make your ad message reach 5 million sites in the same manner for just $50. It\'s the most affordable way to market your business or services. Contact me by email virgo.t3@gmail.com or skype me at live:.cid.dbb061d1dcb9127a P.S: Speical Offer - ONLY for 24 hours - 10 Million Sites for the same money $50'),(3786,948,'name_1','Bemi Brook| | Brook'),(3787,948,'email_2','bemibrooks.dev@gmail.com'),(3788,948,'text_3','Re: Boost Your Google Ranking'),(3789,948,'textarea_4','Hi Team, Would you like to see your company rank at the top of Google for a variety of search terms related to your products and services? Would you like your company [ http://www.naplesirrigation.com ] to be listed at the top of Google for multiple search phrases (Keywords) relevant to your products / services? 1. SEO - Full SEO Packages with Plan and Activities 2. SMO - Facebook, Twitter, LinkedIn, YouTube &amp; Marketing etc. 3. PPC - Pay-per-Click 4. Web Designing – (Responsive, Re-Designing) We will help them find you by putting you 1st page on Google with guaranteed! Please let me know if you are interested. We have some special offers this season. We will be more than happy to send you \"Proposal\" and \"Pricing\". Thanks &amp; Regards, Lucy Jhonson - Sr SEO consultant If you don’t want me to contact you again about this, reply with “no thanks”'),(3790,949,'name_1','Ashok| | Kumar'),(3791,949,'email_2','webdesignservices111@outlook.com'),(3792,949,'text_3','Website designer and developer'),(3793,949,'textarea_4','Hello! If you\'re looking for a professional website developer or a responsive website designer, you\'re in the right place. With 15 years of experience, I specialize in WordPress design and development, full stack development, creating responsive and mobile-friendly sites, and integrating payment gateways. My expertise also includes speed optimization, custom development, and building eCommerce solutions. I can troubleshoot and fix bugs, ensuring your website performs at its best. Let’s collaborate to create the perfect website for your needs! Feel free to send me an email at webdesignservices111@outlook.com to collaborate.'),(3794,950,'name_1','Ramona Laguerre| | Laguerre'),(3795,950,'email_2','morrismi1@outlook.com'),(3796,950,'text_3','Hi naplesirrigation.com Webmaster!'),(3797,950,'textarea_4','My name is Ahmet. I\'m a bank staff in a Turkish bank. I\'ve been looking for someone who has the same nationality as you. A citizen of your country died in the recent earthquake in Turkey, he had in our bank fixed deposit of $11.5 million. My Bank management is yet to know of his death. If my bank executive finds out about his death ,They would use the funds for themselves and get richer and I would like to prevent that from happening only if I get your cooperation, I knew about it because I was his account manager. Last week my bank management held a meeting for the purpose of a bank audit to note the dormant and abandoned deposit accounts. I know this will happen and that\'s why I\'m looking for a solution to deal with this situation because if my bank discovers his death, they will divert the funds to the board of directors. I don\'t want that to happen. I request your cooperation to introduce you as the kin/heir of the account as you are of the same nationality as him. There is no risk; the transaction is carried out under a legal agreement that protects you from infringement. I suggest we split the funds, 60/40 and 40 for me. I need this fund for my daughter\'s surgery so keep this info confidential. email me so i can provide you with more info ahmetaksoy1925@outlook.com'),(3798,951,'name_1','Ayaan| | Jay'),(3799,951,'email_2','projectsexpert222@outlook.com'),(3800,951,'text_3','Data entry services'),(3801,951,'textarea_4','Need help managing your website? I can upload and update e-commerce products, blogs, news, images, and meta tags. I can also handle order processing, invoicing, shipping, inventory management, income/expenses, reports (daily/weekly/monthly), send individual emails, gather data from different websites, and repeat any business process. Let\'s connect on projectsexpert222@outlook.com to talk more!'),(3802,952,'name_1','Oman Lardner| | Lardner'),(3803,952,'email_2','lardner.lionel@gmail.com'),(3804,952,'text_3','Hi naplesirrigation.com Webmaster!'),(3805,952,'textarea_4','Hello, At Cateus Investment Company (CIC), we recognize that securing the right funding is essential for businesses at all stages, from startups to well-established enterprises. To support your growth, we offer flexible financing solutions specifically designed to meet your unique needs. Here’s how CIC can assist you: Debt Financing: Offering a competitive 3% annual interest rate, with no penalties for early repayment. Equity Financing: Venture capital support with a 15% equity stake, allowing you to expand while maintaining control of your business. Convertible Debt Financing: A blended approach that combines the benefits of both debt and equity financing, offering flexibility for business owners. We are eager to explore the best financing option tailored to your goals. Feel free to share your pitch deck or executive summary, and we can discuss the ideal investment structure to drive your business forward. I look forward to connecting soon. Best regards, Oman Rook Executive Investment Consultant &amp; Director Cateus Investment Company (CIC) email: oman-rook@cateusgroup.org or cateusgroup@gmail.com https://cateusinvestmentgroup.com'),(3806,953,'name_1','Phil Stewart| | Stewart'),(3807,953,'email_2','noreplyhere@aol.com'),(3808,953,'text_3','??'),(3809,953,'textarea_4','Looking to get millions of people to see your content on a budget? Get in touch with me through the info provided below if you’d like to know more about how I can help. Regards, Birgit Bratcher Email: Birgit.Bratcher@morebiz.my Website: http://xgxed8.resultswithcontactforms.my Skype: marketingwithcontactforms'),(3810,954,'name_1','Anna Sherman| | Ehinger'),(3811,954,'email_2','writingfeedback@writingbybenjamin.com'),(3812,954,'text_3','Hoping to Help You'),(3813,954,'textarea_4','Hi, Is it difficult for you to carve out time for writing articles? Get help from a skilled SEO writer! I do all the research and offer well-written SEO articles perfect for higher ranking and enhance your visitor interaction. Need new articles for your blog or content marketing strategies, see our current content deals here: https://bit.ly/benwriting Benjamin Contact me directly at behinger@writingbybenjamin.com or on Skype: behinger19 with any questions. If you don\'t want to get an email from me on this matter again, please reply back with the text: \"No, thank you\"'),(3814,955,'name_1','Amelia Brown| | Brown'),(3815,955,'email_2','ameliabrown12784@gmail.com'),(3816,955,'text_3','Youtube Promotion: 700 new subscribers each month'),(3817,955,'textarea_4','Hi there, We run a Youtube growth service, where we can increase your subscriber count safely and practically. - Guaranteed: We guarantee to gain you 700-1500 new subscribers each month. - Real, human subscribers who subscribe because they are interested in your channel/videos. - Safe: All actions are done, without using any automated tasks / bots. Our price is just $60 (USD) per month and we can start immediately. If you are interested then we can discuss further. Kind Regards, Amelia'),(3818,956,'name_1','Rosemary McCourt| | McCourt'),(3819,956,'email_2','allenjeremy183@gmail.com'),(3820,956,'text_3','Opportunity for Businesses Outside the USA.'),(3821,956,'textarea_4','Do you own and operate a business outside the USA? My name is Jeremy Allen from BNF Investments LLC, a Florida based Investment Company. We are expanding our operations outside the USA hence; we are actively looking for serious business owners operating outside the USA who are in need of business funding or investments in their businesses for quick access to funding. Get back to me if you are interested through my email: jallen@bnfinvestmentsllc.com'),(3822,957,'name_1','Addy| | Saun'),(3823,957,'email_2','venture4help@outlook.com'),(3824,957,'text_3','Content Writing Service'),(3825,957,'textarea_4','My name is Addy, and I specialize in writing well-researched content tailored to meet the specific needs of your industry. I conduct thorough research using verified sources to ensure accuracy and reliability, incorporating elements like tables and statistics when required. I also have a deep understanding of keyword density and SEO optimization, ensuring that your content ranks well while maintaining readability. Whether your content needs a professional, casual, sales-driven, or straightforward tone, I adapt my writing style based on your target audience to provide the most effective communication. Reach me at Venture4help@outlook.com for quality blogs, articles, E-commerce product descriptions, News Content and Library content.'),(3826,958,'name_1','Maximilian Lau| | Lau'),(3827,958,'email_2','hello@unlimitedclientengine.com'),(3828,958,'text_3','[URGENT] Your Google Maps needs to be fixed.'),(3829,958,'textarea_4','Hi, I came across your website on Google Maps and I have to mention that its not really set up properly. I think you’re not capturing a ton of leads by not running a few quick tweaks that could really help. Good news, I created a course that’ll get you configured in just one and a half hours. I also saw that your page seo could use some love. Here\'s the deal , if you grab my course on configuring Google Maps for 27 dollars, I’ll throw in a detailed SEO report made for your website at no extra charge. It s a win win, you fix the maps and the SEO at the same time. When you buy the course, just hit reply on the confirmation email and say “Hey I want the SEO analysis for my site: [yourwebsite.com] ” I will get that to you in two to three days. Get the course here: www.unlimitedclientengine.com PS: My actual phone number doesnt end with a zero, it ends with a seven. This is just to check if you finished reading my message. JP, at Unlimited Client Engine +1 (352) 217 3320 https://www.unlimitedclientsengine.com'),(3830,959,'name_1','Rena Herbert| | Herbert'),(3831,959,'email_2','rena.herbert@outlook.com'),(3832,959,'text_3','Dear naplesirrigation.com Admin!'),(3833,959,'textarea_4','Unlock Stress-Free Website Management—Just $25/Month Experience worry-free web hosting with our fully managed service designed to keep your website secure, fast, and always up-to-date. For only $25/month, we handle everything—WordPress core, PHP, plugin, and theme updates—along with daily offsite backups, powerful firewall protection, and proactive malware removal. Plus, our free migration service ensures your current website transitions to our optimized server with zero downtime. With 24/7 monitoring, a dedicated server, and weekly performance reports, you stay informed without lifting a finger. Stop wasting time on tech headaches—let us handle it all for you! https://bestwebsite.link/hosting'),(3834,960,'name_1','Juliann Dibdin| | Dibdin'),(3835,960,'email_2','juliann.dibdin@outlook.com'),(3836,960,'text_3','Use EVERY major AI for naplesirrigation.com, Lifetime Unlimited Usage Deal'),(3837,960,'textarea_4','Access all these top-tier AI apps from a single, easy-to-use dashboard. ChatGPT 4.0 Gemini Pro DALL·E 3 Leonardo AI Microsoft Copilot Pro Meta Llama 3 Stable Diff XL s PaLM 2 Cancel your AI subscriptions, Save thousands of $$$$. Unlimited Use - No monthly fees—ever! [Closing Soon] Lifetime Deal here --&gt;&gt; https://lifetime-oneai.com &lt;&lt;---'),(3838,961,'name_1','Jan| | Racke-Bailey'),(3839,961,'email_2','jemb381@gmail.com'),(3840,961,'text_3','Joseph Racke'),(3841,961,'textarea_4','Please call regarding my father’s account, thank you. 407 256 9733'),(3842,962,'name_1','Samual Shipman| | Shipman'),(3843,962,'email_2','shipman.samual@hotmail.com'),(3844,962,'text_3','Dear naplesirrigation.com Owner.'),(3845,962,'textarea_4','We understand that as a financial institution, that people value reliable and trustworthy partners. At First Asia Finance International Limited, we offer the best financial solutions for companies, businesses and individuals seeking loans. We have a variety of financial services such as Business Loan, Project Loan, Corporate Loan and Non-recourse Loan. We also lease and monetize Standby Letter of Credit (SBLC) and Bank Guarantee (BG), With us you can trust that our services will meet your needs. Broker, financial consultant and intermediaried are welocme and 100% protected to bring their clients who are seeking loan or any financial instrument and for every successfull business you bring to us, you will get a agreed percentage commission. Email: info@firstasiafinance-hk.com telephone: +852 8003 9924 Website: https://www.firstasiafinance-hk.com Regards, Cherry Lee blueprint consultant/financial Advisor cherry4lee@gmail.com'),(3846,963,'name_1','Sandy| | Roy'),(3847,963,'email_2','efficientmanage007@outlook.com'),(3848,963,'text_3','Part-Time/Hourly based Personal Assistant'),(3849,963,'textarea_4','Are you looking for a personal assistant who can handle your daily business operations and make your life easier? I can help with tasks related to admin, marketing, gathering data from multiple websites, answering emails, website management, social media, content creation, planning new projects, bookkeeping, entering data into softwares, and back-office assistance. If you are interested, send me an email at efficientmanage007@outlook.com with a list of tasks you want to accomplish, and I will take it from there.'),(3850,964,'name_1','Milagros Lim| | Lim'),(3851,964,'email_2','info@rotevcolab.com'),(3852,964,'text_3','Create a Custom Website That Delivers Results – No Payment Until You’re Satisfied'),(3853,964,'textarea_4','Hi there, I focus in building high-converting websites using Webflow, and here’s the best part: if you’re not completely satisfied with the site we create for you, you don’t pay—simple as that! If you’d like to learn more or see examples of our work, just reply to this email. We can discuss how a modern site can help your business grow. Looking forward to hearing from you! Regards, Shahar Zohar info@rotevcolab.com In case you no longer want getting emails from us in the future, please reply back here with the phrase: “No thanks”.'),(3854,965,'name_1','Troy Caskey| | Caskey'),(3855,965,'email_2','troy.caskey@gmail.com'),(3856,965,'text_3','Your FREE 1-Month Premium Trial Awaits – Claim It Now!'),(3857,965,'textarea_4',''),(3858,966,'name_1','Ken Greener| | Greener'),(3859,966,'email_2','greener.ken@gmail.com'),(3860,966,'text_3','Hi naplesirrigation.com Admin!'),(3861,966,'textarea_4','I offer professional, remote design services with fast turnaround times and impeccable attention to detail. From concept to completion, you\'ll receive print-ready digital files, expertly packaged and delivered. With over 15 years of Vehicle Wrap &amp; Graphic Design experience, I\'m ready to help your business grow. Let\'s collaborate! Contact me at angranddesigns@gmail.com. See my portfolio at… https://angranddesigns.com/vehicle-wraps/'),(3862,967,'name_1','Dorthea Demaio| | Demaio'),(3863,967,'email_2','dorthea.demaio@gmail.com'),(3864,967,'text_3','Use EVERY major AI for naplesirrigation.com, Lifetime Unlimited Usage Deal'),(3865,967,'textarea_4','Access all these premium AI apps from one, easy-to-use dashboard. ChatGPT 4.0 Gemini Pro DALL·E 3 Leonardo AI Microsoft Copilot Pro Meta Llama 3 Stable Diff XL s PaLM 2 Eliminate your AI subscriptions, Save thousands of Dollars. Unlimited Use - No monthly fees—ever! [Closing Soon] Lifetime Deal here --&gt;&gt; https://lifetime-oneai.com &lt;&lt;---'),(3866,968,'name_1','Lacy Rohr| | Rohr'),(3867,968,'email_2','rohr.lacy@googlemail.com'),(3868,968,'text_3','Hello naplesirrigation.com Owner!'),(3869,968,'textarea_4','Hi there, I apologize for using your contact form, but I wasn\'t sure who the right person was to speak with in your company. We have a patented application that creates Local Area pages that rank on top of Google within weeks, we call it Local Magic. Here is a link to the product page https://www.mrmarketingres.com/local-magic/ . The product leverages technology where these pages are managed dynamically by AI and it is ideal for promoting any type of business that gets customers from Google. Can I share a testimonial from one of our clients in the same industry? I\'d prefer to do a short zoom to illustrate their full case study if you have time for it? You can reach me at marketing@mrmarketingres.com or 843-720-7301. And if this isn\'t a fit please feel free to email me and I\'ll be sure not to reach out again. Thanks!'),(3870,969,'name_1','Chelsea Hernandez| | Hernandez'),(3871,969,'email_2','5cv.ir.t.ual.s@gmail.com'),(3872,969,'text_3','Save up to 70% with skilled VA solutions from 5C'),(3873,969,'textarea_4','Hello Are daily tasks getting in the way of scaling your business? At 5C Virtual Assistance, we\'ve spent 6+ years helping businesses like yours save hours each week and cut operational costs by up to 70%. Our expert virtual assistants handle your day-to-day tasks so you can focus on strategic growth. Why industry leaders choose 5C Virtual Assistance: • Cost-effective: + Premium support at just $9/hour – a fraction of local hiring + Flexibility: Scale support up or down based on your evolving needs + Experience: 6+ years in multiple industries + No overhead: Zero training, benefits, or office space costs + Time-zone aligned: Seamless workflow integration with your team Our VAs excel in: - Administrative Support - Customer Service - Data Entry &amp; Management - Calendar &amp; Email Management - Social Media Management - Research &amp; Reporting Imagine the possibilities with 20 to 30 more hours freed up each week. Our clients typically report: + 40% increase in productivity + 25% improvement in customer response times + 15+ hours saved weekly on administrative tasks Looking to streamline your workflow? Book a free 30-minute consultation to discuss your needs. Reply to this email or call us at [phone number]. ** Visit: https://bit.ly/5cvaservices Best regards, Chelsea Hernandez 5C Virtual Assistance https://bit.ly/5cvaservices P.S. Did you know? Businesses save an average of $3,000 monthly by switching to virtual assistance. We’d love to explore how we can achieve similar results for you.'),(3874,970,'name_1','Vinay| | Mish'),(3875,970,'email_2','web.techdevelopment@outlook.com'),(3876,970,'text_3','Website redesign'),(3877,970,'textarea_4','Are you considering a complete redesign of your website to enhance its look and functionality? I specialize in creating modern, mobile-responsive, fast, and SEO-optimized websites that provide a seamless user experience and help convert visitors into clients. Whether you\'re looking to elevate your brand or boost product sales, I can assist. If this is a priority for your business, feel free to contact me at Web.techdevelopment@outlook.com'),(3878,971,'name_1','Arin| | Shah'),(3879,971,'email_2','bizassistance008@outlook.com'),(3880,971,'text_3','Data Entry @ $6/hour'),(3881,971,'textarea_4','Hello, My name is Arin Shah. I provide data entry services starting at USD 6/hour. I can work as per instructions and follow step-by-step instructions. If you are interested, Please share your requirements at bizassistance008@outlook.com and we can take a video call.'),(3882,972,'name_1','Phil Stewart| | Stewart'),(3883,972,'email_2','noreplyhere@aol.com'),(3884,972,'text_3','??'),(3885,972,'textarea_4','Need a way to get millions of people to view your ad without high expenses? Contact me at the details below if you’d like to explore this further. Regards, Pam Loman Email: Pam.Loman@morebiz.my Website: http://34xkbw.advertise-with-contactforms.pro Skype: marketingwithcontactforms'),(3886,973,'name_1','Morris Forehand| | Forehand'),(3887,973,'email_2','forehand.morris@gmail.com'),(3888,973,'text_3','Hi naplesirrigation.com Owner!'),(3889,973,'textarea_4','Hi! Based on what we found on your website, you could be missing out on tens of thousands in annual tax credits. Our software scans thousands of credits to see which you qualify for—and the best part? We only get paid if we secure savings for you. Would you like a free assessment? Please reply to me at my contact info below. Melissa Lang NestWorth.US (800) 481-2198 Info@NestWorth.US'),(3890,974,'name_1','Mat Forsythe| | Forsythe'),(3891,974,'email_2','adeline.forsythe53@yahoo.com'),(3892,974,'text_3','Alternative Business Proposal'),(3893,974,'textarea_4','Hello I hope this message finds you well. My name is Mathew Lundgren, and I am a Research Assistant in the Research and Development Department at Newton Laboratories Pro Ltd, a leading biopharmaceutical company based in London, England. I am reaching out to explore a potential partnership opportunity. We are currently seeking a reliable business representative in your region to assist us in sourcing essential raw materials used in the production of high-quality antiviral vaccines, cancer treatments, and other life-saving pharmaceutical products. While this may be outside of your primary area of expertise, it offers a unique opportunity to diversify your business interests and generate additional income. Our company has been actively searching for a reputable supplier but has yet to establish a direct source. However, I have identified a local supplier who offers the necessary materials at a significantly lower cost compared to our previous purchases. This could present a mutually beneficial opportunity for both parties. If you are interested in learning more about the profit structure and the specifics of this potential collaboration, please feel free to reach out. I would be happy to provide additional details at your convenience. Thank you for considering this partnership, and I look forward to your response. Mathew Lundgren Research &amp; Dev Dept Newton Laboratories Pro Ltd UK 2 Kensington High Street, London, England, W8 4PT United Kingdom Email: mathewlundgren@thegrampians.net'),(3894,975,'name_1','Joanna Riggs| | Riggs'),(3895,975,'email_2','joannariggs94@gmail.com'),(3896,975,'text_3','Video Promotion for your website'),(3897,975,'textarea_4','Hi, I just visited naplesirrigation.com and wondered if you\'d ever thought about having an engaging video to explain what you do? Our prices start from just $195. Let me know if you\'re interested in seeing samples of our previous work. Regards, Joanna Unsubscribe: https://removeme.live/unsubscribe.php?d=naplesirrigation.com'),(3898,976,'name_1','Jonathan Woodard| | Pacheco'),(3899,976,'email_2','info@prboostcolab.com'),(3900,976,'text_3','Get featured for free on Benzinga today'),(3901,976,'textarea_4','Hi, Hope you’re doing well. I believe your business needs more visibility. We’re currently offering a free article on Benzinga, which gets more than 14M+ visitors—a fantastic way to build credibility for your company and increase exposure at no cost. In addition, for only $297, we’ll feature your brand on affiliates of FOX, NBC, CBS, ABC, and more than 300 other media outlets. Imagine the visibility your business could gain! This offer is limited to the first 10 people who reply, so if you’d want to take advantage of your free Benzinga article, simply reply with \"\"YES, I would like to be featured in Benzinga!\"\" I’d be happy to help your brand get the recognition it deserves. Cheers, Jonathan PR Boost If you don\'t want getting notifications from this address anymore, kindly reply back to this message with the text: \"No, thank you\".'),(3902,977,'name_1','Leona Simone| | Underwood'),(3903,977,'email_2','elizabeth@contactformleads.com'),(3904,977,'text_3','Boost Your Traffic with Contact Form Delivery – Starting at $19Reach Millions of Websites with Guaranteed Inbox Delivery – For Just $19'),(3905,977,'textarea_4','We ensure your message is delivered to inboxes by targeting contact forms directly. Start reaching 100M websites and watch your leads, conversions, and recognition grow. All starting at just $19! Let us assist you in elevating your brand to the next level today. ** Check out: https://contactformleads.com If you choose to opt-out of any more messages from me, simply follow the following link: https://contactformleads.com/unsubscribe/ 2780 Russell Street, North Billerica, NY, USA, 1862'),(3906,978,'name_1','Maddy| | Sen'),(3907,978,'email_2','businessgrowtogether@outlook.com'),(3908,978,'text_3','Data Collection Specialist'),(3909,978,'textarea_4','Hi, are you looking to gather information from different websites or sources, like collecting email addresses, compiling competitor data, finding product reviews, gathering contact details of potential leads, collecting data on market trends, researching business directories, gathering LinkedIn or Twitter profiles, collecting industry statistics, compiling product and price comparisons, or obtaining customer feedback? If yes, please send me an email at businessgrowtogether@outlook.com so we can discuss it further!'),(3910,979,'name_1','Barbara| | Barbara'),(3911,979,'email_2','naplesirrigation.com@zoho.com'),(3912,979,'text_3','Best Lawn Irrigation Services-Naples Irrigation'),(3913,979,'textarea_4','Hey there Trying to find a gift that will absolutely captivate? Our Enchanted Shining Rose™ fuses charm and elegance in one gorgeous piece. With its gentle light and shimmering rose wrapped in tiny twinkling lights, it’s something that brightens any space—and any soul. Gift something unforgettable. Great for celebrating special moments or to simply show you care. Special Offer: Get 50% off, plus free shipping at https://shiningrose.biz Have a great time, Barbara'),(3914,980,'name_1','Niki Curtiss| | Curtiss'),(3915,980,'email_2','morrismi1@outlook.com'),(3916,980,'text_3','Assets/payment handler'),(3917,980,'textarea_4','A remote job opportunity for a Law Firm, the role of a Payment/Deposit Handler. This position involves managing payments and deposits, ensuring accurate processing, and maintaining financial record. This position is only for candidates based in the US. Job location: USA Weekly wages: $2,150 per week. We are looking for a detail-oriented individual with a good background and no criminal record. If you are interested in joining our team, please send an email to get more details jasonmorris001@aol.com Regards.'),(3918,981,'name_1','Alonzo Kashiwagi| | Kashiwagi'),(3919,981,'email_2','kashiwagi.alonzo50@googlemail.com'),(3920,981,'text_3','Hello naplesirrigation.com Webmaster.'),(3921,981,'textarea_4','Hello! If your business accepted Visa or Mastercard between 2004 and 2019, you may be eligible to claim thousands of dollars in compensation owed to you from a recent $5.53 billion class action settlement for Visa/ Mastercard charging you excess fee\'s. Note: You MUST be a USA based business to be eligible. Visit https://visasettlementclaims.org now to start your claim before it ends soon.'),(3922,982,'name_1','Tina Vonwiller| | Vonwiller'),(3923,982,'email_2','tina.vonwiller@gmail.com'),(3924,982,'text_3','Hi naplesirrigation.com Admin.'),(3925,982,'textarea_4','Are you still looking at getting your website done/ completed? Contact e.solus@gmail.com Struggling to rank on Google? Our SEO experts can help. Contact es.olus@gmail.com'),(3926,983,'name_1','Sam| | Paul'),(3927,983,'email_2','hireonline556600@outlook.com'),(3928,983,'text_3','Data entry services'),(3929,983,'textarea_4','My name is Sam. I provide data entry services starting from $6 USD per hour. I can handle any computer-related task that is repetitive in nature, such as entering data into software, collecting data, bookkeeping, copy-paste work, uploading content to websites, and following your business processes. I can also transcribe handwritten or scanned documents, update and maintain customer databases, cleanse and validate data, enter survey results and feedback, manage and update inventories, process invoices and receipts, create and update spreadsheets, input product details into e-commerce platforms, digitize paper records, manage email lists and contact information, perform data mining and extraction from websites, compile and organize data from various sources. You can outsource your entire business process to me, where tasks can be done remotely using a computer. I can learn your process and work on any software accordingly. Reach out to me at Hireonline556600@outlook.com if you have any requirements and we can take a quick call'),(3930,984,'name_1','Vana| | Rao'),(3931,984,'email_2','projectsexpert222@outlook.com'),(3932,984,'text_3','Experienced Bookkeeper'),(3933,984,'textarea_4','Hi, This is Vana. I am a bookkeeper. I can categorize your transactions of incomes/expenses and can handle bank reconciliations. I can work on any software that you use for accounting. My rates are USD 10 per hour. Reply me on projectsexpert222@outlook.com to discuss further.'),(3934,985,'name_1','Marie| | jongkind'),(3935,985,'email_2','directindustrialsupply@gmail.com'),(3936,985,'text_3','test'),(3937,985,'textarea_4','hi'),(3938,986,'name_1','Joanna Riggs| | Riggs'),(3939,986,'email_2','joannariggs278@gmail.com'),(3940,986,'text_3','Video Promotion for your website'),(3941,986,'textarea_4','Hi, I just visited naplesirrigation.com and wondered if you\'d ever thought about having an engaging video to explain what you do? Our videos cost just $195 for a 30 second video ($239 for 60 seconds) and include a full script, voice-over and video. I can show you some previous videos we\'ve done if you want me to send some over. Let me know if you\'re interested in seeing samples of our previous work. Regards, Joanna Unsubscribe: https://removeme.live/unsubscribe.php?d=naplesirrigation.com');
/*!40000 ALTER TABLE `wp_weforms_entrymeta` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wp_weforms_entrymeta` with 3941 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: Mon, 27 Jan 2025 18:31:33 +0000
